@charset "UTF-8";
/* CSS Document */

body  {
	font: 75%/140% Arial, Helvetica, sans-serif;
	background: #FFFFFF url(images/bgd.jpg) 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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	text-align: center;
}
#subBgd {
	background-image: url(images/subBgd.jpg);
	background-repeat: repeat-x;
	width: 100%;
	background-color: #FFFFFF;
}
#container {
	width: 860px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
} 
#header {
	background: url(images/MaxIntroplacehlder.jpg) no-repeat;  /* 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: 204px;
} 
#headerSubpages {
	background-image: url(images/subHeader.jpg);
	height: 121px;
	background-repeat: no-repeat;
}

#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 */
}
#leftnav {
	float: left; /* since this element is floated, a width must be given */
	width: 260px; /* 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: #ffffff;
	padding-top: 25px;
	padding-left: 15px;
}
#leftnav a {
	text-decoration: none;
}
a:link {
	color: #0033CC;
	text-decoration: underline;
}
a:visited {
	color: #0033CC;
	text-decoration: underline;
}
a:hover {
	color: #339933;
	text-decoration: underline;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
#mainContent {
	margin-left: 295px;
	padding-top: 10px;
}
#mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 200%;
	color: #0033cc;
	line-height: 0px;
	font-weight: normal;
}
#mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 160%;
	color: #339933;
	line-height: 95%;
	font-weight: normal;
}
#mainContent h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 150%;
	color: #339933;
	font-weight: normal;
	margin-top: 15px;
	margin-bottom: 0px;
	line-height: 100%;
	text-align: left;
}
#mainContent h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 140%;
	line-height: 80%;
	font-weight: normal;
}
#mainContent h4 #mainContent .supertext {
	vertical-align: 30%;
	font-size: 75%;
}
#mainContent p {
	margin-top: 15px;
	margin-bottom: 15px;
}
fieldset {
	border: solid 0 transparent;
}
#newsBox {
	background: url(images/NewsMid.jpg) no-repeat left top;
	width: 250px;
	float: left;
	height: 120px;
	margin-top: 5px;
	margin-bottom: 15px;
}
#newsBox .last {
	background-image: url(images/NewsBot.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	margin-bottom: 0px;
	padding-bottom: 20px;
}
#newsBox h2 {
	font-size: 135%;
	color: #339933;
	font-weight: bold;
	background-image: url(images/NewsTop.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 28px;
	padding-top: 12px;
}
#newsBox h2, #newsBox p {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-left: 20px;
	padding-right: 15px;
}
#newsBox a {
	text-decoration: underline;
}
.greentext {
	color: #339933;
}
.bluetext {
	font-weight: bold;
	color: #000099;
	vertical-align: top;
}
.supertext {
	vertical-align: 15%;
	font-size: 75%;
}
.lgsuperscript {
	font-size: 75%;
	vertical-align: 40%;
}

#footer {
	padding: 15px 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF url(images/pagebottom.jpg) no-repeat center top;
	font-size: 90%;
	text-align: center;
	clear: both;
	text-decoration: none;
}

#footer a {
	text-decoration: none;
	color: #999999;
	font-size: 115%;
}
#footer a:hover {
	color: #0033CC;
}

#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: 15px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 95%;
}
 
#homeboxes {
	clear: both;
	float: left;
	width: 100%;
	margin-bottom: 10px;
	margin-top: 10px;
}

.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:right;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

#welcome {
	background-image: url(images/index_welcomeTitle.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	height: 60px;
}
.picservice {
	float: right;
}

.contactBox {
	width: 280px;
	background-image: url(images/contactMid.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFFFF;
	float: left;
	height: 117px;
	margin-top: 3px;
	margin-left: 20px;
}

.contactBox  .last {
	background-image: url(images/contactBot.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	margin-bottom: 0px;
	padding-bottom: 20px;
}

.contactBox  h2 {
	color: #FFFF00;
	background-repeat: no-repeat;
	padding-top: 7px;
	background-position: left top;
	font-weight: normal;
	font-size: 120%;
	height: 28px;
	background-image: url(images/contactTop.jpg);
}
.contactBox h2, .contactBox p {
	padding-right: 20px;
	padding-left: 15px;
	margin: 0;
}

.serviceBox {
	width: 280px;
	background-image: url(images/serviceMid.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFFFF;
	float: left;
	height: 117px;
	margin-top: 3px;
}

.serviceBox  .last {
	background-image: url(images/serviceBot.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 20px;
	margin-bottom: 0px;
}

.serviceBox  h2 {
	color: #FFFF00;
	background-repeat: no-repeat;
	padding-top: 7px;
	background-position: left top;
	font-weight: normal;
	font-size: 120%;
	height: 28px;
	background-image: url(images/serviceTop.jpg);
}
.serviceBox h2, .serviceBox p {
	padding-right: 20px;
	padding-left: 18px;
	margin: 0;
}
.faqBox {
	width: 280px;
	background-image: url(images/faqMid.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFFFF;
	float: left;
	height: 117px;
	margin-top: 3px;
}
.faqBox  .last {
	background-image: url(images/faqBot.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 20px;
	margin-bottom: 0px;
}
.faqBox   h2 {
	color: #FFFF00;
	background-repeat: no-repeat;
	padding-top: 7px;
	background-position: left top;
	font-weight: normal;
	font-size: 120%;
	height: 28px;
	background-image: url(images/faqTop.jpg);
}
.faqBox  h2, .faqBox  p {
	padding-right: 20px;
	padding-left: 18px;
	margin: 0;
}
#contactSub {
	width: 245px;
	background-image: url(images/contact2mid.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFFFF;
	float: left;
	margin-top: 5px;
	margin-left: 10px;
}
#contactSub  .last {
	background-image: url(images/contact2bot.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	margin-bottom: 0px;
}
#contactSub   h2 {
	color: #FFFF00;
	background-repeat: no-repeat;
	padding-top: 7px;
	background-position: left top;
	font-weight: normal;
	font-size: 120%;
	height: 28px;
	background-image: url(images/contact2top.jpg);
}
#contactSub  h2, #contactSub  p {
	padding-right: 30px;
	padding-left: 15px;
	margin: 0;
}
#contactSub  a {
	text-decoration: underline;
}
#serviceSub {
	width: 245px;
	background-image: url(images/service2mid.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFFFF;
	float: left;
	margin-top: 5px;
	margin-left: 10px;
}
#serviceSub   .last {
	background-image: url(images/service2bot.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 20px;
}
#serviceSub   h2 {
	color: #FFFF00;
	background-repeat: no-repeat;
	padding-top: 7px;
	background-position: left top;
	font-weight: normal;
	font-size: 120%;
	height: 28px;
	background-image: url(images/service2top.jpg);
}
#serviceSub   h2, #serviceSub   p {
	padding-left: 15px;
	margin: 0;
	padding-right: 30px;
}
#serviceSub a {
	text-decoration: underline;
}
#faqSub {
	width: 245px;
	background-image: url(images/faq2Mid.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFFFF;
	float: left;
	margin-top: 5px;
	margin-left: 10px;
}
#faqSub .last {
	background-image: url(images/faq2Bot.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 20px;
}
#faqSub h2 {
	color: #FFFF00;
	background-repeat: no-repeat;
	padding-top: 7px;
	background-position: left top;
	font-weight: normal;
	font-size: 120%;
	height: 28px;
	background-image: url(images/faq2Top.jpg);
}
#faqSub   h2, #faqSub  p {
	padding-left: 15px;
	margin: 0;
	padding-right: 30px;
}
#faqSub a {
	text-decoration: underline;
}
.picture {
	float: right;
	width: 200px;
}
.image {
	margin-right: 5px;
	margin-top: 0px;
	margin-bottom: 0px;
	float: right;
	width: 177px;
}
.listimage {
	float: left;
	margin: 0px;
	width: 375px;
}
.green3 {
	position: absolute;
	top: 390px;
	width: 565px;
}
.title {
	top: -10px;
	margin-top: -10px;
}
.teststable {
	margin-left: 30px;
	margin-bottom: 5px;
	border: thin solid #cccccc;
}
.table   {
	border: thin solid #cccccc;
}
.orderinfo {
	float: left;
	position: fixed;
	top: 1000px;
	width: 100%;
	margin-top: 10px;
}
input.center {
	text-align: center;
	margin: 0 auto;
	display: block;
	}
.heavyduty {
	background-color: #EBF3EB;
	width: 97%;
	padding-bottom: 10px;
	padding-right: 7px;
	padding-left: 7px;
	margin-top: 10px;
	padding-top: 5px;
}
