/* @override http://localhost:8888/test/wp-content/themes/thesis_17/custom/custom.css?052510-30949 */

/*
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:url(./images/pagebg.png) repeat-x scroll 0 top #ededed;
}

.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:25em;
   width:98em;
   border:none;
   padding-top: 0;
   padding-bottom: 0;
}

.custom #page{
	background-color: transparent;
}

/* Custom Menu Styles */

.custom .menu {
	background: url("./images/navbg.png") repeat-x left top;
	height: 40px;
	margin-top: 0px;
	width: 660px;
	margin-left: -1px;
	border: 1px solid #1d91a7;
} 

.custom .menu a { 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 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 {background: url("./images/navbg.png") repeat-x left top;
	height: 40px;
	border-color: #DDDDDD;
	background-color: transparent;
}

.custom .menu a, .menu li ul {background: url("./images/navbg.png") repeat-x left top;
	border-color: #DDDDDD;
	background-color: transparent;
	z-index: 1;
}
.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 a:hover,.custom .menu .current ul a:hover,.custom .menu .current-cat ul a:hover,.custom .menu .current-parent a:hover { color: #111111; background: url("./images/navhover.png") repeat-x left top; 
}

.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: #000000; 
text-decoration: none; 
}

.custom #content_box{
	background: url(./images/contentbg.png) repeat-y 0 0; 
        padding: 0; 
	width: 980px;
}
.custom #content { margin: 0; width: 660px; }

.custom .teasers_box{width: 58em;}

.custom .teaser {width: 27.5em;}

/* Sidebars */
.custom #sidebars { width: 319px;
	margin-top: 0;
}
.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;
	border: 1px solid #999999;
}

.custom .sidebar ul.sidebar_list h4 { color: #1d91a7; 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 .textwidget{
	margin: 10px;
}

.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: 74px; padding: 20px 0;
	width: 980px;
	color:#1d91a7;
text-align:center;
}

.format_text input, #commentform input, #commentform textarea {
border-width:0.071em;
padding:0.214em;
width:95px;
}


