ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	border-bottom: 0px;
}

li { /* all list items */
	float: left;
	position: relative;
	/* width: 10em; */
}

li ul { /* second-level lists */
	width:207;
	position: absolute;
	/* left: 117px;  Set 1px less than menu width */
	top: 17;
	display: none;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}


/* ************** */
/*    NEW STUFF   */
/* ************** */

ul.sub {
	background:#71728C;
	margin: 0;
	padding: 5px;
	list-style: none;
	border:  1px solid #46475A;
}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #000;
	background: #6B7686;
	padding: 0px;
	border: 0px;
}

ul li a.sub {
	display: block;
	padding: 2px 0px 2px 7px;
	font-size:10px; 
	font-family:arial,helvetica; 
	font-weight:normal;
	text-decoration: none;
	color: #000000;
	background: #BFBFCB;
	border-top: 1px solid #DBDBE2;
	border-bottom: 1px solid #374456;
	width: 195px; /* Width of Menu Items */
}

ul li.sub {
	border-left: 3px solid #121217;
	border-right: 1px solid #46475A;
}

ul li.sub2 {
	border-left: 3px solid #121217;
	border-right: 1px solid #46475A;
	border-top: 3px solid #121217;
}

ul li.sub3 {
	border-left: 3px solid #121217;
	border-right: 1px solid #46475A;
	border-bottom: 2px solid #46475A;
}

/* Hover Styles */
ul li a:hover { 
	color: #000000;
	background: #FFFFFF;
} 

/* Sub Menu Styles */		
li ul li a { 
	padding: 2px 5px;
}