#toast {
	background:red;
	padding:6px;
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index:9999;
	display:none;
	width:600px;
	margin:0 auto;
	border-bottom-left-radius:4px;
	border-bottom-right-radius:4px;
	-webkit-box-shadow: 4px 4px 0px 0px rgba(0,0,0,.50);
	-moz-box-shadow: 4px 4px 0px 0px rgba(0,0,0,.50);
	box-shadow: 4px 4px 0px 0px rgba(0,0,0,.50);
}

#toast .tit {
	font-family:arial;
	font-size:13px;
	color:#fff;
	font-weight:bold;
	text-align:center;
}

#toast .msg {
	font-family:arial;
	font-size:12px;
	color:#fff;
	font-weight:normal;
	text-align:center;
}

#toast .close {
	position:absolute;
	top:4px;
	right:4px;
	padding:2px 4px;
	font-family:arial;
	font-size:11px;
	color:#fff;
	font-weight:bold;
}

#toast .close:hover {
	color:#f00;
	background-color:#fff;
	cursor:pointer;
}