/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	visibility: hidden;
	position: absolute;
	top: 20px;
	left: -5px;
	width: 180px;
	z-index: 1;
	background-color: #f3eee0;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	top: 0px;
	left: 180px;
	
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
 
 Main Menu Back change background image here.
*/
.menulist li {
	float: left;
	position: relative;
	font-size: 13px;
	z-index: 1;
	display: block;
}




/* Items in submenus - override float/border/margin from above, restoring default vertical style 

Sub Menu items under the main menu bar
*/
.menulist ul li {
	float: none;
	display: block;
}
/*
.menulist ul>li:last-child {
 margin-bottom: 0px;
}
*/

/* Links inside the menu */
.menulist a {
	display: block;
	margin-right: 30px;
	color: #f1f6f8;
	text-decoration:none;
	line-height:40px;
}

.menulist .currentpage a {
	color:#0d161b;
}
.menulist ul li a {
	color:#7b7461;
	padding:3px 5px;;
	width:168px;
	font-size:11px;
}
.menulist ul li a:hover {
	background-image:none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
}
.menulist a:hover {
	text-decoration:none;
	color:#87b5cf;
}
.menulist a.highlighted {}
.menulist ul a.highlighted  {}

/*
 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;
}
.menulist ul a {
	float: none;
}
.menulist ul a:hover {}
.menulist ul a.highlighted {}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */
