
form  a:link , form  a:visited{
  display: block;
  width: 9em;  /* dimensions needed for IE5.x/Win #94B8E9; */
  padding: 0.2em;
  line-height: 1.4;
  background-color: #369;
  border: 1px solid black;
  color: #fff;
  text-decoration: none;
  text-align: center;
font-Weight: bold;
margin:0.2em 0em 0 1em;
}

form a:hover{
 background-color: red;
 color: #fff;
}

#questions_form form, #form {
  font-size: 1.4em;
  width: 30em;
}


/* fieldset styling */
#questions_form fieldset, form fieldset {
  margin: 1em 0; /*  space out the fieldsets a little*/
  padding: 1em;
  border : 1px solid #ccc;
width: 400px;
}

/* legend styling */
#questions_form legend, form legend {
  font-weight: bold;
}


/* style for  labels */
#questions_form label, form label {
  display: block;
}

/* style for required labels */
#questions_form label .required, form .required {
  font-size: 0.80em;
  color:#760000;
}

#questions_form input, form input {
  width: auto;
}


#questions_form input.radio, input.submit {
  width: auto;
}

form input.radio, input.submit{
width: auto;
}

/* style form elements on focus */
#questions_form input:focus, textarea:focus {
  background: #ffc;
}

form input:focus, textarea:focus {
  background: #ffc;
}

#questions_form input.radio {
  float: left;
  margin-right: 1em;
}

form input.radio {
  float: left;
  margin-right: 1em;
}

#questions_form input.text {
  width: 300px;
  margin-right: 1em;
}

form input.text {
  width: 300px;
  margin-right: 1em;
}

#questions_form 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 */
#questions_form input.radio + label, form input.radio + label {
  text-indent: 2em;
}

/* Using the commented backslash filter, I'm resetting
   the above rule for everything other than IE5/Mac \*/
#questions_form input.radio + label, form input.radio + label {
  text-indent: 0;
}

/* End the hack */