/* form.css */

form {
    margin: 0;
    padding: 0;
}

.formHeading {clear:both;margin:15px 0;padding:3px 4px;border-bottom:1px solid #CCC;font-weight:bold;color:#555;background-color:#f9f9f9;}

fieldset {
    margin: 1em 0;
    border: none;
    border: 1px solid #ccc;		
	background:none;
}

/* IE FIELDSET HOLLY HACK */
	html fieldset{ position: relative; margin-top:1em; padding-top:.75em; }
/**/

legend {
    margin:1em 0 0 0;
    padding:0 .5em;
    color: #555;
    font-size: 1.3em;
    font-weight: bold;
}

label {
    float: left;
    width: 100px;
    padding: 0 1em;
    text-align: right;
}

.radio {border:none;font-size:12px;}

fieldset div {
    margin-bottom: .5em;
    padding: 0;
    display: block;
}

fieldset div input, fieldset div textarea {
    width: 150px;
    border-top: 1px solid #555;
    border-left: 1px solid #555;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 1px;
    color: #333;
}

fieldset div select {
    padding: 1px;
}

#radio {border:0;font-size:12px;}

div.fm-multi div {
    margin:5px 0;
	clear:both;
}

div.fm-multi input {
    width: 1em;
}

div.fm-multi label {
    display: block;
    width: 200px;
    padding-left: 5em;
    text-align: left;
}

input:focus, textarea:focus {
    background: #efefef;
    color: #000;
}

    
/* required fields - does not work in IE */
fieldset div.fm-req {
    font-weight: bold;
}

fieldset div.fm-req label:before {
    content: "* "; /* does not work in IE */
}

.formSubmit {text-align:center;}
.formSubmit input {background:#f3f3f3;border:1px solid #AAA;}

	
