/**
 * codebase.css 
 * code by strangecode :: www.strangecode.com :: this document contains copyrighted information
 *
 * CSS used in codebase templates and scripts that generate HTML. Do not arbitrarily
 * edit this code! This file is used between many sites and modifying it may result
 * in something breaking. Instead, overwrite these values in a specific site by
 * adding new definitions to a screen.css file.
 */


/*_____________________ MESSAGING SYSTEM ____________________*/
.codebasemsg
{
	font-family: verdana,geneva,arial,sans-serif;
}

.success, .notice, .warning, .error
{
	margin: 0 0 6px 0;
	padding: 5px;
	background: #fff;
	border: 1px solid white;
}

.success
{
	color: #090;
	border-color: #090;
}

.notice
{
	color: #C60;
	border-color: #C60;
}

.warning, .error
{
	color: #f00;
	border-color: #f00;
}

/* BEAU: How about a seperate class for the $fv->err() function to print? At the moment it uses the above error definition, but we could use a "form error {" one too. */