/* Get rid of the margin, padding and bullets in the unordered lists */

#e_pmenu, .e_drop, #e_pmenu li ul li a, #e_pmenu li ul li a:visited {
	font-size: 10px;
	color:#666666;
}

#e_pmenu, #e_pmenu ul {
	padding:0; 
	margin:0; 
	list-style-type: none;
	color:#666666;
}

/* Set up the link size, color and borders */
#e_pmenu a, #e_pmenu a:visited {
	display:block;
	width:150px; 
	text-decoration:none;
	text-align: left;
	color:#666666;
	padding-left:19px;
}

/* Set up the sub level borders */
#e_pmenu li ul li a, #e_pmenu li ul li a:visited {
	color:#666666;
	margin-left:-20px;
}
#e_pmenu li a.enclose, #e_pmenu li a.enclose:visited {
	color:#666666;
	margin-left:-20px;
}

/* Set up the list items */
#e_pmenu li {
	float:left;
	color:#666666;
}

/* For Non-IE browsers and IE7 */
#e_pmenu li:hover {
	position:relative;
	color:#666666;
}

/* Make the hovered list color persist */
#e_pmenu li:hover > a {
	color:#666666;
}

/* Set up the sublevel lists with a position absolute for flyouts and overrun padding. The transparent gif is for IE to work */
#e_pmenu li ul {
	display:none;
}

/* For Non-IE and IE7 make the sublevels visible on list hover. This is all it needs */
#e_pmenu li:hover > ul {
	display: block; 
	position: absolute; 
	top: -11px; 
	left:80px; 
	padding:10px 5px 5px 5px; 
	width:150px;
	border: 1px solid #000000;
	background-color: #FFFFFF;
	color:#666666;
	margin-left:20px;
}

/* Position the first sub level beneath the top level liinks */

#e_pmenu > li:hover > ul {
	left:-5px; 
	top:-136px;
}

/* get rid of the table */
#e_pmenu table {
	position:absolute; 
	border-collapse:collapse; 
	top:0; 
	left:0; 
	z-index:100; 
	font-size:10px; 
	color:#666666;
}

/* For IE5.5 and IE6 give the hovered links a position relative and a change of background and foreground color. This is needed to trigger IE to show the sub levels */
* html #e_pmenu li a:hover {
	position:relative;
	color:#666666;
}

/* For accessibility of the top level menu when tabbing */
#e_pmenu li a:active, #e_pmenu li a:focus {

}


/* This lot is for IE5.5 and IE6 ONLY and is necessary to make the sublevels appear */
/* change the e_drop down levels from display:none; to visibility:hidden; */
* html #e_pmenu li ul {
	visibility:hidden; 
	display:block; 
	position:absolute; 
	top:-11px; 
	left:80px; 
	padding:10px 5px 5px 5px;
}

/* keep the third level+ hidden when you hover on first level link */
#e_pmenu li a:hover ul ul{
	visibility:hidden;
}
