@charset "utf-8";
/* CSS Document */
a:link {
	color:#990000;
	text-decoration:underline;
}
a:hover {
	color:#363343;
	text-decoration:none;
}
a:visited {
	color:#990000;
	text-decoration:underline;
}
body {
	font: bold 125% 'Trebuchet MS', Helvetica, Verdana, Arial, sans-serif;
	background: #8e8d86;
	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: #363343;
}
.oneColFixCtrHdr #container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #8e8d86;
	background:url(images/gr-background.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	border: 1px solid #8e8d86;
	text-align: center; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #menu {
	margin: 0 auto;
	padding: 5px 0 0 0 ;
	background-color:#8e8d86;
	width:980px;
}
.oneColFixCtrHdr #header { 
	padding: 5px;  /* 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 {
	margin: 10px auto;
	width:900px;
	padding: 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	vertical-align:top;
	background-color: rgba(255,255,255, 0.6);
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	border:2px solid #363343;
}
.oneColFixCtrHdr #footer {
	margin: 0 auto;
	padding: 5px 0 0 0 ;
	background-color:#8e8d86;
	width:980px;
}
.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 */
}

/* Login Form Styles */
/*form#contact {
 background-color: #b3d98b;
 color: #000000;
 border: 2px solid #225d9f;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 16px;
 text-align: right;
}
form#contact .buttons {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 14px;
 background-color: #003366;
 color: #FFFFFF;
 margin-right: 6px;
}*/
form#contact input, form#contact textarea {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 16px;
 border-left: #363343 1px solid;
 border-top: #363343 1px solid;
 border-right: #363343 2px solid;
 border-bottom: #363343 2px solid;
 color: #363343;
}

form#join input, form#join textarea form#join checkbox {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 16px;
 border-left: #363343 1px solid;
 border-top: #363343 1px solid;
 border-right: #363343 2px solid;
 border-bottom: #363343 2px solid;
 color: #363343;
}

form#share input, form#share textarea form#share checkbox {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 16px;
 border-left: #363343 1px solid;
 border-top: #363343 1px solid;
 border-right: #363343 2px solid;
 border-bottom: #363343 2px solid;
 color: #363343;
}

.red {
	color:#A00;
}
#regForm td {
	padding: 8px 3px 8px 3px;
}
	
.form_error{
  color: #A00;
  margin-bottom: 15px;
  font-style: italic;
  font-size:14px;
}

form#contact .form_error_row input, form#contact .form_error_row textarea {
  border-style: solid;
  border-width: 1px 2px 2px 1px;
  border-color: #A00 #A00 #A00 #A00;
	}

form#join .form_error_row input, form#join .form_error_row textarea form#join .form_error_row checkbox {
  border-style: solid;
  border-width: 1px 2px 2px 1px;
  border-color: #A00 #A00 #A00 #A00;
	}

form#share .form_error_row input, form#share .form_error_row textarea form#share .form_error_row checkbox {
  border-style: solid;
  border-width: 1px 2px 2px 1px;
  border-color: #A00 #A00 #A00 #A00;
	}	
	
#username {
	display:none;
	}