/* Darstellung der Gesamtseite */
#site {
  width: 490px;
  border: solid 0px black;
  /*margin-left: auto;
  margin-right: auto;*/  
  /*background-color: #E5E5E5;*/ 
}

/* Formatierung Formular Label */
.form_label{
	font-family: Georgia, serif;
  	font-size: 11px;
  	font-weight: bold;
  	color: #626262;
}


/* Formatierung Formular Label */
.form_label_red{
	font-family: Georgia, serif;
  	font-size: 11px;
  	font-weight: bold;
  	color: red;
}

/* Formatierung Formular Element */
.form_element{
	font-family: Georgia, serif;
  	font-size: 11px;
  	color: #626262;
}


/* Formatierung Formular Überschrift */
.form_headline{
	font-family: Georgia, serif;
  	font-size: 14px;
  	font-weight: bold;
  	text-decoration: underline;
  	/*color: #626262;*/
  	color: black;
}

.marked_as_required{
	font-family: Georgia, serif;
  	font-size: 14px;
  	font-weight: normal;
  	color: red;
}


/* Kundendaten */

fieldset.customer_details{
	margin-left: 0px;
	margin-top: 20px;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: solid 1px black;
}

legend.customer_details{
	font-family: Georgia, serif;
  	font-size: 12px;
  	color: black;
  	font-weight: bold;
}


/* Gerätedaten */

fieldset.device_details{
	margin-left: 2px;
	margin-top: 50px;
	border-top: none;
	border-left: none;
	border-right: none;	
	border-bottom: solid 1px black;
}

legend.device_details{
	font-family: Georgia, serif;
  	font-size: 12px;
  	color: black;
  	font-weight: bold;
}


/* Auftragsdaten */

fieldset.order_details{
	margin-left: 0px;
	margin-top: 30px;
	border-top: none;
	border-left: none;
	border-right: none;	
	border-bottom: solid 1px black;
}

legend.order_details{
	font-family: Georgia, serif;
  	font-size: 12px;
  	color: black;
  	font-weight: bold;
}



/* Sonstiges */

fieldset.other{
	margin-left: 0px;
	margin-top: 30px;
	border-top: none;
	border-left: none;
	border-right: none;	
	border-bottom: none;
}

legend.other{
	font-family: Georgia, serif;
  	font-size: 12px;
  	color: black;
  	font-weight: bold;
}

/* Hyperlinks - Start*/

a:link {
  font-family: Georgia, serif;
  font-size: 12 px;
  font-weight: normal;
  text-decoration: underline;
  color: black;
}

a:visited {
  font-family: Georgia, serif;
  font-size: 12 px;
  font-weight: normal;
  text-decoration: underline;
  color: black;
}

a:hover {
  font-family: Georgia, serif;
  font-size: 12 px;
  font-weight: normal;
  text-decoration: underline;
  color: black;
}


/* Hyperlinks - Ende */


/* Markierung der Formularelemente nach Fehlerauftritt*/
.invalid{
  background-image:url('../images/required.gif');
  background-position: right;
  background-repeat: no-repeat;
}