@charset "utf-8";
body  {
	font: Georgia, "Times New Roman", Times, serif;
	background: #993333;
	background-image: url(images/bodybg.jpg);
	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 */
}
#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image: url(images/bg.jpg);
	background-repeat:repeat-y;
	margin: 50px auto auto auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
} 
#header { 
	height: 200px;
} 	

#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 145px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: none;
	padding: 0px 0px 15px 0px;
	font-family:Georgia, "Times New Roman", Times, serif;
}	

#mainContent { 
	margin: 0 0 0 165px; /* 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 0 0;
	background: none;
	font-family:Georgia, "Times New Roman", Times, serif;
} 
#footer { 
	padding: 10px 20px 10px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#993333; 
	background-image: url(images/bodybg.jpg);

} 
#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 */
	text-align:center;
	font-family: "Myriad Pro", Calibri, Arial, "Century Gothic";
	font-size:18px;
	color: #FFF;
}
.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: auto 0px 0px 18px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin: auto 8px 0px auto;
}
.fltlft1 { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-left: 25px;
}
.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;
}
h1 {
	font-family: Calibri, "Myriad Pro", Arial, "Century Gothic";
	color:#330000;
	font-size:20px;
	text-align:left;
}

h2 {
	font-family: Calibri, "Myriad Pro", Arial, "Century Gothic";
	color:#330000;
	font-size:18px;
	text-align:center;
}

p {
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#330000;
	font-size:14px;
	text-align:justify;
}
p2 {
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#330000;
	text-align:center;
	font-size:14px;
	font-weight:bold;
	font-style:italic;
}
table {
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#330000;
	font-size:14px;
}

li {
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#330000;
	font-size:14px;
	list-style-position: outside;
	margin: auto auto auto -25px;
	text-align:justify;
	
}
}
.required {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #900;
}
.logo {
	text-align: left;
}
.descrip {
	text-align: left;
}
