@charset "utf-8";
body  {
	font: 12px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	background: #f4f4f4 url(../img/bodyBG.jpg) left top repeat-x;
	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: #000000;
}
.page #container { 
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	margin: 0 auto 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: 2px solid #d2d2d2;
	border-right: 2px solid #d2d2d2;
	border-bottom: 2px solid #d2d2d2;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.page #header { 
	background: #fff; 
	padding: 0;  /* 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. */
	height: 350px;
	margin-bottom: 5px;
} 
.page #headerSub { 
	background: #fff; 
	padding: 0;  /* 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. */
	height: 150px;
	margin-bottom: 5px;
} 
.page #logo {
	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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	width: 450px;
	height: 130px;
}
.page #nav {
	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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	width: 100%;
	height: 30px;
	text-align: right;
}
.page #nav ul {
	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: 5px 10px 0 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	list-style: none;
	color: #FF0000;
}
.page #nav ul li {
	display: inline;
	font-weight: bold;
	font-size: 14px;
}
.page #nav ul li a {
	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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #FF0000;
	text-decoration: none;
	padding-left: 10px;
}
.page #nav ul li a:hover {
	color: #000;
}
.page #banner {
	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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	width: 100%;
	height: 200px;
	background: #f2f2f2 url(../img/banner.jpg) top center no-repeat;
}
.page #cta {
	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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	width: 100%;
	height: 100px;
	margin-bottom: 5px;
}
.page #ctaBox {
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	width: 240px;
	height: 100px;
	margin: 0 5px;
	float: left;
}
.page #ad {
	padding: 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	width: 180px;
	float: right;
	margin: 0 0 0 10px;
	background: #f00;
	color: #fff;
	font-size: 16px;
}
.page #ad a {
	text-align: right;
	text-decoration: none;
	display: block;
	float: right;
	font-weight: bold;
	color: #fff;
	font-family: "Times New Roman", Times, serif;
}
.page #ad a:hover {
	text-decoration: underline;
}
.page #sidebar1 {
	float: right;
	width: 198px; /* 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 */
	border: solid 1px #d2d2d2; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 10px;
	margin-right: 5px;
}
.page #mainContent { 
	margin: 0 5px 10px 5px; /* 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. */
	float: left;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 468px;
	border: solid 1px #d2d2d2;
}
.page #mainContentFull { 
	margin: 0 5px 10px 5px; /* 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. */
	float: left;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 698px;
	border: solid 1px #d2d2d2;
}
.page #mainContent p { 
	margin: 0 ;
	padding: 10px 0;
	text-align: justify;
}
.page h1 { 
	margin: 0;
	padding: 10px 0 0 0; 
	color: #356c8d;
	font-size: 22px
} 
.page h2 { 
	margin: 0;
	padding: 0; 
	color: #356c8d;
	font-size: 18px;
}
.page h3 { 
	margin: 0;
	padding: 5px 0 0 0;
	color: #356c8d;
	font-size: 14px;
}
.page h4 { 
	margin: 0;
	padding: 5px 0 0 0;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}    
.page #footer { 
	padding: 0 25px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color: #9c9c9c;
	border-top: solid 1px #d2d2d2; 
	font-size:10px;
} 
.page #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 */
}
.page #footer a {
	color: #9c9c9c;
	text-decoration: none;
}
.page #footer a:hover {
	text-decoration: underline;
}
.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;
}
.imgL { /* 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: left;
	margin-right: 10px;
	border: solid 1px #a0cfeb;
}
.imgR { /* 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: 10px;
	border: solid 1px #a0cfeb;
}
.adlink {
	text-align: right;
	text-decoration: none;
	display: block;
	float: right;
}

.page #info {
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	width: 300px;
	margin: 0;
	float: right;
	text-align: right;
}

/* form styles */

form {
	width: 100%;
	text-align: left;
	clear: both;
}

fieldset {
	margin: 0;
	border: 0;
	padding: 0;
}

legend {
	display: none;
}

form h3 {
	clear: both;
	padding: 5px 0px 10px 0px;
	font-size: 14px;
}

form label {
	display: block;
	width: 330px;
	font-size: 12px;
	line-height: 14px;
	padding: 0px 0px 10px 0px;
}

form input {
	display: block;
	margin-top: 3px;
}

form select {
	float: left;
	display: block;
}

form label.field-first,
form label.field-address,
form label.field-city,
form label.field-email {
	clear: left;
}


form label.field-first,
form label.field-last,
form label.field-city,
form label.field-email,
form label.field-phone {
	float: left;
	margin: 0px 10px 0px 0px;
	width: 160px;
}

form label.field-first input,
form label.field-last input,
form label.field-email input,
form label.field-city input {
	float: left;
	width: 150px;
	padding: 0px;
}

form label.field-phone input#phoneAreaCode,
form label.field-phone input#phonePrefix {
	float: left;
	width: 39px;
	padding: 0px;
	margin-right: 5px;
}

form label.field-phone input#phoneSuffix {
	float: left;
	width: 55px;
	padding: 0px;
}

form label.field-state {
	float: left;
	margin-right: 10px;
	width: 60px;
}

form label.field-state select {
	width: 60px;
	float: left;
	margin-top: 3px;
}

form label.field-zip {
	float: left;
	width: 90px;
}

form label.field-zip input {
	float: left;
	width: 80px;
}

form label.field-address {
	float: left;
	width: 330px;
	margin: 0px 0px 0px 0px;
}

form label.field-address input {
	float: left;
	width: 320px;
	padding: 0px;
}

form label.field-company {
	float: left;
	width: 330px;
	margin: 0px 0px 0px 0px;
}

form label.field-company input {
	float: left;
	width: 320px;
	padding: 0px;
}

textarea {
	display: block;
}

form textarea {
	margin-top: 3px;
}

form #right {
	margin-left: 10px;
	float: left;
}
form #left {
	width: 350px;
	float: left;
}

form input.buttonL { 
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
	border: solid 1px #a0cfeb;
	background: #e2e2e2;
	font-size: 12px;
	font-weight: bold;
	color: #356c8d;
}