@charset "utf-8";
/* CSS Document */
<!--
body { /* this is the entire page */
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	background-image:url(images/bgrepeater.jpg);
	background-repeat:repeat-x;
	background-color: #E9F7FA;
}
#container { /* this is the holder for the page content */
	width: 800px;
	
	 /* pad the content a little */
	margin: 0px auto; /* this centers the container */

}
#header { /* this affects the whole header */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
}
#header h1 { /* this only affects any h1 tags within the header */
	margin: 0; /* remove extra margin from h1 */
	padding: 0; /* remove extra padding from h1 */
	border-bottom: 1px dotted #ffcc66; /* bottom border of header */
	font-weight: normal; /* remove bold from h1 tag */
	text-align: center; /* center the text */
}

#formMiddle{
	background-image: url(images/form_repeater.jpg);
	padding-left: 25px;
	padding-right: 25px;
}


#footer {
	font-size: 70%; /* make the text smaller than body */
	color: #999999; /* set the text color to gray */
	text-align: right; /* right justify the text */
	padding-left: 25px;
	padding-right: 25px;
}
#footer a {
	text-decoration: none;
	border-bottom: 1px dotted #999; /* shorthand for #999999 */
	color: #999;
}
#footer a:hover { border-bottom-style: solid; }

<style type="text/css" media="print">
<!--
	footer { display: none; }
-->

a.link1:link {
  font-family: Arial, Helvetica, sans-serif;
  color: #0F5976;
  text-decoration:underline;
  font-size:12px;
  font-weight:bold;
}
a.link1:visited {
  font-family: Arial, Helvetica, sans-serif;
  color: #0F5976;
  text-decoration: none;
  font-size:12px;
  font-weight:bold;
}
a.link1:active {
  font-family: Arial, Helvetica, sans-serif;
  color: #0F5976;
  text-decoration: none;
  font-size:12px;
  font-weight:bold;
}
a.link1:hover {
  font-family: Arial, Helvetica, sans-serif;
  color: #0F5976;
  text-decoration: none;
  font-size:12px;
  font-weight:bold;
}


