/* navigation elements */
#nav {
  padding: 0px;
  margin: 0px;
  background-color: #000000;	
  list-style: none;
  z-index: 5; 
}

#nav ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	background-color: #000000;
	z-index: 5;
}
#nav a {
	font-weight: bold;
	color: #ffffff;	
	text-decoration: none;
	background-color: #000000;
	font-size: 10px;
}
#nav li a {
	display: block;
	font-weight: bold;
	text-transform:uppercase;
	color: #ffffff;
	padding: 2px 4px;
	background-color: #000000;
}
#nav li li a {
	display: block;
	font-weight: normal;
	font-size: 10px;
	color: #ffffff;
	padding: 2px 4px;
	background-color: #000000;
}

#nav li a:hover, li li a:hover {
	padding: 2px 4px;
	background-color: #000000;
	color: #e40050;
}

#nav li {
	float: left;
	position: relative;
    width: 96px;
	text-align: center;
	cursor: default;
	background-color: #000000;
	height:24px;
}
#nav li ul {
	display: none;
	position: absolute;
	top: 100%; 
	left: 0;
	font-weight: normal;
	padding: 0.5em 0 0.5em 0;
	background-color: #000000;
    z-index: 5;	
}
#nav li>ul {
	top: auto;
	left: auto;
}
#nav li li {
	display: block;
	float: none;	
	text-align: left;
	background-color: #000000;
	border-top: 1px solid #000000;
	border-left: 1px solid #666666;
	border-bottom: 1px solid #666666;
	border-right: 1px solid #666666;
    width: 180px;
}
#nav li:hover ul, #nav li.over ul {
display: block;
}

/* Fix IE. Hide from IE Mac \*/
* html #nav ul li { float: left; height: 1%; }
* html #nav  ul li a { height: 1%; }
/* End */
