.hlist {
	background-color: transparent;
	z-index: 800;
	position: absolute;
}

.hlist ul {
	z-index: 100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.hlist ul li {
	position: relative;
	display: inline;
	float: left;
	margin: 0px 10px 0px 2px;
}

.hlist ul li a {
	display: block;
	/* border: 1px solid red; */
	background: transparent;
	padding: 6px 14px 0px 14px;
	margin-bottom: 6px;
	color: #1a4e73;
	text-decoration: none;
}

* html .hlist ul li a {
	/*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}

.hlist ul li a:link,
.hlist ul li a:visited {
	color: #1a4e73;
}

.hlist ul li a.selected {
	color: #1a4e73;
}

.hlist ul li a:hover {
	color: #1a4e73;
}

/*1st sub level menu*/
.hlist ul li ul {
	position: absolute; 
	left: 0;
	top: 10px;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;;
	left: 0;
	top: 10px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.hlist ul li ul li {
	display: list-item;
	float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.hlist ul li ul li ul {
	top: 0;
}

/* Sub level menu links style */
.hlist ul li ul li a {
	background-color: #e7eff4;
	font: normal 12px Arial;
	width: 185px; /*width of sub menus*/
	padding: 7px 14px 7px 14px;
	margin: 0;
	border-top: 1px solid #fff;
	border-right: none;
}

.hlist ul li ul li a:link,
.hlist ul li ul li a:visited {
	color: #1a4e73;
}

.hlist ul li ul li a:hover {
	background-color: #80aac2;
	color: #fff;
	font-weight: bold;
}

/* Holly Hack for IE \*/
* html .hlist {
	height: 1%;
}  /*Holly Hack for IE7 and below*/
	/* ######### CSS classes applied to down and right arrow images  ######### */
.downarrowclass {
	position: absolute;
	top: 12px;
	right: 7px;
}

.rightarrowclass {
	position: absolute;
	top: 6px;
	right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */
.ddshadow {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: silver;
}

.toplevelshadow { /*shadow opacity. Doesn't work in IE*/
	opacity: 0.8;
}

