.menuContainer{
width:800px;
margin-left:8px;
background: #daa442 /*url('../_media/menu_bg.jpg')*/;
}
.menu{
height:23px;padding:0;
border-left:0px solid #F8FDEA;
margin-left:200px;
}
/* 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:0px;
top:23px;
}

/* style all the links */
.menu a {
margin:0;
display:block;
font-size:12px;
width:100px;
height:23px;
line-height: 23px;
padding-top:0px;
border-right: 0px solid #F8FDEA;
text-decoration:none;
color:#000000;
text-align:center;
}
.menu a#extremeRight{
border-right: none;
}

.menu a:hover{
color:#000000;
background: #ebce99 /*url('../_media/menu_bg.jpg')*/;
text-decoration:none;
}

.procedures a {
width: 260px;
}
.store a {
width: 180px;
}





/* style the links hover */
.menu ul ul a {
margin-top: 0px;
background: #bbb47f;color:#000;
opacity:.85;filter: alpha(opacity=85); -moz-opacity: 0.85;
}
.menu ul ul a:hover{
color:#000000;
background: #ebce99;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}

