@charset "utf-8";
/* CSS Document */

ul#nav {
	margin: 0;
	padding: 0 0 10px 0;
	list-style: none;
/*	width: 150px;  Width of Menu Items */
	font-size: 12px;
	background-image: url(../images/nav-bg.jpg);
	background-repeat:repeat-x;
	font-family: Verdana, Geneva, sans-serif;
	}

ul#nav li {
	position: relative;
	}
	
ul#nav li ul {
	position: absolute;
	left: 170px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	list-style-type: none;
	width: 150px;
	padding: 0 0 0 2px;
		background-image: url(../images/nav-bg.jpg);
	background-repeat:repeat-x;
	z-index: 2;
	}

/* Styles for Menu Items */
ul#nav li ul li
{
	padding: 0 0px 0 5px;
	line-height: 19px;
	display:block;
}


ul#nav li a {
	display: block;
	text-decoration: none;
	color: #ffffff;
	background-color: none; /* IE6 Bug */
	padding: 5px 0 5px 5px;
	text-align:left;
	font-weight: bold;
	}

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

ul#nav li a:hover { color: #ffffff; background-color: #586e86; text-decoration:underline;} /* Hover Styles */
		
ul#nav li ul li a { padding: 2px 5px;  } /* Sub Menu Styles */
		
ul#nav li:hover ul, ul#nav li.over ul { display: block;} /* The magic */

ul#nav li ul li a:hover
{
	background-color: #586e86; color: #ffffff;
}
