.nav {
}	
.nav ul {
	font-family: "Times New Roman", Times, serif;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 201px; /* Width of Menu Items */
	
	}

.nav ul li {
	position: relative;
	list-style: none;
	}
	
.nav li ul {
	position: absolute;
	left: 200px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	z-index: 100;
	border-bottom: 1px solid #ccc;
	width: 140px;
	}

/* Styles for Menu Items */
.nav ul li a {
	display: block;
	text-decoration: none;
	color: #666666; /* IE6 Bug */
	padding: 5px;
	border-bottom: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	line-height: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 */

/* Hover Styles */
.nav ul li a:hover {
	text-decoration: none;
	background: #dddddd;
	color: #999999;
	
	
} 

 /* Sub Menu Styles */		
.nav li ul li a {

	text-decoration: none;
	color: #666666;
	background: #ffffff; /* IE6 Bug */
	padding: 6px;
	border: 1px solid #ccc;
	border-bottom: 0;
	padding-left: 5px;
	
}

 /* The magic */		
.nav li:hover ul, li.over ul { display: block; }
