/* HORIZONTAL FREESTYLE MENU LAYOUT */
/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul 
{
	padding: 0;
	margin: 0;
	border: 0;
	
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul 
{
	padding: 0;
	margin: 0;
	border: 0;
	
	visibility: hidden;
	position: absolute;
	/*top: 16px; *//* I'm using ems rather than px to allow people to zoom their font */
	left: 0;
	width: 175px;
	
	background-color: #130816; /* spaces between that are empty only in IE7/8 made dark */
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul 
{
	padding: 0;
	margin: 0;
	border: 0;
	
	top: 0;
	left: 175px;
}
/*.menulist ul ul ul 
{
	padding: 0;
	margin: 0;
	
	top: 0px;
	left: 175px;
}*/

/*
 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.
*/
.menulist li 
{
	padding: 0;
	margin: 0;
	border: 0;
	top: 0;
	
	float: left;
	position: relative; 
	
	padding-right: 25px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li 
{
	padding: 0;
	margin: 0;
	border: 0;
	
	top: 0px;
	width: 175px; /* Width of the menuitem box */
	float: none;
	
	background-color: #130816;
}
.menulist ul>li:last-child 
{
	/*margin-bottom: 1px;*/
}

/* Links inside the menu */
.menulist a 
{
	padding: 0;
	margin: 0;
	
	line-height: 25px;
	vertical-align: top;
	
 	display: block;
	
	text-decoration: none;	
	font-size:12px;
	font-variant:small-caps;
	
	color:#FFFFFF;
}
.menulist ul li a
{
	padding: 0;
	padding-left:6px;
	
	margin: 0;
	border: 0;
	border-bottom:1px solid #130816;	

	display:block;
	
	color:#FFFFFF;
	background-color: #3a3a3a;
	
	text-decoration: none;	
	font-size:12px;
	font-variant:small-caps;
	
	z-index:800;
}
.menulist ul li a:hover
{
	background-color: #21409a;
	color:#ffffff;
}

/* Only style submenu indicators within submenus. */
.menulist a .subind 
{
	padding: 0;
	margin: 0;
	border: 0;
	display: none;
}
.menulist ul a .subind 
{
	padding: 0;
	margin: 0;
	border: 0;
	display: block;
	float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a 
{
	padding: 0;
	margin: 0;
	border: 0;
	float: left;
}
.menulist ul a 
{
	padding: 0;
	margin: 0;
	border: 0;
	float: none;
}
/* \*/
.menulist a 
{
	padding: 0;
	margin: 0;
	border: 0;
	float: none;
	background-position:0px 10px;
}
/* */

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li 
{
	padding: 0;
	margin: 0;
	border: 0;
	float: left;
	
	height: 1%;
}
* html .menulist  ul a 
{
	padding: 0;
	margin: 0;
	border: 0;
	
	height: 1%;
}
/* End Hack */
