/* VERTICAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist
{
	margin: 0;
	padding: 0;
	width: 215px;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul
{
	background: url(img/box_small/FOOT.gif) no-repeat bottom;

	margin: 0;
	padding: 0;
	width: 224px;
	list-style: none;

	visibility: hidden;
	position: absolute;
	top: 0;
	left: 220px;
}

.menulist ul ul
{
	margin: 0;
	padding: 0;
	width: 224px;
	list-style: none;

	visibility: hidden;
	position: absolute;
	top: 0;
	left: 215px;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist li
{
	position: relative;
/*
	border: 1px solid #330;
	background: #FED;
*/
	margin-bottom: -1px;
}

.menulist ul li
{
	position: relative;
/*
	background-color: White;
	border: 1px solid #330;
	background: #FED;
*/
	margin-bottom: -1px;
}

.menulist .first
{
	border-top: 1px solid #330;
}

.menulist ul>li:last-child
{
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a, .menulist a:visited
{
 display: block;
 padding: 3px;

	font-size: 12px;
	font-weight: bold;
	font-style: italic;
	vertical-align: top;
	text-decoration: none;
	color: Black;
	text-indent: 0px;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus
{
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	font-style: italic;
	vertical-align: top;
	text-decoration: underline;
	color: Black;
	text-indent: 0px;

/* color: #FFF;*/
/* background-color: #A64;*/

}
.menulist a.highlighted
{
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	font-style: italic;
	vertical-align: top;
	text-decoration: none;
	color: Black;
	text-indent: 0px;

/*	color: #FFF;
	background-color: #C86;
*/
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hack */
