/* All <ul> tags in the menu including the first level */
.menulisth, .menulisth  ul {
	width:580px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulisth ul {
	display: none;
	position: absolute;
	top: 19px;
	margin-top: 8px;
	left: -1px;
	width: 120px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulisth ul ul {
	top: -1px; margin-top: 0;
	left: 120px;
}



/*
 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.
*/
.menulisth li {
	float: left;
	display: block;
	position: relative;
	background: transparent;

}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulisth ul li {
	float: none;
	margin: 0;
	background: #8d8d8d;

/*	filter:alpha(opacity=75); -moz-opacity: 0.75; opacity: 0.75; 
*/
}

.menulisth ul>li:last-child {
}

/* Links inside the menu */
.menulisth a {
	display: block;
	padding: 7px;
	padding-left:5px;
	padding-right:3px;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	line-height:100%;
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulisth a:hover, .menulisth a.highlighted:hover, .menulisth a:focus {
	color: #fff;
	background: #5f5f5f;
}
.menulisth a.highlighted {
	color: #fff;
}

/*
 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. */
.menulisth a .subind {
 display: none;
}
.menulisth ul a .subind {
 display: block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulisth a {
 float: left;
}
.menulisth ul a {
 float: none;
}
/* \*/
.menulisth 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 .menulisth ul li {
 float: left;
 width: 100%;
}

* html .menulisth ul li {
 float: left;
 height: 1%;
}
* html .menulisth ul a {
 height: 1%;
}
/* End Hacks */