#contenedor_carga{
	height: 100%;
	width: 100%;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	z-index: 10000;
	position: fixed;
	background-color: #FFF;
}

#contenedor_carga> img{
	position: absolute;
	padding-top: 5px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 150px;
}

#carga{
	border: 15px solid #c0bfbf;
	border-top-color: #0e75ca;
	border-top-style: groove;
	height: 200px;
	width: 200px;
	border-radius: 100%;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkit-animation: 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);}
}