@charset "UTF-8";
body  {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: #fff;
}
.thrColFix #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background:#003366;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.thrColFix #mainContent { 
	margin: 0;
	padding: 20px 10px 50px 10px;
}

img {border:0px}


/* FORM LINKS
-----------------------------------------------------------------------------*/
input, textarea {
	background-color:#eee; 
	border:1px solid #d8f000;  
	padding:3px; 
	width:195px; 
	color:#036; 
	font-weight:bold}

input {
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
}


.submit {
	width:100px; 
	background-color:#d8f000;  
	border:1px solid #fff; 
	cursor:pointer; 
	*border:1px; 
	font-weight:bold; 
	-webkit-border-radius:10px;
	-moz-border-radius:10px; 
	color:#036; 
	font-weight:bold
}

.submit:hover {background-color:#ffc;}



