@charset "UTF-8";
/* CSS Document */

/** Drupal forms **/
  .form-item, /* Wrapper for a form element (or group of form elements) and its label */
  .form-checkboxes,
  .form-radios {
    margin: 1em 0;
  }

  .form-item input.error, /* Highlight the form elements that caused a form submission error */
  .form-item textarea.error,
  .form-item select.error {
    border: 2px solid #c00;
  }

  .form-item label /* The label for a form element */ {
    display: block;
    font-weight: bold;
  }

  .form-item label.option /* The label for a radio button or checkbox */ {
    display: inline;
    font-weight: normal;
  }

  .form-required /* The part of the label that indicates a required field */ {
    color: #c00;
  }

  .form-item .description /* The descriptive help text (separate from the label) */ {
    font-size: 0.85em;
  }

  .form-checkboxes .form-item, /* Pack groups of checkboxes and radio buttons closer together */
  .form-radios .form-item {
    margin: 0.4em 0;
  }

  .form-submit /* The submit button */ {}

  .container-inline .form-submit {}

  .tips /* Tips for Drupal's input formats */ {
    margin: 0;
    padding: 0;
    font-size: 0.9em;
  }.textright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	color: #5A7EC1;
	margin-right: 6px;
	margin-bottom: 6px;
}
.textleft {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	color: #5A7EC1;
	margin-right: 6px;
	margin-bottom: 6px;
	text-align: left;
	margin-left: 6px;
}

