/*
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" classdelphos ohio, 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:#dad5c3;
    border: 0;
	
}

.custom #page {
    background: #fff;
}


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

body.custom {background: url(../../../../images/htmlBG.gif) repeat #f6f2e3;} /* page background color*/

.custom ul#tabs li {
background:#d6c7a8; /* tab normal state background color */
margin: 0 .1em .1em 0;

}

.custom ul#tabs li.current_page_item{
border-bottom:0;
background-color:#f0e7d4; /* current page tab background color */
}
.custom ul#tabs li:hover {
background:#beaa7d; /* tab mouse hover background color */

}

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

.custom a{
 color: #038e10; /* link color */
 }
 
.custom ul#tabs li a, .custom ul#tabs li a:visited {
color:#3f2c02;
display:block;
letter-spacing:0px;
line-height:1em;
text-decoration:none;
text-transform: none;
font-weight:bold;
font-size:1.2em;
}
.custom ul#tabs li.rss{
background-color: transparent;
}

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

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

.custom #header {
padding:1.1em 0;
overflow:hidden;
background: url(../../../../images/header.jpg) no-repeat top left;
width:975px;
height:175px;
}
.custom p#logo, .custom #header h1{
text-indent:-9999px;
}