@charset "utf-8";
/* CSS Document */

/* Message System format area  */
.msg_system.success {
	background:#effeb9 url('../images/msg_sys_icons/success.png') no-repeat 10px 12px;
	border-color:#98c700;
}
.msg_system.error {
	background:#ff0000 url('../images/msg_sys_icons/error.png') no-repeat 10px 12px;
	border-color:#ea5338;

}
.msg_system.warning {
	background:#ffeaa7 url('../images/msg_sys_icons/warning.png') no-repeat 10px 12px;
	border-color:#f9b418;
}
.msg_system.info {
	background:#d1e4f3 url('../images/msg_sys_icons/info.png') no-repeat 10px 12px;
	border-color:#4d8fcc;
}
.msg_system.tip {
	background:#feeac9 url('../images/msg_sys_icons/tip.png') no-repeat 10px 12px;
	border-color:#d38e49;
}
.msg_system {
	position:absolute;
	top:0px;
	left:0px;
	width: 99%;
	border-width:1px;
	border-style:solid;
	padding-top:20px;
	padding-bottom:15px;
	margin-left: 5px;
	margin-bottom:15px;
	border-radius: 3px;
	  -moz-border-radius:3px;
	    -webkit-border:3px;
	z-index:1000;
}
.strong {
	font-weight: bolder;
}
.vert_center {
	vertical-align:10px;
	font-size:14px;
}
.right {
	float:right;
}
.close {
	position:relative;
	top:-10px;
	right:0px;
	padding-left:10px;
}
.hidden {
  visibility:hidden;
  opacity:0;
  transition:visibility 0s linear 2s,opacity 2s linear;
}
.visible {
  visibility:visible;
  opacity:1;
  transition-delay:0s;
}