@charset "utf-8";
@import url("double-col.css");
/* CSS Document */
body {
	background: #FFFFFF;
	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: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.oneColFixCtrHdr #container {
	width: 814px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border:;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/background.gif);
	left: -10px;
}
.oneColFixCtrHdr #header {
	padding: 0 0px 0 0px;
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
	background-image: url(../images/background.gif);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #6D6B6B;
	text-align: left;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	height: 700px;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px;
	background-color: #FFFFFF;
	background-image: url(../images/background.gif);
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #bottom-edge {
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
}
/* position of top-navigation menu*/
#top-nav {
	position: relative;
	left: 30px;
	width: 750px;
	padding: 0px;
	height: auto;
}
/*content areas for single column layout*/
#left-area{
	width: 60%;
	padding-left: 40px;
}
#right-area{
	height: 180px;
	width: 150px;
	top: -200px;
	float: right;
	position: relative;
	background-image: url(../images/rectangle-background.jpg);
	background-repeat: no-repeat;
	background-position: center;
	padding-left: 20px;
	padding-right: 40px;
	margin-right: 15px;
	padding-top: 20px;
}

#right-area-index{
	height: 180px;
	width: 150px;
	top: -200px;
	left: 572px;
	position: relative;
	background-image: url(../images/rectangle-background.jpg);
	background-repeat: no-repeat;
	background-position: center;
	padding-left: 20px;
	padding-right: 40px;
	margin-right: 15px;
	padding-top: 20px;
}
#bottom-area{
	text-align: center;
	position: relative;
	vertical-align: top;
	height: 200px;
	padding-left: 10px;
	top: -165px;
}
.maincopy{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: left;
	padding-right: 10px;
	padding-left: 10px;
}
#leftcolumn{
	margin-left: 10px;
}
#rightcolumn{
	margin-right: 10px;
}

/************ Conditional Browser Behaviours ***************************/
 /*** All browsers ***/ 
 #anyelement {} 
 /*** For IE 7 and up ***/ 
 #ie7andup #sidebar1 
 {
	float: left; /* since this element is floated, a width must be given */
	width: 187px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF;
	vertical-align: top;
	position: relative;
	top: 0px;
	padding: 0;
	margin-top: 5px;
 }
  #ie7andup #bottom-area div
  {text-align: center;
	position: relative;
	vertical-align: top;
	height: 200px;
	padding-left: 30px;
	top: 20px;
	margin:  0 0 1em 0;
    padding:  0;
	}

/*** For IE 6 ***/ 
 #ie6only #anyelement {} 
 /*** For IE 5.5 ***/ 
 #ie5-5only #anyelement {} 
 /*** For IE 5.01 ***/ 
 #ie5-01only #anyelement {}
