/**
 * HTML5 ✰ Boilerplate
 *
 * style.css contains a reset, font normalization and some base styles.
 *
 * Credit is left where credit is due.
 * Much inspiration was taken from these projects:
 * - yui.yahooapis.com/2.8.1/build/base/base.css
 * - camendesign.com/design/
 * - praegnanz.de/weblog/htmlcssjs-kickstart
 */


/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 12px;
	font: inherit;
	vertical-align: baseline;
	font-family: Helvetica, arial, sans-serif;
}
body {
}
h1, h2, h3, h4, h5, h6, p {
	font-family: Helvetica, arial, sans-serif;
}
h1 {
	font-size:36px/*!important*/;
}
h2 {
	font-size:24px!important;
}
h3 {
	font-size:18px!important;	
}
h4 {
	font-size:16px!important;
}
h5 {
	font-size:14px!important;
}
h6 {
	font-size:12px!important;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
blockquote, q {
	quotes: none;
	margin-bottom:10px;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */

body {
	/*font-size:small;*/
	background-attachment: scroll!important;
	background-position:center top;
	background-color:#000;
	font-family:Helvetica, Arial, sans-serif;
} /* Hack retained to preserve specificity */

body { position: absolute; width: 100%; }

select, input, textarea, button {
	font:99% sans-serif;
}
/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp {
	font-family: monospace, sans-serif;
}
/**
 * Minimal base styles.
 */

/* Always force a scrollbar in non-IE */
html {
	overflow-y: scroll;
}
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
	outline: none;
}
ul, ol {
	margin-left:2em;/*
	margin: .5em 0 .5em 2em;
	float:left;
	clear:both;*/
}
ol {
	list-style-type:none;
}
/* Remove margins for navigation lists */
nav ul, nav li {
	margin: 0;
	list-style:none;
	list-style-image: none;
}
small {
	font-size: 85%;
}
strong, th {
	font-weight: bold;
}
td {
	vertical-align: top;
	font-size:12px;
}
/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}



textarea {
	overflow: auto;
} /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend, .ie7 legend {
	margin-left: -7px;
}
/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {
	vertical-align: text-bottom;
}
input[type="checkbox"] {
	vertical-align: bottom;
}
.ie7 input[type="checkbox"] {
	vertical-align: baseline;
}
.ie6 input {
	vertical-align: text-bottom;
}
/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button {
	cursor: pointer;
}
/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
	margin: 0;
}

/* Colors for form validity */
input:valid, textarea:valid {
}
input:invalid, textarea:invalid {
 border-radius: 1px;
-moz-box-shadow: 0px 0px 5px red;
-webkit-box-shadow: 0px 0px 5px red;
box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid {
background-color: #f0dddd;
}


/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection {
background: #FF5E99;
color:#fff;
text-shadow: none;
}

::selection {
background:#FF5E99;
color:#fff;
text-shadow: none;
}
/* j.mp/webkit-tap-highlight-color */
a:link {
	-webkit-tap-highlight-color: #FF5E99;
}
/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
	width: auto;
	overflow: visible;
}
/* Bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
	-ms-interpolation-mode: bicubic;
}
/**
 * You might tweak these..
 */

body, select, input, textarea {
/* font-family: Georgia, serif;  */
}
/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}
a, a:active, a:visited {
	/*color: #333;*/ text-decoration:none;
}
a:hover {
	color: #C33;
}

header div#title {
	float: left;
}
#menu li {
	list-style-type: none;
	text-decoration:none;
}
/*
.ss-base-body {
	border: none!important;
	background: rgba(239, 182, 29, 50)!important;
}*/
#description {
	margin-bottom: 25px;
	padding: 15px;
}
/*
#copyright {
	text-align:center;
	font-weight:bold;
	margin-bottom:30px;
	color: #FFF;
}
*/
/*
#survey {
	padding: 15px 5px 15px 15px;
	border-radius: 15px;
	background-color:white;
}
*/
li {
	font-size:12px;
	line-height:18px;
	}
p {
	font-size:12px;
	margin-bottom:10px;/*took out line height*/
}
header #title h1 {
	font-size: 45px;
}
/* =============================================================================
   Primary styles
   Author: 
   ========================================================================== */
   
body {
	background: url(../images/summerbackground.jpg) center top no-repeat;
	background-attachment:scroll;
	background-color: #000;
}
.textboxes {
	background-color: #FFFFFF;
	position: relative;
	height: 355px;
}

.headerbackgroundpattern{
	background-image:url(../images/headerbackgroundpatternimg.png); background-repeat:repeat-x; height:45px;}



#whychooseus{  background-color: #FFFFFF;
    top: -12px;}
	
/*================================top content start=============================*/

#repairlist{position:relative;}


ul.whychooseuslist {
	font-family:Arial, Helvetica, sans-serif;
	position:relative;
	font-size:11px;
	font-weight:bold;
	width:200px;
	list-style:none;
	padding-left: 10px;
}

ul.whychooseuslist li {
    color: #333333;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 11px;
    font-weight: bold;
    list-style: none outside none;
    position: relative;
}



#secondcolumblist{
	position:relative;
	left: -15px;
}

ul.whychooseuslist li a {
	font-family:Arial, Helvetica, sans-serif;
	position:relative;
	font-size:11px;
	font-weight:bold;
	width:200px;
	color:#333;
	text-decoration:none;
	
}


ul.whychooseuslist li:hover  {	color:#C33;
	list-style-image: url('../images/listarrow.gif');
	list-style-position:outside;}
	


.whychooseuslist li:hover a, #whychooseuslist li.current a {
	text-decoration:none;
	color:#333;
	text-decoration:none;
	color:#C33;}
	

li.whychooseuslist ul {
    color: #333333;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 11px;
    font-weight: bold;
    list-style: none outside none;
    position: relative;
	display:none;
}

li.whychooseuslist ul a {
	font-family:Arial, Helvetica, sans-serif;
	position:relative;
	font-size:11px;
	font-weight:bold;
	width:200px;
	color:#333;
	text-decoration:none;
	
}

li.whychooseuslist ul:hover  {	color:#C33;
	list-style-image: url('../images/listarrow.gif');
	list-style-position:outside;}
	
/*================================left side MENU =============================*/

#SideNav ul {
	font-size:11px;
	font-weight:bold;
	list-style:none;
	margin-left:0;
}

#SideNav ul li {
   clear:both;
}


#SideNav ul li a {
	color:#333;
	text-decoration:none;
	display:block;
	padding-left:20px;
	list-style-position:outside;
}
	


#SideNav ul li a:hover, #SideNav ul li.selected a, #SideNav ul li.selected ul li.selected a  {	color:#C33;
	background: url('../images/listarrow.gif') -12px center no-repeat;}
	
#SideNav ul li.selected ul li a { color: #333; background: none; }	
	
#SideNav ul li ul li {
    margin-left:10px;
	font-weight:normal;
}

/*================================whychooseus homepage=============================*/

#textwhychoose{
	margin-left: 39px;
    padding-bottom: 76px;
    padding-left: 25px;
    padding-top: 34px;
	width: 200px;
	font-weight:bold;
list-style-image: url('../images/listarrow.gif');
}


/*================================whychooseus homepage END=============================*/
	
	
	
#repairs { position:relative; }
#repairheading { background: url("../images/ServiceEngine.png") 20px 15px no-repeat; }
	#repairheading h2 { color: #CC3333; text-transform: capitalize; width: 240px; font-size: 16px !important; padding: 27px 0 5px 0; border-bottom: 2px dotted #666; float:right; margin-bottom: 20px; }

/*================================top content end===============================*/
/*================================bottom content start===============================*/

#leftbottompod{ position:relative;
margin-top: 11px;}


.coupondetail{ text-align:center;
position:relative; 
}


#system-message{ padding-bottom: 0px;}

#webform-results{padding-top: 105px;
    position: relative;} 
	
#title {color:#C33;}
/*================================bottom content end===============================*/

#bbb {
	background-image:url(../images/bbb.png);
	position:relative;
	height:70px;
	width:43px;
	background-repeat:no-repeat;
	left:77px;
	top:42px;
}

#approvedautorepair {
	background-image:url(../images/approvedautorepair.png);
	position:relative;
	height:70px;
	width:95px;
	background-repeat:no-repeat;
	left:176px;
	top:51px;
}
#ase {
	background-image:url(../images/asecertified.png);
	position:relative;
	height:58px;
	width:58px;
	background-repeat:no-repeat;
	left:260px;
	top:51px;
}
#asa {
	background-image:url(../images/asa.png);
	position:relative;
	height:38px;
	width:88px;
	background-repeat:no-repeat;
	right:-353px;
	top:63px;
}
#autocarecenter {
	background-image:url(../images/autocarcenter.png);
	position:relative;
	height:58px;
	width:74px;
	background-repeat:no-repeat;
	right:-420px;
	top:48px;
}
#greyspace {
	background-image:url(../images/greyspace.png);
    background-repeat: repeat-x;
    height: 59px;
    position: relative;
    width: 100%;
	z-index: -1;
}
#texture {
	background-image: url("../images/footerpattern.gif");
    background-repeat: repeat-x;
    height: 130px;
    position: relative;
    width: 100%;
}
.mainrepair {
	padding:10px;
	font-size:16px;
	padding-top:27px;
}

/*

#maintenanceheading {
    padding-left: 20px;
    position: absolute;
	float:left;}
	
	*/

#maintenanceh1 {
       background: url("../images/hammerwrench.png") no-repeat scroll 20px 15px transparent;
   }
   
#maintenanceh1 h2 {
    border-bottom: 2px dotted #666666;
    color: #CC3333;
    float: right;
    font-size: 16px !important;
    margin-bottom: 20px;
    margin-right: 20px;
    padding: 27px 0 5px;
    text-transform: capitalize;
    width: 230px;
}	
#dottedlinehead {
    background-image: url("../images/dottedlinehead.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    height: 3px;
    left: 21px;
    position: relative;
    top: -10px;}
	
#dottedlinehead1 {
    background-image: url("../images/dottedlinehead.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    height: 3px;
    left: 10px;
    position: relative;
    top: -20px;}

#mainmaintenance{padding-bottom:40px;}

#h1main {
    color: #CC3333;
    font-weight: bold;
    height: 49px;
    left: -23px;
    position: relative;
}


#repairworkerimg {
    background-image: url("../images/repairworkerimg.png");
    bottom: 17px;
    height: 141px;
    position: absolute;
    width: 149px;
	right: -7px;
	}
	
#maintenanceworkerimg {
    background-image: url("../images/maintenanceworkerimg.png");
    bottom: 44px;
    height: 139px;
    right: 10px;
    position: relative;
    width: 144px;
	float: right;
	display: block;
}
#schedulerepair {
    background-image: url("../images/learnmorebutton.png");
    bottom: 21px;
    height: 44px;
    position: absolute;
    width: 179px;
}

#schedulemaintenance {background-image: url("../images/learnmorebutton.png");
    bottom: 25px;
    height: 44px;
    left: 156px;
    position: relative;
    width: 179px;
}

#mainmaintenance1{
	height:0px;}

#schedulerepairtext{padding-left: 50px;
    padding-top: 10px;
    position: absolute;}
	
#schedulemaintenancetext{    background: none repeat scroll 0 0 transparent;
   padding-top: 10px;
    position: relative;
    text-align: center;
	padding-left:5px;
    }
	
.ribbonbutton {
    background-image: url("../images/learnmorebutton.png");
    background-repeat: no-repeat;
    color: #FFFFFF;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 11px;
    font-weight: bold;
    height: 44px;
    text-shadow: 0 1px 0 #353535;
    width: 179px;
}
#learnmorebutton {
    bottom: 20px;
    position: absolute;
    right: -16px;
}

#learnmorebutton2 {
    bottom: 20px;
    position: absolute;
    right: -16px;
}

#learnmore{
	   color: #FFFFFF;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    text-align: center;
    text-shadow: 0 1px 0 #353535;
    top: 9px;
    left:55px;
}

#learnmore2{
	   color: #FFFFFF;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    text-align: center;
    text-shadow: 0 1px 0 #353535;
    top: 9px;
    left:55px;
}


#dealeralternative {
    color: #FFFFFF;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: bolder;
    padding-top: 12px;
    position: relative;
    text-align: center;
    text-shadow: 0 1px 0 #353535;
}
	
#bodywrap{ height: 100%;}   

#weareyour {
    color: #FFFFFF;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: lighter;
    padding-right: 7px;
    position: relative;
    text-align: center;
    text-shadow: 0 1px 0 #353535;
}

#carimage {
   background-image: url("../images/carimage.jpg");
    height: 190px;
    left: 15px;
    position: absolute;
    top: 80px;
    width: 126px; 
}

.textboxes p {
    line-height: 18px;
    padding: 30px;
	clear: both;
}

#smalltext{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	
}

#whychooseus2{
	color: #FFFFFF;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: bolder;
    padding-top: 12px;
    position: relative;
    text-align: center;
    text-shadow: 0 1px 0 #353535;

}

#topcontentbackground {
    background-image: url("../images/topcontentbackground.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 375px;
    position: relative;
}
#rightsidebar {
    background-color:#2C2C2C;
    background-repeat: repeat-y;
    height: 100%;
    margin-top: 0;
    padding-bottom: 30px;
    position: relative;
    text-align: center;
    margin-top: 10px;
    z-index: 2;
}

	
/* =============================================================================
  rightcolumb begin 
   ========================================================================== */
.buttons {
	background-image:url(../images/buttonpattern.gif);
	background-repeat:repeat-x;
	height:37px;
}
.buttons:hover, .buttons.current {
	background-image:url(../images/buttonpattern.gif);
	background-image:url(../images/buttonpatternhover.gif);
}
#button2 { }

#hours {
    color: #FFFFFF;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 13px;
    font-weight: bolder;
    padding-top: 10px;
    text-shadow: 0 1px 0 #353535;
    height: 28px;
}
    
#hours:hover, #hours.current {
color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bolder;
	text-shadow: 0 1px 0 #353535;
	color:#333;
	text-shadow: 0 1px 0 #CCC;
}
#getaride {
    color: #FFFFFF;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: bolder;
    padding-top: 10px;
    text-shadow: 0 1px 0 #353535;
}
#getaride:hover, #getaride.current {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bolder;
	text-shadow: 0 1px 0 #353535;
	color:#333;
	text-shadow: 0 1px 0 #CCC;
}

/* ---- Coupons in Sidebar ---- */
.coupon { font-family:Arial, Helvetica, sans-serif; background-color: #fff; margin: 10px auto; display: block; width: 200px; clear: both; }
	.coupon .coupon-pad { padding: 10px; display: block; }
		.coupon .couponhead {font-size:25px; font-weight:bold; color:#cc3333; }
		.coupon .couponsubhead {font-size:14px; font-weight:bold; color:#333; }
		.coupon .couponmain {font-size:12px; padding-top:10px; color:#333; display:block;}
		.coupon .couponline { background: url("../images/dottedline.gif") repeat-x; height: 3px; width: 180px; display:block; }
		.coupon .couponredeem { color: #666; font-size: 10px; display:block; }
		.coupon .getcoupon { background: url("../images/arrow.png") 10px center no-repeat #993333; left: -10px; padding: 7px 10px 7px 30px; position: relative; text-align: right; display: block; width: 160px; color: #fff; }
		.coupon:hover .getcoupon { background-position: 12px center; background-color:#C33; }
/* =============================================================================
  right columb end
   ========================================================================== */
/* =============================================================================
							Start Search REsults page
   ========================================================================== */ 
   
   #text2 .search-results h3 a{
	   font-size:14px;
	  color:#900;
	  font-weight:bold;}
	  
	#text2 .search-results h3 a:hover{
	   font-size:14px;
	  color:#C33;
	  font-weight:bold;}
   
    #text2 .search-results p{
	   font-size:12px;
	  color:#333;
	  font-weight:normal;}
	  
	  
   
   
   
   
   
   
   
   
     
   
/* =============================================================================
						End Search REsults page
   ========================================================================== */ 
	
/* =============================================================================
 FAQ page start
   ========================================================================== */
   

#spacer{
	padding-bottom: 10px;
}

/*ul.faqlist {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:bold;
	list-style:none;
	clear: both;
}

ul.faqlist li {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:bold;
	color:#333;
}


ul.faqlist li a {
	font-family:Arial, Helvetica, sans-serif;
	position:relative;
	font-size:11px;
	font-weight:bold;
	color:#999;
	text-decoration:none;
	
}
ul.faqlist li:hover  {	color:#C33;
	list-style-image: url('../images/listarrow.gif');
	list-style-position: outside;}

.faqlist li:hover a, #footerlist li.current a {
	text-decoration:none;
	color:#333;
	text-decoration:none;
	color:#C33;}
*/

#text3 {
  line-height:18px;
  padding-bottom:45px;
}

  
#faqtext { color:#CCC;
font-weight:bold; font-family:Arial, Helvetica, sans-serif; font-size:12px; display:block;
text-align:center;} 

#faqtext a { color:#CCC;
font-weight:bold; font-family:Arial, Helvetica, sans-serif; font-size:12px; display:block;
padding-bottom:10px;} 

#faqtext a:hover { color:#C33;
font-weight:bold; font-family:Arial, Helvetica, sans-serif; font-size:12px; display:block;}

/* =============================================================================
 contact maps start
   ========================================================================== */

  
/* =============================================================================
 FAQ page start
   ========================================================================== */


#maintenance {
	padding: 24px;
	position: relative;
	top: -12px;
	width: 354px;
}
#search {
 background-image:url(/images/searchbar.png);
    float: right;
    height: 36px;
    position: absolute;
    right: -10px;
    text-align: right;
    top: 40px;
    width: 580px;
}

#certified {
    background-image: url("../images/certified.png");
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    height: 77px;
    margin: 0 auto;
    position: relative;
    width: 271px;
}

#logo {
}
#logo h1 a {
	background-image:url(../images/logo.png);
	width:322px;
	height:107px;
	position:absolute;
	left:-20px;
	top:9px;
}
#mainbody {
  background:scroll 0 0; background-image:url(../images/backgroundcolors.png); background-repeat:repeat-y; 
   	/*min-height:100%;*/
    position: relative;
    width: 960px;
	z-index: 1;
	display: block;
}
#topbody {
	background-image:url(../images/topbody.png);
	position:absolute;
	background-repeat:repeat-x;
	height: 261px;
	z-index:2;
	width:100%;
	display: block;
	top: 0;
	left: 0;
}
#main {
	position:relative;
	z-index:2;
	margin-top: 10px;
}
#bottomfooter {
	height:216px;
	width:960px;
	position:relative;
	left:-10px;
	top:10px;
	padding-bottom: 10px;
}

.footerpodsheadgradient{
   background-image: url("../images/footerpodsheadgradient.png");
    background-repeat: repeat-y;
    height: 30px;
    margin-left: -10px;
    padding-left: 10px;
    padding-right: 10px;
}

.footerpodsheadgradientmiddle{
	 background-image: url("../images/footerpodsheadgradientmiddle.png");
    background-repeat: repeat-y;
    height: 30px;
    margin-left: -2px;
    padding-left: 10px;
}

#testtitle{    
	color:#CCCCCC;
	font-family: sans-serif,Helvetica,sans-serif;
    font-size: 16px;
    font-weight: 100;
    margin-left: -7px;
    padding-top: 7px;
    text-align: center;
    text-shadow: 0 1px 0 #353535;
    }

#tiptitle{    
	color:#CCCCCC;
	font-family: sans-serif,Helvetica,sans-serif;
    font-size: 16px;
    font-weight: 100;
    padding-top: 7px;
    text-align: center;
    text-shadow: 0 1px 0 #353535;
    }

#faqtitle{    
	color:#CCCCCC;
	font-family: sans-serif,Helvetica,sans-serif;
    font-size: 16px;
    font-weight: 100;
    padding-top: 7px;
    text-align: center;
    text-shadow: 0 1px 0 #353535;
    }



#tipofthedaypod{
	background-image: url("../images/footerpodsbackgroundimg.png");
	background-repeat: repeat;
	height:215px;
	padding-right: 10px;
	padding-left:10px;
	
}

#readmore {
    color: #FFFFFF;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
}

#tiptext{
	  color: #999999;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 0;
    padding-left: 20px;
    padding-top: 30px;
}

.blog-dottedline{
	  background-image: url("/images/dottedline.gif");
    background-repeat: repeat-x;
    height: 3px;
    width: 630px;
	float: left;
	
	}
	
.blog-dottedline2 {
    background-image: url("/images/dottedline.gif");
    background-repeat: repeat-x;
    height: 3px;
    width: 455px;
	float: left;}
	
.blog-post{font-family:Arial, Helvetica, sans-serif;
clear:both;

	}
	
.blog-post li{font-family:Arial, Helvetica, sans-serif;
clear:both;

	}	
	
.blog-readmore{
	color:#C33;
	padding-top: 10px;}

.back-button{  font-size: 11px;
    font-weight: bold;
    padding-top: 10px;
	color:#900;}	
	
.tips{
	font-size:12px;
	line-height:14px;
	}

#summaryblog{
	font-weight:normal;
	font-size:11px;
	}

#tiptext a {
	color:#CCC;
	font-size:13px;
	font-weight:bold;
	float:left; 
	}
	
#tiptext a:hover {
	color:#C33;}
	
#tiptext .author{  color: #999999;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 11px;
	float:left;} 
	
#tiptext .date{  color: #999999;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 11px;
	float:left;
	padding-left:10px;}

#testimonialtext{
      color:#CCC;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
	text-align:center;}

#testimonialspod{
	background-image: url("../images/footerpodsbackgroundimg.png");
	background-repeat: repeat;
	height:215px;
	
}

#testimonialname{
	font-size: 10px;
	font-style: italic;
	font-weight: 100;
	line-height: 30px;
}

#faqpod{
	background: url("../images/footerpodsbackgroundimg.png");
	height:215px;
	padding-right: 10px;
	padding-left:10px;
}

#faqtext{
  color: #CCC;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 13px;
    font-weight: bold;
	padding-top:30px;
	padding-left:20px;
}

#spacer{
	padding-bottom: 10px;
}

.side-panel ul, .side-panel ol { margin-left: 0 !important; }
/*ul.footerlist {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:bold;
	list-style:none;
	clear: both;
padding-top:30px;}

ul.footerlist li {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:bold;
	color:#333;
}


ul.footerlist li a {
	font-family:Arial, Helvetica, sans-serif;
	position:relative;
	font-size:11px;
	font-weight:bold;
	color:#999999;
	text-decoration:none;
	
}
ul.footerlist li:hover  {	color:#C33;
	list-style-image: url('../images/listarrow.gif');
	list-style-position: outside;}

.footerlist li:hover a, #footerlist li.current a {
	text-decoration:none;
	color:#999999;
	text-decoration:none;
	color:#C33;}


/*
.footerlist li:hover a, #footerlist li.current a {
	text-decoration:none;
	color:#999999;
	text-decoration:none;
	color:#C33;}*/

#bottomfootertext {
	color:#999;
	text-align:center;
	padding-top:10px;
	line-height: 1.125em;
	margin: 1em 0; 
}

#bottomfootertext a { color:#C33; }
#bottomfootertext strong { color: #fff; }

/*======================== Navigation (Gandient tutorialfirefox/safari) ================================================== */

a:link, a:visited, a:hover, a:active {
	border: medium none;
}
#header-right {
	float:right;
}
#main-nav {
	position:absolute;
	top:99px;
	right:-10px;
	margin: 0;
	opacity: 1;
	text-align: center;
	width: auto;
}
#header {
	font-size: 12px;
	height: 130px;
	margin: 0 0 0;
	width: 100%;
	display: block;
}
#head {
	position: relative;
}
#main-nav li {
	border-right: 1px solid #818181;
	display: inline;
	float: left;
	font-family:Arial, Helvetica, sans-serif;
	list-style-type: none;
	overflow: hidden;
	padding: 0;
}
#main-nav li a {
	color: #FFFFFF;
	display: block;
	font-size: 11px;
	height: 21px;
	padding: 7px 15px;
	text-align: center;
	text-decoration: none;
	text-shadow: 1px 1px 0 #353535;
}
#main-nav li:first-child {
}
#main-nav li:last-child {
}
#main-nav li {
	background-color: #333;
	background-image:url(/images/navigationrollover.gif);
	background-repeat:repeat-x;
	background-position:0 0px;
}
#main-nav li:hover, #main-nav li.current {
	background-color: #999;
	background-image:url(/images/navigationrollover.gif);
	background-repeat:repeat-x;
	background-position:0 -37px;
}
#main-nav li {
}
#main-nav li:hover a, #main-nav li.current a {
	color: #000;
	text-shadow: 1px 1px 0 #CCCCCC;
}
/*========================== Navigation End (Gandient tutorialfirefox/safari) ================================================ */
/*========================== interior body start ================================================ */
 #bodywrapper{
 	position: relative;
 }
 
#repairnav {
	background: url("../images/smallheaderbackgroundpatternimg.png");
	background-repeat: repeat-x;
	height: 30px;
	position: relative;
   margin-top: 27px;
	}

	#repairnav h2 {  color: #FFFFFF;
    float: left;
    font-size: 13px !important;
    font-weight: bold;
	padding-left: 30px;
    padding-top: 7px;
    text-align: left;
    text-shadow: 0 1px 0 #353535;
    text-transform: capitalize;
    }
     
#repairnavlist { padding-top: 20px; }

.content {
	background-color: #fff;
    margin-top: 27px;
    padding-bottom: 50px;
}

.content p, .content ul, .content ol { width: 100%; float: none; clear: both; }
.content ul, .content ol { margin: .5em 0 1em 2em; display: block; width: auto; }
.content ul li, .content ol li { margin-bottom: 1em; clear: both; }
.content ol { list-style:decimal !important; }
.content ul { list-style: disc !important; }

.text2{ line-height: 25px;
    padding: 30px 35px 84px;
	color:#333;}
	
	.text2 a:link {color:#900;}
    
   .text2 h1{
   float: left;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 30px !important;
    font-weight: bold; 
    color: #CC3333;
	padding-bottom:20px;
	line-height:30px;
   }
   
   .text2 h2{
   float: left;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 18px;
    font-weight: bold; 
    /*padding-top: 25px;*/
   }
   
   .text2 h3{color: #333333;
    float: left;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 18px !important;
    font-weight: bold;
    padding-bottom: 10px}
	
	.text2 h3 a{color:#900;}
	
	.text2 h3 a:hover{color:#C33;}
   
         .text2 p{
   float: left;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px !important; 
    color: #333333;
    line-height:18px;
	clear:both;
    /*padding-top: 35px;*/
   }
   
    .text2 #mainpage a:hover {color:#C33 !important;}
.text2 #mainpage a:visited{color:#900;}

.text2 .faq-question a{ font-weight:bold;
color:#333;
font-size:14px;
}

.text2 .faq-question a:hover{ font-weight:bold;
color:#C33;
font-size:14px;
}
.answer{ color:#333;
font-weight:normal; font-family:Arial, Helvetica, sans-serif; font-size:12px; display:block; padding-bottom:10px;}

.text2 .answer a{   color:#333;
    font-size: 12px;
    font-weight: normal;
	padding-bottom:10px;
	line-height:18px;
}
	.text2 .answer a:hover{   color:#333;
    font-size: 12px;
    font-weight: normal;
	padding-bottom:10px;
	line-height:18px;
}

.text2 .autoblog {color:#CC3333;
  float:left;
  font-family:Arial, Helvetica, sans-serif;
  font-size:30px !important;
  font-weight:bold;
  line-height:30px;
  padding-bottom:20px;}
	


/*========================== interior body end ================================================ */
/*========================== form start ================================================ */

.left {
    border-right: 1px dotted #BFD5EF;
    display: inline;
    float: left;
    margin: 10px 0 0;
    padding: 0 5px 15px;
    width: 31.5%;
}

.cform {
    padding-left: 10px;
    text-align: left;
}

.left img {
    float: left;
    margin: 0 10px 0 0;
}




input {
       background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid;
	height:20px;
}

#cForm label {
    left: -10px;
    padding-top: 0;
    position: relative;
}


label {
    display: block;
}

input.text, textarea {
    border: 1px solid #999999;
    color: #333333;
    font: 11px/12px;
    font-family:Arial, Helvetica, sans-serif;
    font-weight:normal;
    margin: 2px 0px 10px 0px;
    position: relative;
    width: 270px;

}


input.submit {
       background: none repeat scroll 0 0 #CC0000;
    color: #FFFFFF;
    float: right;
    font: bold 12px/12px verdana,arial,sans-serif;
    left: 189px;
    margin-top: 10px;
    padding: 5px 100px;
}


#CC{
	  font-family: Arial,Helvetica,sans-serif;
    font-size: 12px !important;
    position: relative;
    top: 2px;
}

#contact {
	 background: url("../images/smallheaderbackgroundpatternimg.png");
	background-repeat: repeat-x;
	height: 30px;
	position: relative;
   margin-top: 27px;
	}

#contact h2 {
    color: #FFFFFF;
    float: left;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 17px !important;
    font-weight: bold;
    padding-left: 20px;
    padding-top: 3px;
    text-align: left;
    text-shadow: 0 1px 0 #353535;
    text-transform: capitalize;
}
   
.hourstype li { list-style: none; margin-bottom: 0 !important; }


/*========================== form end ================================================ */
/*========================== footer start ================================================ */
#foot { position:relative; width: 960px; z-index: 2; }
#bottomfootertext a.sitecredit { color: #999; }
#bottomfootertext a.sitecredit strong { color: #ccc; }
#bottomfootertext a.sitecredit:hover strong { text-decoration: underline; color: #fff; }
/*========================== footer end ================================================ */


/* Fancypants CSS3 or webkit code that probably won't validate but enhances the design */
/* Rounded Corners */
.r5-all, p input, p textarea {
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	-khtml-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-khtml-border-radius-topright: 5px;
	-khtml-border-radius-topleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-topleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
.r5-top {
	-webkit-border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	-khtml-border-radius-topright: 5px;
	-khtml-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-topleft: 5px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
.r5-topleft {
	-webkit-border-top-left-radius: 5px;
	-khtml-border-radius-topleft: 5px;
	-moz-border-radius-topleft: 5px;
	border-top-left-radius: 5px;
}
.r5-topright {
	-webkit-border-top-right-radius: 5px;
	-khtml-border-radius-topright: 5px;
	-moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;
}
.r5-right {
	-webkit-border-top-right-radius: 5px;
	-khtml-border-radius-topright: 5px;
	-moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-khtml-border-radius-bottomright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-bottom-right-radius: 5px;
}
.r5-bottom {
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-khtml-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
.r10-bottom {
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-khtml-border-radius-bottomright: 10px;
	-khtml-border-radius-bottomleft: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
#searchbox {
	-webkit-border-top-right-radius: 5px;
	-khtml-border-radius-topright: 5px;
	-moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;
}
/* =============================================================================
   Non-semantic helper classes
   Please define your styles before this section.
   ========================================================================== */


/* For image replacement */
.ir {
	display: block;
	text-indent: -999em;
	overflow: hidden;
	background-repeat: no-repeat;
	text-align: left;
	direction: ltr;
}
/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
	display: none;
	visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
	visibility: hidden;
}
/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
}
.clearfix:after {
	clear: both;
}
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {
	zoom: 1;
}



/**
 * Media queries for responsive design.
 *
 * These follow after primary styles so they will successfully override.
 */

@media all and (orientation:portrait) {
/* Style adjustments for portrait mode goes here */

}
 @media all and (orientation:landscape) {
/* Style adjustments for landscape mode goes here */

}

/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
/* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
  /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}


/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */
@media print {
* {
	background: transparent !important;
	color: black !important;
	text-shadow: none !important;
	filter:none !important;
	-ms-filter: none !important;
} /* Black prints faster: sanbeiji.com/archives/953 */
a, a:visited {
	color: #444 !important;
	text-decoration: underline;
}
a[href]:after {
	content: " (" attr(href) ")";
}
abbr[title]:after {
	content: " (" attr(title) ")";
}
 .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
content: "";
}  /* Don't show links for images, or javascript/internal links */
pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
	margin-left:25px;
	padding:8px;
}
thead {
	display: table-header-group;
} /* css-discuss.incutio.com/wiki/Printing_Tables */
tr, img {
	page-break-inside: avoid;
}
 @page {
margin: 0.5cm;
}
p, h2, h3 {
	orphans: 3;
	widows: 3;
}
h2, h3 {
	page-break-after: avoid;
}
}

