@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF url(../images/body_background.gif) repeat-x 0px 476px;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.thrColElsHdr #container {
	width: 1002px;
	margin: 74px auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: url(../images/car_menu_bottom.gif) no-repeat 717px 211px;
	_background-position:717px 260px;
} 
.thrColElsHdr #header {
	height: 74px;

} 
.thrColElsHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColElsHdr #sidebar1 p" rule.
*/
.thrColElsHdr #sidebar1 {
	float: left;
	width: 185px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	margin: 24px 0 0 0;
}
.thrColElsHdr #sidebar2 {
	float: right;
	width: 184px; /* top and bottom padding create visual space within this div */
	margin: 24px 0 0 0;
	padding: 0;
}
.car_parameter {
        float:left;
}
.car_catalogue_value {
        float:right;
}


/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColElsHdr #mainContent {
	margin: 24px 195px 0 194px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	text-align: left;
} 
.thrColElsHdr #footer {
	border-top: 1px dashed #ECECEB;
	color : #acacac;
} 
#footer a, #footer a:link, #footer a:visited {
	color : #acacac;
}
#footer a.active {
color : #be6030;
}
.thrColElsHdr #footer p {
	margin: 0 auto; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: left;
	font-size: 11px;
	display: block;
	width: 620px;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#menu_box {
	margin:0;
	padding:0;
	height:96px;
	background:url(../images/menu_box.gif) no-repeat;
}
#search {
	height: 291px;
	background-image: url(../images/new_car.gif);
	background-repeat: no-repeat;
	background-position: 816px 75px;
	margin: 0;
	padding: 0;
}
#search form{
	width: 621px;
	margin: 9px 0 0 191px;
	padding: 0;
}
#search legend{
	width: 288px;
	background-image: url(../images/search_icon.gif);
	background-repeat: no-repeat;
	padding: 7px 0 20px 55px;
	font-weight: bold;
	font-size: 24px;
	font-family: "Times New Roman", Times, serif;
	color: #000;
	height: 48px;
}
#assistance {
	float: left;
	margin: 55px 0 0 0;
	padding: 0;
	width: 128px;
	height: 236px;
}
fieldset {
	border:none;
	padding:0 0 0 0;
	margin:0 0 0 0;
}
#sort {
	height: 148px;
	margin: 18px 0 0 0;
	padding: 0 0 0 0;
}
#sort_content {
	background-image: url(../images/sort_background.gif);
	height: 148px;
	margin: 0 21px 0 19px;
	color: #737373;
	_float: left;
	_width: 581px;
	_margin: 0;
}
#sort_left {
	background-image: url(../images/sort_left.gif);
	width: 19px;
	height: 148px;
	float: left;
}
#sort_right {
	background-image: url(../images/sort_right.gif);
	height: 148px;
	width: 21px;
	float: right;
}
#search2 {
	height: 68px;
	color: #FFFFFF;
}
#search2 .text {
	border: 1px solid #E7965B;
}
#search_content {
	background-image: url(../images/search_bottom.gif);
	height: 68px;
	margin: 0 11px 0 13px;
	_float: left;
	_width: 597px;
	_margin: 0;
}
#search_left {
	background-image: url(../images/search_left.gif);
	width: 13px;
	height: 68px;
	float: left;
}
#search_right {
	background-image: url(../images/search_right.gif);
	height: 68px;
	float: right;
	width: 11px;
}
#car_choose {
	background-image: url(../images/car_choose.gif);
	height: 216px;
}
#car_choose .head {
	font-size: 20px;
	margin: 0;
	padding: 13px 0 0 0;
}
#car_choose li {
	font-size: 9px;
	padding: 0 5px 13px 0;
}
#car_choose .value {
	font-weight: normal;
}
#car_marques {
	background-image: url(../images/marques.gif);
	height: 421px;
	margin: 0 0 0 0;
	padding: 6px 0 0 0;
}
#car_marques h2 {
	margin:0;
	padding:0 0 0 6px;
	font-size: 12px;
}
#car_marques ul {
	padding: 7px 0 0 33px;
	font-size: 12px;
}
#car_marques li {
	padding: 0 0 2px 0;
}
#white_box {
	background-image: url(../images/white_box_background.gif);
}
#white_box_top {
	background-image: url(../images/white_box_top.gif);
	height: 8px;
}
#white_box_bottom {
	background-image: url(../images/white_box_bottom.gif);
	height: 10px;
}
ol {
	color: #DB3A06;
	font-size: 12px;
	margin: 6px 0 0 0;
	padding: 10px 10px 0 28px;
	font-weight: bold;
}
ul {
	margin: 0 0 0 0;
	list-style-image: url(../images/list.gif);
}
li .value {
	color: #4A4A4A;
}
li .value a{
	color: #000;
}
.tip {
	background-image: url(../images/tip.gif);
	background-repeat: no-repeat;
	background-position: 95px 0;
	
}
.head {
	color:#DB3A06;
	padding: 15px 0 4px 0;
	font-family: "Times New Roman", Times, serif;
	font-size: 17px;
	margin: 5px 0 0 0;
	text-align: center;
	font-weight: bold;
}
#news {
	background-image: url(../images/news.gif);
	height: 254px;
}
#news .archiv{
	font-size: 10px;
	padding: 10px 0 0 13px;
	display: block;
}
#news .archiv:link, .archiv:visited {
	color:#DB3A06;
	text-decoration:none;
}
#news h2 {
	font-size: 9px;
	font-weight: normal;
	margin: 5px 2px 0 50px;
}
#news h2 a {
	color:#6D6D6D;
}
#news strong{
	font-size: 10px;
	font-family: "Arial Black", Gadget, sans-serif;
	color: #DB3A06;
}
#news img{
	float: left;
	margin: 4px 0 0 2px;
	border: 1px solid #6D6D6D;
}
#news-one {
	margin: 8px 7px 0 10px;
	padding: 0 0 5px 0;
	border-bottom: 1px solid #ECECEB;
	height: 74px;
}
#news-two {
	margin: 2px 7px 0 10px;
	height: 88px;
}
#sort_content select {
	width:137px;
}
#sort_content table {
	width:570px;
	margin: 10px auto;
}
#search2 table {
	width:570px;
	margin: 10px auto;
}
#sort_content label {
	color: #DB3A06;
	font-size: 9px;
}
.button {
	height: 23px;
	width: 160px;
	margin: 0;
	color: #FFF;
	padding: 0 0 2px 15px;
	text-transform: uppercase;
	font-size: 10px;
	background:url(../images/big_button.gif);
	border:none;
}
.small_button {
	height: 25px;
	width: 95px;
	margin: 0;
	color: #FFF;
	padding: 0 0 2px 15px;
	text-transform: uppercase;
	font-size: 10px;
	background:url(../images/button_small.gif);
	border:none;
}
#contaction-form {
}
#contaction-form label {
	color: #DB3A06;
	font-size: 14px;
}
#contaction-form .top{
	background-image: url(../images/rezy_53.gif);
	height: 27px;
}
#contaction-form .bottom{
	background-image: url(../images/rezy_61.gif);
	height: 21px;
}
#contaction-form .head{
	margin: 0 15px 10px 15px;
	padding: 0 0 5px 0;
	display: block;
	border-bottom: 1px dashed #DADADA;
}
#contaction-form .content{
	background-image: url(../images/rezy_59.gif);
}
#contaction-form .content label{
	margin: 0 15px;
}
#contaction-form .text,#contaction-form textarea {
	margin: 0 15px;
	width:150px;
}
#contaction-form .small_button {
	margin: 10px 0 0 75px;
}
.car_container {
	background:url(../images/car.gif) repeat-y;
	width:199px;
	float:left;
	margin:0 5px 5px 0;
	height: 295px;
}
.car {
	font-size:10px;
	padding:10px 5px 0 5px;
	display:block;
	margin:0;
}
.car br {
	border-bottom:1px solid #BCBCBC;
}
.car img {
	border: 2px solid #6D6D6D;
}
.car strong {
	color:#DB3A06;
}
#car_detail strong {
	color:#F48635;
	font-weight:normal;
	font-size: 13px;
}
.car_header {
	background:url(../images/car_header.gif) no-repeat;
	display:block;
	margin:0;
	padding:5px 0 0 0;
	font-size:14px;
	text-align:center;
	color:#DB3A06;
	text-decoration:underline;
	height:50px;
}
.car_image {
	margin: 0 auto 10px auto;
	display: block;
	height: 129px;
	width: 166px;
}
.car_header a, .car_header a:link, .car_header a:visited{
	color:#DB3A06;
}
.car_value {
	text-align: right;
}
.car_footer {
	background: #FFFFFF url(../images/car_footer.gif) no-repeat;
	height:7px;
	display:block;
}
#car_detail {
	background-image: url(../images/car_detail.gif);
	width: 617px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
}
#car_detail h1{
	color: #F48635;
	font-size: 20px;
	font-weight: normal;
	margin: 8px 0 17px 0;
	padding: 0;
}
#car_detail h2{
	font-size: 17px;
	margin:10px 0 10px 17px;
	padding: 0;
}
#car_detail p{
	margin:0 0 0 17px;
	font-size: 12px;
	font-weight: normal;
}
#car_subscript table{
	display: block;
	padding: 0;
	margin: 14px 0 0 0;
	font-size: 13px;
}
#car_subscript td{
	width: 97px;
	border-bottom: 1px solid #BCBCBC;
	padding: 4px 0 0 0;
}
#previous {
	height:132px;
	width:19px;
	float:left;
}
#next {
	height:132px;
	width:19px;
	float:right;
}
#images{
	width:380px;
	float:left;
	padding: 22px 0 0 17px;
}
#header img {
	border:none;
}
#images .full {
	display: block;
	float:left;
	width: 287px;
	border: 1px solid #B1B1B1;
}
#images .box{
	width: 78px;
	margin: 0 0 0 298px
}
#images .box img{
	width: 75px;
	height: 63px;
	border: 1px solid #B1B1B1;
	margin: 0 0 9px 0;
}
#car_other_info {
	border:2px solid #E2E2E0;
	background-image:url(../images/car_other_info.gif);
	height:265px;
	text-align: left;
	padding: 0 10px;
	font-size:14px;
}
#car_other_info h2{
	font-size:14px;
}
#news_preview img {
	float:left;
	margin:0 15px 0 0;
	border: none;
	border: 1px solid #6D6D6D;
}
#news_preview p {
	margin:0;
}
#news_preview a:link,  #news_preview a:visited{
	color:#6D6D6D;
}
#news_preview h2 {
	font-size:14px;
	display:block;
	margin:0;
	padding:0;
}
#news_preview small {
	font-size:10px;
}
#news_preview {
	width:600px;
	height:70px;
}
#menu {
	margin:16px 0 0 2px;
	padding:0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	height:26px;
}
#menu ul {
	margin:0;
	padding:0;
	height:26px;
}
#menu a{
	padding: 6px 0 6px 0;
	}
#menu li {
	margin:0;
	padding:0;
	display: block;
	float:left;
	height:26px;
}
#menu li {
	list-style: none;
	background:url(../images/menu_left.gif) no-repeat;
	height: 26px;
	padding: 6px 0 5px 35px;
}
#menu li a {
	height: 26px;
	background:url(../images/menu_background.gif);
	dislplay:block;
}
#menu li.nexto-active {
	list-style: none;
	background:url(../images/nexto-left.gif) no-repeat;
	height: 26px;
	padding: 6px 0 5px 39px;
}
#menu li.last {
	list-style: none;
	background:url(../images/last.gif) no-repeat;
	height: 26px;
	padding: 6px 0 5px 32px;
}
#menu li.active-right {
	list-style: none;
	background:url(../images/active-right.gif) no-repeat;
	height: 26px;
	padding: 6px 0 5px 32px;
}
#menu li.active {
	list-style: none;
	background:url(../images/active_left.gif) no-repeat;
	height: 26px;
	padding: 6px 0 5px 15px;
}
#menu li.active-bottom {
	list-style: none;
	background:url(../images/active-bottom.gif) no-repeat;
	height: 26px;
	padding: 6px 0 5px 28px;
}
#menu li.left {
	list-style: none;
	background:url(../images/left.gif) no-repeat;
	height: 26px;
	padding: 6px 0 5px 15px;
}
#menu li.active a, #menu li.active-bottom a {
	height: 26px;
	background:url(../images/active_background.gif);
	dislplay:block;
}
#menu a {
	color: #FFFFFF;
	text-decoration:none;
}
#header_menu {
	height:44px;
}
#car_detail_footer {
	background: url(../images/car-detail-footer.gif);
	height:12px;
}
#car_detail_header {
	background: url(../images/car-detail-header.gif);
	height:12px;
}
#car_detail label {
	width: 76px;
	display: block;
	float: left;
	margin: 0 0 0 15px;
	font-size: 12px;
	color: #F48635;
}
#car_detail input {
	width: 297px;
	margin: 0 0 10px 0;
	border: 1px solid #B1B1B1;
}
#car_detail textarea {
	border: 1px solid #B1B1B1;
}
#car_detail .submit {
	width: 93px;
	height: 23px;
	margin: 10px 0 0 298px;
	background: url(../images/car_detail_submit.gif) no-repeat;
	border: none;
	color: #FFFFFF;
	font-size: 10px;
	padding: 0 0 0 6px;
}
#car_subscript {
	margin: 0 0 0 410px;
}
#car_price {
	width:590px;
	margin: 0 0 0 15px
}
#car_price strong {
	font-weight: bold;
}
.extKatalogCategory, .extKatalogBlindpages {
	margin: 20px 0 0 0;
	font-size: 12px;
	color:#DB3A06;
	text-decoration: none;
}
.extKatalogCategory td, .extKatalogBlindpages td {
	width: 25%;
}
.extKatalogCategory a, .extKatalogCategory a:link, .extKatalogCategory a:visited, .extKatalogBlindpages a, .extKatalogBlindpages a:link, .extKatalogBlindpages a:visited  {
	font-size: 12px;
	color:#DB3A06;
	text-decoration: none;
}
.extKatalogData h2, .extKatalogData h2 a, .extKatalogData h2 a:link, .extKatalogData h2:visited {
	font-size: 16px;
	color:#DB3A06;
}
.extKatalogData {
	font-size: 14px;
}
