/***** Dropdown menus *****/

#nav li ul  {
	position: absolute;
	left: 0px; /* This has to stay even though it is 0px */
	top: 34px; /* Height of the nav */
	width: 125px; /* Width of the widest nav item */
	display: none;
	padding-top: 1px;
}

/* Styling the text dropdowns */
#nav ul li ul li a {
	font-size: 1.2em;
	display: block;
	height: auto;
	width: 198px;
	color: #666666;
	padding: 5px 0px 5px 8px;
	text-decoration: none;
	background-color: #F8F8F8;
	border-bottom: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
}

#nav ul li ul li a:hover {
	color: #ffffff;
	background-color:#0066CC;
	display: block;
}

#nav li:hover ul, #nav ul li.over ul {
	display: block;
}