@charset "utf-8";
/* CSS Document */

/* NAVIGATION */

.menu {width:100%; position:relative; z-index:100;border: none; font-family:arial, sans-serif;}
/* hack to correct IE5.5 faulty box model */
* html .menu {width:100%; w\idth:100%;}
/* 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 {width: 100%; }
/* float the list to make it horizontal and a relative position so that you can control the dropdown menu positon */
.menu li {float: none;width:auto;position:relative; }
/* style the links for the top level */
.menu a, .menu a:visited {display:block;font-size:17px;text-decoration:none; color:#0054a4; width:100%; height:30px; padding-left:22px; line-height:22px; font-weight: normal;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:100%; w\idth:100%;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0;top:0px;left:105px; width:175px;}
/* another hack for IE5.5 */
* html .menu ul ul {top:30px;t\op:31px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;}

/* style the drop down links */
.menu ul ul a, .menu ul ul a:visited {font-size:14px;color:#0054a4; height:auto; line-height:22px; padding-left:5px; width:175px;background: #bad6f0; position: relative; left: 55px;}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:100%;w\idth:100%;}

/* style the top level hover */

.menu ul li a:hover {color:#bf1d79;}
.menu ul ul li a:hover {background: #bf1d79; color:#FFF; }
/* 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; }
/* 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;}

#navWrapper {
width: 145px;
position: relative;
float: left;
margin-right:30px;
}

.menu ul li.activated a {
color:#FFF; background: #bf1d79;
}