.nav {
	float:right;
	width:414px;
	margin:30px 0 0 0;
	clear:right;
	z-index:500;
}

ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

ul.nav li { /* all list items */
	float: left;
	position: relative;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#FFFFFF;
}

ul.nav li.topmenu { /* Styles for the top level of the menu */
	display:block;
	text-align:center;
	width:103px;
	margin:0;
	font-size:19px;
}

ul.nav li.topmenu a {
	display:block;
	text-decoration:none;
	color:#FFFFFF;
}

ul.nav li.topmenu a:hover {
	text-decoration:underline;
}


li ul { /* second-level lists */
	display:none;
	font-size:15px;
	position: absolute;
	text-align:center;
	width:103px;
	top: 1em;
	left: 0;
	padding:5px;
	background:#2CBCE9;
	border:1px solid #079edf;
	z-index:50;
}

li ul a {
	display:block;
	text-decoration:none;
	line-height:1.2em;
}

li ul a:hover {
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

#content {
	clear: left;
}