@charset "utf-8";
/* CSS Document */
body  {
	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: #333333;
	background-image: url(../images/swirl.jpg);
	background-repeat: repeat-y;
	background-color: #F7F0DE;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 90%;
	line-height: 1.4em;
}
#container {
	width: 100%;
	text-align: left;
	margin: 0;
} 
#topplacer  {
	background-color: #E8DFAC;
	height: 15px;
	margin: 0px;
	padding: 0px;
}
#topnav {
	margin: 0px;
	padding: 0px;
}
#logo {
	height: 130px;
	background-image: url(../images/logo.jpg);
	background-repeat: no-repeat;
	margin-left: 240px;
	margin-top: 0px;
	margin-bottom: 10px;
}
#header {
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#mainContent {
	width: 670px;
	background-image: url(../images/strip.jpg);
	background-repeat: repeat-y;
	background-position: center center;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
} 
#mainContent  #wrapper  ul {
	text-align: left;
}
#mainContent a {
	color: #F7F0DE;
}
#mainContent  a:hover {
	color: #881536;
}

h1 {
	font-size: 1.4em;
	color: #881536;
	font-weight: normal;
}
h2 {
	font-size: 1em;
	color: #000000;
	margin-top: 1px;
	margin-bottom: 1px;
}
p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
	font-size: 0.9em;
}
p strong {
	color: #333333;
}

#mainContent #top {
	background-image: url(../images/top-panel.jpg);
	background-repeat: no-repeat;
	height: 20px;
	background-position: center bottom;
	background-color: #F7F0DE;
}
#mainContent #cone {
	width: 600px;
	float: left;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-right: 5px;
	padding-left: 50px;
	height: 300px;
}
#cTwo img {
	padding: 3px;
	border: 1px solid #CCCCCC;
	background-color: #F7F0DE;
	margin: 0px;
}

#mainContent #cTwo {
	width: 225px;
	float: left;
	margin-left: 18px;
	padding-top: 12px;
	padding-right: 3px;
	padding-bottom: 12px;
	padding-left: 3px;
}
#mainContent #bottom {
	background-image: url(../images/bottom-panel.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 20px;
	background-color: #F7F0DE;
	clear: both;
}
#mainContent #wrapper {
	position: relative;
	padding: 0px;
	margin: 0px;
}
#footer {
	width: 670px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0px;
	margin-left: 200px;
	text-align: center;
} 
#footer a {
	color: #9D8C2D;
}
#footer a:hover {
	color: #881536;
}

#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 */
}
.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;
}
