
/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	position:absolute;
	top:40px;
	left:0;
	width:200px;
	background-color: #f4f3e8;
	border:1px solid #c6c1b5;
	border-top: none !important;
	 display: none;
	 z-index: 9999;
	 padding: 3px 0;
}

.menulist li {
	float:left;
	position:relative;
	height: 41px;
	display: inline;
}

.menulist ul a, .menulist ul a:visited {
	color:#755E45;
	display:block;
	font-family:Georgia,"Times New Roman",Times,serif;
	font-weight:normal;
	padding-top:7px;
	padding-bottom: 7px;
	padding-right: 20px;
	width:162px;
	border: 1px solid #f4f3e8;
	font-size: 12px;
}

.menulist ul a:hover, .menulist ul a.highlighted {
	width:162px;
	background-color: #4a0806;
	border: 1px solid #b07b0e;
	color:#D5D0C2;
	font-style:italic;
	font-size: 12px;
	padding-top:7px;
	padding-right: 20px;
	background-image: url(../images/menu_arrow.gif);
	background-repeat: no-repeat;
	background-position: 98% 7px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	width: 194px;
	height: auto;
	background-color: #f4f3e8;
	padding:0 3px;
}

.menulist ul li.hr {
	height: 5px;
}

.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
	display:block;
	color:#e2d9cb;
	width:97px;
	padding-left:10px;
	font-style: normal;
	font-weight: normal;
	border-bottom: none;
}
.menulist a.fomenu:link, .menulist a.fomenu:visited {
	display:inline;
	color:#e2d9cb;
	font-style: normal;
	font-weight: normal;
	border-bottom: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;	
	padding-left: 0;
	
}

.menulist a.fomenu:hover, .highlighted a:link, .highlighted a:visited {
	color:#80684d !important;
	background:#f4f3e8;
	height: 41px !important;
	width: 97px !important;
	padding-left:10px;
	/*border-left:1px solid #770505;*/
	font-style: normal !important;
	padding-left: 0px;
}

.menulist a.fomenu:hover span {
	color:#80684d ;
	}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	left:200px;
	top:-4px;
	width:200px;
	border:1px solid #c6c1b5;
	padding: 3px 0;
}
.menulist ul ul.left {
	left:-200px;
}

.menulist ul ul li {
	width: 194px;
	height: auto;
	background-color: #f4f3e8;
	padding: 1px 3px;
}

.menulist ul ul li.hr {
	height:3px !important;
	padding: 0;
	}






.menulist .fm ul a.highlighted {
	padding-top:7px !important;
	width:180px !important;
	background-color: #4a0806 !important;
	border: 1px solid #b07b0e !important;
	color:#D5D0C2 !important;
	font-style:italic !important;
	font-size: 12px !important;
	padding-left:10px !important;
	padding-bottom: 7px !important;
	padding-right: 20px !important;
	background-image: url(../images/menu_arrow.gif) !important;
	background-repeat: no-repeat !important;
	background-position: 98% 7px !important;
	height:auto !important;
}

.menulist ul ul a, .menulist ul ul a:visited {
	width:162px;
	background-color: #4a0806;
	border: 1px solid #b07b0e;
	color:#D5D0C2;
	font-style:italic;
	font-size: 12px;

	padding-top:7px;
	padding-right: 20px;

}

.menulist ul ul a:hover {
	background-image: url(../images/menu_arrow.gif);
	background-repeat: no-repeat;
	background-position: 98% 7px;
}

.foul {
	top: 43px;
	left: 2px;
	position: relative;
	z-index: 0;
	background-color: #000000;
	filter:alpha(opacity=25);-moz-opacity:.25;opacity:.25;
}



.fm {
	width:107px;
	border-left:1px solid #770505;
	height: 27px;
	line-height: 1em;
	font-size: 12px;
	padding-top: 10px;
	text-align:center;
}
div.highlighted {
	color:#80684d ;
	background:#f4f3e8;
	height: 34px;
}


/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */