
ul#nav, ul#nav ul{
	font-size: 90%;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 144px; /* Width of Menu Items */
	border-bottom: 2px solid #333;
	border-right: 2px solid #333;
	background: #E0E6E8;
	}
	
ul#nav {
	border-bottom: 0;
	border-right: 0;
	margin-bottom: 20px;
}
	
ul#nav li {
	position: relative;
	}
	
ul#nav li ul {
	position: absolute;
	left: 144px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul#nav li a {
	display: block;
	text-decoration: none;
	color: #333;
	background: #E0E6E8 url(../images/menucarrotnew.gif) no-repeat right center;
	padding: 5px 20px 5px 5px;
	border-top: 1px solid #ccc; /* IE6 Bug */
	border-bottom: 0;
	}
	
ul#nav li.nomenu a {
	background-image: none;
	}
	
ul#nav li.nomenu a:hover {
	background-color: #fff;
}

/* Styles for Level 2 Menu Items */
ul#nav li ul {
	/*border: 1px solid #F9E5D0;*/
}

ul#nav li ul li a {
	color: #000;
	padding: .5em;
	background-color: #fff;
	background-image: none;
}

ul#nav li ul li a:hover {
	color: #fff;
	background: #004386;
}
	
/* Styles for Level 3 Menu Items */
ul#nav li ul li ul {
	border: 0;
	background: #fff;
	position: static;
}

ul#nav li ul li ul li {

}

ul#nav li ul li ul li a {
	padding: .25em;
	padding-left: 14px;
	background: url(../images/menusubbullet.gif) no-repeat 5px 7px;
}
	
/* Holly Hack. IE Requirement \*/
* html ul#nav li { float: left; height: 1%; }
* html ul#nav li a { height: 1%; }
/* End */

ul#nav li:hover ul, ul#nav li.over ul { display: block; } /* The magic */
