/* 
	The styles below have been created for the accompanying html form.
	They have been setup with values that need to be changed from client to client toward the top.
*/

/* !FORMS
--------------------- */
/* LABEL WIDTH: This is the width of the field names before the fields */
form.newsletter label {
	width: 75px;
}

/* FIELD WIDTH */
form.newsletter input {
	width: 120px;
}
/* SUBMIT BUTTON: This will change how the submit button looks, remove if you want a normal submit button */
form.newsletter input.submit {
	width: 80px;		  /* Width of the button */
	font-size: 12px;
}

/* YOU SHOULD NOT NEED TO CHANGE ANYTHING BELOW */
form.newsletter {
	margin: 10px 0;
}

form.newsletter label {
	float: left;
	clear: left;
	margin-bottom: 5px;
}

form.newsletter input {
	clear: right;
	margin-bottom: 5px;
}

form.newsletter input.submit {
	clear: both;
	margin-left: 75px;
}

form.newsletter div {
	clear: both;
}