﻿/* For this demo only */
.menu {background:BLACK; height:55px; width:950px; height:55px;  margin:0 auto 30px auto; padding:10px 15px 20px 15px; }

/* 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;
width:140px;
z-index:100;
margin-right:1px;
}

/* use the table to position the dropdown list in IE */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
margin:-1px;
left:0;
top:0;
}

/* style all the top level links */
.menu a, .menu :visited {
display:block;
font-size:11px;
font-weight:bold;
width:140px;
height:35px;
padding:0;
line-height:18px;
color:#fff;
background:#000 url(../images/scroll_top.gif);
text-decoration:none;
margin-right:1px;
text-align:center;
}
/* place the bottom scroll image below the top scroll image */
.menu ul li b {
display:block;
width:140px;
height:20px;
background:#000 url(../images/scroll_bottom.gif);
}
/* style the links hover */
/* for IE6 */
.menu a:hover{
border:0;
color:#000;
}
/* for IE7 and non-IE browsers */
.menu li:hover > a {
color:#000;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
top:36px;
}
/* make the sub level visible on hover list or link */
.menu ul :hover ul{
visibility:visible;
height:auto;
}
/* place the bottom scroll image beneath the drop down list */
.menu ul :hover ul a {background:#000 url(../images/scroll_middle.gif); height:24px; line-height:23px;}
.menu ul :hover ul a:hover {color:#000;}

