.menulistV, .menulistV ul {
	margin: 0;
	padding: 0;
	width: 150px;
	text-decoration:none;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulistV ul {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 150px;
	padding-top: 3px;
	padding-left: 3px;
	padding-right: 2px;
	padding-bottom: 0px;
	font-size:12px;
	background-color:#C4DAF2;
	/*background-image: url(http://parcomagra.mktgstreet.com/MaoTemplates/parcomagra.mktgstreet.com/assets/img/back_right.jpg);*/
	text-decoration:none;
		border: 1px solid #ffffff;
}

/*
 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;
	margin-bottom: 3px;
	margin-left: -1px;
	padding-left: 5px;
	text-decoration:none;
}

.menulistV ul>li:last-child {
	margin-bottom: 0px;
		text-decoration:none;
}

/* Links inside the menu */
.menulistV a {
	display: block;
	padding: 3px;
	color: #003776;
	text-decoration:none;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulistV a:hover, .menulistV a.highlighted:hover, .menulistV a:focus {
	color: #2E81DF;
	text-decoration: none;
}

.menulistV a.highlighted {
	color: #2E81DF;
	text-decoration: none;
}

/*
 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 {
	float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulistV li {
	float: left;
	height: 1%;
}
* html .menulistV a {
	height: 1%;
}
/* End Hack */

