@charset "UTF-8";/* CSS Document *//* RESET */html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,fieldset,input { margin: 0; padding: 0; }/* LAYOUT */body  {	font: 100% Arial, Helvetica, sans-serif;	background: #e0e2e4;	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: #6d7073;}.oneColHdrFtr #container {	width: 994px;	margin: 0 auto;	text-align: left; /* this overrides the text-align: center on the body element. */	background-color: #FFFFFF;	padding-top: 18px;	border-right: 1px solid #c0c3c5;	border-bottom: 1px solid #abaeb1;	border-left: 1px solid #c0c3c5;} .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;}/* HEADER */ .oneColHdrFtr #header {	padding: 0 0px 0 33px;  /* 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. */	margin: 0px;	height: 83px;	background-image: url(../images/HdrBg.gif);	background-repeat: repeat-x;	background-position: 0px 59px;} .oneColHdrFtr #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 */}/* MID LINK */.oneColHdrFtr #midlink {	margin: 48px 0px 38px 76px;	background-image: url(../images/MidLinkBg.gif);	background-repeat: repeat-x;} /* MAIN CONTENT */.oneColHdrFtr #maincontent {	margin: 0 30px 0 0; /* the right margin on this div element creates the column down the right 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 0px 0 97px;	font-size: 12px;}.oneColHdrFtr #maincontent p{	margin-bottom: 15px;	}/* FOOTER */.oneColHdrFtr #footer {	padding: 0 0px 0 97px;} .oneColHdrFtr #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 9px;	border-bottom: 1px solid #ababab;}/* HEADINGS AND TEXT */h1 {	font-size: 16px;	font-weight: normal;}/* LINKS */a {	color: #0966b4;	text-decoration: none;}a:hover {	color: #0966b4;	text-decoration: underline;}