/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav {
	margin: 0px;
	padding: 0px;
}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
	margin: 0px;
	padding: 0px;
}

/* Styles our links. Setting the display to block ensures our links will stack back on top of one another as block level elements. The width sets the "hit" area of the links.  */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	padding: 3px 0px 8px 12px;
	background-image: url(images/nav_bg.gif);
	background-repeat: no-repeat;
	width: 170px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: left;
	margin: 0px;
}
/* Creates our hover status and our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a:hover {
	background-image: url(images/nav_over.gif);
}
body {
	background-color: #FFFFFF;
	background-image: url(images/bg_side.gif);
	margin: 0px;
	padding: 0px;
}
