#subnavigation {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 10px;
}

ul#subnav {
	margin: 0; padding: 0;
	float: left;
	width: 100%;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 100%;
}

ul#subnav li {
	float: left;
	margin: 0; padding: 0;
	border-right: 1px solid #999; /*--Divider for each parent level links--*/
}
ul#subnav li a {
	padding: 5px 10px;
	display: block;
	text-decoration: none;
}
ul#subnav li:hover { background: #A3A9C6; }
/*--Notice the hover color is on the list item itself, not on the link. This is so it can stay highlighted even when hovering over the subnav --*/

ul#subnav li span {
	float: left;
	padding: 6px 0;
	position: absolute;
	left: 0; top:25px;
	display: none; /*--Hide by default--*/
	width: 100%;
	background: #A3A9C6;
	color: #fff;
		/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}

ul#subnav li:hover span { display: block; } /*--Show subnav on hover--*/
ul#subnav li span a { display: inline-block; color: #000; font-size: 75%; padding: 5px 8px; border-right: solid 1px #000;} /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/
ul#subnav li span a:hover { color: #fff; }
ul#subnav li span a.selectedhover { background-color: #A3A9C6; }
ul#subnav .last { border-right: none; /*--Divider for each parent level links--*/ }
ul#subnav li span a.last { border-right: none} 
.here a:hover { color: #fff; }
