/* CSS fuer Formulare
  (insbesondere mit CGI::Formbuilder konstruierte)
  sowie verschiedene benachrichtigungen

  $Id$
*/

/* -- Data::FormValidator ------------------------------------- */
.dfv-errors {
	color: red;
}
.dfv-errors-block {
	display: block;
}


/* -- FormBuilder ---------------------------------------------- */
.fb {
    background: #ffc;
    font-family: verdana,arial,sans-serif;
    font-size: 10pt;
}

.fb_label {
    text-align: right;
    padding-right: 1em;
}

.fb_comment {
    font-size: 8pt;
    font-style: italic;
}

.fb_submit {
    text-align: center;
}

.fb_required {
    /* font-weight: bold; */
}

.fb_invalid {
    color: #c00;
    font-weight: bold;
}

.fb_error {
    color: #c00;
    font-style: italic;
}

.fb_message {
    color: #c00;
    font-style: italic;
    padding-left: 1em;
}


/* -- messages ---------------------------------------- */
/* Analaog zu #mitte_konto #info_msg in standard2010.css - schlechter template-entwurf erzwingt die dopellung */
#mitte_registrierung #info_msg,
.INFO, .ERROR /* CGI::Application::Plugin::MessageStack  */
{
	width: auto;
	height: auto;
	font-weight: bold;
	background-color: #fffed5;
	border: 2px solid #ffa801;

	/* das erbt #mitte_konto #info_msg von #mitte_konto > div, aber mitte_registrierung #info_msg eben nicht. sic */
	padding: 1em;
}
.ERROR {
	color: red;
}

/* div um die messages */
#mitte_messages {
	padding: 1em 3em;
}


/* -- zum entwicklen ----------------------------------------- */
.todo {
	background-color: red !important;
	color: #FFFFFF !important;
}
