@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-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;
}
#container {
	width: 1003px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/background.png);
	background-repeat: no-repeat;
	background-position: left 30px;
	background-color: #F6B4F6;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#header {
	height: 170px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #BF15BF;
}
#header img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#navigation {
	padding-left: 80px;
}
#logo {
	text-align: center;
	padding-top: 30px;
}

#mainContent {
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 50px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	width: 575px;
	margin-top: 15px;
}
#mainContent p {
	line-height: 130%;
	font-size: 14px;
	color: #333;
}
#mainContent h2 {
	font-weight: normal;
	margin-top: 0px;
	padding-top: 0px;
}
#mainContent table {
	border: 1px solid #BF15BF;
}

#footer {
	background-color: #F6B4F6;
	margin-bottom: 20px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #BF15BF;
	margin-top: 40px;
}
#footer p {
	line-height: 120%;
	text-align: center;
	font-size: 12px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
#footer h5 {
	text-align: center;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-weight: normal;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.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 */
	float: left;
	margin-right: 8px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
