@charset "UTF-8";
body {
	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: #2E418E;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000000;
	margin-top: 20;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
#container {
	width: 907px;
	text-align: justify; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(images/bg2.jpg);
}
#header {
	padding-top: 0;
	padding-bottom: 0;
}
h1, h2  {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 18px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
#mainContent {
	padding-top: 0;
	padding-right: 50px;
	padding-bottom: 0;
	padding-left: 50px;
}
#footer {
	padding: 0;
	background-color: #000000;
}
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-size: 14px;
}
.fltlft {
	float: left;
	padding-right: 10px;
}
.fltrt {
	float: right;
	padding-left: 14px;
}
.italpink {
	font-style: italic;
	color: #CC0077;
}
.center {
	text-align: center;
}
#copyright p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #5577FE;
}
#copyright  a:link {
	color: #5577FE;
	text-decoration: none;
}
#copyright a:visited {
	color: #5577FE;
	text-decoration: none;
}

