#nav {
	display: block;
}

#nav ul {
	margin: 0;
	padding-left: 0px;
	border: 0;
	list-style-type: none;
}

#nav li {
	margin: 0;
	padding-left: 0px;
	padding-right:0em;
	border-right:none;;
	display: block;
	float: left;
	position: relative;
	font: 11px Arial, Verdana, sans-serif;
	background:#000000;
	font-weight:bold;

}

#nav li a {
	padding: 0px 20px 0px 20px; 
}

#nav a {
	display: block;
	text-decoration:none;
	font-weight: bold;
	
}

#nav li li {
	width: 98%;
}

/* fix the position for 2nd level subnavs. first make sure no horizontal scrollbars are visible on initial page load... */
#nav li li ul {
	top: 0;
	left: 0;
}

/* ...and then place it where it should be when shown */
#nav li li:hover ul {
	left: 100%;
}

/* initialy hide all sub navs */
#nav li ul {
	display: none;
	position: absolute;
	z-index: 10;
}

/* display them on hover */
#nav li:hover>ul {
	display: block;
	
}

/* this is needed if you want to style #nav div - force containment of floated LIs inside of main UL */
#navList:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

/* Fix for IE5/Mac \*//*/
#nav a {
	float: left;
}

#navList {
	display: inline-block;
}
/*  */

/*		------   Make-up	--------			*/

#nav {
	background:#000000;
	
}
#nav a {
	text-decoration: none;
	text-align: center;
	color: #fff;
}
#nav a:hover {
	background:#000000;
	color: #ffff00;
}
#nav li:hover {
	background:#000000;
	color: #ffff00;

}
#nav li:hover a {
	background:#000000;
	color: #ffff00;
}

#nav li:hover>a {
	background:#000000;
	color: #ffff00;
}

/*submenu item background */
#nav li ul {
/* border: 1px solid #AF3221; */
	width: 120px; 
	border-top: 0;
	margin-left:0px;
	border:none;
}

/*submenu font color */
#nav .subnav ul li a {
	color: #ffffff;
	
}

#nav li ul a {
	text-align: left;
	padding:5px;
	background-image: none;
	border:none;
		line-height: 11px;
}
#nav li ul a:hover {
	background:#000000;
	color: #ffff00;
	padding:5px;
	border:none;
}