

div#emailform {
font-size: 12px;
width: 50px;
}


/* fieldset styling */
fieldset {
margin: 0 0; /*  space out the fieldsets a little*/
padding: 14px;
border : 1px solid #ccc;
}
fieldset p
{
 margin: 0px;
}
/* legend styling */
legend {
font-weight: bold;
color: #336600;
}


/* style for  labels */
#emailform label, #submit {
display: block;
}

/* style for required labels */
#emailform label .required {
font-size: 10px;
color:#336600;
}

#emailform input {
width: 400px;
}


#emailform input.radio, #emailform input.submit {
width: auto;
}

/* style form elements on focus */
#emailform input:focus, #emailform textarea:focus {
background: #ffc;
}

input.radio {
float: left;
margin-right: 10px;
}

textarea {
width: 400px;
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: 20px;
}

/* 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 */
