@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) CSS-component for creating vertical forms
 * (de) CSS-Baustein zur Erstellung von Formularen mit untereinander angeordneten Elementen
 *
 * @note            Many thanks to Ansgar Hein (http://www.anatom5.de) for contribution
 *
 * @copyright       Copyright 2005-2010, Dirk Jesse
 * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         3.2.1
 * @revision        $Revision: 455 $
 * @lastmodified    $Date: 2010-01-01 17:33:05 +0100 (Fr, 01. Jan 2010) $
 */

@media screen, projection
{

  /**
   *  YAML Forms - visual styling
   *
   *  (en) visual form styling area
   *  (de) Festlegung des optischen Erscheinungsbildes
   */

  .yform {
    margin: 0;
    padding: 0px 0px;
  }

  .yform fieldset {
    border: none;
    background: none;
    margin: 0;
    padding: 0;
  }
  
  .yform legend {
    font-size: 120%; 
    font-weight: bold;
  }

  .yform label {
    float: left;
    clear: left;
    width: 10em;
    padding-top: 3px;
  }

  .yform input,
  .yform textarea,
  .yform select, 
  .yform optgroup {
    font-family: Georgia, "Times New Roman", Times, serif;
    float: left;
    border: 1px solid #ccc;
    padding: 1px;
  }
  
  .yform select {
  }
  .yform select.fixedwith {
    width: 20.5em;
  }

  .yform .type-text input,
  .yform .type-text textarea,
  .yform .type-select select {
     margin-bottom: 5px;
  }
  
  .yform input[type=text] {  }

  /* :hover and :focus status on form fields | Effekt zur Hervorhebung von Formularfeldern bei :hover oder :focus */
  .yform div.type-text input:focus,
  .yform div select:focus,
  .yform div textarea:focus,
  .yform div.type-text input:hover,
  .yform div select:hover,
  .yform div textarea:hover,
  .yform div.type-text input:active,
  .yform div select:active,
  .yform div textarea:active {
    border: 1px #333 solid;
  }
  
  .yform div input.radio:hover,
  .yform div input.radio:active {
    border: 0px none;
  }

  /* Styling of custom styled buttons | Gestaltung von individuell gestalteten Buttons */
  .yform .type-button input,
  .yform .type-text input[type=submit] {
    background-color: #FAFAFA;
    padding: 1px 1em;
    margin-right: 0.5em;
  }

  .yform input[type=submit],
  .yform .type-text input[type=submit] {  
    background-color: #EAEAEA;
    width: auto;
  }
  .yform .type-button input[type=reset],
  .yform .type-button input.cancel {  
    font-weight: normal;
     background-color: #FAFAFA; 
    /* background-color: transparent; */
    /* border: none; */
    /* text-decoration: underline; */
  }

  /* optional button styling for IE6 using classes */
  .yform .type-button input.reset {  }
  .yform .type-button input.submit {  }

  /* :hover and :focus status on buttons | Effekt zur Hervorhebung von Schaltern bei :hover oder :focus */
  .yform div.type-button input:focus,
  .yform div.type-button input:hover,
  .yform div.type-button input:active {
  	background-color: #666;
  	color: #fff;
  }

  .yform div.type-button input.reset:focus,
  .yform div.type-button input.reset:hover,
  .yform div.type-button input.reset:active {
  }

  .yform div.type-button input.submit:focus,
  .yform div.type-button input.submit:hover,
  .yform div.type-button input.submit:active {
  }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * Vertical-Forms - technical base (standard)
  *
  * |-------------------------------|
  * | fieldset                      |
  * |-------------------------------|
  * |   label                       |
  * |   input / select / textarea   |
  * |-------------------------------|
  * | /fieldset                     |
  * |-------------------------------|
  *
  * (en) Styling of forms where both label and input/select/textarea are styled with display:block;
  * (de) Formulargestaltung, bei der sowohl label als auch input/select/textarea mit display:block; gestaltet werden
  *
  * WARNING:This part contains several IE-stability-fixes. Don't edit this part if you are not sure, what you're doing!
  */

  /* General form styling  | Allgemeine Formatierung des Formulars */
  .yform { overflow:hidden; }
  .yform fieldset { overflow:hidden; }
  .yform label { display:block; cursor:pointer; }
  .yform legend { background:transparent; border:0; padding:0 0.5em; }
  .yform .message { display:block; margin-bottom:0.5em;  }

  /* Hiding of hidden fields (otherwise ugly spaces in Firefox) | Versteckte Felder wirklich verstecken (sonst ggf. häßliche Lücken im Firefox) */
  .yform input[type=hidden] { display:none !important; }

  /* Highlight mandatory fields | Pflichtfeldkennzeichnung hervorheben */
  .yform sup { font-weight:bold; }

  /* styling containing DIV elements | Gestaltung der kapselnden DIV-Elemente */
  .yform div.type-text,
  .yform div.type-select,
  .yform div.type-check,
  .yform div.type-button {
    margin: 2px 0;
    padding: 2px 0;  
    position: relative;
    overflow: hidden;
  }

  .yform div.type-button {
    padding: 3px 0em;  
  }
  
  /* styling standard form elements with 'almost' equal flexible width | Gestaltung der einzelnen Formularelemente mit annähend gleicher Breite */
  .yform .type-text input,
  .yform .type-text textarea {
    display: block;
    position: relative;
    padding: 2px;
    width: 20em;
  }
  .yform .type-text input[type=image] {  
    float: none;
    display: inline;
    width: auto;
    margin: 0px 0px 0px 0.5em;
    vertical-align: bottom;
  }
  .yform .type-text input[type=checkbox] {  
    width: auto;
    padding-top: 0px;
    margin-top: 3px;
    margin-right: 5px;
  }
  .yform .type-select select {
    display: block;
    position: relative;
    padding: 2px 2px 2px 1px;
    cursor: pointer;
  }
  .yform .type-select select optgroup {
    font-style: normal;
    font-weight: bold;
  }

  .yform .type-check input { cursor: pointer; }
  .yform .type-check label { display: inline; }

  /* Styling of buttons | Gestaltung von Buttons */
  .yform .type-button input {
    cursor: pointer;
    overflow: visible;  /* Fixes IE7 auto-padding bug */
    width: auto;
  }

  /* Styling of error-messages | Fehlermeldungen */
  .yform div.error {
    border: 1px #b90000 dashed;
    padding: 0.5em;
  }

  .yform div.error label { font-weight: bold; }
  .yform div.error .message {  }

  .yform span.fielderr {
  	float: left;
  	padding-left: 10px;
  	padding-top: 3px;
  	font-weight: bold;
  }
  .yform span.fielderrlong {
  	float: left;
  	padding-left: 0px;
  	margin-bottom: 10px;
  	font-weight: bold;
  }

  /* avoid jumping checkboxes & radiobuttons in IE8 */
  .yform div.type-check input:focus,
  .yform div.type-check input:hover,
  .yform div.type-check input:active { border: 0 none; }

 /*------------------------------------------------------------------------------------------------------*/

  /* Changed, extended by simplicity gmbh, 2010-01-20 */

  .yform input.zip {
  	width: 5em;
  }

  .yform label.radio {
  	clear: none;
  	width: auto;
  	margin-right: 10px;
  	padding-top: 3px;
  }
  .yform input.radio {
  	width: auto;
  	margin-top: 4px;
  	margin-right: 4px;
  	border: 1px none;
  } 
  .yform label.afterzip {
  	clear: none;
  	width: auto;
  	margin-left: 10px;
  	margin-right: 10px;
  }
  .yform input.afterzip {
  	clear: none;
  	width: 9.7em;
  	margin-left: 10px;
  	margin-right: 10px;
  }
  

  .yform .type-text textarea {
  	width: 30em;
  	height: 10em;
  }


  .yform .type-text p {
  	clear: left;
  	margin-top: 0px;
  	margin-bottom: 0.5em;
  }
  
  .yform-preview label {
    clear: left;
    display: inline;
	font-weight: bold;
	padding-top: 0px;
	margin-bottom: 0.5em;
  }
  .yform-preview div.type-text {
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
  }

 /*------------------------------------------------------------------------------------------------------*/

  /* Indent Checkbox fields to match label-width | Checkboxen um den gleichen Wert einrücken, wie die Breite der labels */

  .full div.type-text input,
  .full div.type-text textarea { width: 95.5%; margin-right: -3px; }
  .full div.type-select select { width: 97.0%; margin-right: -3px; }
  
  /* width adjustments for IE 5.x & IE6 | Breitenanpassung für Internet Explorer 5.x und 6.0 */
  * html .full div.type-text input,
  * html .full div.type-text textarea { width: 95.5%; }
  * html .full div.type-select select { width: 97.0%; }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * Columnar forms display - technical base (optional)
  *
  * |-------------------------------------------|
  * | fieldset                                  |
  * |-------------------------------------------|
  * |                                           |
  * |   label   |   input / select / textarea   |
  * |                                           |
  * |-------------------------------------------|
  * | /fieldset                                 |
  * |-------------------------------------------|
  *
  * (en) Styling of forms where label floats left of form-elements
  * (de) Formulargestaltung, bei der die label-Elemente nach links fließen
  *
  * WARNING:This part contains several IE-stability-fixes. Don't edit this part if you are not sure, what you're doing!
  */

  /* Columnar display | Spalten-Darstellung */
  .columnar .type-text label,
  .columnar .type-select label {
    float: left;
    width: 30%; /* Can be fixed width too | Kann auch eine fixe Angabe sein */
  }

  /* Indent Checkbox fields to match label-width | Checkboxen um den gleichen Wert einrücken, wie die Breite der labels */
  .columnar div.type-check input { margin-left: 30%; }
  .columnar div.error .message { margin-left: 30%; }

  .columnar fieldset div.type-button,
  fieldset.columnar div.type-button { padding-left: 30%; }

  .columnar div.type-text input,
  .columnar div.type-text textarea { float: left; width: 67.8%; margin-right: -3px; }
  .columnar div.type-select select { float: left; width: 69.4%; margin-right: -3px; }
  
  /* width adjustments for IE 5.x & IE6 | Breitenanpassung für Internet Explorer 5.x und 6.0 */
  * html .columnar div.type-text input,
  * html .columnar div.type-text textarea { width: 67.2%; }
  * html .columnar div.type-select select { width: 68.8%; }
  
 /*------------------------------------------------------------------------------------------------------*/

 /**
  * Global fixes for YAML's form construction set
  *
  * @workaround
  * @affected IE 5.x/Win, IE6, IE7
  * @css-for IE 5.x/Win, IE6, IE7
  * @valid no
  */

  .yform, 
  .yform div,
  .yform div * { zoom: 1; }

 /**
  * Forms Fieldset/Legend-Bug in IE
  * @see http://www.mattheerema.com/web-design/2006/04/getting-fieldset-backgrounds-and-legends-to-behave-in-ie/
  *
  * @workaround
  * @affected IE 5.x/Win, IE6, IE7, IE8
  * @css-for IE 5.x/Win, IE6, IE7, IE8
  * @valid no
  */
  
  /* all IE */
  .yform { padding-top:0\9; }
  .yform fieldset { padding:0 5px\9; padding-top:1em\9; }
  .yform legend { position:absolute\9; top:-.5em\9; *left:0\9; }
  .yform fieldset { position:relative\9; overflow:visible\9;  margin-top:1.5em\9; zoom:1; }

  /* IE5.x, IE6 & IE7 */
  .yform legend { *padding:0 5px; }
  .yform fieldset { *padding-top:1.5em; }
  
  /* IE5.x & IE6 */
  * html .yform { padding-top:10px; }
}