/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

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 override *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!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

body.custom {
background: #fff url('images/page_bak.png');
background-repeat: repeat-x;
	
}

/*container*/
.custom #page {
background:transparent;
}

.custom #content_box {
background:#fff;
border-left:1px solid #ccc;
border-right:1px solid #ccc;}

/*header*/
.custom #header #logo a { 
display: block; 
height: 96px; 
width: 900px; 
background: url('images/header_no_logo.png'); 
background-repeat: repeat-x; 
outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header {border-bottom:none; padding:0}
.custom #header { padding: 10; }

/*menu*/

.custom ul.menu {
background: #8A791A;
}

.custom .menu .current a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover {
background: url('images/menu_bak.jpg');
background-repeat: repeat-x;
color:#fff; 
}

.custom ul.menu li.tab {
border-right:1px solid #fff;
background: #8A791A;
color:#fff;  
}

.custom ul.menu li.tab a:hover {
background: url('images/menu_bak.jpg');
background-repeat: repeat-x;
color:#fff; 
}

.custom ul.menu li.tab ul.submenu li.item a {
background: #8A791A;
color:#fff;  
}

.custom ul.menu li.tab ul.submenu li.item a:hover {
color:#000;  
}

.custom ul.submenu li.item a:hover {
background: #8A791A;
color:#000;	
}

.custom ul.menu li.cat-item {
border-right:1px solid #fff;
background: #8A791A;
color:#fff;  
}

.custom ul.menu li.cat-item a:hover {
background: url('images/menu_bak.jpg');
background-repeat: repeat-x;
color:#fff;  
}

.custom ul.menu li.cat-item ul.children li.cat-item {
border:none;	
}

.custom ul.menu li.cat-item ul.children li.cat-item a{
background: #8A791A;
color:#fff;  
}

.custom ul.menu li.cat-item ul.children li.cat-item a:hover{
background: #8A791A;
color:#000;  
}

.custom .menu .current-parent > a, .menu .current-cat-parent > a {
background:#8A791A;
color:#fff; 	
}

/*feature box*/
.custom #feature_box {
background:#000;
}

/*add left border to sidebar 2*/
.custom #sidebars {
border-left: 1px solid #ddd;	
}

/*sidebar 1*/
.custom #sidebar_1 ul.sidebar_list li.widget h3 {
background:#8E6318;
color:#fff;
font-family: "Arial", Helvetica, Arial, Verdana;
font-size: 1em;
padding:4px;
}

/*"from the category archive"*/
.custom #archive_info {
background:#8E6318; 
color: #fff;
padding: 10px; 
border:none;
}

/*footer*/

.custom #footer {
color:#ccc;
font-weight:bold; 
background: url('images/footer_bak.png');
background-repeat: repeat-x;
border-top: 1px solid #ccc;
padding-top:5px;
}

.custom #footer a, a:hover {
border:none; 
}
.custom #footer_1 {text-align:left; color:#333; padding:0.5em 0;}
.custom #footer_1 ul.sidebar_list li.widget {width:100%; margin-right:1%; float:left;}
.custom #footer_1 ul.sidebar_list li.widget h2 {color:#fff;}
.custom #footer_1 ul.sidebar_list li.widget a {color:#8A791A; border-bottom:0;}
.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#000; text-decoration:underline;}
.custom #footer_1 ul.sidebar_list li.widget_text {font-family: "Trebuchet MS", Arial, Helvetica; font-size:1.1em; letter-spacing:1px; color: #8A791A; text-transform:uppercase; align:right; padding-top:5px; padding-bottom:5px;}	
.custom #footer_1 ul.sidebar_list li.widget_text a:hover {color:#000; text-decoration:none;}
.custom #footer_1 {border-top:0;}

.custom #footer p {
color:#000;
font-weight:normal;
align:right;
}

.custom #footer a {
color:#8A791A;	
font-weight:normal;
}
