/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color:#000000;
  color: #000000;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #6982b5;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
  margin: 0px;
  padding: 0px;
}
/* Commonly used to style section titles. */
h2 {
  color: #6982b5;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  margin-left: 10px;
}
/* Sets the style for unvisited links. */
a:link {
  color: #d74f4f; 
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #d74f4f;
  font-weight: bold;
  text-decoration: underline;
}
a:visited:hover {
color: #ca0009;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:link:hover {
  color: #ca0009;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #ca0009;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #d74f4f;
}
p {
  margin: 0px;
  padding-top: 6px;
  padding-bottom: 6px;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color:#FFFFFF;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 950px;
  background-image:url(../images/contentback.jpg);
  background-repeat:repeat-y;
}
#outerWrapper #header {
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  height: 160px; 
  width: 950px;
  background-image:url(../images/mission_logo.jpg);
  background-repeat:no-repeat;
  background-color:#333333;
  margin-bottom: 0px;
}
.headertop {
  height: 124px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.headerbottom {
  height: 25px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #FFFFFF;
  float: left;
  padding: 10px 10px 10px 13px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
  background-image:url(../images/leftcolback.jpg);
  background-repeat:repeat-y;
}
#outerWrapper #contentWrapper #rightColumn1 {
  background-color: #FFFFFF;
  float: right;
  padding: 10px 13px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
  background-image:url(../images/rightcolback.jpg);
  background-repeat:repeat-y;
  background-position:right;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 0 165px 0 172px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 15px 10px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#content {
background-color:#FFFFFF;
background-image:url(../images/topback2.jpg);
background-repeat:no-repeat;
border-left: 0px;
border-right: 0px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
.footer {
  background-image:url(../images/footerback.jpg);
  background-repeat: no-repeat;
  padding: 3px 10px 3px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0 auto 0px auto;
  width: 930px;
}
.footer p{
  padding: 3px 10px 3px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 5px 0px 0px 0px;
}
.footercontainer{ 
width: 930px;
float: left;
}
.footerleft {
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px;
  width: 300px;
  float: left;
  font-weight: bold;
  line-height: 18px;
}
.footerleft p{
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-top: 5px;
}
.lunarspan{
  font-size: 10px;
  font-weight: normal;
}
.lunarspan a:link:hover{
  color:#ca0009;
}
.lunarspan a:link{
  color:#333333;
}
.footerright {
  padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px;
  width: 500px;
  float: right;
}
/* ///////////////////////////////// LEFT AND RIGHT COLUMNS ///////////////////////////////////////////////////////////////// */
.innercolumns{
  float: left;
  width: 150px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 5px;
}
.innercolumnstop{
  background-color:#333333;
  background-image:url(../images/topcol.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
  height:24px;
  color:#FFFFFF;
}
.innercolumnstop p{
  font-weight: bold;
  font-size: 11px;
  text-align: center;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 5px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  font-family:Verdana, Arial, Helvetica, sans-serif;
}
.innercolumns2{
  background-color:#333333;
  background-image:url(../images/middlecol.jpg);
  background-repeat:repeat-y;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
}
.innercolumns2 p{
  margin: 3px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.innercolumns2a{
  background-color:#333333;
  background-image:url(../images/middlecol2.jpg);
  background-repeat:repeat-y;
  float: left;
  border: 0px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
}
.innercolumns2a p{
  margin: 3px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.innercolumns2b{
  background-color:#333333;
  background-image:url(../images/middlecol2.jpg);
  background-repeat:repeat-y;
  float: left;
  border: 0px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
}
.innercolumns2b p{
  margin: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  color:#AA0000;
}
.innercolumns3{
  background-color:#333333;
  background-image:url(../images/bottomcol.jpg);
  background-repeat:no-repeat;
  background-position:bottom;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
  height:20px;
}
.innercolumns3a{
  background-color:#333333;
  background-image:url(../images/bottomcol2.jpg);
  background-repeat:no-repeat;
  background-position:bottom;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 150px;
  height:20px;
}
/*--------------------------------- LEFT COLUMN CATEGORY MENU ----------------------------------------------------------------------- */
	
#menu {
	width: 141px;
	margin-left: 5px;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 11px;
	font-weight: normal;
	}
	#menu ul {
	list-style: none;
	margin: 0;
	padding-left: 0px;
	background:  url(../images/menutop.jpg);
	}
	
#menu li a {
  	voice-family: "\"}\""; 
  	voice-family: inherit;
  	height: 18px;
	text-decoration: none;
	}	
	
#menu li a:link, #menu li a:visited {
	color:#333333;
	display: block;
	background:  url(../images/menu.jpg);
	padding: 1px 0px 0px 20px;/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	}
	
#menu li a:hover {
	color:#FF0000;
	background:  url(../images/menu.jpg) 0 -19px;
	padding: 1px 0px 0px 20px;/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	}
	
	
/*--------------------------------- Browse by MENU ----------------------------------------------------------------------- */
	
#browsemenu {
	width: 141px;
	margin-left: 5px;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 11px;
	font-weight: normal;
	}
	#browsemenu ul {
	list-style: none;
	margin: 0;
	padding-left: 0px;
	background:  url(../images/menutop.jpg);
	}
	
#browsemenu li a {
  	voice-family: "\"}\""; 
  	voice-family: inherit;
  	height: 18px;
	text-decoration: none;
	}	
	
#browsemenu li a:link, #browsemenu li a:visited {
	color:#333333;
	display: block;
	background:  url(../images/menu2.jpg);
	padding: 1px 0px 0px 5px;/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	}
	
#browsemenu li a:hover {
	color:#FF0000;
	background:  url(../images/menu2.jpg) 0 -19px;
	padding: 1px 0px 0px 5px;/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size: 12px;
	}
#browsemenu img{
	border: 0px;
	margin-right: 8px;
	margin-top:0px;
	}
/*----------------------------------- TOP NAVIGATION MENU ---------------------------------------------------------------------- */
.solidblockmenucontain{
	float: left;
	width: 948px;
	background-position: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 2px;
}
.solidblockmenu{
	margin-top: 10px;
	margin-bottom: 0px;
	margin-left: 2px;
	padding: 0px;
	float: left;
	font-size: 11px;
	font-weight: bold;
	font-family: Tahoma, Geneva, sans-serif;
	width: 588px;
	border-top: 1px solid #625e00;
	border-bottom: 1px solid #625e00;
	border-left: 1px solid #625e00;
	background: url(../images/blockdefault.gif) center center repeat-x;
	list-style: none;
}
.solidblockmenu li{
	display: inline;
}

.solidblockmenu li a{
	float: left;
	color: white;
	padding-top: 2px;
	padding-bottom: 2px;
	text-decoration: none;
	width: 97px;
	text-align: center;
	border-right: 1px solid #625e00;
}

.solidblockmenu li a:visited{
	color: white;
	text-decoration: none;
}

.solidblockmenu li a:hover, .solidblockmenu li .current{
	color: white;
	background: transparent url(../images/blockactive.gif) center center repeat-x;
	text-decoration: none;
}
.searchformcontainer{
	float: right;
	width: 260px;
	background-position: 0px;
	margin-top: 10px;
	margin-bottom: 0px;
	margin-right: 4px;
	padding: 0px;
	font-size: 10px;
	color:#FFFFFF;
}
.searchform{
	float: right;
	font-size: 11px;
	width: 250px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;
	text-align: right;
	}
.searchbar{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 140px;
	font-weight: bold;
	border: 1px solid #333333;
	text-align: center;
	}
	.gobutton{
	margin-bottom: -3px;
	margin-left: 5px;
	margin-right: 4px;
	width: 37px;
	height: 15px;
	}
/*----------------------------------- contents------------------------------------------------------------------------------------- */
.carmakesearchform{
	margin-top: 5px;
	margin-left: 12px;
	width: 134px;
	margin-top: 15px;
	margin-bottom: 0px;
	border: 0px;
	}
	.carmakesearchform2{
	margin-top: 5px;
	margin-left: 8px;
	width: 134px;
	margin-top: 15px;
	margin-bottom: 0px;
	border: 0px;
	}
.carmakesearchformdropd{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 127px;
	margin-bottom: 3px;
	margin-top: 0px;
	font-weight: bold;
	}
.carmakesearchformbutton{
	float:right;
	margin-right: 5px;
	width: 130px;
	height: 22px;
	margin-top: 8px;
	margin-bottom: 0px;
	padding: 0px;
	}
	.viewsidecarformbutton{
	float:left;
	margin-right: 0px;
	width: 72px;
	height: 22px;
	margin-top: 8px;
	margin-bottom: 0px;
	border: 0px;
	}
		.viewsidecarformimg{
	margin-top: 8px;
	border: 0px;
	}
.carbrandform{
	margin-top: 5px;
	margin-left: 12px;
	width: 130px;
	margin-top: 10px;
	margin-bottom: 5px;
	border: 0px;
	}
.brandlogo{
	margin-left: 8px;
	border: 0px;
	}
.shoppingcarttxt{
	font-weight: bold;
	margin-top: 15px;
	color:#333333;
	margin-left: 10px;
	}
	.shoppingcartimg{
	margin-left: 8px;
	}
.specialoffertable{
	margin-top: 12px;
	background-color:#EEEEEE;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
	padding-top: 1px;
	padding-bottom: 1px;
	}
.specialofferdiv{
	margin-top: 12px;
	background-color:#EEEEEE;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
	padding-top: 1px;
	padding-bottom: 1px;
	width: 140px;
	float: left;
	margin-left: 6px;
	}
.specialofferleft{
	width: 55px;
	float: left;
	}
.specialofferleft img{
	margin-top: 6px;
	margin-bottom: 6px;
	margin-left: 2px;
	}
	.specialofferright{
	width: 85px;
	float: right;
	}
		.specialofferwasp{
	font-size: 11px;
	text-decoration:line-through;
	font-style:italic;
	}
			.specialoffernowp{
	font-size: 11px;
	text-decoration:none;
	font-weight: bold;
	}
	.cartobuydiv{
	margin-top: 12px;
	background-color:#EEEEEE;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
	padding-top: 1px;
	padding-bottom: 1px;
	width: 140px;
	float: left;
	margin-left: 6px;
	}
		.cartobuydivimg{
	margin-top: 5px;
	margin-bottom: 4px;
	}
		.cartobuydiv p{
text-align: center;
padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
margin: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	}
			.cartobuydivprice{
padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
margin: 8px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
font-weight: bold;
	}
			.cartobuydivviewbut{
padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
margin: -3px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
border: 0px;
	}
.footerpara{
	margin-top: 2px;
	margin-bottom: 2px;
	padding: 0px;
	text-align: center;
	font-weight: bold;
	color:#FFFFFF;
	}
/* -------------------------------------------- LARGE HOME PAGE CENTER COLUMNS ----------------------------------------------------- */
	.innercolumnslarge{
  float: left;
  width: 575px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 5px;
  margin-left: 1px;
  margin-top: 7px;
}	
		.innercolumnslargetop{
  background-color:#FFFFFF;
  background-image:url(../images/prodlisttop.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:25px;
}
		.innercolumnslargetop p{
margin-left: 20px;
margin-top: 0px;
font-size: 13px;
font-weight: bold;
color:#FFFFFF;
font-family:Verdana, Arial, Helvetica, sans-serif;
}
.innercolumnslarge2{
  background-color:#FFFFFF;
  background-image:url(../images/largemiddlecol.jpg);
  background-repeat:repeat-y;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
}
.innercolumnslarge2 p{
  margin: 3px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.innercolumnslarge2services{
  background-color:#FFFFFF;
  background-image:url(../images/servicesback.jpg);
  background-repeat:repeat-y;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
}
.innercolumnslarge2services p{
  margin: 3px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.innercolumnslarge2services ul{
  margin-bottom: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.innercolumnslarge2b{
  background-color:#FFFFFF;
  background-image:url(../images/largemiddlecol.jpg);
  background-repeat:repeat-y;
  float: left;
  padding: 10px 0px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
}
.innercolumnslarge3{
  background-color:#FFFFFF;
  background-image:url(../images/largebottomcol.jpg);
  background-repeat:no-repeat;
  background-position:bottom;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:20px;
}
.ourservices{
  background-color:#FFFFFF;
  background-image:url(../images/ourservicesback1.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 157px;
  height:218px;
  margin-left: 27px;
  margin-top: 15px;
}
.ourservices p{
  margin-left: 10px;
  margin-top: 111px;
  text-align:justify;
}
.ourservices img{
  margin-top: 3px;
}
.ourservices2{
  background-color:#FFFFFF;
  background-image:url(../images/ourservicesback2.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 157px;
  height:218px;
  margin-left: 26px;
  margin-top: 15px;
}
.ourservices2 p{
  margin-left: 10px;
  margin-top: 111px;
  text-align:justify;
}
.ourservices2 img{
  margin-top: 3px;
}
.ourservices3{
  background-color:#FFFFFF;
  background-image:url(../images/ourservicesback3.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 157px;
  height:218px;
  margin-left: 26px;
  margin-top: 15px;
}
.ourservices3 p{
  margin-left: 10px;
  margin-top: 111px;
  text-align:justify;
}
.ourservices3 img{
  margin-top: 3px;
}
.featuredprodtable2{
  background-color:#FFFFFF;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 526px;
  margin-left: 26px;
  margin-top: 10px;
  margin-bottom: 0px;
}
.featuredprodtable{
  background-color:#FFFFFF;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 526px;
  margin-left: 26px;
  margin-top: 17px;
  margin-bottom: 0px;
}
.featuredprodtabletop{
  background-color:#FFFFFF;
  background-image:url(../images/featuredprodsback1.jpg);
  background-repeat:no-repeat;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 526px;
  height:20px;
}
.carsalesmid{
  background-color:#FFFFFF;
  background-image:url(../images/featuredprodsback2.jpg);
  background-repeat:repeat-y;
  padding: 0px 0px 0px 9px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 526px;
  min-height: 80px;
}
.carsalesmid img{
  border: 1px solid #CCCCCC;
}
.carsalesmid a:hover img{
  border: 1px solid #FF0000;
}
.featuredprodtablemid{
  background-color:#FFFFFF;
  background-image:url(../images/featuredprodsback2.jpg);
  background-repeat:repeat-y;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 526px;
  min-height: 80px;
}
.featuredprodtablemid p{
 font-size: 11px;
 margin-left: 130px;
 margin-right: 15px;
 margin-top: 0px;
 padding: 0px;
}
.featuredprodtablemid a:link{
 font-size: 11px;
 margin-top: 0px;
 padding: 0px;
}
.featuredprodtablemid img{
 margin-left: 15px;
 margin-top: 0px;
 padding: 0px;
}
.featuredprodtablebottom{
  background-color:#FFFFFF;
  background-image:url(../images/featuredprodsback3.jpg);
  background-repeat:no-repeat;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 526px;
  height:18px;
}
.featuredbutton{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-right: 20px;
  border: 0px;
}
/* ///----------------------------- Category -------------------------//// */
.categorydiv{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-left: 10px;
  margin-top: 0px;
  float: left;
  width: 127px;
  font-weight: bold;
  font-size: 11px;
  text-align:center;
}
.categorydiv a:link {
  color: #d74f4f;
  font-weight: bold;
  text-decoration:underline;
}
.categorydiv a:hover {
  color: #ca0009;
  font-weight: bold;
  text-decoration:underline;
}
.categorydivspacer{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-left: 10px;
  margin-top: 0px;
  float: left;
  width: 53px;
  font-weight: bold;
  font-size: 11px;
  text-align:center;
}
.categorydivspacer2{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-left: 10px;
  margin-top: 0px;
  float: left;
  width: 125px;
  font-weight: bold;
  font-size: 11px;
  text-align:center;
}

	.prodlistbread{
  background-color:#FFFFFF;
  background-image:url(../images/breadcrumbback.gif);
  background-repeat:no-repeat;
  float: left;
  padding: 6px 0px 0px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 560px;
  height:30px;
  margin-left: 3px;
}
.prodlistbread a:link:hover{
color: #ca0009;
  text-decoration: underline;
  }
  .prodlistbread a:link{
	color: #333333;
	font-weight: bold;
	text-decoration: underline;
  }
  .prodlistbread a:visited{
	color: #333333;
	font-weight: bold;
	text-decoration: underline;
  }
    .prodlistbread a:visited:hover{
	color: #ca0009;
  }
 	.printprodlistbread{
  background-color:#FFFFFF;
  background-image:url(../images/breadcrumbback.gif);
  background-repeat:no-repeat;
  float: left;
  padding: 6px 0px 0px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 550px;
  height:30px;
  margin-left: 2px;
}
.printprodlistbread a:link:hover{
color: #ca0009;
  text-decoration: underline;
  }
  .printprodlistbread a:link{
	color: #333333;
	font-weight: bold;
	text-decoration: underline;
  }
  .printprodlistbread a:visited{
	color: #333333;
	font-weight: bold;
	text-decoration: underline;
  }
    .printprodlistbread a:visited:hover{
	color: #ca0009;
  }
  .selectedbread{
    font-size: 12px;
  color:#d74f4f; 
  font-weight: bold;
   }
   
   	.selectcarprodlist{
  background-color:#FFFFFF;
  background-image:url(../images/selectyourcarback2.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 6px 0px 0px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 560px;
  height:85px;
  margin-left: 2px;
}
   	.selectcarprodlist2{
  background-color:#FFFFFF;
  background-image:url(../images/selectedcar.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 6px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 570px;
  height:85px;
  margin-left: 2px;
}
   	.selectcarprodlist2 p{
  margin-left: 20px;
}
   	.selectcarprodlist3{
  background-color:#FFFFFF;
  background-image:url(../images/brandcategory.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 570px;
  height:85px;
  margin-left: 2px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
   	.selectcarprodlist3 p{
	margin-top: 0px;
  margin-left: 0px;
  font-weight: bold;
}
   	.selectcarprodlist4{
  background-color:#FFFFFF;
  background-image:url(../images/brandcategory.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 20px 0px 20px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 570px;
  height:85px;
  margin-left: 2px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
   	.selectcarprodlist4 p{
	margin-top: 0px;
  margin-left: 0px;
  font-weight: bold;
}
   	.smallspanversionlrg{
	color:#000084;
}
   	.smallspanversion{
	font-size: 11px;
	color:#000084;
}
   	.selectedviewall{
  margin-left: 10px;
  border: 0px;
}
   	.selectedcarchange{
  margin-left: 5px;
}
   	.selectcarprodlist2carname{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 450px;
  height:17px;
}
   	.selectcarprodlist2carnamebody{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 450px;
}
   	.selectcarprodlist2carname p{
  margin-left: 145px;
  margin-top: 0px;
  margin-right: 0px;
  font-weight: bold;
  padding: 0px;
  font-size: 14px;
}
   	.selectcarprodlist2left{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 450px;
}
   	.selectcarprodlist2right{
  float: right;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 120px;
}
	.selectedcarbrowse{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 127px;
	margin-bottom: 3px;
	margin-left: 5px;
	margin-right: 3px;
	margin-top: 10px;
	font-weight: bold;
	}
.carmakeselectlistform{
	margin-top: 5px;
	margin-left: 95px;
	width: 450px;
	height: 70px;
	margin-bottom: 0px;
	border: 0px;
	}
	.carmakesearchformbutton2{
	float:right;
	margin-right: 0px;
	width: 95px;
	height: 22px;
	margin-top: 10px;
	margin-bottom: 0px;
	border: 0px;
	}
	.carmakesearchformdropd2{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 127px;
	margin-bottom: 3px;
	margin-left: 5px;
	margin-right: 3px;
	margin-top: 10px;
	font-weight: bold;
	float: right;
	}
		.carmakesearchformdropd2a{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 127px;
	margin-bottom: 3px;
	margin-left: 5px;
	margin-right: 7px;
	margin-top: 10px;
	font-weight: bold;
	float: right;
	}
		.prodlist{
  float: left;
  width: 575px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 5px;
  margin-left: 1px;
  margin-top: 5px;
}	
		.prodlist1{
  background-color:#FFFFFF;
  background-image:url(../images/prodlisttop.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:25px;
}
		.prodlist1 p{
margin-left: 20px;
margin-top: 0px;
font-size: 13px;
font-weight: bold;
color:#FFFFFF;
font-family:Arial, Helvetica, sans-serif;
}
.prodlist1left{
float: left;
width: 335px;
}
.prodlist1right{
float: right;
width: 240px;
text-align:right;
}
.prodlist1right p{
margin-right: 20px;
}
.brandselectform{
float: right;
width: 220px;
padding: 0px;
margin: 0px;
margin-top: 2px;
height: 20px;
color:#333333;
font-weight: bold;
font-size: 12px;
}
		.branddropdownlist{
	font-size: 11px;
	background-color:#E0E0E0;
	width: 127px;
	margin-bottom: 0px;
	margin-right: 0px;
	margin-left: 20px;
	margin-top: 0px;
	font-weight: bold;
	}
.prodlist2{
  background-color:#FFFFFF;
    background-image:url(../images/largemiddlecol.jpg);
  background-repeat:repeat-y;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
}
.prodlist2 p{
  margin: 3px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.prodlist3{
  background-color:#FFFFFF;
  background-image:url(../images/largebottomcol.jpg);
  background-repeat:no-repeat;
  background-position:bottom;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:20px;
}
		.prodlistpages{
  background-color:#FFFFFF;
  background-image:url(../images/prodlisttop2.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 5px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:25px;
}
		.prodlistpages2{
  background-color:#FFFFFF;
  background-image:url(../images/prodlisttop2.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 20px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:25px;
}
		.prevsoldcarsbar{
  background-color:#FFFFFF;
  background-image:url(../images/prevsoldcars.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 5px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:25px;
}
		.prodlistpagescontact{
  background-color:#FFFFFF;
  background-image:url(../images/prodlisttop2contact.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:25px;
}
		.prodlistpages3{
  background-color:#FFFFFF;
  background-image:url(../images/prodlisttop3.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:25px;
}
		.prodlistpagesleft{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 155px;
  height:25px;
}
.prodlistpagesleft p{
font-weight: bold;
margin-left: 10px;
}
		.prodlistpagesmiddle{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 290px;
  height:25px;
  font-weight: bold;
}
		.prodlistpagesmiddle p{
   text-align:center;
  font-weight: bold;
}
		.prodlistpagesmiddle a:link{
  color:#ca0009;
  font-weight: bold;
}
		.prodlistpagesmiddle a:hover{
  color:#333333;
  font-weight: bold;
}
		.prodlistpagesmiddle2{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 415px;
  height:25px;
  font-weight: bold;
  text-align: left;
}
		.prodlistpagesright{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 125px;
  height:25px;
}
		.backtopageleft{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 375px;
  height:25px;
}
		.backtopageleft p{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 5px 0px 0px 20px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  font-weight: bold;
  font-size: 11px;
}
		.backtopageright{
  float: right;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 200px;
  height:25px;
}
		.backtopageright p{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 5px 10px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
.backtopageright a:hover{
color: #ca0009;
  text-decoration: underline;
  }
.innerprodlist{
	background-image:url(../images/innerprodlistback.jpg);
	float: left;
	padding: 0px 0px 0px 3px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 280px;
	margin-left: 4px;
	margin-right: 3px;
	margin-top: 7px;
	margin-bottom: 5px;
	background-repeat: no-repeat;
}
.innerprodlisthead{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 277px;
  margin-bottom: 8px;
  margin-top: 5px;
  text-decoration: underline;
}
.innerprodlisthead p{
  margin-left: 2px;
  padding: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 5px;
  text-decoration: underline;
}

.innerprodlisthead a:link {
  color: #d74f4f; 
  font-weight: bold;
  text-decoration: underline;
}
.innerprodlisthead a:hover {
  color: #ca0009; 
  font-weight: bold;
  text-decoration: underline;
}
.innerprodlist1{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 92px;
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 8px;
}
.innerprodlist2{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 55px;
  margin-left: 0px;
  margin-right: 0px;
  padding: 0px;
}
.innerprodlist3{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 123px;
  margin-left: 0px;
  margin-right: 0px;
  padding: 0px;
}
.prodlistpic{
margin-left: 0px;
}
.prodlistviewbutton{
margin-right: 12px;
margin-top: 2px;
border: 0px;
padding: 0px;
width: 58px;
height: 18px;
}
.ourpriceprodlist{
font-weight: bold;
font-size: 11px;
color:#000000;
}
.sortbypriceform{
padding: 0px;
margin: 0px;
float: right;
}
.sortbypriceformbutton{
padding: 0px;
margin: 0px;
}
.clearcarform{
padding: 0px;
margin: 0px;
border: 0px;
}
.clearcarformbutton{
padding: 0px;
margin: 0px;
width: 115px;
height: 25px;
}
.smallcarpic{
padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
margin: 5px 5px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.smallcarpic2{
padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
margin: 15px 5px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
float: right;
}
		.productdetailtop{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
}
		.productdetailtopleft{
  float: left;
  padding: 0px 0px 0px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 267px;
}
		.productdetailtopright{
  float: right;
  padding: 0px 0px 0px 12px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 278px;
  background-image: url(../images/proddetailback.jpg);
  background-repeat: no-repeat;
  height: 210px;
}
		.cardetailtopright{
  float: right;
  padding: 0px 0px 0px 12px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 278px;
  background-image: url(../images/proddetailback.jpg);
  background-repeat: no-repeat;
}
		.productdetailtopright p{
  line-height: 10px;
  width: 265px;
  overflow: hidden;
}
		.cardetailtopright p{
  line-height: 10px;
  width: 265px;
  overflow: hidden;
}
		.mainprodname{
  color: #d74f4f;
  font-size: 12px;
  font-weight: bold;
  border-bottom:1px dotted #333333;
  margin-right: 14px;
  height: 8px;
  margin-top: 3px;
  margin-bottom: 5px;
}
		.servicesparaspan{
  color: #d74f4f;
  font-size: 12px;
  font-weight: bold;
  border-bottom:1px dotted #333333;
  margin-right: 14px;
  height: 8px;
  margin-top: -4px;
  margin-bottom: 5px;
}
		.mainprodspanrighttxtcarsales{
  margin-left: 108px;
}
		.mainprodspanrighttxt1{
  margin-left: 92px;
}
		.mainprodspanrighttxt2{
  margin-left: 31px;
}
		.mainprodspanrighttxt3{
  margin-left: 5px;
}
		.mainprodpricediv{
  background-image:url(../images/proddetailbackprice.jpg);
  background-repeat: no-repeat;
  width: 265px;
  height: 50px;
  margin-top: 7px;
  margin-left:0px;
}
		.mainprodpricedivleft{
  width: 115px;
  float: left;
}
		.mainprodpricedivleft p{
  margin-left: 10px;
  font-weight: bold;
  font-size: 9px;
  margin-top: 3px;
  line-height:12px;
}
		.mainprodpricedivleftwasprice{
  font-style:italic;
  font-size: 9px;
  text-decoration:line-through;
}
		.mainprodpricedivleftsaveprice{
  font-size: 9px;
  color: #d74f4f; 
}

		.mainprodpricedivright{
  width: 145px;
  float: right;
}
		.mainprodpricedivright p{
  margin-left: 15px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 11px;
   color:#E80000 
}
		.prodbuynowform{
  margin-left: 20px;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 0px;
  padding: 0px;
  width: 245px;
  font-size: 12px;
  font-weight: bold;
}
		.buynowqtym{
  width: 22px;
  text-align:center;
  font-size: 12px;
  margin-left: 5px;
  font-weight: normal;
}
		.basketqty{
  width: 22px;
  text-align:center;
  font-size: 12px;
  margin-left: 5px;
  font-weight: bold;
}
		.buynowbutton{
  margin-bottom: -6px;
  border: 0px;
  width: 150px;
  height: 25px;
}
  	.mainprodrecommend{
  background-color:#FFFFFF;
  background-image:url(../images/mainprodrecombak.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 6px 0px 0px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 7px 0px 10px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 554px;
  height:60px;
  margin-left: 2px;
}
  	.mainprodrecommendleft{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 145px;
}
  	.mainprodrecommendmiddle{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 205px;
}
  	.mainprodrecommendmiddle a:hover{
  color: #ca0009;
  text-decoration: underline;
}
  	.mainprodrecommendmiddle a{
  color:#333333;
  text-decoration: none;
}
  	.mainprodrecommendright{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 190px;
}
  	.mainprodrecommendright a:hover{
  color: #ca0009;
  text-decoration: underline;
}
  	.mainprodrecommendright a{
  color:#333333;
  text-decoration: none;
}
  	.detailicons{
  margin-right: 3px;
}
  	.detailicons2{
  margin-left: 3px;
  margin-top: -3px;
}
  	.printcarsale{
  margin-right: 3px;
  margin-left: 5px;
  margin-top: -3px;
  border: 0px;
}
	.prodajaxbuttonsback{
  background-color:#FFFFFF;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:20px;
}
	.prodajaxbar{
  background-image:url(../images/ajaxtopbar.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:16px;
}
.ajaxcontent{
  background-color:#FFFFFF;
  float: left;
  padding: 10px 0px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
}
#ajaxcontainer{
  width: 554px;
}
.ajaxfooter{
  background-color:#FFFFFF;
  background-position:bottom;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:20px;
}
	.marginright{
  margin-right: 2px;
}
.prodspecback{
  width: 554px;
  background-image:url(../images/picbacks.jpg);
  background-repeat:repeat-y;
  padding: 0px;
  margin: 0px;
}
.prodspecback ul {
	list-style-type:none; 
	margin: 5px 0px 5px 0px;
	padding-left: 14px;
}
.prodspecback ul li{
	background-image: url(../images/tick.jpg);
	background-position: 0px;
	background-repeat:no-repeat;
	display:block;
	margin: 2px 0px;
	padding-left: 20px;	
	}
.prodspecback2{
  width: 554px;
  padding: 0px;
  margin: 0px;
  background-image:url(../images/picbacks.jpg);
  background-position: 0px;
  height: 55px;
}
.prodpicsbackdiv{
  width: 520px;
  padding: 0px 0px 12px 25px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  background-image:url(../images/picbacks.jpg);
  background-repeat:repeat;
}
.prodmorepicsdiv{
  width: 130px;
  padding: 0px;
  margin-right: 0px;
  margin-left: 0px;
  margin-top: 10px;
  float: left;
  border: 0px;
  background: none;
}
.prodmorepicsdiv img{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 10px 0px 0px 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  border: 2px solid #CCCCCC;
}
.prodmorepicsdiv a:hover img{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 10px 0px 0px 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  border: 2px solid #FF0000;
}
		.morepicsbar{
  background-image:url(../images/prodmorepicsback.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 549px;
  height:21px;
}
		.morepicsbar p{
  color:#d74f4f;
  font-size: 11px;
  font-weight: bold;
  margin-left: 15px;
  margin-top: 0px;
}
/* _______________________________________________________________________________________ Print main products back ________________________________________*/
                                            
.printbody {
  background-color:#000000;
  color: #000000;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  width: 600px;
}
.printcontainer{
  width: 580px;
  float: left;
  margin: 5px;
  padding-left: 0px;
  background-color:#FFFFFF;
  text-align:left;
}
	.printheader{
  background-color:#FFFFFF;
  background-image:url(../images/breadcrumbback.gif);
  background-repeat:no-repeat;
  float: left;
  padding: 6px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 570px;
  height:30px;
  margin-left: 2px;
  text-align: center;
}
  .printheadertxt{
    font-size: 14px;
  color:#d74f4f; 
  font-weight: bold;
   }
   		.printproductdetailtop{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
}
   		.printproddes{
  float: left;
  padding: 0px 15px 0px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 550px;
}
   		.printproddesheader{
  float: left;
  padding: 3px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 560px;
  color:#000000;
  text-decoration:underline; 
  font-weight: bold;
  font-size: 12px;
}
   		.shoppingcartform{
 margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */;
 padding: 0px;
 width: 555px;
}
   		.shoppingcartformdel{
 margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */;
 padding: 0px;
 text-align: right;
 border-bottom: 1px solid #666666;
}
   		.shoppingcartformdelbord{
 margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */;
 padding: 0px;
 text-align: right;
 border-bottom: 1px solid #666666;
}
   		.shoppingcartformdelbord2{
 padding: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */;
 margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */;
 text-align: center;
 border-bottom: 1px solid #666666;
}
   		.shoppingcartformtalic{
 font-style:italic;
}
   		.shoppingcartformfade{
color:#999999;
text-align: right;
}
   		.shoppingcartformborder{
border: 1px dashed #666666;
}
   		.removebutton{
border: 0px;
}
   		.emptyshop{
width: 512px;
background-color:#E6E6E6;
padding: 20px;
margin-top: 20px;
border: 1px solid #696969;
}
   		.emptyshop p{
margin-top: 20px;
text-align: center;
font-weight: bold;
font-size: 12px;
}
   		.emptyshopbuttons{
width: 512px;
background-color:#FFFFFF;
padding: 20px;
margin-top: 0px;
}
   		.emptybuttons{
border: 0px;
margin-left: 129px;
}
   		.emptybuttons2{
border: 0px;
margin-left: 30px;
}
   		.checkoutinput{
		width: 125px;
margin-left: 0px;
border: 1px solid #B9B9B9;
}
   		.checkouttable{
		font-weight: bold;
}
   		.checkouttableerror{
		color:#E60000;
}
   		.confirmform{
		margin:0px;
		padding:0px;
}
   		.confirmform2{
		margin:0px;
		padding:0px;
		text-align: left;
}
.eC_InfoContainer{
padding: 0px;
margin: 0px;
}
.addmesstxt{
margin-left: 5px;
margin-bottom: 5px;
margin-top: 15px;
font-size: 16px;
width: 250px;
height: 80px;
padding: 3px;
border: 1px solid #9D9D9D;
}
.editedmess{
font-size: 12px;
padding: 5px;
margin: 0px;
}
.bycatdiv{
padding: 0px;
margin-left: 10px;
}
.bycatdivselect{
padding: 0px;
margin-left: 5px;
margin-top: 2px;
font-size: 11px;
}
.versionselectform{
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 30px;
	width: 170px;
	height: 70px;
	margin-bottom: 0px;
	border: 0px;
	padding: 0px;
	}
   	.verselectlistdiv{
  background-color:#FFFFFF;
  background-image:url(../images/selectyourversionback.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 6px 0px 0px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 560px;
  height:85px;
  margin-left: 2px;
}
   	.verselectlistdivleft{
  float: left;
  padding: 0px 0px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 330px;
  height:85px;
  text-align: right;
}
   	.verselectlistdivleft p{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 15px 40px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  color:#333333;
  font-weight: bold;
  font-size: 13px;
}
   	.verselectlistdivright{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 220px;
  height:85px;
}
		.selectverdropdown{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 140px;
	margin-bottom: 3px;
	margin-left: 5px;
	margin-right: 7px;
	margin-top: 10px;
	font-weight: bold;
	float: right;
	}
			.topProdimg{
	border: 0px;
	}
			.sidevername{
	text-align: center;
	font-weight: bold;
	}
.sideshoppingdiv{
	margin-top: 12px;
	background-color:#EEEEEE;
	padding-top: 1px;
	padding-bottom: 1px;
	width: 140px;
	float: left;
	margin-left: 6px;
	border-bottom: 1px solid #666666;
	border-top: 1px solid #666666;
	}
.sideshoppingdivleft{
	width: 55px;
	float: left;
	}
.sideshoppingdivleft img{
	margin-top: 4px;
	margin-bottom: 6px;
	margin-left: 2px;
	border: 0px;
	}
	.sideshoppingdivright{
	width: 85px;
	float: right;
	}
		.sideshoppingdivright p{
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
    margin: 5px 28px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: right;
	color:#666666;
	font-size: 10px;
	}
	.minichkout{
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
    margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	width: 140px;
	}
		.minichkoutbut{
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
    margin: 0px 0px 0px 35px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	width:90px;
	height:24px;
	border: 0px;
	}
			.shopimgnoborder{
	border: 0px;
	}
					.feattitle{
	margin: 0px;
	}
				.feattxt{
	margin-top: 2px;
	}
	   	.homepagebrands{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 570px;
  margin-left: 2px;
}
	   	.homepagebrandsimg{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 10px 0px 0px 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
	   	.prodsearch{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 570px;
  height: 230px;
  background-image:url(../images/prodsearchback.jpg);
  background-repeat: no-repeat;
}
	   	.prodsearchform{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 15px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 550px;
}
	   	.prodsearchtable{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 10px 0px 0px 110px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 375px;
  font-weight: bold;
}
.prodsearchfield{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 160px;
	font-weight: bold;
	border: 0px;
	text-align: center;
	border: 1px solid #666666;
	color:#930000;
	}
	.prodsearchdropdown{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 160px;
	font-weight: bold;
	border: 0px;
	text-align: left;
	border: 1px solid #666666;
	color:#930000;
	}
	.prodsearchprice{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 50px;
	font-weight: bold;
	border: 0px;
	text-align: center;
	border: 1px solid #666666;
	color:#930000;
	}
	#hintbox{ /*CSS for pop up hint box */
position:absolute;
top: 0;
background-color:#FFFFCC;
width: 150px; /*Default width of hint.*/ 
padding: 3px;
border:1px solid black;
font:normal 11px Verdana;
line-height:18px;
z-index:100;
border-right: 3px solid black;
border-bottom: 3px solid black;
visibility: hidden;
text-align: left;
}

.hintanchorlink{ /*CSS for link that shows hint onmouseover*/
font-weight: bold;
margin-left: 1px;
text-decoration:none;
font-size: 12px;
}
.hintanchorlink a:link{ /*CSS for link that shows hint onmouseover*/
text-decoration:none;
color:#666666;
}
.hintanchorlink a:hover{ /*CSS for link that shows hint onmouseover*/
text-decoration:none;
color:#CC0000;
}
		.termsdiv{
  float: left;
  width: 575px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 5px;
  margin-left: 0px;
  margin-top: 0px;
    background-color:#FFFFFF;
  background-image:url(../images/largemiddlecol.jpg);
  background-repeat:repeat-y;
}	
		.termsdiv p{
  padding-top: 0px;
  padding-bottom: 0px;
  margin: 3px 15px 5px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
}	
.privacytext{
font-size: 11px;
color:#333333;
margin-left: 5px;
}
.backtotop {
  text-align:right;
  color: #000000;
  font-size: 11px;
  width: 550px;
  margin-top: 10px;
}
.sitemaps{
margin: 0px;
width: 465px;
margin-left: 62px;
margin-top: 15px;
}
div.boxColumnLeft{
	width: 225px;
	float: left;
}

div.boxColumnRight{
	width: 225px;
	float: left;
}
div.boxTop {
	padding: 6px;
	font-size: 12px;
	font-weight: bold
}
div.boxTop a:hover{
	color:#C92C17;
	font-weight: bold;
	text-decoration:underline;
}
div.boxTop a{
	color:#000000;
	font-weight: bold;
	text-decoration:none;
}


div.linkBox a{

}
div.linkBox ul{
	padding: 0px 0px 0px 10px;
}
li.default{
	color: #462220; /* Text Dark */
	text-decoration:none;
}
li.highlight{
	color: #462220; /* Text Dark */
	text-decoration:none;
}
li.linked{
	color: #C92C17; /* Link */
	text-decoration:none;
	list-style-type:disc;
	margin-left: 15px;
	
}
li.linked a{
	text-decoration:none;
	color: #333333;
}
li.linked a:hover{
	color: #C92C17; /* Link */
	font-weight:bold;
	text-decoration:underline;
}

div.boxTop {
	background-color:#A4A4A4;
}

div.linkBox {
	border: 1px solid #826A50; /* Border Dark*/
	background-color: #F0F0F0; /* Table BG Light */
}
.allprodstable {
  color: #333333;
  font-size: 11px;
  width: 550px;
  margin-left: 13px;
  margin-top: 10px;
  border: 1px solid #333333;
   background-color: #DFE4E9;
   float:left;
}
.allprodheader {
  color: #000000;
  font-size: 11px;
  font-weight: bold;
  background-color:#969696;
}
.allprodimg{
  border: 0px;
}
.WADAResultsRowDark {
  background-color: #FFFFFF;
}
		.contactdiv{
  float: left;
  width: 575px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 5px;
  margin-left: 0px;
  margin-top: 10px;
    background-color:#FFFFFF;
}	
		.contactdivleft{
  float: left;
  width: 275px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 5px;
  margin-left: 0px;
  margin-top: 0px;
    background-color:#FFFFFF;
	background-image:url(../images/contactformback.jpg);
	background-repeat: no-repeat;
	min-height: 355px;
}	
		.contactdivright{
  float: left;
  width: 300px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 5px;
  margin-left: 0px;
  margin-top: 0px;
    background-color:#FFFFFF;
	height: 355px;
}	
		.contactformdiv{
  float: left;
  width: 260px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
  margin-left: 10px;
  margin-top: 50px;
}	
		.contactdivtable{
  float: left;
  width: 250px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
  margin-left: 0px;
  margin-top: 0px;
  text-align:left;
}	
.contactmess{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 240px;
	font-weight: bold;
	border: 1px solid #999999;
	text-align: left;
	margin-top: 3px;
	}
	.contacttxtfield{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 166px;
	font-weight: bold;
	border: 1px solid #999999;
	text-align: left;
	margin-top: 3px;
	margin-bottom: 3px;
	}
		.contacttxtdropdown{
	font-size: 11px;
	background-color:#FFFFFF;
	width: 166px;
	font-weight: bold;
	border: 1px solid #999999;
	text-align: center;
	margin-top: 3px;
	margin-bottom: 3px;
	}
	.contactusby{
	font-size: 11px;
	margin-top: 6px;
	margin-bottom: 0px;
	padding: 0px;
	text-align: center;
	font-weight: bold;
	}
		.submitenquiry{
	border: 0px;
	}
		.contactdateleft{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 270px;
  height:25px;
}
.contactdateleft p{
font-weight: bold;
margin-left: 10px;
}
		.contactdateright{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 300px;
  height:25px;
  font-weight: bold;
  text-align: right;
}
		.contactdateright p{
  font-weight: bold;
  color:#333333;
}
  	.contactbookmark{
  margin-left: 3px;
  margin-top: 2px;
}
		.contactdetailsdiv{
  float: left;
  width: 575px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
  margin-left: 0px;
  margin-top: 20px;
    background-color:#FFFFFF;
	background-image:url(../images/contactdetailsback.jpg);
	background-repeat:no-repeat;
}	
		.contactdetailsdivtop{
  float: left;
  width: 575px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
  margin-left: 0px;
  margin-top: 10px;
	height:20px;
}	
		.contactdetailsdiv img{
  margin-left: 60px;
  margin-top: 5px;
}	
		.contactdetailsdivtop p{
  font-size: 11px;
  font-weight: bold;
  margin-top: 0px;
  margin-right: 20px;
  text-align: right;
  color:#676767;
}	
		.contactdetailsdivleft{
  float: left;
  width: 190px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
  margin-left: 5px;
  margin-top: 20px;
}		
		.contactdetailsdivleft p{
font-weight: bold;
margin-top: 22px;
margin-left: 10px;
}	
		.contactdetailsdivleft a:link{
font-weight: bold;
font-size:10px;
}	
		.contactdetailsdivleft a:hover{
color: #ca0009;	
}	
.contactdetailsdivmid{
  float: left;
  width: 190px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
  margin-left: 0px;
  margin-top: 20px;
}	
		.contactdetailsdivmid p{
font-weight: bold;
margin-top: 27px;
margin-left: 21px;
}	
		.contactdetailsdivmidspan{
font-weight: bold;
color:#BB0000;
font-size: 12px;
}	
		.contactdetailsdivright{
  float: left;
  width: 190px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
  margin-left: 0px;
  margin-top: 20px;
}	
		.contactdetailsdivright p{
font-weight: bold;
margin-top: 20px;
margin-left: 36px;
}	

	.carsforsaletop{
  background-color:#FFFFFF;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
}
		.carsforsaletopdiv{
  float: left;
  width: 575px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 20px;
  margin-left: 0px;
  margin-top: 5px;
}	
		.carsforsaletopdivtop{
  float: left;
  width: 575px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 10px;
  margin-left: 0px;
  margin-top: 0px;
  height: 50px;
}	
		.carsforsaletopdivtop img{
  margin-left: 7px;
}	
		.carsforsaletopleft{
  float: left;
  width: 295px;
  padding: 10px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
  margin-left: 0px;
  margin-top: 0px;
}	
		.carsforsaletopright{
  float: left;
  width: 280px;
  padding: 10px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
  margin-left: 0px;
  margin-top: 0px;
  background-image:url(../images/carsalesbackright.jpg);
  background-repeat: no-repeat;
}	
		.carsforsaletopright p{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-left: 6px;
   margin-right: 10px;
}	
	.carsforsalescardiv{
  background-color:#FFFFFF;
  background-image:url(../images/carsalesmainback.jpg);
  background-repeat: no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 5px 0px 0px 5px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 570px;
}
	.carsforsalescardivleft{
  padding: 9px 0px 0px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 155px;
  float: left;
}
	.carsforsalescardivright{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 380px;
  float: left;
}
	.carsforsalescartable{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 5px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 380px;
}
	.carsforsalescartable img{
  border: 0px;
}
	.carsforsalescartable a:visited{
  color: #d74f4f;
  font-weight: bold;
}
	.carsforsalescartable a:hover{
  color: #ca0009;
}
	.carsforsalescartable p{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 6px 0px 3px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
	.carsforsalescartabletitle{
  padding: 3px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
	.carspansold{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  color:#CC0000;
  font-weight: bold;
  font-size: 12px;
}
	.carpricesortmain{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 3px 2px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
		.backtopageleftcarsale{
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 325px;
  height:25px;
}
		.backtopageleftcarsale p{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 5px 0px 0px 20px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  font-weight: bold;
  font-size: 11px;
}
		.backtopagerightcarsale{
  float: right;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 250px;
  height:25px;
}
		.backtopagerightcarsale p{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 5px 10px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: right;
  font-weight: normal;
}
	.backtopagerightcarsale a:visited{
  color: #d74f4f;
  font-weight: bold;
}
	.backtopagerightcarsale a:hover{
  color: #ca0009;
}
		.carsalesaddpicturesp{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 25px 0px 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  font-weight: bold;
  font-size: 11px;
}
		.carsalesdescriphead{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 28px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  font-weight: bold;
  font-size: 12px;
}
		.carsalesdescrippara{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 25px 0px 30px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  font-weight: normal;
}
		.carsalesdescripparaline{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 4px 0px -5px 26px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  font-weight: normal;
  border-top: 1px dotted #333333;
  width: 525px;
}
		.carsalesaddpicsline{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 4px 30px -5px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  font-weight: normal;
  border-top: 1px dotted #333333;
}
		.carsalesdescripparaline2{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 12px 0px -5px 26px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  font-weight: normal;
  border-top: 1px dotted #333333;
  width: 525px;
}
  	.carsalescontactbar{
  background-color:#FFFFFF;
  background-image:url(../images/carsalescontactbanner.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 6px 0px 0px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 15px 0px 10px 4px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 545px;
  height:60px;
}
  	.carsalescontactbar2{
  background-color:#FFFFFF;
  float: left;
  padding: 0px 0px 0px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 15px 0px 10px 4px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 545px;
}
		.carenquirebutton{
  border: 0px;
  width: 150px;
  height: 25px;
  float: right;
  margin-right: 10px;
}
		.carsalesaddpics{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 5px 12px 5px 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  border: 0px;
}
.carsalesmainimg{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 5px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  border: 0px;
  text-align: right;
}
.servicesbanner{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 5px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  border: 0px;
}
.missionshopfront{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 15px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  border: 0px;
}
.carsecurityleft{
  padding: 0px 0px 0px 8px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 219px;
  float:left;
}
.carsecurityright{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 325px;
  float:left;
}
		.carsecurityheader{
  color: #d74f4f;
  font-size: 12px;
  font-weight: bold;
  border-bottom:1px dotted #333333;
  margin-right: 0px;
  height: 8px;
  margin-top: 0px;
  margin-bottom: 5px;
}
		.carsecurityheader2{
  color: #d74f4f;
  font-size: 12px;
  font-weight: bold;
  border-bottom:1px dotted #333333;
  margin-right: 6px;
  height: 8px;
  margin-top: 0px;
  margin-bottom: 0px;
}
		.carsecuritybanner{
  margin-left: 3px;
  margin-top: 7px;
}
		.carsecuritybannerdiv{
  float: left;
  width: 560px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 10px;
  margin-left: 0px;
  margin-top: 0px;
}	
		.wheeldivtop{
  float: left;
  width: 575px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 10px;
  margin-left: 0px;
  margin-top: 0px;
}	
		.wheeldivtop img{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
  margin-top: 5px;
  margin-left: 7px;
}
		.alloywheelpages{
  background-color:#FFFFFF;
  background-image:url(../images/prodlisttop2.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 5px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:25px;
}
		.alloywheelpages p{
font-weight: bold;
margin-left: 0px;
text-align: center;
}
.gallerymiddlediv{
  background-color:#FFFFFF;
  background-image:url(../images/largemiddlecol.jpg);
  background-repeat:repeat-y;
  float: left;
  padding: 10px 0px 20px 9px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 570px;
}
.gallerymiddlediv img{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 10px 0px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  border: 2px solid #CCCCCC;
}
.gallerymiddlediv a:hover img{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 10px 0px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  border: 2px solid #FF0000;
}
		.gallerypagesdiv{
  background-color:#FFFFFF;
  background-image:url(../images/gallerybottompage.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:25px;
}
		.gallerytoplpages{
  background-color:#FFFFFF;
   background-image:url(../images/prodlisttop2contact.jpg);
  background-repeat:no-repeat;
  float: left;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 575px;
  height:25px;
}
		.gallerytoplpages p{
font-weight: bold;
margin-left: 0px;
text-align: center;
}
		.shoppingbyphonediv{
  float: left;
  width: 575px;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-bottom: 0px;
  margin-left: 0px;
  margin-top: 20px;
    background-color:#FFFFFF;
	background-image:url(../images/shoppingbyphone.jpg);
	background-repeat:no-repeat;
}	
	.shoppingbyphonedivleft{
  padding: 9px 0px 0px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 560px;
  float: left;
}
	.shoppingbyphonedivleft p{
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin: 40px 0px 0px 100px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  font-weight: bold;
}
		.shopsalesteamspan{
font-weight: bold;
color:#BB0000;
font-size: 16px;
}	
		.googlemapstext{
color:#333333;
font-size: 12px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}	
.flashservices{
margin-left: 10px;
margin-right: 15px;
margin-top: 8px
}	
		
