#mainmenu {
  font-size: .75em;
  width: 954px;
  position: absolute;
  top: 96px;
  background-image: url(../images/menubg.gif);
  background-repeat: no-repeat;
  height: 30px;
}

/* 
	LEVEL ONE
*/
ul.dropdown                         { 
position: relative;
  margin: 0px;
  list-style-type: none;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
	}
ul.dropdown li                      { 
	float: left; 
	zoom: 1; 
}
ul.dropdown a:hover		            {
		background-image: url(../images/menu_on.gif); 
}
ul.dropdown a:active                {
	 	background-image: url(../images/menu_on.gif);
	 }
ul.dropdown li a                    { 
	display: block; 
	padding: 4px 8px;
	background-image: url(../images/menu_itembg.gif);
	background-repeat: no-repeat;
	background-position: right top;
	color: #FFFFFF;
	text-decoration: none;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;			 
}
ul.dropdown li:last-child a         { border-right: none; } /* Doesn't work in IE */
ul.dropdown li.hover,
ul.dropdown li:hover                { position: relative; }
ul.dropdown li.hover a              {  }


/* 
	LEVEL TWO
*/
ul.dropdown ul 						{ 
	width: 150px; 
	visibility: hidden; 
	position: absolute; 
	top: 100%; 
	left: 0;
	padding:0px;
	margin:0px;
	list-style-type:none; 
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #cccccc;
	border-right-color: #cccccc;
	border-bottom-color: #cccccc;
	border-left-color: #cccccc;
}
ul.dropdown ul li 					{ 
	font-weight: normal; 
	background: #f6f6f6; 
	color: #000; 
	border-bottom: 1px solid #ccc; 
	float: none; 
}
									  
                                    /* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a					{ 
	border-right: none; 
	width: 100%; 
	display: inline-block;
	background-image: none;
	background: #ecf0f3; 
	color: #000;
	padding:8px 0px;
}
ul.dropdown ul li a:hover					{ 
	border-right: none; 
	width: 100%; 
	display: inline-block;
	background-image: none;
	background: #fff;
	color: #000; 	 
} 

/* 
	LEVEL THREE
*/
ul.dropdown ul ul 					{ 
  left:100%; top: 0; 
}
ul.dropdown ul ul.lefthover 					{ 
  left:-153px; top: 0; 
}
ul.dropdown li:hover > ul 			{ 
  visibility: visible;
}

