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

/* style the links for the top level (i.e. Buttons)*/
.menu a, .menu a:visited {
	display: block;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	text-transform: uppercase; 
	color: #d8c0ad; 
	height: 22px; 
	width: 110px;
	background: #ac3e25 url(../images/menu_item_up.jpg) repeat-x; 
	line-height: 22px;
	font-weight: bold;
}

/* style the second level links (i.e. SubMenu) */
.menu ul ul a, .menu ul ul a:visited {
	background:#f1f1f1;
	font-size: 10px;
	color:#000000; 
	height:auto; 
	padding-top: 4px;
	padding-left: 10px;
	padding-right: 8px;
	padding-bottom: 5px;
	line-height: 1em;
	width:90px;
	border: 1px solid #5E5E5E;
	text-transform: uppercase; 
	filter:alpha(opacity=95);
	-moz-opacity:.95;
	opacity:.95;			
	
}

/* hide the sub levels */
.menu ul ul {
	visibility: hidden;	/* hidden ~ Change to visible to show menus while stylizing. Change back to hidden when finished.*/
	position: absolute;
	height: 0;
	top: 21px;
	left: 0; 
	margin-left:0px;

}

.menu {
/*	float: left;
*/	width: 800px; 
	height: 22px; 
	font-size: 11px; 
	position: relative; 
	z-index: 100;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {
	width: 800px; 
	w\idth: 673px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	width: 110px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	width: 110px;
	position:relative;
}


/* style button lynx */

.subMenu a, .subMenu a:visited {
	text-align: left;
	font-size: 10px;
	letter-spacing: normal;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width: 110px;
	 w\idth: 111px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background: #ffffff ;
}

/* style the second level hover */
.menu ul ul a.drop:hover{
	background: #ffffff;
}
.menu ul ul :hover > a.drop {
	background: #c9ba65;
}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background: #ffffff;
}

/* style the third level hover */
.menu ul ul ul a:hover {
	background: #b2ab9b;
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 30px;
	t\op: 31px;
}

/* position the third level flyout menu */
.menu ul ul ul{
	left: 110px; 
	top: -1px; 
	width: 110px;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-110px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position:absolute;
	top:0; 
	left:0; 
	border-collapse:collapse;;
}

/* style menu linx */

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
	width:110px;
	w\idth:100px;
}

/* style the top level hover ~ Moved to ffOver.css and sfOver.css
.menu :hover > a, .menu ul ul :hover > a {
	color:#ffffff;
	background: #ac3e25 url(../images/main_item_rollover.png);
} 

/* style the submenu hover
.subMenu :hover > a, .menu ul ul :hover > a {
	color:#ffffff;
	background:#666666;
} */

.subMenu li:first-child a , .subMenu li:first-child a:visited {
/*	border-top: #999999 1px solid;
	width: 90px;
*//*	padding-top: 5px;
*/}

/* a hack for IE6/7 requires js/offspring.js to function properly */
.subMenu li.first-child a , .subMenu li.first-child a:visited {
/*	border-top: #999999 1px solid;
	width: 90px;
*//*	padding-top: 5px;
*/}


.subMenu li:last-child {
/*	border-bottom: #999999 1px solid;
	width: 110px;
*/
}

.subMenu li:first-line {
	text-transform: lowercase;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible; 
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
	visibility: hidden;	/* hidden */
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
	visibility:visible;
}
