.nav, .nav li ul {/* MAIN MENU ITEMS*/
	margin: 0;
	padding: 0;
	width: 150px;
	color: #000000;
	list-style-type: none;
}


.nav li{
	position: relative;
	z-index:50;
	}

.nav li a{
	text-align: center;
	color: #000000;
	background: #FF9933;
	border-bottom: 1px solid #000000;
	text-decoration: none;
	font-size: 16px;
	font-style: italic;
	display:block;
	padding-top: 1px;
	padding-bottom: 1px;
	font-weight: bold;
	width:150px;
}

.nav li ul{ /*SUB MENU STYLE*/
	background: #FF9933;
	position: absolute;
	width: 150px; /*WIDTH OF SUB MENU ITEMS*/
	height:inherit;
	left: 0;
	top: 0;
	display: none;
	color: #000000;
	text-align: left;
	}

.nav li ul li{
float: left;
}

.nav li ul a{
	width: 150px; /*WIDTH OF SUB MENU ITEMS - 10px padding-left for A elements */
	padding-left: 10px;
	padding-right: 0px;
}



.nav li a:visited, .nav li a:active{
	color: #000000;
	text-align: center;
	wight:150px;
}

.nav li a:hover{
	background-color: #000000;
	color: #FF9933;
	border: 1px solid #FF9933;

}

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