
/* ---------------------------------------------- */
.redondo {
border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
border: 4px solid #e6e6e6;}

.redondo0 {
border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
border: 2px solid #f5f5f5;}

.redondoprod {
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 2px solid #e9ecef;}
/* ---------------------------------------------- */
.div1 {background-color: Orange;}
.div2 {background-color: MediumSeaGreen;}

/* ---------------------------------------------- */
      .zoomuno{
        /* Aumentamos la anchura y altura durante 1 segundos */
        transition: width 1s, height 1s, transform 1s;
        -moz-transition: width 1s, height 1s, -moz-transform 1s;
        -webkit-transition: width 1s, height 1s, -webkit-transform 1s;
        -o-transition: width 1s, height 1s,-o-transform 1s;
    }
      .zoom{
        /* Aumentamos la anchura y altura durante 2 segundos */
        transition: width 2s, height 2s, transform 2s;
        -moz-transition: width 2s, height 2s, -moz-transform 2s;
        -webkit-transition: width 2s, height 2s, -webkit-transform 2s;
        -o-transition: width 2s, height 2s,-o-transform 2s;
    }
    .zoom:hover{
        /* tranformamos el elemento al pasar el mouse por encima al doble de
           su tamaņo con scale(3). */
        transform : scale(3);
        -moz-transform : scale(3);      /* Firefox */
        -webkit-transform : scale(3);   /* Chrome - Safari */
        -o-transform : scale(3);        /* Opera */
    }

/* ---------------------------------------------- */
.opacity{opacity: 0.85;};
.fondo-menu-pps{background-color: #234b57; opacity: 0.85;}
.image-opacity-pps{opacity: 0.85;}
.fondo-menu-pps{background-color: #234b57; opacity: 0.85;}
.footer-pps{background-image:url("../image/fondo-pp.jpg");position:relative;width:100%;opacity: 0.85;}