@CHARSET "UTF-8";
/*******************************************************************************
 * flash.css
 *
 * This file contains styles for flash messages, displayed at the top of the
 * content pane.
 *
 * Author: William Madden
 *
 * Copyright (c) JB Interactive, 2008
 ******************************************************************************/

#messages ul {
	margin: 0 0 18px;
	padding: 0;
	line-height: 28px;
}

#messages li {
	list-style: none;
	padding: 0 10px;
	text-align: center;
	cursor: default;
	color: #000000;
}

#messages .errors li {
	background: #ffdada;
	color: #000000;
}

#messages .warnings li {
	background: #fff3d9;
	color: #000000;
}

#messages .info li {
	background: #a4dc95;
	color: #000000;
}

