#content {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 100%;
}
.entry-title {
		height: 100%;
		/* The html and body elements cannot have any padding or margin. */
		font-size: 38px;
		margin-bottom: 3px;
		
		
}

.entry-header {
		
	display: block;
	position: relative;
	text-align: center;
	top: 30%;
	width: 100%;
	margin: -150px 0 0 0px;
	z-index: 10001;
}
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}
#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border: 3px solid transparent;
    border-top-color: #3498db;
    border-radius: 50%;
	/*z-index: 1500;*/
	z-index: 1001;
	-webkit-animation: spin 2s linear infinite;
			animation: spin 2s linear infinite;
}
#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border: 3px solid transparent;
    border-top-color: #e74c3c;
    border-radius: 50%;
    -webkit-animation: spin 3s linear infinite;
			animation: spin 3s linear infinite;
}
#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border: 3px solid transparent;
    border-top-color: #f9c922;
    border-radius: 50%;
    -webkit-animation: spin 1.5s linear infinite;
			animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        	-ms-transform: rotate(0deg);
        		transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
       		-ms-transform: rotate(360deg);
        		transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        	-ms-transform: rotate(0deg);
        		transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        	-ms-transform: rotate(360deg);
        		transform: rotate(360deg);
    }
}
#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222222;
    z-index: 1000;
}
#loader-wrapper .loader-section.section-left {
    left: 0;
}
#loader-wrapper .loader-section.section-right {
    right: 0;
}
/* Loaded */
.loaded #loader-wrapper {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1s, opacity 2s linear;
}
