@charset "utf-8";
/* CSS Document */

/** LOADING **/

.loading-ajaxLoad
{
    text-align: center;
    margin: 30px 0 0 0;
    width: 100%;
    display: block;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.active-ajax-load{
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -o-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
}

.ajaxDiv{
	width: 100%;
}

/** FIM LOADING **/
