div.message {
	position: fixed;
	left: 5px;
	top: 5px;
	width: -moz-calc(100% - 48px);
	width: -webkit-calc(100% - 48px);
	width: calc(100% - 48px);
	z-index: 1000;
	border-width: 2px;
	border-style: solid;
	font-size: 16px;
	line-height: 16px;
	margin-bottom: 12px;
	padding: 6px 6px 6px 28px;
	background-position: 6px 6px;
	background-repeat: no-repeat;
	background-size: 16px 16px;
	cursor: pointer;
}
div.message:last-child {
	margin-bottom: 0px;
}
div.message > *:nth-child(2) {
	margin-top: 0px;
}
div.message-err {
	border-color: #f00;
	background-color: #faa;
	background-image: url('/buttons/x.svg');
}
div.message-msg {
	border-color: #770;
	background-color: #ffa;
	background-image: url('/buttons/warning.svg');
}
div.message-suc {
	border-color: #0f0;
	background-color: #dfd;
	background-image: url('/buttons/check.svg');
}
