@charset "UTF-8";
body {
	font: 100% Georgia, "Times New Roman", Times, serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
p {
	font-size: 90%;
}
h1 {
	color: #825880;
	font-size: 120%;
}
h2 {
	color: #825880;
	text-align: center;
}
h3 {
	font-weight: bold;
	font-size: 90%;
}
h4 {
	font-size: 70%;
	font-weight: bold;
	}
h5 {
	font-size: 70%;
	font-weight: 400;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

a:link,  a:visited {
color: #265057;
word-spacing: none;
}


a:hover {
color: #825880;
text-decoration: underline;
}

#container {
	padding: 0;
	margin: 0 auto;
	width: 780px;
	text-align: left;
	min-height: 100%;
	border-right-width: 2px;
	border-left-width: 2px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #265057;
	border-left-color: #265057;
	background-color: #FFFFFF;
	background-repeat: repeat-y;
	background-position: left top;
	height: 100%;
}


#header {
	background: #DDDDDD;
	background-image: url(image/header.gif);  
	height: 100px;
}
#navbar {
	font-size: 9pt;
	text-align: center;
	padding-bottom: 8px;
	font-weight: bold;
	padding-top: 8px;
	color: #825880;
	word-spacing: normal;
	border-bottom: 2px solid #265057;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	background-image: url(image/nav.gif);
	border-top-width: 1px;
	border-top-color: #265057;
	border-top-style: solid;
}

#navbar a:link, #navbar a:visited {
color: #265057;
word-spacing: none;
}

#navbar a.current {
color: #825880;
}

#navbar a:hover {
color: #825880;
text-decoration: underline;
}

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#265057;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
}
.floatright {
	float: right;
	margin: 0 10px 10px 0px;
	padding: 10px;
}
.floatleft {
	float: left;
	margin: 0 10px 10px 0px;
	padding: 10px;
}
.formtext {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	background-position: right;
}

