@charset "utf-8";
body  {
	font: 62.5% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #eaeff4;
	background-image: url(images/body_bg.png);
	background-repeat: repeat-x;
	background-position: left top;
}
#container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #b4c6d9;
	text-align: left; /* this overrides the text-align: center on the body element. */
	display: block;
} 
#header {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b4c6d9;
	margin-bottom: 10px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-color: #EAEFF4;
} 
#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 */
	font-size: 2.4em;
	text-align: left;
	font-style: normal;
}
#leftColumn {
	float: left; /* since this element is floated, a width must be given */
	width: 405px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 20px 15px 20px;
	margin-left: 20px;
}
#rightColumn {
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #B4C6D9;
	float: left;
	width: 405px;
	margin-top: 0;
	margin-right: 10;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 30px;
} 
#footer {
	padding: 0 10px 0 20px;
	margin-top: 10px;
	background-color: #EAEFF4;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #B4C6D9;
} 
#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 */
	text-align: center;
	font-size: 1em;
	color: #333333;
}
.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;
}
#autos .fltrt {
	margin-right: 20px;
}
#autos .leftBox, #contact .leftBox  {
	float: left;
	width: 350px;
	border-right: solid 1px #990000;
	margin-top: 20px;
	padding-right: 3px;
}
#diagnostics .leftBox  {
	float: left;
	width: 350px;
	margin-top: 20px;
	padding-right: 3px;
}
#autos  .rightBox, #diagnostics .rightBox {
	float: left;
	width: 260px;
	padding-left: 20px;
	margin-top: 20px;
}
#content p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	color: #153B63;
	padding-bottom: 3px;
}


#header h2 {
	font-size: 2.8em;
	font-style: normal;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
#autos .fltlft {
	margin-right: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
}

.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;
}
p, h1, h2, h3, h4, h5, li  {
	border: 0px;
	margin: 0px
}
p {
	font-size: 1.2em;
	line-height: 160%;
}
h1 {
	font-size: 3.2em;
	color: #153b63;
	font-style: italic;
	font-weight: bold;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	line-height: 100%;
	text-align: left;
}
h2 {
	font-size: 2.8em;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	color: #153B63;
}
#address {
	float: right;
	width: 150px;
	margin-top: 10px;
	margin-bottom: 10px;
}
#title {
	float: left;
	width: 300px;
}
#logo img {
	margin-right: 10px;
}
#address h4  {
	font-size: 1.4em;
	color: #153B63;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 3.2em;
	font-style: normal;
	font-weight: bold;
	color: #990000;
}
#strapline h3 {
	text-align: center;
}
#strapline {
	margin-top: 45px;
	width: 400px;
	float: left;
}
#home ul  {
	clear: both;
	list-style-image: url(images/bullet.png);
	margin-left: 80px;
	margin-top: 20px;
	
}
#home li {
	font-size: 1.4em;
	line-height: 140%;
	color: #153B63;
}
#home  img {
	margin-left: 100px;
	margin-top: 20px;
}
#navigation {
	float: left;
	width: 200px;
	margin-left: 20px;
	padding-top: 20px;
	background-color: #FFFFFF;
	padding-left: 10px;
}
#content {
	float: left;
	width: 640px;
	margin-left: 20px;
	padding-top: 20px;
	padding-left: 20px;
	background-color: #EAEFF4;
	padding-bottom: 20px;
	border: 2px solid #B4C6D9;
}
#title h2 {
	font-size: 2.8em;
	padding-top: 0px;
	padding-bottom: 10px;
}
#autos  h3, #diagnostics h3 {
	font-size: 1.8em;
	padding-top: 4px;
}
#strapline h3 {
	font-size: 2.8em;
}
#home  a {
	text-decoration: none;
	color: #153B63;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: center;
}
.button {
	background-color: #b4c6d9;
	width: 200px;
	margin-left: 180px;
	text-align: center;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #cfdbe7;
	border-right-color: #5f6872;
	border-bottom-color: #5f6872;
	border-left-color: #cfdbe7;
}
.button a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 1.2em;
	text-decoration: none;
	color: #153b63;
	text-align: center;
	line-height: 200%;
}
#leftColumn .button a:hover, #rightColumn .button a:hover  {
	color: #FFFFFF;
	text-decoration: none;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 1.2em;
	background-color: #153b63;
	display: block;
	line-height: 200%;
}
#section a, #sectionRight a {
	color: #153B63;
	text-decoration: none;
}
#diagnostics #container #content .rightBox td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.4em;
	color: #153B63;
	padding-left: 15px;
}
#diagnostics #container #content .leftBox li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.4em;
	color: #153B63;
}
#diagnostics #container #content .rightBox table {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #990000;
}
#price #container #content table {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	text-align: center;
}
#price #container #content td {
	background-color: #FFFFFF;
}
#price #container #content li {
	font-size: 1.4em;
	color: #153B63;
}
#price  .leftBox {
	float: left;
	width: 300px;
	margin-right: 20px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #990000;
}
#price #container #content .rightBox {
	float: left;
	width: 300px;
}
#navigation #MenuBar1 .switch a {
	color: #990000;
}
#navigation #MenuBar1 .switch a:hover {
	color: #FFFFFF;
}
#price #container #content .header td {
	font-size: 0.8em;
}
#hours {
	margin-top: 60px;
	padding-left: 20px;
	background-color: #EAEFF4;
	width: 160px;
	padding-top: 3px;
	border: 1px solid #B4C6D9;
	float: left;
}
#hours p {
	text-decoration: none;
	padding-bottom: 8px;
	color: #153B78;
}
#sectionRight {
	float: right;
	width: 260px;
}
#contact  .leftBox h3 {
	font-size: 1.6em;
}
#contact .leftBox p {
	padding: 0px;
	line-height: 140%;
	margin-bottom: 3px;
}
#contact .rightBox {
	width: 280px;
	margin-top: 20px;
	padding-top: 0px;
	float: right;
}
#contact .rightBox h3  {
	font-size: 1.6em;
}
#hire #content li {
	font-size: 1.4em;
	color: #153B63;
	line-height: 130%;
}
#hire #content p {
	font-size: 1.5em;
	line-height: 130%;
	margin-bottom: 4px;
}
.allTransStyle {
	font-style: italic;
	font-weight: bold;
}
#home #container #rightColumn #mot {
	margin-top: 30px;
	margin-bottom: 30px;
}

