﻿/**********************************************************************************************/
/**********************************************************************************************/
/**********************************************************************************************/
/* EFECTOS
/**********************************************************************************************/
/**********************************************************************************************/
/**********************************************************************************************/
/*
/**********************************************************************************************/
/**********************************************************************************************/
/* EFECTOS ************************************************************************************/
/**********************************************************************************************/
/**********************************************************************************************/
.EF-TODOS {
	border-radius: 0px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
/**********************************************************************************************/
/**********************************************************************************************/
/* ANIMACIONES DE COLOR ************************************************************************************/
/**********************************************************************************************/
/**********************************************************************************************/
/* WHITE-BLACK */
@-webkit-keyframes CAMBIACOLOR-BORDE-white-black {
    /*from {background-color: white;}
    to {background-color: cornflowerblue;}
    from {color: white;}
    to {color: black;}*/
    from {box-shadow: 0px 0px 0px 0px white;}
    to {box-shadow: 0px 0px 6px 1px black;}
}
	/* Standard syntax */
	@keyframes CAMBIACOLOR-BORDE-white-black {
	    /*from {background-color: cornflowerblue;}
	    to {background-color: white;}
	    from {color: white;}
	    to {color: black;}*/
	    from {box-shadow: 0px 0px 0px 0px white;}
	    to {box-shadow: 0px 0px 6px 1px black;}
	}
/* CORNFLOWER-WHITE */
@-webkit-keyframes CAMBIACOLOR-BORDE-cornflower-white {
    /*from {background-color: cornflowerblue;}
    to {background-color: white;}
    from {color: black;}
    to {color: white;}*/
    from {box-shadow: 0px 0px 0px 0px white;}
    to {box-shadow: 0px 0px 6px 1px cornflowerblue;}
}
	/* Standard syntax */
	@keyframes CAMBIACOLOR-BORDE-cornflower-white {
	    /*from {background-color: cornflowerblue;}
	    to {background-color: white;}
	    from {color: black;}
	    to {color: white;}*/
	    from {box-shadow: 0px 0px 0px 0px white;}
	    to {box-shadow: 0px 0px 6px 1px cornflowerblue;}
	}
/* GREEN-GOLD */
@-webkit-keyframes CAMBIACOLOR-FONDO-green-gold {
    from {background-color: green;}
    to {background-color: gold;}
}
	/* Standard syntax */
	@keyframes CAMBIACOLOR-FONDO-green-gold{
	    from {background-color: green;}
	    to {background-color: gold;}
	}
/* GREEN-ORANGE */
@-webkit-keyframes CAMBIACOLOR-FONDO-green-orange {
    from {background-color: green;}
    to {background-color: orange;}
}
	/* Standard syntax */
	@keyframes CAMBIACOLOR-FONDO-green-orange{
	    from {background-color: green;}
	    to {background-color: orange;}
	}
/* CORNFLOWERBLUE-ORANGE */
@-webkit-keyframes CAMBIACOLOR-FONDO-cornflowerblue-orange {
    from {background-color: cornflowerblue;}
    to {background-color: orange;}
}
	/* Standard syntax */
	@keyframes CAMBIACOLOR-FONDO-cornflowerblue-orange{
	    from {background-color: cornflowerblue;}
	    to {background-color: orange;}
	}
/*
/**********************************************************************************************/
/**********************************************************************************************/
/* OPACIDAD ***********************************************************************************/
/**********************************************************************************************/
/**********************************************************************************************/
.EF-OPAC-01:hover {opacity: 0.0}
/*
/**********************************************************************************************/
/**********************************************************************************************/
/* TIEMPOS APLICABLES *************************************************************************/
/**********************************************************************************************/
/**********************************************************************************************/
.EF-TIEMPO-1seg {
	-webkit-transition: all 1.0s;
	-moz-transition: all 1.0s;
	-ms-transition: all 1.0s;
	-o-transition: all 1.0s;
	transition: all 1.0s;
}
/*
