/*
 * Error Box 2 CSS Classes
 *
 * CSS classes used for styling sam's implementation of the error box class.
 *
 * Author:   Sam Zaid
 * Date:     August 24, 2003
 *
 * VERSIONING:
 * (sample) ##.## - Contributor - Date - Comments
 *
 * 01.00 - Sam Zaid - Aug/24/2003 - Initial design ripped from Ramsay
 *                                - Removed font hard-coding
 *                                - Streamlined classes
 *                                - Removed .ErrorHeaderUnder class, since linking is not a current feature of error box 2
 *                                - Prefixed class names with EB2_ to avoid namespace conflicts
 * 01.01 - Ramsay Eltaher - May/01/2004 - Updated EB2_HeaderText and EB2_ErrorMessage
 *
 */
 
.EB2_HeaderText {
	padding-bottom: 5px;
	font-weight: bold;
}

.EB2_ErrorContainer {
	padding-left:10px;
	padding-right:10px;
	height:15px;
	margin-top:0.5em;
}

.EB2_ErrorHeader {
	font-weight: bold;
	color: red;
}

.EB2_ErrorBox {
	border:dotted 1px red;
	padding:5px;
	height:15px;
	text-align:left;
	margin-left:auto;
	margin-right: auto;
}

.EB2_ErrorMessage {
	font-weight: bold;
}