/* Generic widgets */
.afk_widget
{
	background-color: white;
	color: white;
	overflow: hidden;
	font-size: 1px;
	visibility: hidden;

	width: 300px;
	height: 25px;
}

.afk_widget_err
{
	border: 1px solid black;
	background-image: url(../gfx/widget.gif);
	background-color: transparent;
	background-repeat: repeat;
	color: red;
	overflow: hidden;
	font-size: 14px;
	font-weight: bold;

	width: 300px;
	height: 1.5em;
}

/* validation errors */
input.mandatory_empty,
select.mandatory_empty,
textarea.mandatory_empty
{
	background-color: yellow;
}

input.not_valid,
select.not_valid,
textarea.not_valid
{
	background-color: orangered;
}


input.disabled,
select.disabled,
textarea.disabled
{
	background-color: ButtonFace;
	color: GrayText;
}

