@charset "utf-8";
/* CSS Document Kutoka's Drop Down Menus*/


#dropdown {
	position:relative;
	z-index:2;
	/*background:transparent;*/
	margin-top:-60px;
	/*left:0px;*/
	width:840px;
	height:300px;
	/*text-align:center;*/
	padding-left: 1px; padding-top: 1px;
	overflow:hidden;
	left: 0; right: 0; margin-left: auto; margin-right: auto; /* These items center things */
	font-family: MyriadReg, Verdana, Arial, sans-serif;
 	font-size: 12px;
}

/* Drop Down Menu */
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	}

#nav a {
	display: block;
	/*width: 150px;*/
	text-decoration: none; 
	color: #777;
	padding: 5px;
	/*border: 1px solid #ccc;*/ /* IE6 Bug */
}

#nav a:hover { color: #E2144A; background: #f1f1f1; z-index:10;} /* All hover effects in the menu*/

#nav li { /* all list items */
	float: left;
	width: 139px; /*Adjust the spacing*/
	/* width needed or else Opera goes nuts */
	border: 1px solid #ccc; /* IE6 Bug */
	/*margin: -1px 0 0 -1px;s*/
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 140px;
	margin-top: 1px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background:#ffffff; filter:alpha(opacity=90);
	/*opacity:0.8; -moz-opacity:0.8; filter:alpha(opacity=80);*/
	/*border-right: 1px solid #ccc; */
	border-left: 1px solid #ccc; margin-left: -1px; margin-top: 1px;/* IE Bug */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -19px 0 0 135px;
	background:#ffffff; /*filter:alpha(opacity=80); opacity:0.8; -moz-opacity:0.8;*/
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
	
/* Should be under the #nav ... */
ul>li {
	/* IE Bug */
	margin: -1px 0 0 -1px;
	}

#top_box{margin-top: 0px;border-top: 1px solid #ccc;} /* IE 8 Bug */

.main_item {
	background:#ffffff; filter:alpha(opacity=90); opacity:0.9; -moz-opacity:0.9;
}

/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
