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

Load this stylesheet after formtastic.css in your layouts to override the CSS to suit your needs.
This will allow you to update formtastic.css with new releases without clobbering your own changes.

For example, to make the inline hint paragraphs a little darker in color than the standard #666:

form.formtastic fieldset > ol > li p.inline-hints { color:#333; }

HINT:
The following style may be *conditionally* included for improved support on older versions of IE(<8)
form.formtastic fieldset ol li fieldset legend { margin-left: -6px;}

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

form#search_gyms.formtastic fieldset{
  width: 550px;
}

form.formtastic fieldset {
  width: 350px;
}
form#register.formtastic fieldset {
  width: 750px;
}
form#register.formtastic fieldset  > ol > li label {
  width: 75px;
  text-align: right;
  padding-right: 5px;
}
form#register.formtastic fieldset  > ol > li.radio label,
form#register.formtastic fieldset  > ol > li.boolean label {
  width: 80%;
  text-align: left;
}
form.formtastic strong { font-weight:bold; }

form.formtastic fieldset > ol > li label {}

/* STRING & NUMERIC OVERRIDES
--------------------------------------------------------------------------------------------------*/
form.formtastic select { border: 1px solid #666;}
form.formtastic fieldset > ol > li.string input { max-width:74%; border: 1px solid #666;}
form.formtastic fieldset > ol > li.password input { max-width:74%; border: 1px solid #666;}
form.formtastic fieldset > ol > li.numeric input { max-width:74%; border: 1px solid #666; }


/* TEXTAREA OVERRIDES
--------------------------------------------------------------------------------------------------*/
form.formtastic fieldset > ol > li.text textarea { width:74%; height: 150px; border: 1px solid #666; }

