.nav {
	height: 350px;
}	

.nav ul {
	font-family: "Times New Roman", Times, serif;
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-image: none;
	width: 187px; /* Width of Menu Items */
	
	}

.nav ul li {
	position: relative;
	list-style: none;
	list-style-image: none;	
	}
	
.nav li ul {
	position: absolute;
	z-index:1000;
	left: 187px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	border-bottom: 1px solid #C2D5E5;
	width: 155px;
	list-style: none;
	list-style-image: none;
	}

/* Styles for Menu Items */
.nav ul li a {
	position: relative;
	display: block;
	text-decoration: none;
	color: #0B3669; /* IE6 Bug */
	padding: 5px;
	border-bottom: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
	}

/* Fix IE. Hide from IE Mac \*/
* html .nav ul li {
	float: left;
	height: 1%;
	}
* html .nav ul li a {
	height: 1%;
	}
/* End */



 /* Sub Menu Styles */		
.nav li ul li a {
	
	text-decoration: none;
	color: #0B3669; /* IE6 Bug */
	padding: 2px 6px 2px 6px;
	border: 1px solid #C2D5E5;
	border-bottom: 0;
	background-color: #84A8D1;
	display: block;
	width: 155px;
}

.nav li ul li a:hover {
	
	background-color: #B0C5DE;
	
}

 /* The magic */		
.nav li:hover ul, li.over ul {
	display: block;
	width: 175px;
	}
