/*
File:			custom.css
Description:	Custom styles for Thesis eileen

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: #7396AD;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #A5CF42;
    border: 0.2em solid #A5CF42;
}

.custom #page {
    background: #FFFFFF;
}







/* This bit makes the sub-menus appear when you hover over a top-menu item  */















.custom ul#tabs li:hover ul {   















	display: block;    















	background: #ccc;   /* grey */















	left:auto;















	}































.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: 1px solid #ccc;  















	}































.custom ul#tabs li ul li {















	/* set display to block so sub-menus are up-down (not across) */    















	display: block;    















	background: #ccc;   		/* submenus have grey background */ 















	width: 180px;  			/* width of the menu */















	border-bottom: 1px solid #eee; 































	}































/* formatting for sub-menu items */















.custom ul#tabs li ul li a {        















	/* need to explicitly set text color to black to override hyperlink defaults */    















	color:#2b2b2b;       















	text-decoration:none;   /* no underline */















	font-size:11px;    















	text-transform: none;  /* lower case letters */















	width: 164px;          /* width of text of menu items, excluding padding */   















	padding: 8px 8px; 































	}















































/* When hover over black sub-menu items, make background white, text blue*/















.custom ul#tabs li ul li a:hover {    















	background: #fff;















	color:#6B9694;    /* red */















	border-bottom: 1px solid #ccc;   















	}


.custom .headline_area h2 {
  display: none;
}

.custom ul#tabs li ul {display:none; position:absolute; list-style:none;}
.custom ul#tabs li ul li {float:none;}
.custom ul#tabs li:hover ul {display:block;}
.custom ul#tabs { margin-bottom:-1px;} /* Fix for IE6 */
