/* * * * * * * * * * * * * * * * *
 *
 *	CSS RESET
 *
 * * * * * * * * * * * * * * * * */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video  {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section  {
    display: block;
}

body  {
    line-height: 1;
}

ol, ul  {
    list-style: none;
}

blockquote, q  {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after  {
    content: '';
    content: none;
}

table  {
    border-collapse: collapse;
    border-spacing: 0;
}

/* * * * * * * * * * * * * * * * *
 *
 *	Styles - Input Felder
 *
 *	CSSG Collections: Forms
 *	designed and coded by Alen Grakalic (http://cssglobe.com)
 *	brought to you by Templatica (http://templatica.com)
 *
 * * * * * * * * * * * * * * * * */

input, select, textarea  {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

input, textarea, select  {
    border: 1px solid #999;
    height: 16px;
    background: #fff url("images/form_input.gif") repeat-x;
    padding: 3px 0px 3px 3px;
    text-align: left;
    color: #000000;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
	min-height: 26px;
    width: 200px;
}

input[type=checkbox]  {
    border: none;
    background: white;
}

.even input[type=checkbox]  {
    background: lightgrey;
}

label  {
    display: block;
    text-align: left;
    color: #000000;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
}

h3.ui-widget-header {
	color: #000000;
}

/* * * * * * * * * * * * * * * * *
 *
 *	Eigene Styles für die Seite
 *
 * * * * * * * * * * * * * * * * */

body {
	background-color: #d8d8d8 !important;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font: 15px "Trebuchet MS", Helvetica, sans-serif;
	color: #000000;
}

#applicationFormHeader {
	width: 100%;
	height: 35px;
	background-color: #cb0000;
	top: 0px;
	left: 0px;
	position: fixed;
	z-index: 1000;
}

#applicationFormHeaderButtons {
	width: 90%;
	max-width: 900px;
	min-width: 300px;
	margin: 0 auto;
	color: #ffffff;
	padding-top: 4px;
}

#applicationFormHeaderButtons a {
	color: #ffffff;
	text-decoration: none;
	font-size: 13px;
	font-weight: normal;
	vertical-align: middle;
	margin-top: 4px;
}

#applicationFormHeaderButtons span {
	font-size: 20px;
	font-weight: bold;
	vertical-align: middle;
}

.applicationFormHeaderButton {
	float: left;
	margin-right: 25px;
}

.applicationFormHeaderButton * {
	display: block;
}

.applicationFormHeaderButton > div * {
	float: left;
}

#applicationForm {
	width: 90%;
	max-width: 900px;
	min-width: 300px;
	margin: 0 auto;
	margin-top: 65px;
	margin-bottom: 25px;
	background-color: #ffffff;
	padding: 15px;
}

#applicationFormError {
	border: 1px solid #ebccd1;
	text-align: center;
	padding: 15px;
	margin: 20px 0px;
	background-color: #f2dede;
	color: #a94442;
}

#applicationForm label {
	padding-bottom: 7px;
}

#applicationFormHeadImage {
	background: #ffffff;
	width: 100%;
}

#applicationFormHeadImage img {
	width: 100%;
	height: auto;
}

#applicationFormTitle {
	width: 100%;
	color: #cb0000;
	font-size: 36px;
	margin-top: 30px;
}

#applicationFormBlocks {
	margin-top: 30px;
}

.ApplicationFormSubmit {
	background: #cb0000;
	color: #ffffff;
	text-align: center;
	height: 40px;
	width: 30%;
	border: none;
	font-size: 15px;
	float: right;
	margin-right: 1%;
	outline: 1px solid #cb0000;
	min-width: 200px;
}

.applicationFormBlockTitle {
	color: #cb0000;
	font-size: 24px;
	padding-bottom: 10px;
}

.applicationFormBlock {
	margin-top: 0px;
	margin-bottom: 45px;
}

.applicationFormField {
	float: left;
	margin: 1px 1%;
}

.applicationFormField input, .applicationFormField select, .applicationFormField textarea {
	width: 100%;
}

.applicationFormField select[multiple], .applicationFormField textarea {
	height: 75px;
}

.applicationFormRow {
	width: 100%;
	margin-top: 15px;
}

.selectRadio, .selectCheckbox {

	float: left;
	width: 49%;
}

.selectRadioText, .selectCheckboxText {
	padding-top: 5px;
}

.selectRadioInput input, .selectCheckboxInput input {
	width: 14px;
	margin: 0px;
	margin-right: 5px;
	float:left;
}


.width1 {
	width: 23%;
}

.width2 {
	width: 48%;
}

.width3 {
	width: 73%;
}

.width4 {
	width: 98%;
}

.clear {
	clear: both !important;
}

.required {
	color: #cb0000;
	font-weight: bolder;
}

#applicationFormFieldFileUploader > div.uploaderDummy {
	width: 48%;
	margin: 0px;
	padding: 0px;
	margin-right: 2%;
	height: 170px;
	float: left;
}

.upload-conatainer {
	position: absolute;
	display: none;
	border-radius: 0px;
	border: 1px solid #999;
	padding: 0px !important;
}

h3.ui-widget-header {
	font-weight: normal;
	border-radius: 0px;
	border: none;
	border-bottom: 1px solid #999;
	background: none;
}

.uploader-open-button {
	float: right !important;
	margin-right: 15px !important;
}

/* * * * * * * * * * * * * * * * *
 *
 *	Responsive Styles
 *
 * Damit das Formular auch auf
 * mobilen Geräten gut nutzbar ist.
 *
 * * * * * * * * * * * * * * * * */

/**
 * Unter 800 PX, beschränken auf 2 Spalten
 */
@media(max-width: 800px) {
	.width1 {
	width: 48%;
	}

	.width2 {
		width: 98%;
	}

	.width3 {
		width: 98%;
	}

	.width4 {
		width: 98%;
	}

	.applicationFormRow {
		margin-top: 0px;
	}

	.applicationFormField {
		margin-bottom: 10px;
	}
}

/**
 * Unter 600 PX, beschränken auf 1 Spalte
 */
@media(max-width: 600px) {
	.width1 {
	width: 98%;
	}

	.width2 {
		width: 98%;
	}

	.width3 {
		width: 98%;
	}

	.width4 {
		width: 98%;
	}

	.applicationFormField {
		margin-bottom: 15px;
	}

	#applicationFormHeadImage {
		display: none;
	}

	#applicationFormTitle {
		margin-top: 10px;
	}

	#applicationForm {
		margin-bottom: 5px;
		margin-top: 40px;
	}

	#applicationFormHeaderButtons a {
		margin-top: 4px;
	}

	.applicationFormHeaderButton:nth-child(2) {
		display: none;
	}

	.applicationFormField select[multiple] {
		height: 16px;
	}
	#applicationFormFieldFileUploader > div.uploaderDummy {
		width: 98%;
	}
}

@media print {
	#applicationFormHeader {
		display: none;
	}

	#applicationForm {
		margin-bottom: 5px;
		margin-top: 5px;
	}
}

.ui-widget {
	font-size: 14px !important;
}


