/* form.css
Farben: 
Text: #3c3c3b
Dunkelblau (Links, Text): #003359
Orange (.active, :hover): #ffbc3d
Lichtgrau (Flächen): #eeeeee
Hellgrau (Balken): #d7dbde
Mittelgrau (h1, h2): #afafaf
*/

/* Bootstrap reset */
label { font-weight:normal; }
input[type="file"] { display:inline-block;line-height: 10px; }

/* ============================================================================================================================ */
/* Formular-Editor */

.formfields {  } /* div.formfields umschließt alle Formularfelder */
.formfields input[type="text"], .formfields textarea {
	padding:5px 10px;
	height:auto;
	font-size:16px;
	background-color:#fff;
	border:1px solid #d7dbde;
} 
/* ohne height:auto; sind im Firebox die placeholder der inputs nicht sichtbar (http://stackoverflow.com/questions/24448991/input-padding-cutting-out-text-in-firefox) */

/* Gliederungselemente (umschließende divs zur Strukturierung) */
.formfields .inputunit { margin-bottom:10px; }
.lj_inputunit { display:none; }
.formfields .checkboxunit { margin-bottom:0px; padding-left:5px; } 
.formfields .radiounit { margin-bottom:10px; } 
.formfields .selectunit { margin-bottom:10px; } 
.formfields .commentunit { margin-bottom:5px; margin-top:15px; } 
.formfields .uploadunit { margin-bottom:20px; margin-top:10px; padding:10px; background-color:#EAEDF0; } 
.formfields .uploadunit .textunit { margin-bottom:10px; }

/* Beschriftungen */
.formfields .fieldlabel { float:left; cursor: pointer; }
.formfields .checkboxlabel { 
	cursor: pointer;
	display: block;
	text-indent: -20px;
	padding-left: 15px;
	padding-top: 5px;
}
.formfields .radiolabel { margin-left:5px; cursor: pointer; }
.formfields .checkboxgrouplabel { margin-bottom:5px; font-weight:700; margin-top:10px; }
.formfields .radiogrouplabel { float:left; margin-right:20px; }
.formfields .selectlabel { margin-right:10px; cursor: pointer; }
.formfields .requiredmarker {  }

/* Formular-Elemente */	
.formfields .textinput { width:100%; height:25px;}
.formfields .textarea { width:100%; height:100px; }
.formfields select.customselect { background-color:#fff; }
.formfields input.cbox {
	margin-right:3px;
	padding: 0;
	vertical-align: bottom;
	position: relative;
	top: -5px; }
.formfields input.radiobutton { }

.formfields input.submitbtn { 
	margin:0;
	padding:5px 20px;
	color:#fff;
	background-color:#003359;
	border:none;
	font-weight:bold;
	outline-style: none;
}	
.formfields input.submitbtn:hover { 
	color:#ffbc3d;
}
.formfields input.resetbtn { width:100px; font-size:10pt; margin-left:10px }	/* Reset-Button */


/* Searchfields */
.searchfield { /* div header left */
	width:95%;
}
.srp_searchfield { /* Suchergebnisseite */
	width:300px;
}
.langsearch .searchfield { /* responsive navigation */
	width:100%;
}
@media screen and (max-width: 480px) {
	footer .searchfield { width:100%; }
}
header .searchfield input[type="text"], .srp_searchfield input[type="text"], footer .searchfield input[type="text"] { 
	color:#003867;
	background-color:#eee;
	border:none;
	margin-left:0;
	height:30px;
	width:100%;
	padding: 10px 5px;
	border-right:4px solid #fff;
}
header .searchfield input[type="text"] { 
	background-color:#fff;
	border-right:4px solid #eee;
}
.srp_searchfield .searchbtn, footer .searchbtn {
	background:#eee url(/css/images/Lupe_MRI.png) no-repeat 0 0;
}
header .searchbtn {
	background:#fff url(/css/images/Lupe_MRI.png) no-repeat 0 0;
}




/* ========== RESPONSIVE ======== */
@media (max-width: 640px) {
	
}

/* ========== RESPONSIVE END ======== */