/*
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: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #def5d4;
    border: 0;
	
}

.custom #page {
    background: #fff;
}


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

body.custom {background:#def5d4;
font-family: "Trebuchet MS", Tahoma, Verdana, sans;

} /* page background color*/


.custom ul.menu{
height:92px;
width:975px;
background:#a5d596;
border: none;
}
.custom ul.menu li {
background:transparent; /* tab normal state background color */
height:89px;
width: 99px;
background: url(../../../../images/navBG.jpg) no-repeat bottom left;
border:0;
margin:0 22px 0 0;
}
.custom ul.menu li:hover{
background: url(../../../../images/navBG.jpg) no-repeat top left;
}

.menu a:hover, .menu .current ul a:hover, .menu .current-cat ul a:hover, .menu .current-parent a:hover, .custom ul.menu li a, .custom ul.menu li a:visited {
background:none transparent;
border:none 0;
}

.custom #video_box{
padding:0;
background:#fff;
}

.custom a{
color:#61c467; /* link color */
}
 
.custom ul.menu li a, .custom ul.menu li a:visited {
padding-top:36px;
font: 14px/18px "Trebuchet MS", Tahoma, Verdana, sans;
color:#fff;
text-decoration:none;
text-transform: none;
letter-spacing:normal;
text-align:center;
}
.custom ul.menu li.rss{
background: none transparent;
}
.custom ul.menu li.rss a{
padding:32px 0 0 0;
color:#fff;
}
.custom ul.menu li.rss a:hover{
background-position:84px 34px;
text-decoration:none;
}

.custom #image_box, .custom li.widget .widget_box{
background:#effce9;
border:1px solid #def5d4;
}

.custom h2 a:hover {
color:#0bb233; /* headline link hover color */
}

.custom #page{
padding:1em 2em 2em 1em;
}

.custom #header {
padding:0;
position:relative;
overflow:hidden;
background: url(../../../../images/header.jpg) no-repeat top left;
width:975px;
height:175px;
border-bottom:1px dotted #acd79b;
margin: 0 0 12px 0;
}
.custom p#logo a{
display:block;
width:560px;
height:150px;
text-indent:-9999px;
}
h1#tagline{
text-indent:-9999px;
}
.custom p#logo2 a{
display:block;
position:absolute;
width:227px;
right:0px;
height:150px;
text-indent:-9999px;
}


