	/*There are two copies of this file - one with index.html and one in the survey
	folder.  If you change this one, be sure to change the other!*/

@charset "UTF-8";
body {
	font: 95% Times New Roman;
	/*http://www.featurepics.com/FI/Thumb300/20090723/Grunge-Blocks-Canvas-1266950.jpg*/
	/*background-image: url("http://fc01.deviantart.com/images3/i/2004/176/4/1/Desk_Texture.jpg");
	background-image: width=100%;*/
	background: #CCCCCC;
	/*background: #ddddcc;
	*/
	margin-top: 10px; /* 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 */
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #EEEEEE;
	margin: 0 auto;
	text-align: left;
	border: 1px solid #000000;
}
.oneColFixCtrHdr #header {
	background: #B4BDD2; 
	font: 90% Times New Roman;
	padding: 0 0px 0 0px;  /* 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. */
	border-right: 1px solid black;
	border-left: 1px solid black;
	border-top: 2px solid black;
	border-bottom: 2px solid black;
}
.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: 5px 0;/* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-bottom: 5px;
	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 */
}
.oneColFixCtrHdr #mainContent {
	padding: 0 10px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #EEEEEE;
	width=100%;
	border: 1px solid black;
	border-bottom: 10px solid black:
}
.oneColFixCtrHdr #footer {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#B4BDD2;
	border-right: 1px solid black;
	border-left: 1px solid black;
	border-top: 2px solid black;
	border-bottom: 2px solid black;
}
.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: 5px 0;
	/* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}

a:link {color: #475576;}
a:visited {color: #475576;}
