/*
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/
*/

/* relocate the Header Image */

.custom #logo
{
	position:relative;
	left:-33px;
	top:-10px;
}

.custom #content_area
{
	position:relative;
	top:-71px;
}

/*move the mm box down*/
.custom #multimedia_box { margin-top: 2.2em;}


/* relocate the menu into the Header Image */
ul.menu
{
	margin:0px;
	padding:0px;
	postition:relative;
	top:-73px;
        left:0px;
	width:950px;
	font: bold 11px/11px Tahoma, Helvetica, Verdana, Georgia, "Times New Roman", Times, serif;
}

 #nav {
    background:#000000 repeat-x;
    font-size:24px;
    font-family:tahoma,sans-serif;
    font-weight:bold;
    width:100%;
    }
#nav, #nav ul {
    float:left;
    list-style:none;
    line-height:40px;
    padding:0;
    border:1px solid #aaa;
    margin:0;
    }
#nav a {
    display:block;
    color:#FFFFFF;
    text-decoration:none;
    padding:0px 10px;
    }
#nav li {
    float:left;
    padding:0;
    }
#nav ul {
    position:absolute;
    left:-999em;
    height:auto;
    width:101px;
    font-weight:normal;
    margin:0;
    line-height:1;
    border:0;
    border-top:1px solid #666666;
    }
#nav li li {
    width:99px;
    border-bottom:1px solid #666666;
    border-left:1px solid #666666;
    border-right:1px solid #666666;
    font-weight:bold;
    font-family:tahoma,sans-serif;
    }
#nav li li a {
    padding:4px 10px;
    width:80px;
    font-size:18px;
    color:#FFFFFF;
    }
#nav li ul ul {
    margin:-27px 0 0 100px;
    }
#nav li li:hover {
    background:#000000;
    }
#nav li ul li:hover a, #nav li ul li li:hover a, #nav li ul li li li:hover a, #nav li ul li li li:hover a {
    color:#336633;
    }
#nav li:hover a, #nav li.sfhover a {
    color:#336633;
    }
#nav li:hover li a, #nav li li:hover li a, #nav li li li:hover li a, #nav li li li li:hover li a {
    color:#336633;
    }
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li:hover ul ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul, #nav li.sfhover ul ul ul ul {
    left:-999em;
    }
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul, #nav li li li li.sfhover ul {
    left:auto;
    background:#000000;
    }
#nav li:hover, #nav li.sfhover {
    background:#000000;
    }



/* turning off the page titles */

.home .headline_area {
     display: none;  
}

.profile .headline_area {
     display: none;  
}

.content .headline_area {
     display: none;  
}

.contact .headline_area {
     display: none;  
}

/* HEADER ZONE */

.custom #header_area { background: #336633;}
.custom #header_area .page { background: #336633; }
.custom #header { background: #336633; border-bottom: 0;}


/* NAVBAR ZONE */

.custom #nav_area { background: #589b4d; }
.custom #nav_area .page { background: #7fc874; }
.custom .menu { background: transparent; border: 0; }
.custom .menu li.tab a, li.tab { border: 0; }


/* CONTENT ZONE */

.custom #content_area { background: #336633; }
.custom #content_area .page { background: #E6DEBE; }
.custom #content_box { background: #E6DEBE; }



/* FOOTER ZONE */

.custom #footer_area { background: #336633; }
.custom #footer_area .page { background: #336633; }
.custom #footer { border: 0; background: #336633; }


/* BEHIND EVERYTHING */

body.custom { background: #336633; }


/* Brooke Style requests */

.custom #contacts {
	font-family: tahoma, helvetica;
	color: #336633;
	font size: 16px;
}

h1 {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-family:  Helvetica, sans-serif;
	color: #cc0000		
	line-height: 24px;
	}
h1.catheader {
	margin-top: 3px;
	color: #cc0000;
	font-weight: strong;
	}

h1.catheader a {
	text-decoration: none;
	color: #74b0ae;
	}

h3 {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-family:  Tahoma, Helvetica, sans-serif;
	color: #336633;		
	line-height: 24px;
}

.wufoo .info{display:none}
