@charset "utf-8";
/* CSS Document */
/* ********* Set Defaults to Zero ******* */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,dfn,var,cite,code,em,strong,th{font-style:normal;font-weight:normal;}
ul{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4{font-size:100%;}
/* !!!!!!!!!! YOU MUST RESTYE THE ABOVE AS NEEDED !!!!!!!!!!!!!  */

body  {
	font-family: Arial, Helvetica, sans-serif;
	font-size:.8em;
	background: #393939;
	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: #000;
}

/*  NOTE - the percentages below will scale off of the font size set in the body selector style above */
/* Heading tag styles */
h1 { font-size:150%; color:#FFF; background-color:#990000; padding:10px; margin-bottom:20px; margin-top:8px;}
h2 { font-size:130%; color:#3366CC; background-color:#C2D7E9; padding:4px; margin-bottom:20px;}
h3 { font-size:120%; color:#4978b5;}

ul { list-style:disc;}


p { margin:0 0 10px 0;}

a:link {color: #0033CC;	text-decoration: underline;}
a:visited {color: #0033CC; text-decoration: underline;}
a:hover {color: #B71A37; text-decoration: underline;}
a:active, a:focus {color: #0033CC; text-decoration: underline;}

/* Structure styles */
.twoColFixLtHdr #container { 
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	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. */
	background-image: url(../graphics/main_bg.gif);
} 
.twoColFixLtHdr #header { 
	 background-image:url(../graphics/header.jpg);
	 height:310px;
	 padding: 0 10px 0 20px;  /* 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. */
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 166px; /* 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 */
	xbackground: #ACB283; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* can be used to place space around menu if margin is not set in the nav style sheets */
	
}
.twoColFixLtHdr #mainContent { 
	margin: 0 30px 0 210px; /* the left margin on this div element creates the column down the left 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: 20px 20px;
	background-color:#FFFFFF;
	min-height:300px;
}

.twoColFixLtHdr #mainContent li{ margin-left:30px; margin-bottom:5px; }
 
.twoColFixLtHdr #footer { 
	background:#B9D9F3;
	height:40px;
	text-align:center; 
} 
.twoColFixLtHdr #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 */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}

/* This makes the text left justified in the CS debug area */
.cfdebug {text-align:left; font-size:12px;}

/* for form validation  */
.required { font-weight:bold;}
.alert { font-weight:bold; color:#CC0000;}
/* contact form */
#form-table { width:450px; margin-top:10px;}
#form-table thead td.cell-1 { width:150px;}
#form-table thead td.cell-2 { width:300px;}
#form-table tbody td { height:30px; padding:4px;} /* height:20px; in IE fix style sheets */
#form-table tbody td.cell-1 { width:200px; text-align:right;}
#form-table tbody td.cell-2 { width:310px;}
#form-table .textbox {border:1px solid #81B8D6; width:300px; height:18px; }
#form-table .textbox-city {border:1px solid #81B8D6; width:136px; height:18px; }
#form-table .textbox-zip {border:1px solid #81B8D6; width:60px; height:18px; }
#form-table .textarea-comments {border:1px solid #81B8D6; width:300px; height:150px; }
#form-table .select {border:1px solid #81B8D6; height:20px; }
#form-table .button { border:1px solid #81B8D6; margin:4px 0 0 4px; }
#form-title { display:none; }
#form-company { display:none; }
#form-fax { display:none; }
