/* BaseForm
	Implements vertical and horizontal forms
	"FrmV"
        <LABEL> 
        <VALUE>

    "FrmH"
        <LABEL> <VALUE>

    <div class="Frm(V|H)">
        <div class="FrmOdd">
            <div class="Lbl">Name</div>
            <div class="Val"><input></div> 
        </div>
        <div class="FrmEven">
            <div class="Lbl">Strasse</div>
            <div class="Val"><input></div> 
        </div>
    </div>

    "FrmOdd" and "FrmEven" provide the background-color
    for odd and even "rows" in a form:
    
    "Lbl" sets the Label-, "Val" the Value-Container.
*/

/*** FrmV ***/
.FrmV
{
}
.FrmV .Lbl, .FrmV label
{
}
.FrmV .Val
{
}

/*** FrmH ***/
.FrmH
{
    clear               : both !important;
    float               : left !important;
}
.FrmH .Lbl, .FrmH label
{
    float               : left !important;
}

.FrmH .Val
{
    float               : left !important;
}


/*** FrmOdd and FrmEven ***/
.FrmOdd
{
    clear               : both !important;
    float               : left !important;
}
.FrmEven
{
    clear               : both !important;
    float               : left !important;
}