@charset "utf-8";
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	float: none;
	height: auto;
}
ul.nav li {
	display: inline;
	width: 100%;
	/* [disabled]text-align: left; */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	float: left;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	color: #FFFFFF;
	padding-top: 3px;
	padding-right: 8px;
	padding-bottom: 3px;
	padding-left: 8px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: x-small;
	/* [disabled]text-align: center; */
	font-weight: bold;
}
ul.nav a:hover, ulnav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #4A8ED9;
}
