#info_message{
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
	left: 0;
	right:0;
    position: fixed;
    z-index: 50000;
    margin: 0;
    padding: 0;
	cursor: pointer;
}
* html #info_message {position:absolute;padding-right:10px}
.center_auto{
	text-align:center;
    padding: 15px 25px;
}
.message_icon {
	position:absolute;
	top:14px;
	margin-left:-15px;
}
#info_message .message_area span.link_ribbon{
    color: #999999;
    text-decoration: underline;
    cursor: pointer;
}
#info_message .button_area{
    float: left;
    width: 11px;
    height: 10px;
    margin-top: 3px;
}
.message_area{
    font: 14px/100% Arial, Helvetica, sans-serif;
	font-weight:bolder;
    color: white;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
.notification_background {
	border: 1px solid black;
	-webkit-border-bottom-left-radius: 0.4em;
	-webkit-border-bottom-right-radius: 0.4em;
	border-bottom-left-radius: 0.4em;
	border-bottom-right-radius: 0.4em;
	
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=95);
    -moz-opacity: 0.9;
    -khtml-opacity: 0.9;
    opacity: 0.9;
}

.clearboth{
    clear: both;
}
.info_more_descrption{
    display: none;
    width: 950px;
    height: 300px;
    background: #fff;
    margin: 0 auto;
    padding: 10px;
    background: #fbfbfb;
    overflow: auto;
}
/* Error Message */
.error_bg{
    background: #ffcaca;

	border-color:#ff9797;
	
	-webkit-box-shadow:  0px 3px 0px 0px rgba(255, 151, 151, 1);
	-moz-box-shadow:  0px 3px 0px 0px rgba(255, 151, 151, 1);
	box-shadow:  0px 3px 0px 0px rgba(255, 151, 151, 1);
}
.error_bg .message_area {
    color: #575757;
    text-shadow:none;
}
/**************/

/* Success Message */
.succ_bg{
    background: #b9ffb6;

	border-color:#99db96;
	
	-webkit-box-shadow:  0px 3px 0px 0px rgba(153, 219, 150, 1);
	-moz-box-shadow:  0px 3px 0px 0px rgba(153, 219, 150, 1);
	box-shadow:  0px 3px 0px 0px rgba(153, 219, 150, 1);
}
.succ_bg .message_area {
    color: #575757;
    text-shadow:none;
}
/**************/

/* Info Message */
.info_bg{
    background: #446bb8;

	border-color:#032567;
	
	-webkit-box-shadow:  0px 3px 0px 0px rgba(3, 37, 103, 1);
	-moz-box-shadow:  0px 3px 0px 0px rgba(3, 37, 103, 1);
	box-shadow:  0px 3px 0px 0px rgba(3, 37, 103, 1);
}
/**************/

/* Warn Message */
.warn_bg{
    background: #ffcfac;

	border-color:#f7a467;
	
	-webkit-box-shadow:  0px 3px 0px 0px rgba(247, 164, 103, 1);
	-moz-box-shadow:  0px 3px 0px 0px rgba(247, 164, 103, 1);
	box-shadow:  0px 3px 0px 0px rgba(247, 164, 103, 1);
}
.warn_bg .message_area {
    color: #575757;
    text-shadow:none;
}
/**************/

/* Progress Bar */
.info_progress {
	width: 0;
	height: 4px;
	background: rgba(255,255,255,0.3);
	position: absolute;
	bottom: 5px;
	left: 2%;
	border-radius: 3px;
	box-shadow: 
		inset 0 1px 1px rgba(0,0,0,0.05), 
		0 -1px 0 rgba(255,255,255,0.6);
}
#info_message {
	-webkit-animation: fadeOut 10s linear forwards;
	-moz-animation: fadeOut 10s linear forwards;
	-o-animation: fadeOut 10s linear forwards;
	-ms-animation: fadeOut 10s linear forwards;
	animation: fadeOut 10s linear forwards;
}

.info_progress {
	-webkit-animation: runProgress 9s linear forwards 0.5s;
	-moz-animation: runProgress 9s linear forwards 0.5s;
	-o-animation: runProgress 9s linear forwards 0.5s;
	-ms-animation: runProgress 9s linear forwards 0.5s;
	animation: runProgress 9s linear forwards 0.5s;
}


@-webkit-keyframes fadeOut {
	0% { opacity: 1; }
	10% { opacity: 1; }
	90% { opacity: 1; -webkit-transform: translateY(0px);}
	99% { opacity: 0; -webkit-transform: translateY(-30px);}
	100% { opacity: 0; }
}

@-moz-keyframes fadeOut {
	0% { opacity: 1; }
	10% { opacity: 1; }
	90% { opacity: 1; -moz-transform: translateY(0px);}
	99% { opacity: 0; -moz-transform: translateY(-30px);}
	100% { opacity: 0; }
}

@-o-keyframes fadeOut {
	0% { opacity: 1; }
	10% { opacity: 1; }
	90% { opacity: 1; -o-transform: translateY(0px);}
	99% { opacity: 0; -o-transform: translateY(-30px);}
	100% { opacity: 0; }
}

@-ms-keyframes fadeOut {
	0% { opacity: 1; }
	10% { opacity: 1; }
	90% { opacity: 1; -ms-transform: translateY(0px);}
	99% { opacity: 0; -ms-transform: translateY(-30px);}
	100% { opacity: 0; }
}

@keyframes fadeOut {
	0% { opacity: 1; }
	10% { opacity: 1; }
	90% { opacity: 1; transform: translateY(0px);}
	99% { opacity: 0; transform: translateY(-30px);}
	100% { opacity: 0; }
}

@-webkit-keyframes runProgress {
	0%{ width: 0%; background: rgba(255,255,255,0.3); }
	100%{ width: 96%; background: rgba(255,255,255,1); }
}

@-moz-keyframes runProgress {
	0%{ width: 0%; background: rgba(255,255,255,0.3); }
	100%{ width: 96%; background: rgba(255,255,255,1); }
}

@-o-keyframes runProgress {
	0%{ width: 0%; background: rgba(255,255,255,0.3); }
	100%{ width: 96%; background: rgba(255,255,255,1); }
}

@-ms-keyframes runProgress {
	0%{ width: 0%; background: rgba(255,255,255,0.3); }
	100%{ width: 96%; background: rgba(255,255,255,1); }
}

@keyframes runProgress {
	0%{ width: 0%; background: rgba(255,255,255,0.3); }
	100%{ width: 96%; background: rgba(255,255,255,1); }
}