/*
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 ;
	/*
background-image:url(../../../uploads/2009/12/ebpagebg.gif) ;
background-repeat: repeat-x;
background-attachment: fixed ;
*/
}
.custom .page {
	background-color: #fff;
	background-image:url(../../../uploads/2009/12/ebcontentbg.png) ;
	background-repeat:repeat-y 
	;
}
.custom  #content {
	background-color:#ebe9e1 ;
}

.custom #content_box {
background-image:url(../../../uploads/2009/12/ebsidebar2bg.gif) ;
}
/*
.custom ul.sidebar_list {
	background-color:#bfcdc0 ;
}
.custom #sidebar_1 ul.sidebar_list {
background-color: #fff;	
background-image:url(../../../uploads/2009/12/ebsidebar1bg.png) ;
}
.custom #sidebar_2 ul.sidebar_list {
background-color: #fff;	
background-image:url(../../../uploads/2009/12/ebsidebar2bg.gif) ;
}
*/

.custom #header_area .page {
	background-image:url(../../../uploads/2009/12/ebcontentbgtop.png) ;
	background-repeat: no-repeat;
padding-top:0.5em;
}
.custom #header {
padding: 1em 0 1em 0 ;
border-color:#813f4d;
border-style:double;
clear:both;
}
.custom li.widget .widget_box {
background:#BFCDC0 none repeat scroll 0 0;
border-color:#ADDDE6;
border-style:solid;
}
/* sidebar customizations */
.custom .sidebar h3 {
	font-weight: bold;
	font-variant: normal; 
	color: #eeeeee; 
	padding: 0px 5px; 
	background: #515670;
	line-height:28px;
	font-size:16px;
}

.custom li#text-336769306 h3 {font-weight: bold; color: #ffffff; padding: 0px 5px; background: #813e4c; }
/*To make nav styles disappear and style the new nav*/
/* .custom #header_area{ display: none; } */

.custom #nav_area ul { border-bottom: none; border-left: none; }

.custom #nav_area ul li { border-width: 0; margin-bottom: 0; padding-bottom: 0; background: none; }

.custom #header { border-bottom: 5px; }

.custom #nav_area { background: none; padding: 0.5em 0; border-bottom: none; }

.custom #nav_area ul { border-bottom: none; border-left: none; }

.custom #nav_area ul li { border-width: 0; margin-bottom: 0; padding-bottom: 0; background: none; }

.custom #title_area { background: none; padding: 1em 0; border-bottom: none; }

.custom .format_text .to_comments span.bracket {color: #362f2d;}

/* below for the contact form */
#wpcf label {
	clear: both;
	display: block;
	float: left;
	width: 120px;
}
#wpcf input {
	float: left;
	width: 100px;
	padding: 1px;
	margin: 2px 5px 2px 0;
}
#wpcf textarea {
	width: 500px;
	height: 60px;
	padding: 1px;
	margin: 0 5px 10px 0;
}
#wpcf #contactsubmit {
	
	width: 100px;
}
/* featurebox */
.custom #feature_box {text-align:left; color:#222; background-image:url(../../../uploads/2009/12/ebfeatureboxbg.gif);}
.custom #feature_box ul.sidebar_list li.widget {width:31%; margin-right:2%; float:left; border-right:1px dotted #475d49;}
.custom #feature_box ul.sidebar_list li.widget a {color:#333; border-bottom:0;}
.custom #feature_box ul.sidebar_list li.widget a:hover {color:#000}

/* per Kristarella, footer stylings */
.custom #footer {
color: #fff;
	background-image:url(../../../uploads/2009/12/ebfooter1bg.gif) ;
}
.custom #footer a, .custom #footer a:visited, .custom #footer a:hover {
	color: #eee;
}
.custom #footer_1 {text-align:left; color:#ddd;}
.custom #footer_1 ul.sidebar_list li.widget {width:31%; margin-right:2%; float:left;}
.custom #footer_1 ul.sidebar_list li.widget a {color:#eee; border-bottom:0;}
.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#fff;}
