/* CSS para el manejo de llantas */

/* style del Eje */
.stEje{
   width:100%;
   height:90px;
   }

/*Lado izquierdo del eje  */
.stEje #LadoIzq {
   width:40%;
   height:100%;
   float:left;
   }
 
/*Centro del eje  */  
.stEje #Centro{
    width:20%;
    height:100%;
    float:left; 
    background-color:silver;
}

/*Lado derecho del eje  */
.stEje #LadoDer{
    width:40%;
    float:right;
    }
    
/* separador de ejes */
.sepEje{
    float:left;
    width:100%;
    height:60px;
    }

.sepEje #LadoIzq{
    width:40%;
    height:100%;
    float:left;
    }

.sepEje #Centro{
    width:20%;
    height:100%;
    float:left; 
    background-color:silver;
    }
    
.sepEje #LadoDer{
    width:40%;
    height:100%;
    float:right;
    }


/*Div para la llanta */
.divPos{
    float:left;
    width:40px;
    height:85px;
    }
    
    
.divPos .Etiqueta{    
    width:100%;
    height:14px;
    }

    
.divImgLL {  
    width:100%;height:68px;
    background-repeat:no-repeat;
    background-position:center;
    background-size:23px 95%;
    }
                                           
       
 /* radioGroup de la llanta */
.rgLlanta {
    float:left;
    position:relative;
    display:block;
    margin-left:13px;
    margin-top:20px;
}

