/* MESSAGE BOXES
/////////////////////////////*/
.message-box { position:absolute; top:150px; text-align: center; padding: 5px; color:#545454; width:40%; margin-left:30%; height:150px; padding-top:20px; }
.clean { background-color: #efefef; border-top: 2px solid #dedede; border-bottom: 2px solid #dedede; }
.info  { background-color: #f7fafd; border-top: 2px solid #b5d3ff; border-bottom: 2px solid #b5d3ff; }
.ok    { background-color: #d7f7c4; border-top: 2px solid #82cb2f; border-bottom: 2px solid #82cb2f; }
.alert { background-color: #fef5be; border-top: 2px solid #fdd425; border-bottom: 2px solid #fdd425; }
.error { background-color: #ffcdd1; border-top: 2px solid #e10c0c; border-bottom: 2px solid #e10c0c; }
.message-box input{
	position:absulute;
	right:20px;
	bottom:20px;
}
.shadow{
	position:absolute;
	top:0;
	bottom:-100px;
	right:0;
	left:0;
	background:white;
	background-color: rgba(255, 255, 255, 0.8);
	cursor:pointer;
	z-index:99999;
}
