/* All <ul> tags in the menu including the first level */
.menulistV, .menulistV ul {
	margin: 0;
	padding: 0;
	width: 200px;
	margin-left:5px;
	text-align:left;
	padding-left:10px;
	list-style: none;
	background-color:#1291CE;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulistV ul {
	visibility: hidden;
	position: absolute;	
	top: 0px;
	left: 203px; 
	background-color:#1291CE;
	width: 200px;
	padding-left:5px;
	text-decoration: none;
	list-style: none;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulistV li {
	position: relative;

	height:32px;
	list-style: none;
	padding-top:10px;
	padding-left:5px;
	background-color:#1291CE;
	border-bottom: 1px solid #ffffff;
}

.menulistV ul li:last-child {
	position: relative;

	height:32px;
	list-style: none;
	padding-top:10px;
	padding-left:5px;
	background-color:#1291CE;
	border-bottom: 1px solid #ffffff;
}

/* Links inside the menu */
.menulistV a {
	display: block;
	color: #FFFFFF;
	text-decoration:none;
	height: 20px;
		padding-left:5px;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulistV a:hover, .menulistV a.highlighted:hover, .menulistV a:focus {
	color: #FDB414;
	text-decoration: none;
	height:20px;
		padding-left:5px;
}

.menulistV a.highlighted {
	color: #FDB414;
	text-decoration: none;
	height:20px;
		padding-left:5px;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulistV a#xyz {
      background-image: url(out.gif);
    }
    .menulistV a#xyz:hover, .menulistV a.highlighted#xyz, .menulistV a:focus {
     background-image: url(over.gif);
    }
*/

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulistV a .subind {
	display:  none;
}
.menulistV ul a .subind {
 	display:  block;
 	float: left;
 	background-color:#3893B0;
		padding-left:5px;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulistV a {
	 float: left;
}
.menulistV ul a {
	 float: left;
}



/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulistV  ul li {
	 float: left;
}
* html .menulistV  ul a {
	 height: 1%;
}
/* End Hack */

.menulistV a .subind {
	float: left;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulistV li {
	float: left;


}
	 
* html .menulistV a {
	
}
/* End Hack */