/*Charset*/
@charset "utf-8";

/*Formular Registrieren*/
/*Headline*/
.vform legend {
    display: block;
    font-weight: bold;
    font-size: 1.25em;
    color: #383838;
    padding-bottom: 10px;
}

/*Label*/
.vform label {
    font-size: 0.875em;
    padding: 0;
    color: #383838;
    padding-bottom: 0;
    float: left;
    width: 10em;
}

/*Input Feld*/
.vform input,
.vform textarea,
.vform select {
    margin-bottom: 10px;
    border: 1px solid #b1b0b0;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: inset 4px 4px 10px -5px #e3e3e3;
    -moz-box-shadow: inset 4px 4px 10px -5px #e3e3e3;
    box-shadow: inset 4px 4px 10px -5px #e3e3e3;
    padding: 5px;
    float: left;
    margin-right: 1em;
}

/*Textfeld varianten*/
.vform textarea {
    width: 48em;
}

.yform textarea#tipmessage {
    width: 18.5em;
}

.vform .small {
    width: 4em;
}

.vform .small-2 {
    width: 6em;
}

.vform .wide {
    width: 20em;
}

.vform select.wide {
    width: 21em;
}

.vform .wide-2 {
    width: 26em;
}

.vform .max {
    width: 48em;
}

/*Absenden Btn*/
.vform input.red {
    margin-left: 278px;
    float: none;
}

.ie .vform input.red,
.ie9 .vform input.red {
    padding: 4px 5px 4px 18px;
}

.vform .red {
    background: #af1428 url(../Images/v-icon_arrow_white.png) no-repeat 96% 44%;
    border: none;
    -moz-border-radius: 0 0 5px 0;
    -webkit-border-radius: 0 0 5px 0;
    border-radius: 0 0 5px 0;
    color: #FFFFFF;
    font-weight: normal;
    font-size: 12px;
    padding: 5px 25px 5px 10px;
    text-decoration: none;
    float: right;
    display: inline-block;
    text-transform: uppercase;
}

.vform input.red:focus,
.vform input.red:active {
    background: #af1428 url(../Images/v-icon_arrow_white.png) no-repeat 96% 44%;
    -webkit-box-shadow: 1px 1px 4px 1px #d1d1d1;
    -moz-box-shadow: 1px 1px 4px 1px #d1d1d1;
    box-shadow: 1px 1px 4px 1px #d1d1d1;
}

/*Error*/
.error, #content h3.error {
    color: #c32d23
}

.vform input.error,
.vform textarea.error,
.vform select.error {
    border: 1px solid #c32d23;
    color: #383838;
}