ul#topnav {
	margin: 0;
	padding: 0;
	float: left;
	width: 700px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 0.8em;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	top: -40px;
	right: -10px;
}
ul#topnav li {
	float: left;
	margin: 0;
	padding: 0; /*--Divider for each parent level links--*/
	border-right-style: none;
}
ul#topnav li a {
	padding: 10px 15px;
	display: block;
	text-decoration: none;
}
ul#topnav li a:link {
	color: #F60;
}

ul#topnav li a:visited {
	color: #F60;
}

ul#topnav li a:hover {
	color: #3399ff;
}
/*--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#topnav li span {
	float: left;
	position: absolute;
	left: 0;
	top:35px;
	display: none; /*--Hide by default--*/
	width: 720px;
	/*--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;
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
	font-style: oblique;
	background-repeat: repeat;
	background-image: url(../image2/transparent.gif);
}
ul#topnav li span a {
	display: inline;
} /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/

ul#topnav li span a:link {
	display: inline;
	color: #33ccff;
}

ul#topnav li span a:visited {
	display: inline;
	color: #33ccff;
}
ul#topnav li span a:hover {
	text-decoration: underline;
	color: #3399ff;
}
