@charset "UTF-8";
@media all
{
  /* visual form styling area */

  form.yform {
    margin: 0;
    padding: 0;
    font-size:12px !important;

  }

  form.yform fieldset {
    margin: 0;
    padding: 0;
    
  }

  form.yform legend {
    font-size: 100%; font-weight: normal; color: #000;display:inline;
    
  }

  form.yform label {
    color: #666;
    font-weight:bold;
    font-size: 12px  !important;
  }

  form.yform .type-text input,
  form.yform .type-text textarea,
  form.yform .type-select select {
    font-family:  Arial, Helvetica, sans-serif; /* proportional fonts for all form elements */
    border: 1px solid #bcb9ae;
    font-size:12px !important;
  }
  form.yform div.error input,
  form.yform div.error textarea,
  form.yform div.error select {
    border: 1px #bcb9ae dashed;
    font-size:12px !important;
  }

  /* :hover and :focus status on form fields 
  
  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 #aaaaaa solid;
    background: #fff;
  }*/

  /* Styling of 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(/images/button_gray.png) top left repeat-x;
    padding: .5em 1.2em;
  }
*/

  form.yform .type-button input#reset { background: url(/images/buttons/reset.gif) no-repeat scroll left top; border:0 none; color:#FFFFFF; font-weight:bold; height:26px; text-indent:-9000em; width:90px; }
  form.yform .type-button input#submit { background:url("/images/buttons/submit.gif") no-repeat scroll left top; border:0 none; color:#FFFFFF; font-weight:bold; height:26px; text-indent:-9000em; width:90px; }
  .type-button.uri input.submit { background:url("/images/buttons/submit.gif") no-repeat scroll left top; border:0 none; color:#FFFFFF; font-weight:bold; height:26px; text-indent:-9000em; width:90px; float:right; }
  .type-button.uri input.save_submit { background:url("/images/buttons/save_submit.png") no-repeat scroll left top; border:0 none; color:#FFFFFF; font-weight:bold; height:26px; text-indent:-9000em; width:99px; float:right; }


  


 /*------------------------------------------------------------------------------------------------------*/

 /**
  * Vertical-Forms - technical base (standard)
  *
  * |-------------------------------|
  * | fieldset                      |
  * |-------------------------------|
  * |   label                       |
  * |   input / select / textarea   |
  * |-------------------------------|
  * | /fieldset                     |
  * |-------------------------------|
  *
  * Styling of forms where both label and input/select/textarea are styled with display: block;
  *
  * 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 */
  form.yform { overflow: hidden; }
  form.yform fieldset { overflow: hidden; }
  form.yform.uri fieldset { overflow: hidden;padding:20px 0; }
  form.yform legend { background: transparent; border: 0; }
  form.yform label { display:block; cursor: pointer; }
  form.yform.uri label { display:inline-block; cursor: pointer; float:left;width:19%; }
  form.yform .message { display: block; margin-bottom: 0.5em; color: #666; }

  /* Hiding of hidden fields (otherwise ugly spaces in Firefox) */
  form.yform input[type=hidden] { display: none !important; }

  /* Highlight mandatory fields */
  form.yform sup { color: #800; font-weight: bold; }

  /* styling containing DIV elements */
  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;
    font-size: 12px ;
  }
  
  form.yform div.type-button.footer {
    margin: 1px 35px 0;
    padding:10px;
    position: relative;
    overflow: hidden;
    
  }

  form.yform.uri div.type-text,
  form.yform.uri div.type-select,
  form.yform.uri div.type-check {
    margin: 0.5em 0 0 3em;
    position: relative;
    overflow: hidden;
        font-size: 12px ;
  }

  form.yform div.type-button.submit {
    
  }



  /* styling standard form elements with 'almost' equal flexible width */
  form.yform .type-text input,
  form.yform .type-text textarea,
	form.yform.login #username,
	form.yform.login #password {
    display: block;
    position: relative;
    padding: 0.3em 0.3em;
    width: 58.5%;
    
  }

  /* styling standard form elements with 'almost' equal flexible width */
  form.yform.uri .type-text input,
  form.yform.uri .type-text textarea,
  form.yform.login #username,
  form.yform.login #password {
    display: inline-block;
    position: relative;
    padding: 0.3em 0.3em;
    width: 40%;
  }


  form.yform .type-select select {
    display: block;
    position: relative;
    padding: 0.3em 2px 0.3em 1px;
    width: 60%;
    cursor: pointer;
  }
  
  form.yform.uri .type-select select {
    display: inline-block;
    position: relative;
    padding: 0.3em 2px 0.3em 1px;
    width: 41.4%;
    cursor: pointer;
  }
  
  form.yform .type-select select optgroup {
    font-style: normal;
    font-weight: bold;
  }

  form.yform .type-check input { cursor: pointer; }
  form.yform .type-check label { display: inline; }
  form.yform.uri .type-check label { display:block;width:100%;margin:0.5em 0; }
 


  /* Styling of buttons */
  form.yform .type-button input {
    width: auto;
    cursor: pointer;
  }

  /* Styling of error-messages */
  form.yform div.error {
    border: 1px #a00 dashed;
    padding: 0.5em;

  }

  form.yform div.error label { color: #000; font-weight:bold; }
  form.yform div.error .message { color: #800; }
	  
  .error_div {
		color: #AA0000;
		font-weight: bold;
		margin: 8px 0 0 0;

	}

  form.yform.uri .error_div {
    color: #AA0000;
    font-weight: normal;
    font-size:.85em;
    margin: -1px 0 0 0;
    float:right;
    display:inline-block;
    width:38%;
  }
  	
	.error_div ul  {
	margin-left:0 !important;	
	padding:0 !important;
	}

	.error_div li  {
  background:url(/images/icons/required_icon.png) 0px 3px no-repeat !important;
  margin:0 0 0 0 !important;  
  padding:3px 0 8px 23px !important;
  list-style-type:none !important;
  font-size:12px !important;
	}
	
  form.yform.uri .error_div li  {
  background:url(/images/icons/required_icon.png) 0px 3px no-repeat !important;
  margin:0 0 0 0 !important;  
  padding:3px 0 8px 23px !important;
  list-style-type:none !important;
  font-size:12px !important;
  }
  




 /*------------------------------------------------------------------------------------------------------*/

 /**
  * Columnar forms display - technical base (optional)
  *
  * |-------------------------------------------|
  * | fieldset                                  |
  * |-------------------------------------------|
  * |                                           |
  * |   label   |   input / select / textarea   |
  * |                                           |
  * |-------------------------------------------|
  * | /fieldset                                 |
  * |-------------------------------------------|
  *
  * Styling of forms where label floats left of form-elements
  *
  * WARNING: This part contains several IE-stability-fixes. Don't edit this part if you are not sure, what you're doing!
  */

  /* Columnar display */
  .columnar .type-text label,
  .columnar .type-select label {
    float: left;
    width: 30%; /* Can be fixed width too */
  }

  /* Indent Checkbox fields to match label-width */
  .columnar div.type-check { padding-left: 30%; }
  .columnar div.error .message { margin-left: 30%; }

  .columnar div.type-text input,
  .columnar div.type-text textarea { width: 67.8%; }
  .columnar div.type-select select { width: 69.4%; }
  
  /* width adjustments for IE 5.x & IE6 */
  * html .columnar div.type-text input,
  * html .columnar div.type-text textarea { width: 67.2%; }
  * html .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.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; }*/
}