/* Suggested order:
 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content
 *
 */

/* -----------------------------------------------
	standard formatting, do not change!!!
----------------------------------------------- */
* {
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
}

body {
	background: #fff;
}

img {
	border: 0;
}

a {
	text-decoration: none;
}


caption {
	display: none;
}

table {
	border-collapse: collapse;
}

th {
	text-align: left;
	vertical-align: top;
}

td {
	vertical-align: top;
}

ul {
	list-style: none;
}

ol {
	margin-left: 20px;
}

fieldset {
	border: none;
}

legend {
	display: none;
}

form .text {
	border-width: 1px;
	border-style: solid;
}

form .button {
	border-width: 1px;
	border-style: solid;
	text-align: center;
	cursor: pointer;
}

form .button.image {
	background-position: 50% 50%;
}

form .button.image span {
	position: absolute;
	left: -9999px;
}

.clear {
	clear: both;
}

.hidden {
	display: none;
	position: absolute;
	left: -9999px;
}


/* -----------------------------------------------
	Formular Grundformatierungen
----------------------------------------------- */
.standardForm {
	/*margin: 0 0 0 4px;*/
	padding: 24px 0 15px 0 !important;
	padding: 34px 0 25px 0;
}

.standardForm h2,
.standardForm h3,
.standardForm h4,
.standardForm h5,
.standardForm h6 {
	position: relative;
	top: -15px;
}

.standardForm .commentElement h2,
.standardForm .commentElement h3,
.standardForm .commentElement h4,
.standardForm .commentElement h5,
.standardForm .commentElement h6 {
	top: 0;
}

.standardForm hr {
	margin: 15px 0 8px 0 !important;
	margin: 10px 0 5px 0;
}

/* Zeilen Elemente */
.formElement,
.commentElement {
	position: relative;
	/* padding of the Element, top and bottom interacts with the margin above*/
	padding-top: 3px;
}

/* Zeilen Elemente */
#mainContent .formElement,
#mainContent .commentElement {
	/* space to the next Element */
	margin-top: -12px !important;
	margin-top: -14px;
}

.commentElement {
	clear: both;
	/* depends on the margin of the form Element */
	padding-bottom: 16px;
}

/* Input Elements */
.formElement input,
.formElement textarea,
.formElement select {
	/* width of the input element*/
	width: 140px;
}

#mainContent .formElement input,
#mainContent .formElement textarea,
#mainContent .formElement select,
#mainContent .radioElement fieldset {
	display: block;
	position: relative;
	/* adjustment of the input elements */
	top: -14px !important;
	top: -15px;
	/* distance to the left border*/
	left: 150px;
	/* width of the input element*/
	width: 200px;
}

/* special adjustment for IE */
#mainContent .radioElement fieldset  {
	left: 150px !important;
	left: 146px;
}

.formElement .requiredElement{
	display: block;
	position: relative;
	float: left;
	left: -3px;
}

/* label, should be less the the input distance to the left border*/
.formElement label {
	display: block;
	width: 140px;
	cursor: pointer;
}

/* Reset width of special input element */
.formElement .button,
#mainContent .formElement .button,
.formElement .radio,
#mainContent .formElement .radio,
.formElement .check,
#mainContent .formElement .check {
	width: auto;
}

/* Special adjusment for the buttons */
#mainContent .formElement input.button {
	top: -1px !important;
	top: -1px;
	margin-bottom: -10px !important;
	margin-bottom: -23px;
}

/* special checkbox format */
.checkElement input,
#mainContent .checkElement input {
	left: 0;
}

.checkElement label {
	display: block;
	width: auto;
	margin-left: 20px;
}

/* special radio format */
.radioElement fieldset input,
#mainContent .radioElement fieldset input {
	clear: left;
	float: left;
	position: static;
	height: 16px;
	margin-right: 5px;
}

.radioElement fieldset label {
	float: left;
	position: static;
	line-height: 16px;
}