@charset "UTF-8";
/* CSS Document */

body {
	font-family:'Source Sans Pro', sans-serif;
	background-image:url(../images/textures/lightwood.jpg);
	margin: 15px 0px 15px 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10;
	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;
}
.oneColFixCtrHdr #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/* background: #FFEDB7; */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	
}
.oneColFixCtrHdr #header {
	/* background: #DDDDDD; */ 
	padding: 0 0px 0 0px;
	font-family: 'Helvetica', sans-serif;
  /* 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. */
}


.oneColFixCtrHdr #formheader {
	background-image:url('../images/formtop.jpg');
	padding: 0 0px 0 0px;
	font-family: 'Helvetica', sans-serif;
  /* 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. */
}


.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: #FFEDB7; */
	background-image: url('../images/textures/pagebody.png');
	padding: 20px;


}


.oneColFixCtrHdr #textContent {
/*	background: #FFEDB7; */
	background-image: url('../images/textures/pagebody.png');
	padding: 35px;

}



.oneColFixCtrHdr #footer {
	clear:both;
	margin: 0;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
/*
	background: -webkit-linear-gradient(top, #2a2a2a , #555 );
	background: -webkit-linear-gradient(top, #2a2a2a , #555 );
	background: -moz-linear-gradient(top, #2a2a2a , #555 );
	background: -o-linear-gradient(top, #2a2a2a , #555 );
	background: -ms-linear-gradient(top, #2a2a2a , #555 );
	background: linear-gradient(top, #2a2a2a , #555 );
*/	
	background-image:url('../images/headers/menuback.png');
	text-align:center;
	color:black;
	padding:10px;
	font-size:14px; 
	font-family:Arial, Helvetica, sans-serif;
}
.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 */
}


.floatleft {
	float:left;
	margin: 5px 25px 0px 0px;
}



.floatright {
	float:right;
	margin:5px 0px 0px 25px;
}


h1 {
	margin-top:0px;
	margin-bottom:0px;
}


.bluebtn {
  background: #3498db;
  background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  background-image: -o-linear-gradient(top, #3498db, #2980b9);
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  -webkit-border-radius: 10;
  -moz-border-radius: 10;
  border-radius: 10px;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.bluebtn:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}
	