/* CSS Document */
.vmenu {width:110px; position:relative; z-index:98; margin: 40px 33px;}
/* hack to correct IE5.5 faulty box model */
* html .vmenu {width:111px; w\idth:110px;}
/* remove all the bullets, borders and padding from the default list styling */
.vmenu ul {padding:0;margin:0;list-style-type:none; width: 115px;}
.vmenu ul ul {width:auto;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.vmenu li {position:relative; margin: 10px 0;}
.vmenu li { * margin: 2px 0; * line-height: 10px; }

.vmenu li ul li { margin: 0; }
.vmenu li ul li a, .vmenu li ul li a:hover { display: block; text-indent: 0; }
/* style the links for the top level */
.vmenu a, .vmenu a:visited {display:block;font-size:11px; font-weight:bold; text-decoration: none; color:#003663; text-indent: -5px; overflow: hidden; }
.vmenu a span, .vmenu a:visited span { display: block; text-indent: 5px; color: #2C788C;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .vmenu a, * html .vmenu a:visited { }

/* hide the sub levels and give them a positon absolute so that they take up no room */
.vmenu ul ul {visibility:hidden;position:absolute;height:0;top:0;left:110px; width:auto; z-index:99}
* html .vmenu ul ul { left: 120px; }
/* another hack for IE5.5 */
* html .vmenu ul ul {top:30px;t\op:31px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.vmenu table {position:absolute; top:-30px; left:-10px; border-collapse:collapse; z-index:100;}

/* style the second level links */
.vmenu ul ul a, .vmenu ul ul a:visited {background:#2C7387; color:#fff; height:auto; line-height:normal; padding:5px 10px; width:95px;border-width:0 1px 1px 1px; font-weight:normal; display: block; text-indent: 0;}

/* yet another hack for IE5.5 */
* html .vmenu ul ul a, * html .vmenu ul ul a:visited {width:150px;w\idth:128px; }

/* style the top level hover */
.vmenu a:hover, .vmenu ul ul a:hover{color:#2C7387; display: block; text-indent: 0px;}
.vmenu :hover > a, .vmenu ul ul :hover > a {color:#2C7387; }

/* make the second level visible when hover on first level list OR link */
.vmenu ul li:hover ul,
.vmenu ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.vmenu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.vmenu ul :hover ul :hover ul{ visibility:visible;}

.vmenu ul li ul li a:hover {
	background: #003663; color: #fff;
}
