@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	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;
}

body a {
	color:#0099cc;
	text-decoration:none;
}
body a:visited {
	color:#009999;
	
}
body a:hover {
  background-color:#99ffff;
  color:#003366;
  text-decoration:none;
}
body a:active {
  background-color:#33ccff;
  color:#003366;
  text-decoration:none;
}
h1 {
	font-size:1.4em;
	color:#003366;
	text-align:center;
	padding: 0px;
	margin-bottom: 0px;
}
h2 {
	font-size:1.2em;
	color:#006699;
	text-align:center;
	padding: 0em;
	margin-top:0;
	line-height:120%;
}
h3 {
	font-size:1em;
	text-align:center;	
	color:#006699;
	padding-top: 0em;
}
h4 {
	font-size:1em;
	font-style:italic;
}
h5 {
	font-size:.7em;
	text-align:center;
	color:#003366;
	padding: 0px;
	margin:0px;
	text-align:right;
}
p {
	font-size:.8em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

em {
	font-style:italic;
		color:#993300;

}
strong {
	font-weight: bolder;
	color:#0099cc;
}

#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#center {
	text-align:center;
}