@charset "utf-8";
/* CSS Document */
body  {
	font: 100% Georgia, Verdana, Arial, Helvetica, sans-serif;
	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: #A6CAF0;
}

a {
	color:#AA3F00;
	font-size:1em;
	font-family:verdana, arial, helvetica, sans-serif;
	font-weight:600;
	text-decoration:none;
	}

a:link {
	color:#AA3F00;
}
a:visited {color:#07a;}
a:hover {background-color:#eee;}
#container  {
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFF;
	width: 1000px;
	margin-right: auto;
	margin-bottom: 0em;
	margin-left: auto;
} 
#header  {
	padding-top: 0em;
	padding-right: 0em;
	padding-bottom: 0;
	padding-left: 0em;
	background-color: #FFF;
	color: #FAF9E4;
} 
#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 */
}
#headerNavL {
	padding-top: 0em;
	padding-right: 0em;
	padding-bottom: 0em;
	padding-left: 1.5em;
	background-color: #FFF;
	color: #1E100D;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 0.7em;
}
#headerNavL a {
	color: #A00;
}


#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 9.5em;
	padding-bottom: 0.5em;
	background-color: #FFF;
	font-family: "Comic Sans MS", "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;
	margin-left: .3em;
	margin-top: 2em;
}
#sidebar1 a {
	text-decoration: underline;
	font-family: "Comic Sans MS", "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight: bold;
	color: #A00;
}


#sidebar2  {
	float: right; /* since this element is floated, a width must be given */
	width: 114px; /* padding keeps the content of the div away from the edges */
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: #FFF;
}
#main {
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFF;
	width: 1000px;
	margin-top: 0em;
	margin-right: 0em;
	margin-bottom: 0;
	margin-left: 0em;
}

#mainContent  {
	background-color: #FFF;
	margin-top: 1.5em;
	margin-right: 7.5em;
	margin-bottom: 0;
	margin-left: 12em;
	padding-top: 0.5em;
	padding-bottom: 0em;
	font-family: "Comic Sans MS", Arial, Helvetica, sans-serif;
} 
#mainContent h1 {
	text-align: center;
	padding-bottom: 0em;
	font-family: "Comic Sans MS", "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.4em;
	font-weight: normal;
	line-height: 1.2;
	margin-left: 2em;
	margin-right: 2em;
	margin-top: 0.5em;
}

#mainContent h2 {
	text-align: center;
	padding-top: 1em;
	padding-bottom: 1em;
	font-family: "Comic Sans MS", Georgia, Verdana, arial, helvetica, sans-serif;
	font-size: 0.75em;
	font-weight: normal;
}
#mainContent h2 p {
	font-family: "Comic Sans MS", "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.2em;
	text-align: left;
	margin-top: -1em;
	margin-bottom: 2em;
	margin-left: 0em;
	margin-right: 0em;
}
#mainContent h2 p span {
	text-transform: uppercase;

}


#mainContent h3 {
	text-align: left;
	font-family: "Comic Sans MS", Verdana, arial, helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: normal;
	color: #1E100D;
	margin-bottom: 1em;
	margin-top: 1em;
}
#ConstantContact {
	text-align: center;
}

#footer  {
	text-align: center;
	padding-top: 1em;







	padding-bottom: 1
.em;
	background-color: #EA1E25;
	font-family: "Comic Sans MS", "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1em;
	line-height: 1.4em;
	font-weight: normal;
	color: #FFFBF0;
	padding-bottom: 1em;
} 
#footer p  {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer p a {
	font-size: 1em;
	font-family: "Comic Sans MS", "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #FFFBF0;
	font-weight: normal;
}

.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;
}
body,td,th {
	color: #1e100d;
}
