/*
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: #f9f9f9 url("./images/pagebg.png") repeat-x scroll 0 0;
}


.custom #container {
	padding: 0; border: 0px;
	background-color: transparent;
	}

/*.custom #header{
	background: transparent url(./images/headbg.png) no-repeat center top;
	height: 180px;
	padding-top: 10px;
	padding-bottom: 30px;
}*/

.custom #header {
&nbsp;  background: url('images/header.png') no-repeat; 
   text-indent: -9999px;  
   height:21.6em;
   width:90em;
   border:none;
   padding-top: 0;
   padding-bottom: 0;
}

.custom #page{
	background-color: transparent;
}

/* Custom Menu Styles */

.custom .menu {
	background: url(./images/navbg.png) no-repeat left top;
	height: 40px;
	margin-top: 0px;
	width: 600px;
}
.custom .menu a { padding: 0.667em 0.833em; border-width: 0em; border-left-width: 0;
	font: bold 15px/1.333em Arial, sans-serif;
	background: url(./images/navspacer.png) no-repeat right;
	color: #cc0000;
}

.custom.menu ul .custom.menu ul li{ padding: 0.667em 0.833em; border-width: 0em; border-left-width: 0;
	font: bold 15px/1.333em Arial, sans-serif;
color: #FFFFFF;
	background: url(./images/navspacer.png) no-repeat right;
}

.custom .menu li{
	background-color: transparent;
}
.custom .menu,.custom .menu a, .menu li ul { border-color: #DDDDDD;
	background-color: transparent;
}
.custom .menu .current a,.custom .menu .current-cat a { border-bottom-color: #FFFFFF; }
.custom.menu ul .current a,.custom .menu ul .current-cat a,.custom .menu .current ul a,.custom .menu .current-cat ul a { border-bottom-color: #DDDDDD;
	background-color: transparent;
}
.custom.menu a, .menu .current ul a,.custom .menu .current-cat ul a { color: #111111; background: transparent; }
.custom .menu .current-cat ul a:hover,.custom .menu .current-parent a:hover { color: #111111; background: transparent; }
.custom.menu .current a,.custom .menu .current a:hover,.custom .menu .current-cat a,.custom .menu .current-.customcat a:hover { color: black; background: transparent; }
.custom.menu .current-parent > a,.custom .menu .current-cat-parent > a { color: black; background: transparent; }

.custom .menu a:hover { background: url('images/navhover.png') repeat-x 0 0; 
color: #ffffff; 
text-decoration: none; 
}

.custom #content_box{
	background: url(./images/contentbg.png) repeat-y 0 0; 
        padding: 0; 
	width: 900px;
}

.custom #content { margin: 0; width: 600px; }

.custom.blockquote {background:none repeat scroll 0 0 #F2F2F2;
border:1px solid #EEEEEE;
margin:0 0 1em 1em;
padding:1em 1em 0.5em;
}

.custom.blockquote, q {quotes:none;
}



/* Sidebars */
.custom #sidebars { width: 300px;
}
.custom .sidebar a:hover { text-decoration: none; }
.custom .sidebar ul.sidebar_list { color: #626262; font-weight: bold; line-height: 1.538em; padding: 0; }
.custom .sidebar ul.sidebar_list li { clear: both; }
.custom .sidebar ul.sidebar_list h3 { background: url('images/sidebarbg.png') repeat-x 0 0; color: #FFFFFF; font-variant: normal; font-weight: bold; height: 30px; letter-spacing: normal; padding: 10px 0 0 10px; margin-bottom: 0;
font: bold 15px/1.333em Arial, sans-serif;	
margin-top: 0;
}

.custom .sidebar ul.sidebar_list h4 { color: #aba792; font-size: 1.4em; font-weight: bold; }
.custom .sidebar li.widget { margin-bottom: 0; }
.custom .sidebar li.widget p a { text-decoration: none; }
.custom .sidebar li.widget ul li { margin-bottom: 0; }
.custom .sidebar .sidebar_space { display: block; height: 1em; width: 100%; }

.custom #quoteform{
	padding-left: 0;
	margin: 0 auto;
}

.custom .textwidget{
	margin: 20px 0px 20px 20px;
}

.custom .quotescollection_randomquote {
background:url("images/quote.png") no-repeat scroll 20px 10px transparent;
padding:10px 20px 10px 60px;}



.custom #footer { 
background: url('./images/footer.png') no-repeat center top; 
color: #626262 font-weight: normal; height: 90px; padding: 30px 0px 10px 0px;
	width: 900px;
	text-align:center;
}


