.messages 
{
	border: solid 1px #bbb;
	
	clear: both;
	color: #111;
	margin: 10px auto;
	border-radius: 10px;
	
	background: rgb(255,255,255);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ3JSIgc3RvcC1jb2xvcj0iI2Y2ZjZmNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZGVkZWQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(47%,rgba(246,246,246,1)), color-stop(100%,rgba(237,237,237,1)));
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );

}

.message {
	padding: 5px 5px 5px 17px;
	margin: 2px 25px 2px 25px;
	background: url('../images/messages/message_0.gif') left no-repeat;
	
}

.message_1 {
	background: url('../images/messages/message_1.gif') left no-repeat;
}

.message_2 {
	background: url('../images/messages/message_2.gif') left no-repeat;
}


#fullscreen-message-overlay
{
	top: 0px;
	left: 0px;
	display: none;
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 1000000000000;
	
	/* RGBa with 0.6 opacity */
	background: rgba(50, 50, 50, 0.9);
	/* For IE 5.5 - 7*/
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99333333, endColorstr=#99333333);
	/* For IE 8*/
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99333333, endColorstr=#99333333)";
}

	#fullscreen-message
	{
		position: absolute;
		left: 50%;
		margin-left: -215px;
		width: 430px;
		min-height: 170px;
		height: auto;
		background: #fff;
		z-index: 10000000000000;
	}
	
		#fullscreen-message .wrap
		{
			margin: 10px;
			background: #f5f3f6;
			min-height: 90px;
			height: auto;
			padding: 30px;
			
			line-height: 22px;
			color: #333333;
		}
		
		#fullscreen-message h1
		{
			margin-bottom: 15px;
			color: #000000;
		}
		
		#fullscreen-message #close
		{
			width: 53px;
			height: 52px;
			background: url(../images/close.png) center no-repeat;
			position: absolute;
			right: -10px;
			top: -10px;
			cursor: pointer;
			z-index: 100000000000000;			
		}
		
		
#quick-message
{
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1000000;
	background: #fff;
	display: table;
	border: solid 15px #ccc;
	box-shadow: #ccc 0px 0px 15px;
	border-radius: 10px;
}

#quick-message #message
{
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	font-weight: bold;
	padding: 30px 70px;
	color: #000;	
}

#quick-message.error #message,
#quick-message.status_0 #message,
#quick-message #message .message_2
{
	color: red !important;	
}

#quick-message.success #message,
#quick-message.status_1 #message,
#quick-message #message .message_1
{
	color: green !important;	
}

#quick-message-close
{
	position: absolute;
	top: -25px;
	right: -25px;
	border-radius: 20px;
	padding: 10px 15px;
	font-size: 20px;
	font-weight: bold;
	display: block;
	cursor: pointer;
	color: #444;
	border: solid 1px #eee;
	text-decoration: none;
	
	background: #fefffb;
	background: -moz-linear-gradient(top,  #fefffb 0%, #f1f4ee 40%, #dfe4dc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefffb), color-stop(40%,#f1f4ee), color-stop(100%,#dfe4dc));
	background: -webkit-linear-gradient(top,  #fefffb 0%,#f1f4ee 40%,#dfe4dc 100%);
	background: -o-linear-gradient(top,  #fefffb 0%,#f1f4ee 40%,#dfe4dc 100%);
	background: -ms-linear-gradient(top,  #fefffb 0%,#f1f4ee 40%,#dfe4dc 100%);
	background: linear-gradient(to bottom,  #fefffb 0%,#f1f4ee 40%,#dfe4dc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefffb', endColorstr='#dfe4dc',GradientType=0 );

}

	#quick-message-close:hover
	{
		box-shadow: #ccc 0px 0px 10px;
		color: #000;
	}