#Content label{
    padding-bottom: 5px;
    font-weight: bold;
    display: inline-block;
    font-size: 14px;
}

#Content .field{
    margin: 20px 0px 10px 0px;
}

#Content #Form_Form{
    width: 400px;
    margin: 0 auto;
}

#Content input,
#Content textarea,
#Content select{
    color: #fff;
    background: #000;
    font-size: 14px;
    padding: 1px 10px;
    border: 1px solid #999;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

#Content .middleColumn input,
#Content .middleColumn textarea,
#Content .middleColumn select{
    width: 400px;
}
#Content .middleColumn select{
    padding-left: 0px;
    padding-right: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    width: 422px;
}
#Content .Actions input:active{
    border-color: #333;
    color: #333;
    background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(153,153,153)),
    color-stop(1, rgb(85,85,85)),
    color-stop(0.86, rgb(153,153,153))
    );
    background-image: -moz-linear-gradient(
        center bottom,
        rgb(153,153,153) 44%,
        rgb(85,85,85) 100%,
        rgb(153,153,153) 86%
    );
}
#Content .Actions input{
    cursor: pointer;
    color: #fff;
    border: 2px solid #eee;
    border-color: #eee  #999 #999 #eee;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: none;
    padding: 5px;

    background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, rgb(85,85,85)),
    color-stop(1, rgb(153,153,153)),
    color-stop(0.86, rgb(85,85,85))
    );
    background-image: -moz-linear-gradient(
        center bottom,
        rgb(85,85,85) 44%,
        rgb(153,153,153) 100%,
        rgb(85,85,85) 86%
    );

    /*
    background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.52, rgb(8,95,166)),
    color-stop(1, rgb(102,185,220))
    );
    background-image: -moz-linear-gradient(
        center bottom,
        rgb(8,95,166) 52%,
        rgb(102,185,220) 100%
    );

    */

}
/*Diese Property verhindert die hässliche gepunktete Linie im Firefox bei inputs*/
#Content .Actions input::-moz-focus-inner { border: 0; }

#Content label.required{
    color: #FF0000;
    margin-top: 5px;
}