/******************************************************************************
	forms.css
	CSS-Styles für Formulare
******************************************************************************/

form.f_fnormal { /* Grundformat des Formulars */
        background-color: transparent;
        padding: 10px;
        margin-left: 50px;
        margin-right: 50px;
}

fieldset.f_fsnormal { /* Grundformatierung für fieldset */
	color:rgb(255, 255, 255);
	background-color: transparent;
	border: 2px solid rgb(200, 200, 200);
}

fieldset.f_fsred { /* Grundformatierung für fieldset auf privatem Login */
	color:rgb(255, 255, 255);
	background-color: transparent;
	border: 2px solid rgb(255, 0, 0);
}

legend.f_lnormal { /* Grundformatierung für legend */
	color: rgb(255, 255, 255);
	background-color: transparent;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-top: 10px;
}

legend.f_lred { /* Grundformatierung für legend auf privatem Login */
	color: rgb(255, 0, 0);
	background-color: transparent;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-top: 10px;
}

table.f_tnormal { /* Tabelle mit Formularelementen */
	border: 0px;
	width: 100%; 
	padding-left: 20px;
        padding-right: 20px;
}

td.f_labeltext { /* Tabellenfeld, normale Eingabezeile, Label */
        padding-bottom: 20px;
        width: 200px;
}

input.f_inputtext { /* Normale Eingabezeile, Input */
        font-family: sans-serif;
        width: 100%;
        color: rgb(0, 0, 0);
        background-color: rgb( 200, 200, 200);
        border: 0px;
}

td.f_inputradio { /* Tabellenfeld mit Radiobutton */
        padding-bottom: 20px;
}

td.f_talabel { /* Label für Textareafeld */
	vertical-align: top;
}

textarea.f_ta { /* Format der Textarea */
        font-family: sans-serif;
        width: 100%;
        color: rgb(0, 0, 0);
        border: 0px;
        background-color: rgb(200, 200, 200);
}

td.f_button { /* Buttonformat */
	padding-top: 20px;
}

button.f_bnormal {
        background-color: rgb(100, 120, 118);
        color: rgb(255, 255, 255);
        border-right: 2px solid rgb(50, 70, 68);
        border-bottom: 2px solid rgb(50, 70, 68);
        border-left: 2px solid rgb(150, 170, 168);
        border-top: 2px solid rgb(150, 170, 168);
        padding-left: 10px;
        padding-right: 10px;
}

input.f_text { /* Fester Text im Readonly-Feld */
	font-family: sans-serif;
	width:100%;
        color: rgb(255, 255, 255);
	background-color:transparent;
	border: 0px;
}



