#nav, #nav ul {
	margin: 0;
	padding: 0.5em 0; /*nav bar height*/
	list-style: none;
}
#nav li {
	position: relative;
	display:inline;
	list-style-type: none;
	padding: 0.1em 15px;
}
#nav li ul {
	display:block;
	position: absolute;
	left: 1.25em;
	top: 1.3em;
	display: none;
	width:6.25em;
	border: 1px solid #ccc;
	border-top-width: 0;
}
#nav li ul li{
	padding-left:5px;
	display:block;
}
#nav li ul li a.first{
	padding-top:5px;
}


/* Fix IE. Hide from IE Mac \*/
* html #nav ul li { float: left; height: 1%; }
* html #nav ul li a { height: 1%; }
* html #nav ul li ul li{ float: left; height: 1%; }
* html #nav ul li ul li a { height: 1%; }
/* End */
#nav li:hover ul, #nav li.over ul{
	display: block; 
	background-color: #e6e6e6;
	color: #036fb0;
}
