/* CSS Document */

ul#nav {
	list-style:none;
	padding: 0;
	margin: 0;
	background-color: #CCCCCC;
}

ul#nav li a {
display: block;
} /* the links inside our first items */
  /* the structure of our head-menu */
li {
	float: left;
	position: relative;
	width: 150px;
	background-color: #333DB8;
	text-align: center;
	padding-top: 0px;
	padding-right: 2px;
	padding-left: 2px;
	border: 1px solid #353535;
	padding-bottom: 0px;
	color: #FFFFFF;
} /* the structure of the first items */

li ul {
display: none;
position: absolute;
width:150px;
top: 0;
left: 0;
margin-left:-1px;
}

li>ul {
top: auto;
left: auto;
}

li:hover ul, li.over ul {
	display: block;
	text-decoration: none;
	list-style-type: none;
}
a:link {
	color: #FFFFFF;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #999999;
	text-decoration: none;
}


body {   behavior:url(csshover.htc); }

ul#nav li.current{
	width: auto;
}

