.producto{

    /*    background-color: coral;*/
    width: 320px;
    height: 300px;
    float: left;
    display: block;
    margin-top: 20px;
    margin-left: 20px;
    border: 2px solid #cccccc;
    border-style: dotted;
    /*    border-radius: 5px;*/
}

.producto:hover{
    opacity: 0.7;
    cursor: pointer;
    -moz-box-shadow: 0 0 50px 2px #999999;
    -webkit-box-shadow: 0 0 50px 2px #999999;
    box-shadow: 0 0 50px 2px #999999;
}

.contenedorProductos{
    overflow: hidden;
    width: 1055px;
    height: auto;
    /*    overflow:scroll;*/
    z-index: 3;
    float: left;
    padding-bottom: 20px;
}
.contenedorPromociones{
    overflow: hidden;
    width: 220px;
    height: 600px;
    /*    overflow:scroll;*/
    z-index: 3;
    border: 2px solid #cccccc;
    border-style: dotted;
    float: left;
    margin-top: 20px;
}

.producto .imagenProducto{
    height: 220px;
    /*    margin-top: 10px;*/
    text-align: center;
    float: left;
    width: 100%;
}
.producto .img{
    height: 220px;
    width: 220px;
}

.producto .nombreProducto{
    color: rgb(80,80,80);
    font-size: 12px;
    font-weight: bold;
    width: 300px;
    height: 50%;
    margin-left:10px;
    margin-right:10px;
    margin-top: 10px;
    text-align: center;
}

.producto .precio{
    color: rgb(80,80,80);
    font-size: 22px;
    font-weight: bold;
    width: 100%;
    height: 50%;
    text-align: center;
    margin-top: -5px;
    float: left;
    z-index: 100;
}
.producto .addCarro{
    width: 50%;
    height: 50%;
    float: left;
    margin-top: -5px;
}
.producto .contenedorInfo{
    color: #006699;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    height: 80px;
    position: relative;
    border: 0px;
    border-top: 2px solid #cccccc;
    border-style: dotted;
    float: left;
    /*    background-color: #006699;*/
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
}

.imgDetalleProducto{
    float: left;
    width: 500px;
    margin-left: 20px;
}

.contenedorProductoDetalle{
    float: left;
    border: 2px solid #cccccc;
    border-style: dotted;
    width: 1030px;
    margin-left: 20px;
    margin-top: 20px;
    height: 500px;
}

.textoDetalleProducto{
    width: 490px;
    float: left;
}

.textoDetalleProducto .tituloDetalle{
    margin-top: 10px;
    font-size: 17px;
    color: rgb(47,47,47);
    text-align: center;
}

.textoDetalleProducto .descripcion{
    margin-top: 10px;
    font-size: 14px;
    color: rgb(47,47,47);
    text-align: justify;
}

