/* Design by Brian Diaz of Media 65 @ http://www.m65.net  All Rights Reserved */
@import url(layouts.css);
@import url(components.css);
@import url(modules.css);
@import url(navigation.css);
@import url(misc.css);
@import url(forms.css);

/* #######################  GENERAL SETTINGS ############################ */
html{height:100%;}

body{
font-size:12px;
font-family:Arial, Helvetica, sans-serif;
color:#333333;
margin:0px;
padding:0px;
/*background-image:url(../images/bg.jpg);
background-image:url(../images/body-bg.jpg);*/
background-color:#E6E4D8;
}

/*  Heading Formatting */
h1 {font-size:1.9em;line-height: 0.8em;font-weight: 900;color: #000;}
h2 {font-size:1.7em;line-height: 0.8em;font-weight: 900;color: #000;}
h3 {font-size:1.5em;line-height: 0.8em;font-weight: 900;color: #000;}
h4 {font-size:1.4em;line-height: 0.8em;font-weight: 900;color: #000;}
h5 {font-size:1.3em;line-height: 0.8em;font-weight: 900;color: #000;}
h6 {font-size:1.2em;line-height: 0.8em;font-weight: 900;color: #000;}

/*links*/
a:link {color: #CC6600;}
a:hover {
color: #659FDE;
}
a:visited {color: #CC6600;}
img {border: 0 none;}

/* Clears Divs */
.clr{clear: both;}

/* #######################  END GENERAL SETTINGS ############################ */

/* Menu updates */
/*
ul#menulist_root li ul { display:none;}
ul#menulist_root li:hover ul { display:block; background:none;}
ul#menulist_root li ul li {background:#000000; opacity:.85; filter: alpha(opacity=85);
-moz-opacity: 0.85; clear:both;}
ul#menulist_root li ul li a { background:none; width:66px;}
ul#menulist_root li ul li a:hover { color:#AA0000; background:none;}
*/
#menulist_root{
	list-style:none;
	/* Clear floats */
/*	
	float:left;
	width:800px;
        margin:0px;
        padding:0px 0px 0px 10px;
        margin-top:2px;
*/        
	/* Bring the nav above everything else--uncomment if needed.*/
	position:relative;
	z-index:5;	
}
#menulist_root li{
	float:left;
/*	margin-right:30px;	*/
	position:relative;
}
#menulist_root a {
/*
	display:block;
*/
	padding:5px;
	color:#900;
	text-decoration:none;
}

#menulist_root span.mainlevel:hover,
#menulist_root span.mainlevel_current:hover,
#menulist_root span.mainlevel_active:hover {
	
	color:#FFF;
	/* background:#ffe051; */
	background-image:url(../images/Orange_09_light.jpg) !important;	
	background-repeat: repeat-x;
	text-decoration:none;
	cursor: pointer;
}

#menulist_root ul{
	background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	margin:0px;
	padding:0px;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	background-color: #efb538;
}
#menulist_root ul li{
	padding-top:0px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
	text-align: left;
}
#menulist_root ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#menulist_root li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#menulist_root li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	/* background:#ffe051; */
	background-image:url(../images/Orange_09_light.jpg);
	background-repeat: repeat-x;		
	color: white;
	text-decoration:none;
}
#menulist_root li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
	background-image: none;
}
#menulist_root li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
/* 	color:#CCC; */
	font-weight: bold;

	/* background:#ffe051; */
/*	
	background-image:url(../images/Orange_09_light.jpg);	
	background-repeat: repeat-x;	
*/
/* hover text css */
}