#lv_nav {
	position: relative;
	height: 100px;
	padding: 0px; 
	margin: 0px;
	border: 0px solid black;
	width: 1000px;
}

#nav {
	position: absolute;
	top: 0;
	left: 43px;
	margin: 0;
	padding: 48px 20px 0 0px;
	border: 0px solid black;
}

#nav a {
	text-decoration: none;
}

#nav li {
	margin: 0;
	float: left;
	display: block;
	padding: 0;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: normal;	
}

#nav li.select {
	background: url("../img/hst_menu_bg_right.jpg") no-repeat right top;
}

#nav li.active {
	background: url("../img/hst_menu_bg_right_active.jpg") no-repeat right top;
}

#nav li a {
	color: #FFFFFF;
	font-size: 15px;
	font-weight: normal;
	display: block;
	height: 25px;
	border: 0px solid #FFFFFF;
	padding: 0px 10px 0px 10px;
	line-height: 20px;
}

#nav li.select a {
	background: url("../img/hst_menu_bg_left.jpg") no-repeat left top;
}

#nav li.active a {
	background: url("../img/hst_menu_bg_left_active.jpg") no-repeat left top;
}

#nav li ul {
	display: none;
}

#nav li.active ul, #nav li.select ul {
	margin: 0;
	padding: 0;
}

#nav li.select ul, #nav li.active ul { /*put the subnav below*/
	position: absolute;
	left: 20px;
	/*background: url("../img/hst_submenu_bg.jpg") repeat-x;*/
	padding: 0px;
	height: 22px;
}

#nav li.active ul a, #nav li.select ul a {
	float: left; /*ie doesn't inherit the float*/
	border: 0;
	color: #FFFFFF;
	width: auto;
	margin-right: 6px;
	background: none;
	height: 22px;
	font-weight: normal;
	font-size: 12px;
}

#nav li.select ul li, #nav li.active ul li {
	background: url("../img/hst_submenu_bg_right_active.jpg") no-repeat right top;
}

#nav li.select ul a:hover, #nav li.active ul a:hover {
	background: none;
}

#nav li.active ul {
	display: block;
}

/*#nav li.select:hover ul, #nav li.over ul { 
	display: block;
	z-index: 2;
}*/