	/*Horizontale Navigation*/
	
.horizontal ul{
	border: none;
	list-style-type: none;
	margin:0;
	padding: 0;
}
.horizontal ul li{
	float: left;
	position: relative;
	white-space: nowrap;
}

.horizontal ul li a{
	display: block;
	text-decoration: none;
	font-weight:bold;
	font-style: italic;
    font-family: georgia;
	letter-spacing: .1em;
    overflow: hidden;
	text-align: center;
	padding: 0px 15px 0px;
	border-left:1px solid black;
	border-right:1px solid black;
	margin:0 0 0 -1px;
	color: #055;
}
.horizontal ul li a:hover {
	background:#fff;
}
.horizontal ul li li a:hover {
	color: #088;
}
.horizontal ul li ul{
	position: absolute;
	top: 19px;
    left:-1px;
	z-index: 899;
	width: 121px;
	margin-top: -1px;
	padding: 0 0 2px;
	border:1px solid black;
    background:white;
}
.horizontal ul ul li  {
	background-color: white;
	border:none;
	margin:0;
    padding:0;
    line-height:1.2;
	float: none;
}
* html .horizontal ul ul li  {
	padding: 2px 0;
}

.horizontal ul ul li a{
	color:black;
    font-family: Verdana, Geneva, Arial, Helvetica;
    font-weight:normal;
	font-style: normal;
	letter-spacing: 0;
	white-space: normal;
	border:none;
	margin:0;
	padding: 3px 0;
}
* html .horizontal ul ul li a{
	padding: 0;
}
* html .horizontal ul ul ul li a{
	padding: 0;
}


.horizontal ul ul ul{
	z-index: 999;
	width: 120px;
	top: -1px;
	left: 120px;
	margin-top: 0px;
	font-size:90%;
	background:white;
}
* html .horizontal ul ul ul{
    left:55px;
}
div.horizontal ul li.pixelfix ul{
	left: 0px;
}
div.horizontal ul li.pixelfix ul ul{
	left: 128px;
}
	/*here we use a little CSS to make a basic/backup dropdown menu in modern browsers *cough* not IE6 or less *cough* if javascript is disabled.Flickering never happens in these browsers*/
.mlmenu li ul{
	display: none;
}
.mlmenu li:hover>ul{
	display: block;
}
		/*This section makes the menu not work in non-javascript enabled browsers by not showing the menu by default-This can be worked around by making top level links point to a sitemap*/
.accessible li ul{
	display: block;
}
