#mainmenu
{
	position: absolute;
	z-index: 90;
	width: 900px;
	height: 38px;
	background-color: #0030ff;
}

#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu li { /* all list items */
	float: left;
	position: relative;
	line-height: 38px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: left top;
	width: 180px;
}
#menu li:hover
{
	background-color: #3b9ceb;
}

#menu li ul {/* second-level lists */
	position: absolute;
	display: block;
	width: 200px;
	text-align: center;
	margin-top: -1px;
	margin-left: -10px;
	box-shadow: 0px 3px 5px #000000;
	-moz-box-shadow: 0px 3px 5px #000000;
	-webkit-box-shadow: 0px 3px 5px #000000;
	background-color: #3b9ceb;
}

#menu li ul li {/* second-level lists */
	width: 180px;
	height: 32px;
	background-color: #3b9ceb;
	padding-left: 10px;
	padding-right: 10px;
	line-height: 32px;
}

#menu li>ul {/* to override top and left in browsers other than IE */
	top: auto;
	left: auto;
}

#menu li ul li ul  {/* third-level lists */
	position: absolute;
	display: block; 
	top: 0;
	left: 8em;
}

/* Fix IE. Hide from IE Mac */
* html #menu-site ul li { float: left; height: 1%; }
* html #menu-site ul li a { height: 1%; }
/* End */

#menu li:hover ul { display: block; }

#menu li:hover>ul { visibility:visible; }

#menu ul ul { visibility:hidden; }        

/* Make-up syles */
#menu ul, li {
	margin: 0 0 0 0; 
}

/* Styles for Menu Items */
#menu li a {
	color: #ffffff;
	font-family: Impact;
	font-size: 18px;
	font-weight: normal;
	text-align: left;
	text-transform: uppercase;
	line-height: 38px;
	text-decoration: none;
}
/* Hover Styles */
#menu li a:hover { 
	color: #ffffff; 
	text-decoration: none;
} 

/* Sub Menu Styles */
#menu li ul a {
	color: #ffffff;
	font-family: Impact;
	font-size: 16px;
	font-weight: normal;
	line-height: 32px;
	text-decoration: none;
	text-transform: none;
}
/* Sub Menu Hover Styles */
#menu li ul a:hover { 
	color: #000000; 
	text-decoration: none;
} 

