﻿/* Success, error & notice boxes for messages and errors. */
.error,
.notice, 
.success    { padding: .4em; margin: 1em 0 1em 0; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #FF0000; font-weight:bold; border:1px solid #FBC2C4; padding:5px; }
.notice { background: #FFF6BF; color: #000000; font-weight: bold; border: 1px solid #817134; padding: 5px;}
.success    { background: #CBF9B0; color: #67C018; font-weight:bold; border:1px solid #67C018; padding:5px; }
.error a    { color: #D12F19; }
.notice a   { color: #817134; }
.success a  { color: #529214; }
.error img, .success img, .notice img { float:left; margin-right:10px;}
.error span, .notice span, .success span { padding-top:3px; float:left }

.clear:after
{
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.clear
{
	min-height: 1px;
}
* html .clear
{
	height: 1px;
}