.menu {
	width:780px;
	height:32px;
	position:relative;
	z-index:100;
	font-family:arial, sans-serif;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul { display: none;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {float:left;position:relative;}
/* style the links for the top level */
.menu a, .menu a:visited {display:block;font-size:12px;text-decoration:none; color:#fff; width:138px; height:30px; background:#11A3C5; padding-left:10px; line-height:29px; font-weight:bold;}



/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul { position:absolute; height:0; top:30px; left:0; width:149px; border-top:3px solid #fff;}


/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {background:#258BF1; color:#fff; height:auto; line-height:1em; padding:5px 10px; width:149px;border-width:0 1px 1px 1px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#fff; background:#2E599C;}
.menu :hover > a, .menu ul ul :hover > a {color:#fff; background:#2E599C;}

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

