/* Drop down menus like the ones found in desktop applications i.e File , Edit, Help */

#nav {
	height: 25px;
	background:url(../images/btn_menu_unselected.gif)  left top repeat-x;
}

#nav UL {
	padding:0;	
	list-style-type: none;	
}

#nav LI.first {
	background:none!important;
	padding-left: 0;
}

#nav A {
	padding-top: 4px;
	font-size: 1.0em;
	
}

#nav A.first {
	padding-right: 22px;
}

#nav A.last {
	padding-right: 22px;
}



#nav A:HOVER, #nav A.selected {
	background:url(../images/btn_menu_selected.gif)  left top repeat-x;
}

UL.menu_lv0 LI{
 background:url(../images/spacer_menu.gif) 0 8px no-repeat;
 float: left;
 position: relative;
 text-align:left;
 padding:0;
 padding-left: 2px;
}

UL.menu_lv0 A, UL.menu_lv0 A:LINK, UL.menu_lv0 A:VISITED {
	background:url(../images/btn_menu_unselected.gif) left top repeat-x;
	display: block;
	float: left;
	height: 23px;
	text-decoration: none;
	text-transform: uppercase;
	overflow:hidden;
	padding-left: 24px;
	padding-right: 24px;
}

UL.menu_lv1 {
 display: none;
 position: absolute;
 z-index: 99;
 float: left;
 margin-top: 24px;
 margin-left:0;
 min-height: 14px;
 font-weight: normal;
 height:75px;
 left: 0; /*IE BUG 6 and 7*/
 border-left: 1px solid #eee;
 border-top: 1px dotted #ccc;
 border-right: 1px solid #ccc;
 border-bottom: 1px solid #ccc; 
 width:90px;
}

LI:HOVER UL.menu_lv1{
 display: block; 
 -moz-opacity: 0.90;
 opacity: 0.90;
}


UL.menu_lv1 LI {
 display: block;
 clear: both;
 width: 100%;
 background: none!important;
 padding-left: 0!important;
}

UL.menu_lv1 LI A, UL.menu_lv1 LI A:LINK, UL.menu_lv1 LI A:HOVER, UL.menu_lv1 LI A:VISITED {
 display: block;
 float: left;
 text-decoration: none;
 border-bottom: 1px solid transparent;
 white-space:normal;
 height: 20px;
 width: 100%;
 padding-left: 0;
 padding-right: 0;
 text-align: center;
}

/* nav */