@charset "UTF-8";
body {
	background-image:url(../images/gradient2.jpg);
	margin: 0;
	padding: 0;
	color:#000;
	;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.4;
	background-color: #fff;
	background-repeat: repeat-x;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px;
	color: #000;
}
h1 {
	font-size: xx-large;
	color: #900;
}
ul {
	margin-left:50px;
	list-style:disc;
	font-size:11pt;
	padding-bottom:10px;
}

a:link {
	color: #00F;
	text-decoration: underline;
}
a:visited {
	color: #00F;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	font-weight: bold;
}

.container {
	width: 90%;
	max-width:900px;
	background: #FFF;
	margin: 0 auto;
	border:#900 solid 1px;/*-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	*/
}
.header {
	background-color: #FFF;
	border-bottom:#900 solid 1px;
	
}
#topnav {
	text-align:center;
	color: #FFF;
	background-color: #900;
}
#topnav ul { 
	padding-bottom: 0px;/*Remove default padding in the header ul */
	padding-top:2px; /*needed for top border to show */
	border:#900 solid 1px;
}
#topnav li {
	display: inline;
}
#topnav a {
	text-decoration:none;
	color:#fff;
	padding:2px;
}
#topnav a:hover {
	background-color:#fff;
	color:#900;
}

.content {
	padding: 10px 0;
}
.content p {
	font-size: 14px;
	padding-bottom: 10px;
	text-align: center;
	font-weight: bold;
	color: #000;
}
.content p.breadcrumbs {
	font-size: 8pt;
	padding-bottom: 4px;
}
.footer {
	padding: 10px 0;
	background: #900;
	font-size: 9pt;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000;
	text-align: center;
	color: #fff;
}
.footer p {
	margin-bottom:8px;
}
.footer a {
	color:#fff;
}
.footer a:hover {
	background-color:#fff;
	color:#900;
}
.fieldlabel {
	font-size: 10pt;
	color: #900;
	text-align: right;
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
