@charset "utf-8";
/* CSS Document */



/* */
.menu {width:994px;}

/* 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:141px;
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;
text-align:center;
margin:auto;
font-size:11px;
font-weight:bold;
width:140px;
height:25px;
padding:0px;
line-height:26px;
color:#fff;
background:#b69a50 url(scroll_top.jpg);
text-decoration:none;
margin-right:1px;

}


/* top links text in b block */
.menu ul li b {
display:block; /*  Note the # will only be read by IE, */
width:141px; /*  Note the # will only be read by IE, */
height:13px; /* height of graphic bar */
left:20px;

}

.menu ul li ul li span {
padding-left:20px;
}
/* style the links hover */
/* for IE6 */
.menu a:hover{
border:0;
color:#6f463c;
text-decoration:none;
}
/* for IE7 and non-IE browsers */
.menu li:hover > a {
color:#6f463c;
text-decoration:none;

}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
top:25px; /* was 36px height of top graphic - title - where the dropdown starts under title */
}

.menuIE7 ul ul {
margin-left:-70px;
visibility:hidden;
position:absolute;
width:149px;
height:0;
margin-top:-10px; /* was 36px height of top graphic - title - where the dropdown starts under title */


}



/* 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:#FFF url(scroll_middle.jpg); height:24px; line-height:23px;}
.menu ul :hover ul a:hover {color:#000;}

