<!--

div.ierr
{
	visibility:hidden;
	color: white;
	font-size:10pt;
	font-weight:bold;
	cursor:pointer;
	height: 20px;
	width: 300px;
	margin-left: -150px;
	padding: 2px;
	background-color: red;
	border-radius: 10px;
	display:inline-block;
	position:fixed;
	left:50%; //60px;
    	top:40px;
	text-align:center;
	transition: background-color 0.6s ease;
	box-shadow: 20px 20px 30px -4px #444444, inset -2px -2px 10px 4px #444444;
	z-index: 2;
}

/* Loader Fading Animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {	from {opacity: .4} to {opacity: 1}	}
@keyframes fade {		from {opacity: .4} to {opacity: 1}	}

.on	{ display:initial; }
.off	{ display:none; }

@keyframes loader_fader		{ from {background-color: black;} to {background-color: white;} }
@-webkit-keyframes loader_fader { from {background-color: black;} to {background-color: white;} }

.fade_to_black { 
	background-color: black;
	animation-name: loader_fader;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	box-shadow: inset 8px 8px 40px #000000;
	}
			
.loader_img { 
	max-width:400px !important;
	max-height:400px !important;
	width:auto !important;
	height:auto !important;
	box-shadow: 8px 8px 20px #000000, inset 8px 8px 40px #ffffff;
	}
h2.loader_headline	{ letter-spacing:6px; text-decoration:none; font-family:Tahoma,sans-serif; font-size:20pt; font-weight:bold; color:#7060b0; text-shadow:1px 1px 4px #666666, 1px 1px 8px #888888, 1px 1px 12px #ffffff, -1px -1px 1px white, 1px 1px 1px white; } 
h3.loader_headline	{ letter-spacing:6px; text-decoration:none; font-family:Tahoma,sans-serif; font-size:10pt; font-weight:bold; color:#999999; text-shadow:1px 1px 1px #000000, 1px 1px 4px #ffffff; }

-->