@charset "UTF-8";
/* CSS Document */

body  {
	margin: 0px; /* 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: #666;
	background-attachment: fixed;
	background-repeat: repeat-x;
	background-position: top;
	background-color: #595959;
	background-image: url(../images/bckgrndRep.jpg);
}
#container  {
	width: 960px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
	padding: 0px;
	background-image: url(../images/topBckgrnd.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	border: 1px solid #323232;
} 
#header {
	width: 960px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0px;
	background-image: url(../images/topBckgrnd.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin: auto;
	float: left;
	height: 243px;
}
#header h1  {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1  {
	float: right; /* since this element is floated, a width must be given */
	width: 300px;
	padding-left: 20px;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 15px;
}
#mainContent  {
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 0;
	padding-right: 25px;
	padding-bottom: 0;
	padding-left: 30px;
	width: 530px;
	padding-top: 0px;
} 
#footer  {
	background-image: url(../images/bttmBckgrnd.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	text-align: center;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-top: 11px;
} 
#footer a, a:visited {
	color: #333;
}
.largeWhite {
	color: #FFF;
	font-size: .9em;
}
.smallGrey {
	font-size: 0.8em;
	color: #333;
}
.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;
}
.required {
	color: #F00;
}.squareList {
	list-style-position: outside;
	list-style-type: square;
	line-height: 1.5em;
	list-style-image: url(../images/bulletpoint.gif);
	left: -10px;
	position: relative;
	top: 0px;
}
.messagefield {
	width: 100%;
}
.textfield {
	width: 100%;
	height: 20px;
}
.spamfield {
	height: 20px;
}
h3 {
	font-size: 1.3em;
}
h4 {
	font-size: 1.1em;
}
.smallblack {
	font-style: italic;
	font-size: .9em;
}
