/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist  ul,.menulist  {
background-image:none;
	padding-top: 0px;
	
}

.menulist ul li a:hover
{
	width:157px;
}
.menulist ul li
{
	height:21px;
	padding:0px;
	border-top:0px solid #ffffff;
	width:180px;

	
}
.menulist ul li a
{
	height:15px;
	padding: 3px;
	padding-left: 20px;
		background-image: url(white_border.gif);
	background-repeat: repeat-x;

	width:157px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 10px; /* I'm using ems and px to allow people to zoom their font */
 left: 0px;
 width:200px;

}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: -1px; margin-top: 0;
 left: 148px;
}

/*
 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 {
	/*float: right;
	display: block;
	*/position: relative;
	
	/*
	background: #d1c7a8;
	border: 0px solid #330;
	margin-right: 0px;
	width: 101px;
	margin-left: 5px;
	padding-left: 0px;
	text-align: center;	*/
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {

}
.menulist ul>li:last-child {
 margin-bottom: 0px; /* Mozilla fix */
 
}

/* 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;
 
}



/* */


