@charset "UTF-8";
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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #FCE9C6;
}
#container  {
	width: 720px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #F32837;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	font-size: 80%;
}
#header  {
	height: 100px;
	background-color: #FFFFFF;
	padding: 0;
	background-image: url(images/header-bkg.png);
	background-repeat: no-repeat;
}
#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 */
}
#header logo {
	clear: left;
}
#header-nav {
	clear: none;
	height: 18px;
	width: 610px;
	margin-top: 80px;
	margin-left: 110px;
	text-align: center;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#header-nav ul {
	margin: 0px;
	padding: 0px;
}
#header-nav li {
	margin: 0px;
	list-style-type: none;
	display: inline;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#header-nav a:active {
	font-size: 80%;
	font-weight: bolder;
	color: #FCE9C6;
	text-decoration: underline;
}
#header-nav a:hover {
	font-size: 80%;
	font-weight: bolder;
	color: #000000;
	text-decoration: underline;
}
#header-nav  a {
	font-size: 80%;
	color: #000000;
	text-decoration: none;
	font-weight: bolder;
}
#mainContent  {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	height: 400px;
}
#right-col {
	padding-left: 20px;
	float: right;
	width: 580px;
	height: 400px;
}
#footer  {
	background-color: #FFFFFF;
	text-align: center;
	font-size: smaller;
	line-height: normal;
	padding-top: 10;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	border-top-color: #F32837;
	margin: 0px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: dashed;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#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 */
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.clearfloat {
	clear: both;
}
#header-nav {
	float: right;
}
.fltrt {
	float: right;
	margin-left: 8px;
}
#left-col {
	float: left;
	width: 110px;
	border-top-width: 1pt;
	border-right-style: solid;
	border-top-color: #F32837;
	border-right-color: #F32837;
	border-bottom-color: #F32837;
	border-left-color: #F32837;
}
