@charset "utf-8";
body  {
	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;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 8px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding: 0;
	background-color: #CCCCCC;
	background-image: url(images/backgroundgradient.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

p	{
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	line-height: 1.4em;
	color: #260D44;
}

td	{
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	line-height: 1.4em;
	color: #260D44;
}

h1	{
	font-family: "Times New Roman", Times, serif;
	font-size: 28px;
	font-weight: bold;
	text-transform: uppercase;
	color: #260D44;
	margin-bottom: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	padding-top: 6px;
}

h2	{
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	text-transform: uppercase;
	color: #260D44;
	margin-top: 0px;
}

h3	{
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	text-transform: uppercase;
	color: #260D44;
	margin-top: 0px;
}

h5 {
	font-family: "Times New Roman", Times, serif;
	font-size: 17px;
	color: #260D44;
	margin-top: 0px;
	font-weight: bold;
	font-style: italic;
	margin-bottom: 0px;
}



.twoColFixLtHdr #container {
	width: 780px; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #260D44;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(images/background.gif);
	background-repeat: repeat-y;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header {
	display: block;
	height: 144px;
	width: 780px;
} 

#navigation {
	height: 28px;
	width: 780px;
	background-color: #260D44;
	color: #FFFFFF;
	font-family: Georgia, "Times New Roman", Times, serif;
	padding-top: 2px;
	padding-right: 0px;
	padding-left: 1px;
	font-weight: normal;
	font-size: 16px;
	padding-bottom: 2px;
} 

#navigation a {
	color: #FFFFFF;
	margin-left: 65px;
	margin-right: 55px;
}

#navigation a:hover {
	color: #FFFF66;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 15px 0px 15px;
	background-color: #FBF3CC;
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #B9C375;
} 
.twoColFixLtHdr #footer {
	background-color: #260D44;
	background-image: url(images/bottomslice.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	display: block;
	height: 50px;
} 
.twoColFixLtHdr #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: 26px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	color: #FFFFFF;
}
.twoColFixLtHdr #footer a {
	color: #FFFFFF;
}
.twoColFixLtHdr #footer a:hover {
	color: #B9C375;
}

.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;
}
