@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-2009, 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.1
 * @revision        $Revision: 343 $
 * @lastmodified    $Date: 2009-01-19 23:41:32 +0100 (Mo, 19. Jan 2009) $
 */

@media all
{
  /**
   *  YAML Forms - visual styling
   *
   *  (en) visual form styling area
   *  (de) Festlegung des optischen Erscheinungsbildes
   */

  form.yform {
    background: none;
    border: none;
    margin: 0 0 0em 0;
    padding: 0;
  }
 
  form.yform fieldset {
    border: 1px #ddd solid;
    background: #f4f4f4;
    margin: 0 0 1em 0;
    padding: 0.5em 1em;
  }

  form.yform legend {
    font-size: 125%; font-weight: normal; color: #444;
  }

  form.yform label {
    color: #444;
	padding-top:3px;
  }

  form.yform .type-text input,
  form.yform .type-text textarea,
  form.yform .type-select select {
    font-family: Verdana, Arial, Helvetica, sans-serif; /* proportional fonts for all form elements */
    border: 1px solid #ddd;
  }

  /* :hover and :focus status on form fields | Effekt zur Hervorhebung von Formularfeldern bei :hover oder :focus */
  form.yform div.type-text input:focus,
  form.yform div select:focus,
  form.yform div textarea:focus,
  form.yform div.type-text input:hover,
  form.yform div select:hover,
  form.yform div textarea:hover,
  form.yform div.type-text input:active,
  form.yform div select:active,
  form.yform div textarea:active {
    border: 1px #a66 solid;
    background: #fff;
  }

  form.yform .type-button input{margin-left:200px; padding:0.2em; font-size:116.67%;}  
    
  /*------------------------------------------------------------------------------------------------------*/

 /**
  * 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 */
  form.yform { overflow: hidden; }
  form.yform fieldset { overflow: hidden; }
  form.yform legend { background: transparent; border: 0; }
  form.yform label { display:block; cursor: pointer; }
  form.yform .message { display: block; margin-bottom: 0.5em; color: #666; }

  /* Hiding of hidden fields (otherwise ugly spaces in Firefox) | Versteckte Felder wirklich verstecken (sonst ggf. häßliche Lücken im Firefox) */
  form.yform input[type=hidden] { display: none !important; }

  /* Highlight mandatory fields | Pflichtfeldkennzeichnung hervorheben */
  form.yform sup { color: #800; font-weight: bold; }

  /* styling containing DIV elements | Gestaltung der kapselnden DIV-Elemente */
  form.yform div.type-text,
  form.yform div.type-select,
  form.yform div.type-check,
  form.yform div.type-button {
    margin: 0.5em 0;
    position: relative;
    overflow: hidden;
  }

  /* styling standard form elements with 'almost' equal flexible width | Gestaltung der einzelnen Formularelemente mit annähend gleicher Breite */
  form.yform .type-text input,
  form.yform .type-text textarea {
    display: block;
    position: relative;
    padding: 0.3em 0.3em;
    width: 58.5%;
  }

  form.yform .type-select select {
    display: block;
    position: relative;
    padding: 0.3em 2px 0.3em 1px;
    width: 60%;
    cursor: pointer;
  }
  form.yform .type-select select optgroup {
    font-style: normal;
    font-weight: bold;
  }

  form.yform .type-check input { cursor: pointer; }
  form.yform .type-check label { display: inline; }

  /* Styling of buttons | Gestaltung von Buttons */
  form.yform .type-button input {
    width: auto;
    cursor: pointer;
  }

  /* Anpassungen für zweispaltige Darstellung: Textfelder, Selectboxen und Areas: Label links, Felder rechts */
  form.yform div.type-text label,
  form.yform div.type-select label {display:block; float:left; width:200px;}
  form.yform div.type-text input,
  form.yform div.type-text textarea,
  form.yform div.type-select select {display:block; float:left; }

  /* Checkboxen und Optionsfelder: Felder linkes, Label rechts */
  form.yform div.type-check label {}
  form.yform div.type-check input{}
  form.yform .check_box,
  form.yform .option_box { margin-left:200px;} 
  form.yform .pseudolabel { float:left; width:200px;} 

  form.yform div.type-text,
  form.yform div.type-select,
  form.yform div.type-check,
  form.yform div.type-button {clear:both;}

  form.yform .clear {clear:both; height:0;line-height:0;font-size:0;}  
  form.yform div.last {margin-bottom:1.5em;}

  /* Spezielle Definitionen für die unterschiedlichen Test-Formulare */
  form.yform span.unit {padding:3px 0 0 0.4em; display:inline-block;}
  
  form.general .type-text input{width:2.5em;}
  form.general .type-select select {width:10em;}
  form.general div.type-text label, 
  form.general div.type-select label {width:150px;}
  form.general .type-button input{margin-left:318px;}
  
  form.q1 .type-text input,
  form.q1 .type-text textarea {width:8.5%;}
  form.q1 .type-select select {width:40%;}
  form.q1 div.type-text label, 
  form.q1 div.type-select label {width:350px;}
  form.q1 .check_box,
  form.q1 .option_box {margin-left:350px;}
  form.q1 .pseudolabel {width:350px;}
  
  form.q2 div.type-check label {width:95%; float:right;}
  form.q2 div.type-check input {width:2%; float:left;}
  form.q2 .type-button input{margin-left:36px;}
  form.q2 .type-button {padding-top:1em;}
  
  form.q3 .type-text input {width:8.5%;}

  form.q4 .type-text input {width:8.5%;}
  form.q4 div.type-text label {width: 110px;}
  form.q4 .type-button {padding-top:1em;}
  form.q4 div.type-check label {width:95%; float:right;}
  form.q4 div.type-check input {width:2%; float:left;}  
  
  form.q5 .type-text input {width:8.5%; }
  form.q5 .type-button {padding-top:1em;}
  form.q5 . select{padding: 0.2em 2px 0.3em 1px;}
  form.q5 div.type-check label {width:95%; float:right;}
  form.q5 div.type-check input {width:2%; float:left;}
  
  /* YAML-Bausteine für Subtemplates */
  .c20l, .c25l, .c33l, .c40l, .c38l, .c50l, .c60l, .c62l, .c66l, .c75l, .c80l {float: left; }
  .c20r, .c25r, .c33r, .c40r, .c38r, .c50r, .c60r, .c66r, .c62r, .c75r, .c80r {float: right; margin-left: -5px; }
  .c20l, .c20r { width: 20%; }
  .c40l, .c40r { width: 40%; }
  .c60l, .c60r { width: 60%; }
  .c80l, .c80r { width: 80%; }
  .c25l, .c25r { width: 25%; }
  .c33l, .c33r { width: 33.333%; }
  .c50l, .c50r { width: 50%; }
  .c66l, .c66r { width: 66.666%; }
  .c75l, .c75r { width: 75%; }
  .c38l, .c38r { width: 38.2%; }
  .c62l, .c62r { width: 61.8%; }  
 
  .subcl { padding: 0 1em 0 0; }
  .subcr { padding: 0 0 0 1em; }  
}

form#hkrisiko select {
	width: 66px;
}