/* SPINNER QUE APARECE NA PRIMEIRA TELA DO SITE */
#spinner
{
	width:100%;
	position:fixed;
	z-index:999999999999999999999999999 !important;
	
	margin:0 auto;
	text-align:center;
	display:none;	
	
	background-color:rgb(0,0,0,0.8);
	height:100% !important;	
}

#spinnerCorp
{
	position:absolute;
	top:50%;
	left:50%;
	
	margin-top:-125px;
	margin-left:-100px;
	
    height:150px;
    width:200px;
}

#spinnerLogo
{
	width:100%;
	float:left;
	text-align:center;
	display:table;
	margin-bottom:10px;
	height:auto;
}

#spinnerLogo img
{
	max-height:100px;	
}

.SpinnerBlack
{
	width:200px;
	height:50px;
	float:left;
		
	background-color:#000000;
	background-image:url(../images/loading.gif);
	background-position:center;
	background-size:200px auto;
	background-repeat:no-repeat;
	
	border-radius:50px;
    
   	box-shadow:0px 0px 33px rgba(0,0,0,0.4);
   -webkit-box-shadow:0px 0px 33px rgba(0,0,0,0.4);
   -moz-box-shadow:0px 0px 33px rgba(0,0,0,0.4);
}

.SpinnerWhite
{
	position:absolute;
	box-sizing:border-box;
	background-color:#000000;
	background-image:url(../images/loading.gif);
	background-position:center;
	background-size:200px auto;
	background-repeat:no-repeat;
	opacity:1;
	
	top:50%;
	left:50%;
	
	margin-top:-25px;
	margin-left:-100px;
	border-radius:30px;
	
    height:50px;
    width:200px;
	
	box-shadow:0px 0px 33px rgba(0,0,0,0.4);
   -webkit-box-shadow:0px 0px 33px rgba(0,0,0,0.4);
   -moz-box-shadow:0px 0px 33px rgba(0,0,0,0.4);
}
/* SPINNER QUE APARECE NA PRIMEIRA TELA DO SITE */