@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 {
    margin: 0 0 1em 0;
    padding: 0px;
  }

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

  form.yform legend {
    font-size: 1.2em; color: #666; font-family:Georgia, "Times New Roman", Times, serif;
  }

  form.yform label {
    color: #666;
  }

  form.yform .type-text input,
  form.yform .select,
  form.yform .type-text textarea {
    font-family:  Arial, Helvetica, sans-serif; /* proportional fonts for all form elements */
    border: 1px dotted #D51D3A;
	letter-spacing: 0.1em;
	font-size: 0.9em;
  }
  
  /* :hover and :focus status on form fields | Effekt zur Hervorhebung von formularfeldern bei :hover oder :focus */
  form.yform input:focus,
  form.yform select:focus,
  form.yform textarea:focus,
  form.yform input:hover,
    form.yform select:hover,
  form.yform textarea:hover,
  form.yform input:active,
    form.yform select:active,
  form.yform textarea:active {
    border: 1px #666 solid;
    background: #fff;
  }


  /* Styling of buttons | Gestaltung von Buttons 
  form.yform .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: #454545 url("tl_files/images/system/button_gray.png") top left repeat-x;
    padding: .5em 1.2em;
	font-weight: bold;
	font-size: 1.1em;
	margin-left: 170px;
  }
*/

  form.yform .type-button input#reset {}
  form.yform .type-button input#submit {}

  /* :hover and :focus status on buttons | Effekt zur Hervorhebung von Schaltern bei :hover oder :focus */
  form.yform div.type-button input:focus,
  form.yform div.type-button input:hover,
  form.yform div.type-button input:active { border: none;}

  form.yform div.type-button input#reset:focus,
  form.yform div.type-button input#reset:hover,
  form.yform div.type-button input#reset:active {}

  form.yform div.type-button input#submit:focus,
  form.yform div.type-button input#submit:hover,
  form.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 */
  form.yform { overflow: hidden; }
  form.yform fieldset { overflow: hidden; }
  form.yform legend { background: transparent; border: 0; }
  form.yform label { display:block; cursor: pointer; padding-left: 5px; }
  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{
    display: block;
    position: relative;
    padding: 0.3em 0.3em;
    width: 57.8%;
  }
  
  form.yform .type-text textarea {
    display: block;
    position: relative;
    padding: 0.3em 0.3em;
    width: 67.8%;
  }

  form.yform .type-select select {
    display: block;
    position: relative;
    width: 25%;
    cursor: pointer;
  }
  
  form.yform .type-select select optgroup {}

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

  /* Styling of error-messages | Fehlermeldungen */
  form.yform div.error {
  	border: 1px #D51D3A dashed;
    background: #faf4f4;
    padding: 5px 0px 5px 0px;
  }

  form.yform div.error label { color: #666; }
  form.yform div.error .message { color: #D51D3A; background: url("tl_files/images/system/error.png") no-repeat left center;padding: 3px 0px 3px 10px; margin: 0px;}

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

 /**
  * 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 {
  	padding-right: 10px;
    text-align:right;
    float: left;
    width: 130px; /* 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 { padding-left: 0px; }
  .columnar div.error .message { margin-left: 10px; font-weight:normal!important; }

  .columnar div.type-text input { width: 57.8%; }
  .columnar div.type-text textarea { width: 95.8%; }
  
  /* width adjustments for IE 5.x & IE6 | Breitenanpassung für Internet Explorer 5.x und 6.0 */
  * html .columnar div.type-text input { width: 57.2%; }
  * html .columnar div.type-text textarea { width: 67.2%; }
  
 /*------------------------------------------------------------------------------------------------------*/

 /**
  * 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.yform legend { position:absolute; top: -.5em; left: .5em; }
  * html form.yform fieldset { overflow:visible; height: 1%; margin-top:1.5em; padding-top:1.5em; }

  /* IE7 */
  *+html form.yform legend { position:absolute; top: -.5em; left: .5em; }
  *+html form.yform fieldset { overflow:visible; height:1%; margin-top:1.5em; padding-top:1.5em; }
  
  /**
  *  Eigene Formatierungen
  */
  
  #ctrl_22 { border: none; }
  #ctrl_6, #ctrl_57 { border: none; float:right; margin:0; padding:0; }
  #ctrl_17 { width: 12%; }
  #ctrl_27,#ctrl_52 { width: 5%; float:left; }
  .captcha_text {padding-left: 10px; float:left; }
  label.nachricht { float:left; width: 200px!important; padding: 0px!important; text-align:left!important; }
  label.person { float:left; width: 120px!important; padding: 0px; text-align:left!important; }
  #ctrl_4 { float: left; }
  label.anmeldung_tagung.error, .radio_container.anmeldung_tagung.error, label.person.error,
  .radio_container.symposienreihe.error, .symposienreihe.error { padding-left: 10px; border: none; }
  label.symposienreihe { font-weight: bold; color: #D51D3A!important;}
  label.anmeldung_tagung { font-weight: bold; }
  label.anmeldung_abendveranstaltung { font-weight: bold; }
}
