/* css for notification message */
#notification_msg
{
	display: none;  
	padding:0px;
	margin:0px;
	width:100%;
	top:0;
	left:0;
	position: fixed;
	height:30px;
}

#notification_msg.success
{
	background-color: #5CF973;
	color: #000000;
}

#notification_msg.error
{
	background-color: #F25738;
	color: #000000;
}

#notification_msg .msg_content
{
	text-align:center;
	border:none;
	width:100%;
	padding:5px 0px;
	position: fixed;
	right:40px;
}

.close_btn_notification 
{
	display: block; 
	position: fixed; 
	right: 0; 
	top: 0; 
	width:20px;  
	padding: 5px 10px 0px 0px; 
	border: none; 
	text-decoration: none; 
	color: white; 
	text-align: center;
	opacity:0.8;
}

.close_btn_notification:hover
{
	opacity:1;
}