/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to overwrite *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; } <--- This makes links green
	
	.custom a:hover { color: #00f; } <--- This makes links blue when you mouse over them

Why this works:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!
*/

.custom #content { border-right: none; }

.custom #container {
    margin-top: 0;
    margin-bottom: 2em;
    padding: 0.3em;
    background: transparent;
    border: 0;
	
}

.custom #page {
    background: #fff;
}


/*edits from KK, for Chris */
.custom .post_box { border-top: 1px dotted #ccc; } /* rules between blog posts*/

body.custom {
background: url(htmlBG.jpg) #4b4b4b top center no-repeat; /* page background color*/
font-family: Arial, Helvetica, sans-serif;
color: #333;
} 

.custom #page{
padding:330px 0px 2em 0px;
background:transparent;
}

.custom #content_box{
background: url(background-sliver.gif) repeat top left #ccc;
}


/*--- tabs---*/

.custom ul.menu{
border:0 none;
display:block;
}
.custom ul.menu li {
background: transparent; /* tab normal state background color */
margin: 0 .2em 0 0;
border:0 none;
}

.menu .current a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover {
background-color:transparent;
border:0 none;
}

.custom ul.menu li.current_page_item{
border-bottom:0;
text-align:left;
/* background-color:#efeffd; current page tab background color */
}
.custom ul.menu li a{
padding:0.45em 0.9em 0.4em 0;
}

.custom #video_box, .custom #image_box, .custom #custom_box{
background:#fff;
padding:1.1em 1.1em 1.1em 0 ;
}

.custom a{
 color:#004990; /* link color */
 }
 .custom a:hover{
 color:#0265c6;
 }
 
 .custom #header{
 padding:0;
 margin:0;
 }
.custom li{padding:0 10px;}
.custom ul.menu li a, .custom ul.menu li a:visited {
color:#fff;
display:block;
letter-spacing:0px;
line-height:1em;
text-decoration:none;
text-transform: none;
font-weight:bold;
font-size:1.7em;
}
.custom ul.menu li a:hover {
/*background:#a1a1fd none repeat scroll 0 0;  tab mouse hover background color */
color: #ccc;
}

.custom ul.menu li.rss a{
font-size:1.2em;
padding:0.545em 1.2em;
}

.custom h2{
font-size:3.2em;
line-height:1em;
font-weight:bold;
color: #0c4663;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.custom h2 a {
color: #0c4663;
}

h1{
color: #0c4663;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.custom h2 a:hover {
color:#2379a4; /* headline link hover color */
}

.custom #header #logo{
width:100%;
height:80px;
}
.custom #header #logo a{
display:block;
width:100%;
height:100%;
overflow:hidden;
text-indent:-9999px;
}
#header #tagline{display:none;}


.custom #header{padding:0;margin:0;height:0;border-bottom:0 none;}


.menu a, .menu .current ul a, .menu .current-cat ul a, .menu a:hover, .menu .current ul a:hover, .menu .current-cat ul a:hover {
background:transparent none;
}

#page{
position:relative;
}
p.email{
position:absolute;
width:187px;
height:27px;
top:25px;
left:231px;
}
p.email a, p.logoLink a{
display:block;
width:100%;
height:100%;
text-indent:-9999px;
}
p.logoLink{
position:absolute;
width:226px;
height:92px;
top:0px;
left:0px;
}