@charset "UTF-8";
/* CSS Document */

/* FORM ELEMENTS */

/* fieldset styling */
form {
    font-size: .85em;
	width: 400px;
	margin-left: 20px;
	}
fieldset {
	margin: 1.5em 0; /*  space out the fieldsets a little*/
	padding: 1em;
	border : 1px solid #ccc;
	background-color:#F5F5F5;
	}

/* legend styling */
legend {
	font-size: 1.25em;
	font-family: Arial, Helvetica, sans-serif;
	}
form p {
    position: relative;
	width: 100%;
	}

/* style for  labels */
label {
	float: left;
	width: 10em;
	}

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

/* :KLUDGE: Explicitly set the width for IE6- */
* html .feedback{
    width: 1%;
	}
input {
    width: 200px;
	}
input[type="text"], textarea {
	border-top: 2px solid #999;
	border-left: 2px solid #999;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	}
input.radio, input.checkbox {
    width: auto;
	}

/* style form elements on focus */
input:focus, textarea:focus {
	background: #ffc;
	}
input.radio {
    float: left;
	margin-right: 1.25em;
	}
textarea {
	width: 300px;
	height: 100px;
	}	

/*__________SUBMIT ROLLOVER____________*/
.submit {
    background: url(../images/submit.gif) no-repeat;
    height: 30px;
    width: 100px;
    border: none;
	}
.submit:hover {
    background: url(../images/submit.gif) 0 -30px no-repeat;
	}