@charset "UTF-8";


body
{
	margin: 0;
	padding: 0;
	background: #333;
	color: #000;
	font-family: arial, verdana, tahoma, times new roman;
	font-size: 80%;
}

a
{
	text-decoration: none;
	color: #FFF;
}

a:hover
{
	text-decoration: none;
	color: #a7b9cf;
}

#container { 
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(images/background.gif) no-repeat bottom left;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
		line-height: 160%;
		text-align: left; /* this overrides the text-align: center on the body element. */
		
		
	}
	
	#image
{
	width: 980px;
	height: 200px;
	background: #fff url(images/image-back6.gif) no-repeat;
}

#address{
	color: #fff;
	float: right;
	position: relative;
	top: 162px;
	right: 588px;
}


#header { 

	width: auto;
	height: 50px;
	border-top: 1px solid #FFF;
	background: #18324f;
}





#menu
{
	float: left;
	width: auto;
	height: 50px;
	font-weight: bold;
	font-size: 125%;
	color: #FFF;
	letter-spacing: -1px;
	position: relative;
	top: 200px;
	left: 544px;
}

#menu ul
{
	margin: 15px 0 0 0;
	padding: 0 20px 0 0;
}

#menu li
{
	display: inline;
	padding: 0 0 0 15px;
}

#menu .active
{
	text-decoration: none;
	color: #a7b9cf;
}



#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 */
	
}


#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 500px; /* 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: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 15px;
}







#mainContent { /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px;
	margin: 20px 510px 0 0;
} 



a.pagelink:link { color: #18324f; text-decoration: none }

a.pagelink:hover { color: #333; text-decoration: none }

a.pagelink:visited { color: #999; text-decoration: none }



#mainContent h2
{
	padding: 0 0 5px 0;
	margin: 0 0 10px 0;
	font-size: 160%;
	letter-spacing: -1px;
	font-weight: normal;
	color: #18324f;
}


#mainContent h3
{
	padding: 0 0 0px 0;
	margin: 0 0 0 0;
	font-size: 120%;
	letter-spacing: -1px;
	font-weight: normal;
	color: #18324f;
}

#mainContent p2
{
	padding: 0 0 5px 0;
	margin: 0 0 10px 0;
	font-size: 100%;
	color: #000;
	font-style: italic;
}



#formwrapper		{
margin:auto;
width:400px;
float: left;
}

#fieldnameslist		{
width: auto;
height:200px; 
float:left;
line-height: 30px;
}

#thefields1			{
height:28px;
position: relative;
padding-left: 20px;
	margin-top: 3px;
	float: left;
}	

#thefields2			{
height:28px;
position: relative;
padding-left: 20px;
	margin-top: 3px;
	float: left;
}	

#thefields3			{
height:28px;
position: relative;
padding-left: 20px;
	margin-top: 3px;
	float: left;
}	

#thefields4			{
height:28px;
position: relative;
padding-left: 20px;
margin-top: 3px;
	float: left;
}	


#sub			{
position: relative;
	right: 10px;
}	

#footer { 
	height: 35px;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#18324f; 
		border-top: 1px solid #333;

} 


#footerleft
{
	float: left;
	width: 60%; // change this percentage to fit any text in either footer div - the below will auto change (width: auto)
	text-align: left;
	padding: 1% 2%;
	color: #fff;
}
#footerleft a
{
	text-decoration: none;
	color: #fff;
	margin: 0 5px;
}

#footerleft #nomarginleft
{
	margin: 0 10px 0 0;
	letter-spacing: -1px;
}

#footerright
{
	float: right;
	width: auto;
	text-align: right;
	padding: 1% 2%;
}


#footer p
{
	margin: 0;
	padding: 0;
	letter-spacing: -1px;
	color: #fff;
}

#footer a
{
	text-decoration: none;
	color: #fff;
}

#footer a:hover
{
	text-decoration: underline;
	color: #a7b9cf;
}


.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}