/*** MAIN MENU ****************************************/
.menu {
position:absolute;
bottom:0;
left:20px;
}
/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:32px;
}
/* style all the links */
.menu a, .menu :visited, .L_home_selected {
display:block;
font:17px Garamond, Georgia, serif;
width:160px;
padding:7px 0 7px 7px;
color:#FFCE31;
text-decoration:none;
/*margin-right:1px;*/
text-align:left;
border:0;
}
/* style the links hover */
.menu a:hover{
color:#fff;
/*background-color:#333931;*/
text-decoration:none;
border:0;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
display:block;
width:160px;
height:0;
}
.menu ul ul li a, .menu ul ul li a:visited {
background:#333931;
}
.menu ul ul li a:hover {
background:#FFCE31;
color:#444;
}
/* make the sub level visible on hover list or link */
.menu ul :hover ul{
visibility:visible;
}

.menu .selected a, .menu .selected a:visited {color:#fff;}
.menu .selected ul li a, .menu .selected ul li a:visited {color:#FFCE31;}
.menu .selected ul li a:hover {color:#444;}
.L_home_selected {color:#fff; width:50px;}
.L_patient_info a, .L_patient_info :visited {
width:160px;
background:url(images/nav_arrow_down.gif) no-repeat 145px 12px;
}
.L_aboutus a, .L_aboutus :visited {width:80px;}
.L_faq a, .L_faq :visited {width:50px;}
.L_contactus a, .L_contactus :visited {width:90px;}
