@charset "UTF-8";
@media screen, projection
{
  /* (de) Festlegung des optischen Erscheinungsbildes */

  .yform {
    background: #FFFAF3;
    border: 0 #3E4A4F solid;
    margin: 0 0 1em 0;
    /** * padding: 10px; */
  }

/** *   .yform fieldset {
    border:1px #ddd solid;
    background:#fafafa;
    margin:0 0 1em 0;
    padding: 0.5em;
  }

  .yform legend {
    font-size:125%;
    font-weight:normal;
    color:#000;
  } */

  .yform label {
    color: #4B2800;
  }

  .yform input,
  .yform textarea,
  .yform select,
  .yform optgroup {
    font-family: Arial, Helvetica, sans-serif; /* proportional fonts for all form elements */
  }

  .yform input.text,
  .yform input.captcha,
  .yform textarea.textarea,
  .yform select.select {
    border: 1px solid #FFE4C5;
    background: #fff;
  }
  .yform input,
  .yform textarea,
  .yform select {
    margin: .2em 0 1em;
  }
  .yform input.captcha {
    width: 2em;
    text-align: center;
  }

  /* :hover and :focus status on form fields | Effekt zur Hervorhebung von Formularfeldern bei :hover oder :focus */
  .yform input.text:focus,
  .yform input.captcha:focus,
  .yform select.select:focus,
  .yform textarea.textarea:focus,
  .yform input.text:hover,
  .yform input.captcha:hover,
  .yform select.select:hover,
  .yform textarea.textarea:hover,
  .yform input.text:active,
  .yform input.captcha:active,
  .yform select.select:active,
  .yform textarea.textarea:active {
    border: 1px #5A889F solid;
    background: #F4FBFF;
  }

  /* Gestaltung von individuell gestalteten Buttons */
  .yform input.submit {
    border-top:1px #ddd solid;
    border-left:1px #ddd solid;
    border-right:1px #444 solid;
    border-bottom:1px #444 solid;
  background-color: #3E4A4F;
  color: #F4FBFF;
    padding: 5px 1em;
  }

  /** * .yform input[type=reset] { color:#300; background:#661717 url(images/button_red.png) top left repeat-x; }
  .yform input[type=submit] { color:#330; background:#5e5607 url(images/button_yellow.png) top left repeat-x; } */

  /* optional button styling for IE6 using classes
  .yform input.reset { color:#300; background:#661717 url(images/button_red.png) top left repeat-x; }
  .yform input.submit { color:#330; background:#5e5607 url(images/button_yellow.png) top left repeat-x; } */

  /* Effekt zur Hervorhebung von Schaltern bei :hover oder :focus */
  .yform div.submit_container input:focus,
  .yform div.submit_container input:hover,
  .yform div.submit_container input:active {
    border-top:1px #444 solid;
    border-left:1px #444 solid;
    border-right:1px #ddd solid;
    border-bottom:1px #ddd solid;
    background-color: #C8EDFF;
    color: #002030;
  }

  /** * .yform input.reset:focus,
  .yform input.reset:hover,
  .yform input.reset:active {
    background:#800; color:#fff;
  }

  .yform div.submit_container input.submit:focus,
  .yform div.submit_container input.submit:hover,
  .yform div.submit_container input.submit:active {
    background:#880; color:#fff;
  } */

 /*------------------------------------------------------------------------------------------------------*/

 /* (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!
  */

  /* 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; color:#666; }

  /* Versteckte Felder wirklich verstecken (sonst ggf. häßliche Lücken im Firefox) */
  .yform input[type=hidden] { display:none !important; }

  /* Pflichtfeldkennzeichnung hervorheben */
  .yform span.mandatory { color:#800; font-weight:bold; }

  /* Gestaltung der kapselnden DIV-Elemente */
  .yform div.type-text,
  .yform div.type-select,
  .yform div.type-check,
  .yform div.type-button {
    margin:0.5em 0;
    padding:3px 0.5em;
    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 input.text,
  .yform input.captcha,
  .yform textarea {
    padding: .2em;
    /** * font-size: 99%; */
    color: #002030;
  }

  /** * .yform .type-select select {
    display:block;
    position:relative;
    padding:0.3em 2px 0.3em 1px;
    width:60%;
    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 input.submit {
    cursor: pointer;
    overflow: visible;  /* Fixes IE7 auto-padding bug */
    width: auto;
  }

  /* Styling of error-messages | Fehlermeldungen */
  .yform div.error {
    border:1px #a00 dashed;
    background:#faf4f4;
    padding:0.5em;
  }

  .yform div.error label { color:#000; font-weight:bold; }
  .yform div.error .message { color:#800; }

  /* 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; }

 /*------------------------------------------------------------------------------------------------------*/

  /* 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; }

  /** * Routenplaner */
  .mod_routenplaner .yform input.text {
    width: 240px;
    /** * margin: 0 0 1em; */
  }
  .mod_routenplaner .yform input.submit {
    /** * margin-left: 90px;
    width: 347px; */
  }
  /** * .mod_routenplaner .yform label {
    float: left;
    width: 90px;
    padding: .2em 0;
    margin: 0 0 1em;
  } */
}
