@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #CCC;
}
.header {
	background:#CCC;
}
.footer {
	padding: 10px 0;
	background: #666;
	color: #FFF;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}
.content {
	background-color: #FFF;
	margin: 0 auto;
	width: 1100px;
	text-align: center;
}
.sidebar {
	float: left;
	width: 200px;
	background: #666;
	padding-bottom: 200px;
}
.main {
	width: 900px;
	float: left;
	padding: 15px 0;
}
ul li {
	text-align: left;
	list-style-type: none;
}

.footer a {
	font-size: small;
	color: #FFF;
	text-decoration: none;
	vertical-align: middle;
	padding: 0px;
}
.main p {
	text-align: justify;
	text-indent: 2em;
	padding-top: 5px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 30px;
}
.main h1 {
	font-size: x-large;
}
.serv ul li {
	text-align: left;
	list-style-type: circle;
	padding-left: 10px;
	padding-bottom: 4px;
}
.serv ul {
	padding-left: 65px;
	padding-top: 25px;
	width: 400px;
	height: 400px;
}
.main table td {
	padding: 10px;
}
.main table {
	float: right;
	margin: 50px 100px 0px 0px;
}
#quote {
	padding: 0px;
}
.contact table {
	float: none;
	margin: 50px 0px 0px 75px;
	text-align: left;
	font-size: large;
}
.contact table td {
	padding: 0px 5px 0px 10px;
	valign: top;
}
.footer h5 {
	font-size: x-small;
	padding: 0px;
	font-weight: normal;
	margin: 0px;	
}
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}