/* remove the bullets, padding and margins from the lists */
#menu_bttm ul{
list-style-type:none;
padding:3px 0 0 0;
_padding:3px 0 0 0;
margin:0 0 0 18px;
_margin:0 0 0 8px;
}
#menu_bttm ul.ie_margin { /* ie 7 breaks to 2 lines with standard setting */
	margin:0 0 0 25px;
	}
/* make the top level links horizontal and position relative so that we can position the sub level */
#menu_bttm li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
#menu_bttm table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
#menu_bttm a, #menu_bttm :visited {
	display:block;
	padding:7px 0;
	color: #8b5036;
	background: #FFF;
	text-decoration:none;
	text-align:left;
	font-family: "Times New Roman", Georgia, Times,serif;
	font-weight: bold;
	font-size: 1.1em;
	}
#menu_bttm a.wide, #menu_bttm :visited.wide {
	display:block;
	width: 110px;
	border-top: 1px #fff solid;
	border-right: 1px #fff solid;
	border-left: 1px #fff solid;
	background: #cfb67d;
	color: #fff;
	font-size: .9em;
	line-height: 12px
	}
#menu_bttm :hover.wide {
	border-top: 1px #cfb67d solid;
	border-right: 1px #cfb67d solid;
	border-left: 1px #cfb67d solid;
	background: #fff;
	color: #cfb67d;
	}
#menu_bttm a.last, #menu_bttm :visited.last {
	border-bottom: 1px #fff solid;
	}
#menu_bttm :hover.last {
	border-bottom: 1px #cfb67d solid;
	}
/* style the links hover */
#menu_bttm :hover {
color:#1b3664;
background: transparent;
}
#menu_bttm :hover.wide {
	background: #fff;
	}
/* hide the sub level links */
#menu_bttm ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}

/* make the sub level visible on hover list or link */
#menu_bttm ul li:hover ul, #menu_bttm ul a:hover ul{
visibility:visible;
margin:0;
}