/* hectr: horizontal menu */
#vdividermenu ul{
margin: 0;
margin-bottom: 1em;
padding-top: 0.2em;
padding-bottom:0.2em;
padding-left:0.2em;
float: left;
font-family:"Arial Narrow", Helvetica, sans-serif;
font-size:12px;
width: 99%;
border: 0px solid #ccc;
background-color: #56789A;
}

* html #vdividermenu ul{ /*IE only rule, reduce menu width*/
width: 100%; /* was 99*/
}

#vdividermenu ul li{
display: inline;
}

#vdividermenu ul li a{
float: left;
color: #fff;
padding: 2px 12px;
text-decoration: none;
background: transparent url(images/_menu/vertical.gif) center right no-repeat;
}

#vdividermenu ul li a:visited{
color: #fff;
}

#vdividermenu ul li a:hover{
color: #fff;
background-color: #336699;
}


/*menu*/
/*hectr, left menu*/
.suckerdiv ul{
margin: 0;
padding: 0;
margin-left:3px;
margin-right:3px;
list-style-type: none;
width: 130px; /* Width of Menu Items */
border-bottom: 0px solid #fff;
font-family:"Arial Narrow", Helvetica, sans-serif;
font-size:12px
}
	
.suckerdiv ul li{
position: relative;
}
	
/*1st level sub menu style */
.suckerdiv ul li ul{
left: 130px; /* Parent menu width - 1*/
position: absolute;
width: 130px; /*sub menu width*/
top: 0;
display: none;
}

/*All subsequent sub menu levels offset */
.suckerdiv ul li ul li ul{ 
left: 130px; /* Parent menu width - 1*/
}

/* menu links style */
.suckerdiv ul li a{
display: block;
color: black;
text-decoration: none;
background: #56789A;
padding: 3px 4px;
border: 1px solid #123456;/*was ccc*/
border-bottom: 1px solid #ccc;
}

.suckerdiv ul li a:visited{
color: black;
}

.suckerdiv ul li a:hover{
background-color: #336699;
}

.suckerdiv .subfolderstyle{
background: url(images/_menu/arrow-list.gif) no-repeat center right;
}
	
/* Holly Hack for IE \*/
* html .suckerdiv ul li { float: left; height: 1%; }
* html .suckerdiv ul li a { height: 1%; }
/* End */
