/**
 * COULEURS
 * Diesel jaune #F7AF1C 
 * Essence vert #0F734F
 **/

.voiture .gauche, .voiture .droite{
    float:left;  
}
.voiture .gauche{
    display:block;
    min-height:100px;
    width:150px;  
    margin-right:20px;;
}
.voiture .gauche .photo1 img{
    width:150px;
}
.voiture .gauche .photo2 img{
    float:right;
    height:40px;
    margin-left:0.5em;
    margin-bottom:0.5em;
}
.voiture .droite{
    width: 540px;
    margin-right:0;
}

.voiture .carburant{
    float:left;
    margin-left:1em;
    font-size:0.85em;
    padding:0 5px;
    border-radius:3px;
    font-weight:bold;
}
.carburant.diesel{
    background-color: #F7AF1C;
    color:#845B0E;
}
.carburant.essence{
    background-color: #0F734F;
    color:#EFFFF9;
}
.voiture .zoom{
    float:right;
    display:block;
    width:17px; height:17px;
    background:transparent url(../img/zoom_plus.png) top left no-repeat;
    text-indent:-9999px;
}
.voiture .zoom:hover{
    background-position:right;
}
.voiture .prix, .voiture .modele{
    font-weight:bold;
    color:#DA1934;
    text-transform:uppercase;
}
.voiture .prix{
    float:right;
}
.voiture .modele{
    margin-bottom:0.75em;
    float:left;
}
.voiture .options{
    clear:both;
    margin-bottom:0.75em;
}
.options li{
    margin-left:1em;
}
.voiture .infosupp{
    font-size:0.85em;
    color:#999999;
    margin-bottom:0.75em;
}