/******************************************/
/*                                        */
/*  Alert Box                             */
/*                                        */
/******************************************/


.alert-box {
	color:#555;
	border-radius:5px;
	font-family:Helvetica;
	height:35px;
	text-align:left;
	font-size:12px;		
	padding: 20 0 0 30;
	width:97%;
}
.alert-box span {
	font-weight:bold;
	text-transform:uppercase;
}
.error {
	background:#ffecec url('../images/error.png') no-repeat 10px;
	border:1px solid #f5aca6;
}
.success {
	background:#e9ffd9 url('../images/success.png') no-repeat 10px;
	border:1px solid #a6ca8a;	
}
.warning {
	background:#fff8c4 url('../images/warning.png') no-repeat 10px;
	border:1px solid #f2c779;
}
.notice {
	background:#e3f7fc url('../images/notice.png') no-repeat 10px;
	border:1px solid #8ed9f6;
}