
/* All <ul> tags in the menu including the first level */
.menulist_v, .menulist_v  ul {
 margin: 0;
 padding: 0px;
 list-style: none;
font-family:  Tahoma, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #133C54;
font-weight: bold;
text-decoration:none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist_v ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 10px; /* I'm using ems and px to allow people to zoom their font */
 left: -1px;
 width: 150px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist_v ul ul {
 top: 0px; 
 margin-top: 0;
 left: 148px;
}

.menulist_v li {
float: left;
display: block;
position: relative;
margin-right: 0px;
font-family:  Tahoma, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #133C54;;
font-weight: bold;
padding-left:0px;
padding-right:0px;
text-decoration:none;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist_v ul li {
 background-color:#133C54;
 float: none;
 margin: 0;
 margin-bottom: 0px;
}

.menulist_v ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist_v a {
 display: block;
 padding: 3px;
 color: #ffffff;
 text-decoration: none;
 background-color:;
 line-height:11px;
 
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist_v a:hover {
 color: #ffffff;
 padding: 3px;
 background-color:#21506B;
}
.menulist_v a.highlighted:hover{
 color: #57798D;
 line-height:11px;
 padding-left:3px;
}
.menulist_v a:focus {
 color: #21506B;
 background-color:#57798D;
}
.menulist_v a.highlighted {
 color: #21506B;
 line-height:11px;
 
}


/* Only style submenu indicators within submenus. */
.menulist_v a .subind {
 display: none;
}
.menulist_v ul a .subind {
 display: block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist_v a {
 float: left;
}
.menulist_v ul a {
 float: none;
}
/* \*/
.menulist_v a {
 float: none;
}

*:first-child+html .menulist_v ul li {
 float: left;
 width: 100%;
}

* html .menulist_v ul li {
 float: left;
 height: 1%;
}
* html .menulist_v ul a {
 height: 1%;
}
/* End Hacks */