@charset "utf-8";
img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#container {
	width: 900px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000; /* this overrides the text-align: center on the body element. */
}
#header {
	background-color: #324A8A;
	width: 900px;
	height: 200px;
}
#header td {
	height: 30px;
	margin: 0px;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #FFF;
}
#header td h5 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	margin: 0px;
}

#header a {
	color: #FFF;
	text-decoration: none;
	line-height: 0px;
}
#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;
}
#mainContent td p {
	text-align: justify;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#mainContent h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 140%;
	font-weight: bold;
	line-height: 100%;
}
#mainContent h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 120%;
	font-weight: bold;
}
#mainContent h6 {
	margin-left: 20px;
}

#mainContent p {
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: justify;
}
#sidebar1 h3,
{
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
#footer {
	padding: 0 10px;
	background-color: #324A8A;
} 
#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 */
}
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: #000;
	background-color: #FFF;
}
/* Miscellaneous classes for reuse */
.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;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
