@charset "UTF-8";
/* CSS Document */
#form {
	width: 250px;
	font-family: "Century Gothic", Trebuchet, Helvetica, "Helvetica Neue", san-serif;
	font-size: 76%;	font-weight: lighter;
	margin-top: 10px;
	}
form {
    font-size: .85em;
	margin-left: 20px;
	}

fieldset {
	margin: 1.5em 0; /*  space out the fieldsets a little*/
	padding: .5em;
	border : 1px solid #ccc;
	background-color:#fff;
	display:block;
	}
	
#comments_form {
	width: 250px;
	font-weight: lighter;
	}

/* legend styling */
legend {
	font-size: 1.25em;
	color: #000;
	}

form p {
    position: relative;
	}

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

/* style for required labels */
label .required {
	font-size: 1em;
	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: 100%;
	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;
	}
