/*
The main listing of the alerts
 */
.bodyline { font-size: 25px; }
.headerline { font-size: 11px; color: #444; }
.commentsline { font-size: 12px; color: #444; } /* eg View comments */
.about { font-size: 11px; }

.alertstart {
	background-color: #fcc; /* for IE and basic browsers */
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fcc), to(#ddd)); /* for webkit browsers */
	background-image: -moz-linear-gradient(top,  #fcc,  #ddd); /* for firefox 3.6+ */
        border: 3px solid red;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        padding: 5px;
	margin-bottom: 5px;
}

.alertend {
	background-color: #cfc; /* for IE and basic browsers */
	background-image: -webkit-gradient(linear, left top, left bottom, from(#cfc), to(#ddd)); /* for webkit browsers */
	background-image: -moz-linear-gradient(top,  #cfc,  #ddd); /* for firefox 3.6+ */
        border: 3px solid green;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        padding: 5px;
	margin-bottom: 5px;
}

/*
Comments
*/

.commentsbox {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
}

.comment {
        padding: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
	font-size: 14px;
	color: black;
}

.odd { 
	background-color: #ccc;
}

.even { 
	background-color: #eee;
}

.commentheaderline
{
	font-size: 12px;
	color: #444;
}

/*
Entering Comments
*/

.comment_form {
	font-family: Garamond;
}

.comment_form td {
	padding: 3px;
}

input, textarea {
	background-color : #ddd;
	color : #000;
}

.captcha_img {
        border: 1px solid black;
}

.captcha_box {
	padding: 3px;
}

.form_error {
	background-color: #fcc;
        border: 3px dotted red;
	margin: 3px;
	padding: 3px;
}

.form_success {
	background-color: #cfc;
        border: 3px dotted green;
	margin: 3px;
	padding: 3px;
}

