#menu {
	height: 260px;
;	margin-bottom: 30px;
	border-bottom: 4px solid #EBEBEB;
}
 
ul#nav,
ul#nav ul {
	margin: 0;
	padding: 0;
	width: 240px; /* Width of Menu Items */
	list-style: none;
	line-height: normal;
	}
 
ul#nav li {
	position: relative;
	list-style: none;
	}
 
ul#nav li a {
	display: block;
	padding: 10px 0 10px 24px;
	border-top: 1px solid #EBEBEB;
	color: #E08934;
	}

ul#nav a:hover, ul#nav a.active {
	background: #EBEEF3;
	text-decoration: none;
	font-weight: bold;
	color: #385B88;
}
	
 
/* Fix IE. Hide from IE Mac \*/
* html ul#nav li { float: left; height: 1%; }
* html ul#nav li a { height: 1%; }
/* End */
 
ul#nav ul {
	position: absolute;
	display: none;
	left: 239px; /* Set 1px less than menu width */
	top: 0;
	}

ul#nav li ul {
	background-color: #fff;
	} 

/* Sub Menu Styles */
ul#nav li ul li a {
	line-height: 1.30em;
	}
 
ul#nav li:hover ul ul,
ul#nav li:hover ul ul ul,
ul#nav li.over ul ul,
ul#nav li.over ul ul ul { display: none; } /* Hide sub-menus initially */
 
ul#nav li:hover ul,
ul#nav li li:hover ul,
ul#nav li li li:hover ul,
ul#nav li.over ul,
ul#nav li li.over ul,
ul#nav li li li.over ul { display: block; } /* The magic */
 
ul#nav li.menuparent { background: transparent url(../images/arrow.gif) right center no-repeat; }
 
ul#nav li.menuparent:hover,
ul#nav li.over { 
	background-color: #EBEEF3; 
}
 
 
ul#nav li a:hover { 
	background: #EBEEF3;
	text-decoration: none;
	font-weight: bold;
	color: #385B88;	
}
 
