*,*:after, *:before{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#logo{
	visibility: hidden;
	-webkit-transition: all 5s ease;
	-moz-transition: all 5s ease;
	transition: all 5s ease;
	
}
#text_carga{
	color: #954613;
	
	top: 50%;
	left: 50%;
	right: 50%;
	bottom: 50%;
	margin-top: 550px;
	margin-left: 0px;
	text-align: center;
}
#contenedor_carga{
	
	background-color: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	-webkit-transition: all 2s ease;
	-moz-transition: all 2s ease;
	transition: all 2s ease;
	z-index: 10000;
}
#carga{
	border: 15px solid #ccc;
	border-top-color: #954613;
	border-top-style: groove;
	height: 100px;
	width: 100px;
	border-radius: 100%;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkit-amimation: girar 1.5s linear infinite ;
	-o-animation: girar 1.5s linear infinite ;
	animation: girar 1.5s linear infinite ;

}

@keyframes girar{
	from{ transform: rotate(0deg); }
	to{ transform: rotate(360deg); }
}