/*	CSS for customized radio buttons and check boxes */

/* page styles */

body {
margin:0;
}

form {
padding:1px;
}

fieldset {
padding: 0 0 2em 0;
border: 0;
}

legend {
font-size: 1.4em;
font-weight: bold;
padding: .2em 5px;
}

form fieldset input.absenden {
background-color: transparent;
cursor:pointer;
color: #18899f;
display: block;
padding: 0 12px 0px 12px;
font-size: 21px;
font-weight: 400;
letter-spacing: 0px;
line-height: 28px;
border: 1px solid #18899f;
}

input[type="checkbox"] {
    display:none;
}

h3 {
    margin-top: 10px !important;
}

h4 {
    color: #b2b227 !important;
    font-size: 20px !important;
    margin-top: 1px !important;
    margin-bottom: 0px !important;
}

ul li, ol li {
  background-image: url('images/bullet.png');
  background-repeat: no-repeat;
  padding: 0 0 0 10px;
  margin: 2px 0 10px -24px;
  background-position-y: 5px;
  list-style: none;
}

iframe {
    width:100%;
    border: 0;
}


/*	wrapper divs */
.custom-checkbox, .custom-radio { position: relative; cursor: pointer;}

/* input, label positioning */
.custom-checkbox input,
.custom-radio input {
position: absolute;
left: 2px;
top: 3px;
margin: 0;
z-index: 0;
}

.custom-checkbox label,
.custom-radio label {
cursor: pointer;
display: block;
font-size: 13px;
line-height: 1.3em;
margin:0 0 2px;
padding:9px 0 8px 37px;
position: relative;
z-index: 1;
}


/* states */

.custom-checkbox label { background: url(/images/checkbox.png) no-repeat; }
.custom-radio label { background: url(/images/radiobutton.gif) no-repeat; }

.uneven .custom-checkbox label {
background-color:#f8f5ec;
background-image:url(images/checkbox.png);
background-color: rgba(255, 255, 255, 0.5);
}

.even .custom-checkbox label {
background-color:#fff;
background-image:url(images/checkbox.png);
background-color: rgba(255, 255, 255, 0.8);
}

.custom-checkbox label, .custom-radio label {
background-position: -5px -11px;
}

.custom-checkbox label.hover,
.custom-checkbox label.focus,
.custom-radio label.hover,
.custom-radio label.focus {
background-position: -5px -111px;
}

.custom-checkbox label.checked,
.custom-radio label.checked {
background-position: -5px -211px;
}

.custom-checkbox label.checkedHover,
.custom-checkbox label.checkedFocus {
background-position: -5px -311px;
}

.custom-checkbox label.focus,
.custom-radio label.focus {
outline: 1px dotted #ccc;
}
