﻿#splash-screen {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	background-image: linear-gradient(#cccccc, #ffffff, #ffffff);
	background-size: 100% !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

#splash-screen > * {
	/* center child divs  */
	position: absolute;
	top: 50%;
	left: 50%;
	/* x-border-box */
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	/* x-unselectable */
	user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	cursor: default;
}

.splash-screen-circle-outer {
	z-index: 20001;
	width: 120px;
	height: 120px;
	border-radius: 120px;
	margin-top: -60px;
	margin-left: -60px;
	background-color: rgba(0, 0, 0, 0);
	border: 5px solid #ffe0b3;
	opacity: 1;
	border-left: 5px solid rgba(0, 0, 0, 0);
	border-right: 5px solid rgba(0, 0, 0, 0);
	box-shadow: 0 0 15px #577191;
	-moz-animation: spinoffPulse 2s infinite linear;
	-webkit-animation: spinoffPulse 2s infinite linear;
}

.splash-screen-circle-inner {
	z-index: 20001;
	width: 90px;
	height: 90px;
	border-radius: 90px;
	margin-top: -45px;
	margin-left: -45px;
	background-color: rgba(0, 0, 0, 0);
	border: 10px solid #CEE7ED;
	opacity: 1;
	border-left: 5px solid rgba(0, 0, 0, 0);
	border-right: 5px solid rgba(0, 0, 0, 0);
	box-shadow: 0 0 15px #577191;
	-moz-animation: spinoffPulse 1s infinite linear;
	-webkit-animation: spinPulse 1s infinite linear;
}

.splash-screen-text {
	z-index: 20002;
	width: 100px;
	height: 100px;
	line-height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	font-family: Verdana, Geneva, sans-serif;
	font-style: italic;
	font-weight: bold;
	font-size: 15px;
	text-align: center;
	text-shadow: 1px 1px #cccccc;
	vertical-align: middle;
	color: #002951;
}

@-moz-keyframes spinPulse {
	0% {
		-moz-transform: rotate(160deg);
		opacity: 0;
		box-shadow: 0 0 1px #577191;
	}

	50% {
		-moz-transform: rotate(145deg);
		opacity: 1;
	}

	100% {
		-moz-transform: rotate(-320deg);
		opacity: 0;
	}
}

@-moz-keyframes spinoffPulse {
	0% {
		-moz-transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
	}
}

@-webkit-keyframes spinPulse {
	0% {
		-webkit-transform: rotate(160deg);
		opacity: 0;
		box-shadow: 0 0 1px #577191;
	}

	50% {
		-webkit-transform: rotate(145deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: rotate(-320deg);
		opacity: 0;
	}
}

@-webkit-keyframes spinoffPulse {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}
