@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: 1.15 $
 * @lastmodified    $Date: 2010/07/05 08:24:27 $
 */


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

  form.yform {
    background: #f4f4f4;
    background:none;
    border: 1px #ddd solid;
    border: none;
    margin: 0 0 1em 0;
    padding: 10px;
    padding: 0;
    z-index: 1;
  }

  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: #000;
  }

  form.yform label {
    color: #333;
  }

  .yforminput,
  form.yform .type-text input,
  form.yform .type-text textarea,
  form.yform .type-select select {
    font-family:  Verdana, 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.yform div input:focus,
  form.yform div select:focus,
  form.yform div textarea:focus,
  form.yform div input:hover,
  form.yform div select:hover,
  form.yform div textarea:hover,
  form.yform div input:active,
  form.yform div select:active,
  form.yform div textarea:active {
    border: 1px #11668F solid;
    background: #fff;
  }

  /* Styling of buttons | Gestaltung von Buttons */
  form.yform .type-button input {
    background: #003144 url(images/bg_navi.gif) 0 0; 
    color: #FFF;
    padding: 2px 5px; 
    border: 1px solid #003144;
  }

  form.yform .type-button input#reset { color: #300; background: #661717 url(images/button_red.png) top left repeat-x; }
  form.yform .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.yform div.type-button input:focus,
  form.yform div.type-button input:hover,
  form.yform div.type-button input:active,
  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 {
  	background: url(images/bg_navi.gif) 0 -20px;
  }

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

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

  /* 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: 10px 0;
    position: relative;
    overflow: visible;
  }

  /* styling standard form elements with 'almost' equal flexible width | Gestaltung der einzelnen Formularelemente mit annähend gleicher Breite */
  .yforminput,
  form.yform .type-text input,
  form.yform .type-text textarea {
    display: block;
    position: relative;
    padding: 4px 4px;
    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 { margin-top: 3px; margin-right: 5px;}

  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 #a00 dashed;
    background: #F6AB29;
    padding: 0.5em;
  }

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

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

 /**
  * 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: 160px; /* 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-button,
  .columnar div.type-check { padding-left: 160px; }
  .columnar div.error .message { margin-left: 160px; }

  .columnar div.type-text input,
  .columnar div.type-text textarea { width: 370px; }
  .columnar div.type-select select { width: 380px; }
  
  /* 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%; width: 365px; }
  * html .columnar div.type-select select { width: 68.8%; width: 365px; }
  
  .columnar .multiLabel input { float: left; }
  .columnar .multiLabel label {
	float: left;
	width: 150px;
	clear:none;
	 z-index: 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
  * @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; }

	
	
	
	
	
	
	

/** TEMPORARY !   */
/** TEMPORARY !   */
/** TEMPORARY !   */
/** TEMPORARY !   */
/** TEMPORARY !   */	
  
  
  
  /** Popups */
.confirmPanel {
	background: #FFF;
	text-align: left;
}

.confirmPanel .bottom {
	height: 30px;
}

.abusePanel, 
.pointerPanel,
.quickMessagePanel,
.loginPanel,
.quickRegisterPanel {
	width: 370px;
	background: #FFF;
	text-align: left;
}

.pointerPanel, 
.quickMessagePanel {
	width: 500px !important;
}
	

.abusePanel .head,
.quickMessagePanel .head,
.pointerPanel .head,
.loginPanel .head,
.quickRegisterPanel .head {
	margin: 0;
	padding: 0;
}
	
.pointerPanel #itemInfo {
	margin-bottom: 2em;
	}
	 
.abusePanel .bottom, .pointerPanel .bottom, .quickMessagePanel .bottom, .loginPanel .bottom, .quickRegisterPanel .bottom {}
.abusePanel .body, .pointerPanel .body, .quickMessagePanel .body, .loginPanel .body, .quickRegisterPanel .body {}
	
.abusePanel label, .pointerPanel label, .quickMessagePanel label, .loginPanel label { width: 110px !important; }
.abusePanel input.w150, .pointerPanel input.w150, .quickMessagePanel input.w150, .loginPanel input.w150, .quickRegisterPanel input.w150 { width: 200px !important; }
.abusePanel input.w350, .pointerPanel input.w350, .quickMessagePanel input.w350, .loginPanel input.w350, .quickRegisterPanel input.w350 { width: 340px !important; }
.abusePanel .type-button, .pointerPanel .type-button, .quickMessagePanel .type-button, .loginPanel .type-button { padding-left: 110px !important; }

.quickRegisterPanel label { width: 120px !important; }
.quickRegisterPanel .type-button { padding-left: 120px !important; }
  
.clr { clear: both; }
.invisible { display: none; }
.fr { float: right; }
.fl { float: left; }

.panoPanel { background: #FFF; }
.galleryPanel { background: #FFF; }
