/*
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: #000;  }

custom.post_box {padding-top:0.2em}

/*---:[ no sidebars pages ]:---*/
.custom .no_sidebars #content { width: 60em; margin: 0 auto; float: none; }
.no_sidebars #content h1 { font-size: 2.8em; line-height: 1.214em; text-align: center; }
.no_sidebars .format_text .alert { font-weight: bold; font-size: 1.375em; margin-bottom: 1.111em; padding: 0.5em 0.688em; background: #fbfbcb; text-align: center; }

#feedsweep_title { fontcolor:#FFFFFF; }

#breadcrumbs {	text-decoration:none;   /* no underline */
	font-size:1.4em;
	padding:0.571em 0.786em; 
	text-transform: inherit;  /* lower case letters */
	width: 500px;          /* width of text of menu items, excluding padding */   
	color:#111111;
	display:block;
	letter-spacing:2px;
	line-height:1em;
	text-transform:inherit;
border: 0x solid black;}

.custom #footer {border-top:3px solid #000000}

.custom #post_box { padding-top:1.05em }
.custom #headline_area { margin-bottom:0.2em }
.custom #page {-moz-border-radius-bottomleft:19px; 
-moz-border-radius-bottomright:19px;
-moz-border-radius-topleft:19px;
-moz-border-radius-topright:19px;}

.custom #container { border:medium solid #EFEFEF; margin:2em auto;
-moz-border-radius-bottomleft:25px;
-moz-border-radius-bottomright:25px;
-moz-border-radius-topleft:25px;
-moz-border-radius-topright:25px;}
.custom ul#tabs li a { font-size:1.4em;}
.custom #content_box {background:none;}

	.custom #page { background: #fff;}
	footer.custom { color: #00000; border-top: 30px solid #ddd; text-align: right; clear: both; }
.custom #header { background: url('images/header1.png') no-repeat; height: 150px;} 
.custom #header {border-bottom:3px solid #000000; clear:both;}
.custom #header #tagline {color:#000000;font-weight:bold;text-align:right;font-size:1.6em;
line-height:12.429em;letter-spacing:0.02em;}
.custom #header #logo { text-indent: -9999px; }

.custom ul#tabs { border-bottom:1px solid #000000;border-color:#FFFFFF #FFFFFF #000000;}

.custom ul#tabs li a {color:#111111;display:block;letter-spacing:2px;line-height:1em;text-transform:inherit;}

/* This bit makes the sub-menus appear when you hover over a top-menu item  */
.custom ul#tabs li:hover ul {   
	display: block;    
	background: #FFFFFF;   /* grey */
	left:auto;
		text-transform:inherit;
	border:0px solid #000;
	}

.custom ul#tabs li ul {   
/* move menu offscreen to left then back when menu activated, instead of display:none which doesn't work in all browsers */   
	position:absolute;    
	width:180px;    
	left:-999em;   	
	top: 35 px;   
	border: 0px solid #000000;  
	}

.custom ul#tabs li ul li {
	/* set display to block so sub-menus are up-down (not across) */    
	display: block;    
	background: #FFFFFF;   		/* submenus have grey background */ 
	width: 180px;  			/* width of the menu */
	border: 0px solid #000; 

	}

/* formatting for sub-menu items */
.custom ul#tabs li ul li a {        
	/* need to explicitly set text color to black to override hyperlink defaults */        
	text-decoration:none;   /* no underline */
	font-size:1.4em;
	padding:0.571em 0.786em; 
	text-transform: inherit;  /* lower case letters */
	width: 170px;          /* width of text of menu items, excluding padding */   
	color:#111111;
	display:block;
	letter-spacing:2px;
	line-height:1em;
	text-transform:inherit;
border: 0px solid black;
	}


/* When hover over black sub-menu items, make background white, text red*/
.custom ul#tabs li ul li a:hover {    
	background: #fff;
	color:#D81E05;    /* red */
	font-weight:bold;  
	}
.custom ul#tabs li {background:#FFF none repeat scroll 0 0; border-color:#FFFFFF #FFFFFF #000000 -moz-use-text-color;font-weight:;}
