﻿/* HORIZONTAL FREESTYLE MENU LAYOUT */
#listMenuL1 {
	visibility: hidden;
	position: absolute;
	top: 111px;
	left: 297px;
	z-index: 100;
}

#listMenuL2 {
	visibility: hidden;
	position: absolute;
	top: 127px;
	left: 308px;
	z-index: 50;
}

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

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 7px;
	margin-top: 10px;
	left: -1px;
	width: 210px;
}

.menulist ul#news 
{
	width: 235px;
}


/* 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: left;
	display: block;
	position: relative;
	background: transparent;
	margin-right: -1px;
	height: 10px;
	font-size: 8pt;
	line-height: 8pt;
}
	
.menulist ul {
	border: 1px #D7D7D7 solid;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0;
	margin-bottom: 0px;
	background: #EBEBEB;
	border-bottom: 1px #FFFFFF solid;
	height: 15px;
}

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

.menulist ul li.lastChild {
	border-bottom: none;
}

/* Links inside the menu */
.menulist a {
	display: block;
	padding: 3px;
	color: #7093A0;
	text-decoration: none;
	font-weight: bold;
	font-size: 8pt;
	line-height: 8pt;
	padding-right: 8px;
}

.menulist a b {
	color: #EBEBEB;
}

.menulist ul li a b {
	color: #7093A0;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color: #666666;
}

.menulist a:hover b, .menulist a:focus b, .menulist a.highlighted:hover b {
	color: #666666;
}
.menulist a.highlighted, .menulist a.highlighted, .menulist a.highlighted b {
	color: #C10D16; /*#D30E18;*/
}

.menulist a.active, .menulist a:hover.active, .menulist a.active b, .menulist a:hover.active b {
	color: #C10D16;
	cursor: default;
	text-decoration: none;
}


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


/* 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.
*/
*:first-child+html .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */