ul.nav, ul.nav2  {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 160px; /* Width of Menu Items */
	border-bottom: 1px solid #ffffff;
	}

ul.nav li, ul.nav2 li {
	position: relative;
	}
	
ul.nav2 {
	position: absolute;
	left: 159px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	width: 200px;
	}

/* Styles for Menu Items */
ul.nav li a{
	display: block;
	text-decoration: none;
	color: #ffffff;
	background: #2f4e6f; /* IE6 Bug */
	padding: 3px;
	border: 1px solid #ffffff;
	border-bottom: 0;
	font-weight:bold;
	font-size: 10px;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul.nav li { float: left; height: 1%; }
* html ul.nav li a { height: 1%; }
/* End */

ul.nav li a:link, ul.nav li a:visited, ul.nav li a:active { color: #ffffff; background: #2f4e6f;text-decoration: none; }
ul.nav li a:hover { color: #2f4e6f; background: #c9d6e4;text-decoration: none; } /* Hover Styles */
/* Styles for Menu Items LEVEL 2*/
ul.nav2 li a {
	display: block;
	text-decoration: none;
	color: #000000;
	background: #d8dde3; /* IE6 Bug */
	border: 1px solid #ffffff;
	border-bottom: 0;
	font-weight:normal;
	padding: 2px 5px;
}

/* Fix IE. Hide from IE Mac \*/
* html ul.nav li ul li { float: left; height: 1%; }
* html ul.nav li ul li a { height: 1%; }
/* End */
ul.nav2 li a:link, ul.nav2 li a:visited, ul.nav2 li a:active { color: #000000; background: #d8dde3;text-decoration: none; }
ul.nav2 li a:hover { color: #000000; background: #c9d6e4;text-decoration: none; } /* Hover Styles */
	
li:hover ul.nav2, li.over ul.nav2 { display: block; } /* The magic */