@charset "utf-8";
/* CSS Document */

body{
	margin:0px;
}

a{
	text-decoration:none;
	color:#2C7BDC;
}

a:hover{
	text-decoration:underline;
	color:#0099CC;
}

/* ================================ LOADER ===================================*/
#loader{
	display:none;
	position:fixed;
	z-index:99999;
	background:url(../images/loader/bg_transparent.png);
}
#loader_position{
	background:#fff;
	width:48px;
	text-align:center;
	margin:0 auto;
	height:40px;
	padding:8px 0 0 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/* ================================ WEBSITE TOP MESSAGE ===================================*/
.website_system_message{
	background-size: 40px 40px;
	background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
					  transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
					  transparent 75%, transparent);										
	box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
	width: 100%;
	border: 1px solid;
	color: #fff;
	padding: 15px;
	position: fixed;
	_position: absolute;
	text-shadow: 0 1px 0 rgba(0,0,0,.5);
	animation: animate-bg 5s linear infinite;
	text-align: center;
	z-index: 9999 !important;
	font-size: 20px;
	font-family: Calibri, Arial, Helvetica, Sans-serif;
	font-weight: bold;
	display:none;
}

.website_system_message.info{
	background-color: #4ea5cd;
	border-color: #3b8eb5;
}

.website_system_message.error{
		 background-color: #de4343;
		 border-color: #c43d3d;
}
		 
.website_system_message.warning{
		 background-color: #eaaf51;
		 border-color: #d99a36;
}

.website_system_message.success{
		 background-color: #61b832;
		 border-color: #55a12c;
}

.clear{
	clear:both;
}