/*
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/
*/
/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */

body.custom { 
	padding: 0;
	margin: 0;
	background-color: #cccccc;
	width: 100%;
	height: 100%;
	}
	
	/* custom body color no padding*/
.custom #page {
	background-color: transparent;
}

	
/* custom header with rounded corners*/
.custom #header{
	background-color: #ffffff;
	height: 185px;
	padding: 20px 0px 0px 10px;
		
	/*IE hack to fill in gap in box*/
	border-bottom: 1px #ffffff solid;
	/*rounded corners for Firefox and Safari Browsers*/
	-moz-border-radius-topright: 20px;
	-moz-border-radius-topleft: 20px;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-top-left-radius: 20px; 
}	

/*  clickable header logo*/
.custom #logo  a{ 
	display: block;
	padding:20px 260px 0px 0px;
	text-indent: -9999px;
	height: 150px;
	position:absolute;
	background: url('images/ebcds_web_logo.png')
	center left no-repeat;
	}

/*header repeating image*/
.custom #header #tagline	{
	display: block; 
	height: 180px;
	margin-left: 265px;
	background: url('images/ebcds_web_banner_v2.png') 
	repeat-x; 
	outline: none; 
	}
	
	
/*Navigation menu background color*/

ul.menu {background:#120B35;}
	
/*content color*/	
.custom #content_box {background-color:#ffffff;}



/*footer rounded corners*/	
	
#footer{
	background-color: #ffffff;
	/*Rounded corners for Firefox and Safari*/
	-moz-border-radius-bottomright: 20px;
	-moz-border-radius-bottomleft: 20px;
	-webkit-border-bottom-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px; 
		}	
		
