/* 
    Document   : Forms
    Created on : 24-Mar-2009, 09:28:20
    Author     : John
    Description:
        Form styles (non project-specific)
*/

/*--------------------------| Site-specific forms |---------------------------*/

#search input{
width:150px;
}

#search .submit{
width:auto;
border:none;
background:none;
font-size:1em;;
color:#fff;
font-weight:bold;
margin:2px;
}
#search .submit:hover{
border:1px solid #fff;margin:1px;
}
#nl-form, #petition-form{
   margin:1em;
}
#petition-form .submit, #nl-form .submit{
width:auto;
border:none;
border:1px solid #fff;
font-size:1em;background:none;;
color:#e22f26;
font-weight:bold;
margin:2px;
}
#petition-form .submit:hover,  #nl-form .submit:hover{
border:1px solid #ccc;
}

/*---------------------------------| General | -------------------------------*/



/* fieldset styling */
fieldset {
  margin: 1em 0; /*  space out the fieldsets a little*/
  padding: 1em;
  border : 1px solid #ccc;
}

/* legend styling */
legend {
  font-weight: bold;
}


/* style for  labels */
label {
  display: block;
}

/* style for required labels */
.required {
  font-size: 0.75em;
  color:#760000;
}

/*input {
  width: 200px;
}*/


input.radio, input.submit {
  width: auto;
}

/* style form elements on focus */
input:focus, textarea:focus {
  
}

input.radio {
  float: left;
  margin-right: 1em;
}

textarea {
  width: 300px;
  height: 100px;
}

/* Hack to make sure the floated radio buttons
   sit next to the labels correctly in IE/Mac*/

/* This is the style I want IE/Mac to see */
input.radio + label {
  text-indent: 2em;
}

/* Using the commented backslash filter, I'm resetting
   the above rule for everything other than IE5/Mac \*/
input.radio + label {
  text-indent: 0;
}

/* End the hack */

