/* CSS Document */
body {
	background: #eee;	
	font-family: 'Raleway', sans-serif;	
	width: 100%;
}
header {
	position: fixed;
	background: #fff;
	height: 80px;	
	top: 0;
	width: 100%;
	padding: 1em;
	z-index: 99;
}
header h1 {
		
}
section { 
	position: relative;
	margin-top: calc(80px + 2em);
	padding: 1em;
}
.load-button {
	border: none;
    padding: 1em;
    background-color: #FF1493;
	color: #fff;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.load-button:hover {
	background-color: #CC006D;
	
	-webkit-transition: 0.5s ease background-color;
	-moz-transition: 0.5s ease background-color;
	transition: 0.5s ease background-color;
	
}
.load-button:focus {
	border: none;
	outline: none;	
}
.external-content {
	min-height: 300px;	
	padding: 2em 0;
	opacity: 1;
	transition: ease 1s opacity;
}
.ajax-content {
	min-height: 300px;	
}
.fade-out {
	opacity: 0;
	transition: none;
}
/*** PreLoader ***/
.preloader {
	position: absolute;
	left: 50%;
	top: 40%;
	display: none;
}
span.rect {
	display: block;
	width: 60px;
	height: 5px;	
	background: #222;
	position: fixed;
}
#sp-one {
	animation: preloader ease-in 3s infinite;
}
#sp-two {
	animation: preloader2 ease-in 3s infinite;	
}
@keyframes preloader {
	0% 		{ transform: rotate(0deg); }
	100% 	{ transform: rotate(1080deg); }	
}
@keyframes preloader2 {
	0% 		{ transform: rotate(0deg); }
	100% 	{ transform: rotate(-1080deg); }	
}
img {
	width: auto;
	height: 600px;	
}
