@charset "UTF-8";
/* CSS Document */


#menu {
	width: 254px;
	float: left;
	border-right: #976b36 .2em solid;
	text-align: left;
	height: auto;
	top:0px;
	margin-top: 0;
	padding-top: 0;
	height: 344px;
}

#menu a{
	color: #fff;
	font-family: 'AldusLTStdRomanRegular';
	text-transform: uppercase;
	font-size: 16px;
	text-decoration: none;
	display: block;
	width 180px;
	padding: 12px 0 13px 50px;	
	border-bottom: #976b36 .1em solid;
}

#menu ul {
	list-style: none;
}

#menu li {
	position: relative;
	margin-left: -40px;
}


#menu a:hover {
	background: url(../_img/bg_menuSelect.jpg) repeat-x #000 top;
	border-bottom: #976b36 .1em solid;
}

#menu li ul { /* second-level lists */
	list-style: none;
	display: none;
	position: absolute;
	left: 255px;
	top: 0;
	width: auto;
	z-index: 99;
	background-color: #333;
	border: #976b36 .1em solid;
}

#menu li ul a {
	padding: 5px 20px 5px 20px;
	text-transform:capitalize;
	font-size: 14px;
}
#menu li ul a:hover {
	background-color: #000000;	
}
#menu li ul li{
	margin: 0;
	width: 100%;
	
}


#menu li > #menu ul { /* to override top and left in browsers other than IE, which will 
					position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
	
}

#menu li:hover ul, #menu li.over ul { /* lists nested under hovered list items */
	display: block;
	width: 23em;
	padding-left: 0;
	margin-left: 0;
}

