@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.cform {
    background: #f4f4f4;
    border: 1px #ddd solid;
    margin: 0 0 1em 0;
    padding: 10px;
     width:80%;

  }
  form.cform table{
   width:100%;

  }

  form.cform table td{
    vertical-align: bottom;
    width:50%;     /*border:1px solid blue; */
    }
  form.cform fieldset {
    border: 1px  #86450B solid;
    background: #fafafa;
    margin: 0 0 1em 0;
    padding: 0.5em 1em 0.5em 1em;
  }

  form.cform legend {
    font-size: 100%; font-weight: normal; color: #86450B;
    padding:0 .25em 0 .25em;
  }

  form.cform label {

    color: #666;
  }
   form.cform .center{

   text-align: center;
   }


  form.cform .type-text input,
  form.cform .type-text textarea,
  form.cform .type-select select {
    font-family:  Arial, Helvetica, sans-serif; /* proportional fonts for all form elements */
    border: 1px solid #ccc;
  }

  /* :hover and :focus status on form fields | Effekt zur Hervorhebung von Formularfeldern bei :hover oder :focus */
  form.cform div input:focus,
  form.cform div select:focus,
  form.cform div textarea:focus,
  form.cform div input:hover,
  form.cform div select:hover,
  form.cform div textarea:hover,
  form.cform div input:active,
  form.cform div select:active,
  form.cform div textarea:active {
    border: 1px #86450B solid;
    background: #fff;
  }
   form.cform div.type-radio input:focus,
  form.cform div.type-radio input:hover,
  form.cform div.type-radio input:active {
    border:0;

  }
  /* Styling of buttons | Gestaltung von Buttons */
  form.cform .type-button input {
    border-top: 1px #ddd solid;
    border-left: 1px #ddd solid;
    border-right: 1px #444 solid;
    border-bottom: 1px #444 solid;
    color: #000;
/*    background: #86450B url(../../../images/bg_brown.jpg) top left repeat-x;*//*  */  /* button_gray.png  */
    padding: .25em 1.2em;
  }

  /* form.cform .type-button input#reset { color: #300; background: #661717 url(images/button_red.png) top left repeat-x; }
  form.cform .type-button input#submit { color: #330; background: #5e5607 url(images/button_yellow.png) top left repeat-x; }
*/
  /* :hover and :focus status on buttons | Effekt zur Hervorhebung von Schaltern bei :hover oder :focus */
  form.cform div.type-button input:focus,
  form.cform div.type-button input:hover,
  form.cform div.type-button input:active {
    border-top: 1px #444 solid;
    border-left: 1px #444 solid;
    border-right: 1px #ddd solid;
    border-bottom: 1px #ddd solid;
    color: #fff;
    background: #ccc;
  }

  form.cform div.type-button input#reset:focus,
  form.cform div.type-button input#reset:hover,
  form.cform div.type-button input#reset:active {
    background: #A02128; color: #fff;
  }

  form.cform div.type-button input#submit:focus,
  form.cform div.type-button input#submit:hover,
  form.cform div.type-button input#submit:active {
    background: #A02128; color: #fff;
  }



 /*------------------------------------------------------------------------------------------------------*/

 /**
  * 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.cform { overflow: hidden;}
  form.cform fieldset { overflow: hidden;}
  form.cform legend { background: transparent; border: 0; }
  form.cform label { display:block; cursor: pointer; }
  form.cform .message {display:block; margin-bottom: 0.25em; color: #666; }

  /* Hiding of hidden fields (otherwise ugly spaces in Firefox) | Versteckte Felder wirklich verstecken (sonst ggf. häßliche Lücken im Firefox) */
  form.cform input[type=hidden] { display: none !important; }

  /* Highlight mandatory fields | Pflichtfeldkennzeichnung hervorheben */
  form.cform sup { color: #c00000; font-weight: bold; }

  /* styling containing DIV elements | Gestaltung der kapselnden DIV-Elemente */
  form.cform div.type-text,
  form.cform div.type-select,
  form.cform div.type-check,
  form.cform div.type-radio,
  form.cform div.type-button {
   margin: 0.5em 0;
   position: relative;
   overflow: hidden;
   width: 100%;
   text-align:left;

  }

  /* styling standard form elements with 'almost' equal flexible width | Gestaltung der einzelnen Formularelemente mit annähend gleicher Breite */
  form.cform .type-text input {
    background:#eeeeee;
   /*  display: block;*/
    position: relative;
    padding: 0.3em 0.3em;
    width: 94%;
  }
   form.cform .type-text textarea {
    display: block;
    position: relative;
    padding: 0.3em 0.3em;
    background:#eeeeee;
    width:97%;
  }
  form.cform .type-select select {
    display: block;
    position: relative;
    padding: 0.3em 2px 0.3em 1px;
    /*width: 68.8%;*/
    width: 100px;
    cursor: pointer;
  }
  form.cform .type-select select optgroup {
    font-style: normal;
    font-weight: bold;
  }

  form.cform .type-check input,  form.cform .type-radio input { cursor: pointer;padding: 0.3em 0.3em;  }
  form.cform .type-check label,  form.cform .type-radio label { display: inline; }

  /* Styling of buttons | Gestaltung von Buttons */
  form.cform .type-button input {
    width: auto;
    position: relative;
    cursor: pointer;
    display: inline;
    text-align:center;

  }
  form.cform .type-captcha div{

  margin:0.75em 0 1.5em 0;
      float:left;
      text-align:left;
  }

form.cform .type-captcha input[type=image] {
    border: 1px #cccccc solid;
   position: relative;
    top: 5px;
    left: 0; /**/
    margin: 0;
    padding: 0;
    height: 28px;
    width: 100px;

  }

 form.cform .type-captcha input:hover,
  form.cform .type-captcha input:active,
  form.cform .type-captcha input:focus {
      border: 1px #86450B solid;
  }
 form.cform .type-captcha input[type=text] {
    border: 2px #ddd solid;
    background:#eeeeee;
    position: relative;
    top: 0px;
    left: 10px;
    margin: 0;
    padding: 0;
    height: 20px;
    width: 80px;
    font-size: 18px;
  }
  form.cform .type-captcha label{
    position: relative;
    top: 0px;
    left: 10px;
    position:relative  ;
    font-size: 9px;
    margin:0em 0 0 0em  ;
    }


   form.cform span.captcha.error {
   position: relative;
    top: 15px;
    left: 20px;

    color:#c00000 ;
    font-family:tahoma,Verdana;
    font-weight:normal;
    font-size: 10px;

    }

  /* Styling of error-messages | Fehlermeldungen */
  form.cform div.error {
     border: 1px #C00000 dashed;
    background-color:#FFcccc;
    font-weight: bold;
   position: relative;
    display: block;
    padding: 0.15em  0 0  0.3em;
    width:96.5%;

  }

  form.cform div.error label { color: #000000  ; font-weight:normal;}
  form.cform div.error .message { padding:0.25em 0 0 0 ;color: #C00000;font-family:tahoma,Verdana; font-weight:normal;font-size: 10px; }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * 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 */
  form.cform.columnar .type-text label,
 form.cform.columnar .type-check div,  /**/
  form.cform.columnar .type-select label {
    float: left;
    width: 100px; /**//* 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 */
  form.cform.columnar div.type-check { padding-left: 100px; }
  form.cform.columnar div.error .message { margin-left: 100px; }

  form.cform.columnar div.type-text input,
/*    form.cform.columnar div.type-check input,*/
  form.cform.columnar div.type-text textarea { width: 200px; }
  form.cform.columnar div.type-select select { width: 120px; }

  /* width adjustments for IE 5.x & IE6 | Breitenanpassung für Internet Explorer 5.x und 6.0 */
  * html form.cform.columnar div.type-text input,
  * html form.cform.columnar div.type-text textarea { width: 67.2%; }
  * html form.cform.columnar div.type-select select { width: 68.8%; }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * 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
  * @css-for IE 5.x/Win, IE6, IE7
  * @valid yes
  */

  /* IE5.x & IE6 */
  * html form.cform legend { position:absolute; top: -.5em; left: .5em; }
  * html form.cform fieldset { overflow:visible; height: 1%; margin-top:1.5em; padding-top:1.5em; }

  /* IE7 */
  *+html form.cform legend { position:absolute; top: -.5em; left: .5em; }
  *+html form.cform fieldset { overflow:visible; height:1%; margin-top:1.5em; padding-top:1.5em; }
}/* */
