/* CSS Document */
/*=================================================================== */
/* remove the bullets, padding and margins from the lists */
.navigationBlock {
	margin-left:20px;
	background:#0E9FC6;
}

.navigationBlock ul {
	list-style-type:none;
	padding:0;
	margin:0;
}

/* make the top level links horizontal and position relative so that we can position the sub level */
.navigationBlock li {
	float:left;
	position:relative;
	z-index:100;
}

/* use the table to position the dropdown list */
.navigationBlock table {
	position:absolute;
	border-collapse:collapse;
	z-index:80;
	left:-1px;
	top:25px;
}

/* style all the links */
.navigationBlock a, .navigationBlock :visited {
	display:block;
	width:140px;
	padding:7px 0;
	color:#FFFFFF;
	background:#0E9FC6;
	text-decoration:none;
	border-right:1px solid #FFFFFF;
	text-align:center;
}

/* style the links hover */
.navigationBlock :hover {
	color:#FFFFFF;
	background:#28B245;
}

/* hide the sub level links */
.navigation .navigationBlock ul ul {
	visibility:hidden;
	position:absolute;
	width:140px;
	height:0;
}

/* make the sub level visible on hover list or link */
.navigation .navigationBlock ul li:hover ul,
.navigation .navigationBlock ul a:hover ul {
	visibility:visible;
}
