@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.ym-form {
 /*   background: #f4f4f4;
    border: 1px #ddd solid;
    margin: 0 0 1em 0;
    padding: 10px;*/
  }

  form.ym-form fieldset {
    border: 1px #ddd solid;
    background: #fafafa;
    margin: 0 0 1em 0;
    padding: 0.5em 1em;
  }

  form.ym-form legend {
    font-size: 125%; font-weight: normal; color: #000;
  }

  form.ym-form label, .ym-label {
    color: #666;
  }

  form.ym-form .ym-fbox-text input,
  form.ym-form .ym-fbox-text textarea,
  form.ym-form .ym-fbox-select select {
    font-family:  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.ym-form div input:focus,
  form.ym-form div select:focus,
  form.ym-form div textarea:focus,
  form.ym-form div input:hover,
  form.ym-form div select:hover,
  form.ym-form div textarea:hover,
  form.ym-form div input:active,
  form.ym-form div select:active,
  form.ym-form div textarea:active {
    border: 1px #006699 solid;
    background: #fff;
  }

  /* Styling of buttons | Gestaltung von Buttons */
  form.ym-form .ym-fbox-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(images/button_gray.png) top left repeat-x;
    padding: .5em 1.2em;
  }

  form.ym-form .ym-fbox-button input#reset { color: #300; background: #661717 url(images/button_red.png) top left repeat-x; }
  form.ym-form .ym-fbox-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.ym-form div.ym-fbox-button input:focus,
  form.ym-form div.ym-fbox-button input:hover,
  form.ym-form div.ym-fbox-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: #555; 
  }

  form.ym-form div.ym-fbox-button input#reset:focus,
  form.ym-form div.ym-fbox-button input#reset:hover,
  form.ym-form div.ym-fbox-button input#reset:active {
    background: #800; color: #fff;
  }

  form.ym-form div.ym-fbox-button input#submit:focus,
  form.ym-form div.ym-fbox-button input#submit:hover,
  form.ym-form div.ym-fbox-button input#submit:active {
    background: #880; 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.ym-form { overflow: hidden; }
  form.ym-form fieldset { overflow: hidden; }
  form.ym-form legend { background: transparent; border: 0; }
  form.ym-form label { display:block; cursor: pointer; }
  form.ym-form .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.ym-form input[type=hidden] { display: none !important; }

  /* Highlight mandatory fields | Pflichtfeldkennzeichnung hervorheben */
  form.ym-form sup { color: #800; font-weight: bold; }

  /* styling containing DIV elements | Gestaltung der kapselnden DIV-Elemente */
  form.ym-form div.ym-fbox-text,
  form.ym-form div.ym-fbox-select,
  /*form.ym-form div.ym-fbox-check,*/
  form.ym-form div.ym-fbox-button {
    margin: 1em 0;
    /*position: relative;*/
    overflow: hidden;
  }

  /* styling standard form elements with 'almost' equal flexible width | Gestaltung der einzelnen Formularelemente mit annähend gleicher Breite */
  form.ym-form .ym-fbox-text input,
  form.ym-form .ym-fbox-text textarea {
    display: block;
     /*position: relative;*/
    padding: 0.3em 0.3em;
    /*width: 58.5%; i hope i am not ruining anything! adina 25/4/2010*/
	width:95%;
  }

  form.ym-form .ym-fbox-select select {
    display: block;
     /*position: relative;*/
    padding: 0.3em 2px 0.3em 1px;
    width: 60%;
    cursor: pointer;
  }
  form.ym-form .ym-fbox-select select optgroup {
    font-style: normal;
    font-weight: bold;
  }

  form.ym-form .ym-fbox-check input { cursor: pointer; }
  form.ym-form .ym-fbox-check label { display: inline; }

  /* Styling of buttons | Gestaltung von Buttons */
  form.ym-form .ym-fbox-button input {
    width: auto;
    cursor: pointer;
  }

  /* Styling of error-messages | Fehlermeldungen */
  form.ym-form div.error {
    border: 1px #a00 dashed;
    background: #faf4f4;
    padding: 0.5em;
  }

  form.ym-form div.error label { color: #000; font-weight:bold; }
  form.ym-form div.error .message { color: #800; }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * ym-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!
  */

  /* ym-columnar display | Spalten-Darstellung */
  .ym-columnar .ym-fbox-text label,
  .ym-columnar .ym-fbox-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 */
  /*.ym-columnar div.ym-fbox-check { padding-left: 30%; }*/
  .ym-columnar div.error .message { margin-left: 30%; }

  .ym-columnar div.ym-fbox-text input,
/*  .ym-columnar div.ym-fbox-text textarea { width: 67.8%; }
  .ym-columnar div.ym-fbox-select select { width: 69.4%; } adina changed both lines*/
  .ym-columnar div.ym-fbox-text textarea { width: 66%; }
  .ym-columnar div.ym-fbox-select select { width: 69%; }
  
  /* width adjustments for IE 5.x & IE6 | Breitenanpassung für Internet Explorer 5.x und 6.0 */
  * html .ym-columnar div.ym-fbox-text input,
  /* * html .ym-columnar div.ym-fbox-text textarea { width: 67.2%; } Adina made changes*/
  * html .ym-columnar div.ym-fbox-text textarea { width: 66%; }
  
  * html .ym-columnar div.ym-fbox-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.ym-form legend { position:absolute; top: -.5em; left: .5em; }
  * html form.ym-form fieldset { overflow:visible; height: 1%; margin-top:1.5em; padding-top:1.5em; }

  /* IE7 */
  *+html form.ym-form legend { position:absolute; top: -.5em; left: .5em; }
  *+html form.ym-form fieldset { overflow:visible; height:1%; margin-top:1.5em; padding-top:1.5em; }
  
  button.like_submit {
	  	cursor:pointer;
	  	width:auto;
		background:url("images/button_gray.png") repeat-x scroll left top #454545;
		border-color:#DDDDDD #444444 #444444 #DDDDDD;
		border-style:solid;
		border-width:1px;
		color:#000000;
		padding:0.5em 1.2em;
		background-color: #2A5E7A;
  }
  
  button.donate_button {
	  cursor:pointer;
	  	/*width:auto;
		background:url("images/button_gray.png") repeat-x scroll left top #454545;*/
		/*border-color:#DDDDDD #444444 #444444 #DDDDDD;
		border-style:solid;
		border-width:1px;*/
		color:#fff;
		padding:0.5em 1.2em;
		background-color: #444c70;
		font-size:medium; 
		font-weight:bold; 
		line-height:120%; 
		padding:0.5em 1em; 
		width:160px; 
		height:49px; 
		border:none;
		
  }
  
 
button.like_reset { color: #300; background: #661717 url(images/button_red.png) top left repeat-x; border-color: #DDDDDD #444444 #444444 #DDDDDD; border-style: solid; border-width: 1px; cursor:pointer; }

 button.like_reset:focus,
  button.like_reset:hover,
  button.like_reset:active {
    background: #800; color: #fff;
  }
  
  button.like_reset:focus,
  button.like_reset:hover,
  button.like_reset:active {
    background: #800; color: #fff;
  }
  
   button.like_reset:focus,
  button.like_reset:hover,
  button.like_reset:active {
    background: #800; color: #fff;
  }
  
  .ym-form input[type="radio"] {
    float: left;
    width: 20px;
}
}
