/*.info, .success, .warning, .error, .validation {*/
.success, .infobox, .warning, .error, .validation {
	position:absolute;
	left:50%;
	top:50%;
	margin:-25px 0 0 -200px;
    border: 1px solid;
    padding:15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    z-index:99999999999999999999999999999999999999;
	text-align:center;
	width:400px !important;
	height:auto !important;
	display:table;
	vertical-align:middle;
	/* border radius */
	-moz-border-radius: 8px;  
	-webkit-border-radius: 8px;  
	border-radius: 8px;
	/* opacity */
	filter:alpha(opacity=90);
	opacity: 0.9;
	-moz-opacity:0.9;
	/* box shadow */
	-webkit-box-shadow: 0px 0px 16px #000000;  
	-moz-box-shadow: 0px 0px 16px #000000;  
	box-shadow: 0px 0px 16px #000000;
	/* text shadow */
	text-shadow: #fff 1px 1px 1px;
}
.success {
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image:url('/images/success.png');
}
.success a {
	color: #4F8A10;
}
.warning {
    color: #9F6000;
    background-color: #FEEFB3;
    background-image: url('/images/warning.png');
}
.warning a {
	color: #9F6000;
}
.error {
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url('/images/error.png');
}
.error a {
	color: #D8000C;
}
.infobox {
    color: #041c24;
    background-color: #8cbfe4;
    background-image: url('/images/info.png');
}
.infobox a {
	color: #041c24;
}
.infobox a, .success a, .warning a, .error a {
	font-weight:bold !important;
	cursor:pointer;
}