/* Error box style */

.error {
	width: 95%;
	font-family: sans-serif;
	font-size: 14px;
	padding: 3px;
	margin-bottom: 1em;
	background-color: white;
	border-top:	3px solid red;
	border-bottom: 3px solid red;
	color: red;
	text-align: center;
}

/* Message box style */

.message {
	width: 95%;
	font-family: sans-serif;
	font-size: 14px;
	padding: 3px;
	margin-bottom: 1em;
	background-color: white;
	border-top:	3px solid #1D98C4;
	border-bottom: 3px solid #1D98C4;
	color: #1D98C4;
	text-align: center;
}