/*
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: .75em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: transparent;
    border: 0;
	
}

.custom #page {
    background: #fff;
}


/*edits from KK, for Chris */
.custom .post_box { border-top: 2px solid #8f8382; } /* rules between blog posts*/

body.custom {
background: url(htmlBG.jpg) #182716 center -42px no-repeat; /* page background color*/
font-family: Arial, Helvetica, sans-serif;
color:#333;
} 

.custom #page{
padding:1em 2em 2em 1em;
background:transparent;
}

.custom #content_box{
background: url(page-BG.jpg) no-repeat top left #e5e1c7;
}

/*--- tabs---*/

.custom ul#tabs{
border:0;
border-bottom:3px dashed #e5e1c7;
}
.custom ul#tabs li {
background: transparent; /* tab normal state background color */
margin: 0 .2em 0 0;
border:0;
}

.custom ul#tabs li.current_page_item{
border-bottom:0;
text-align:left;
/* background-color:#efeffd; current page tab background color */
}
.custom ul#tabs li a{
padding:0.545em 0.818em 0 0;
}

.custom #video_box, .custom #image_box{
background:transparent;
}

.custom a{
 color: #394323; /* link color */
 }
 
.custom ul#tabs li a, .custom ul#tabs li a:visited {
color:#e5e1c7;
display:block;
letter-spacing:0px;
line-height:1em;
text-decoration:none;
text-transform: none;
font-weight:bold;
font-size:1.9em;
}
.custom ul#tabs li a:hover {
/*background:#a1a1fd none repeat scroll 0 0;  tab mouse hover background color */
color:#fff;
}

.custom ul#tabs li.rss a{
font-size:1.2em;
padding:0.545em 1.2em;
}

.custom h2, .custom h1{
font-size:3em;
line-height:1.2em;
font-family: "Courier New", Courier, monospace;
font-weight:bold;
}

.custom h2 a {
color: #394323;
font-weight:bold;
}

.custom h2 a:hover {
color: #000; /* headline link hover color */
}

.custom #header {
padding:1.1em 0;
overflow:hidden;
width:975px;
height:120px;
border:0;
}
.custom #header #logo{
font-size:6em;
}
.custom #header #logo a{
display:block;
width:920px;
height:180px;
overflow:hidden;
text-indent:-999px;
}

.custom #header #logo a:hover{
color:#fff;
}

.custom li.widget .widget_box{
background: #bcb383;
border:1px solid #938b5f;
}

.custom #footer, .custom #footer a{
color: #e5e1c7;
}
.custom #custom_box {
background:transparent;
padding:0;
margin-left:-10px;
margin-top:10px;
}
.custom #custom_box img, .custom #custom_box #divid{
margin-bottom:12px;
}
.custom #content_box.no_sidebars{
background:#E5E1C7 url(page-BG.jpg) no-repeat scroll left top !important;
width:650px !important;
margin-left:157px !important;
}