/* 
	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: 130px;
}
/* SUBMIT BUTTON: This will change how the submit button looks, remove if you want a normal submit button */
form.newsletter input.submit {
	background: #0e913c;  /* Background Colour */
	color: #FFF;		  /* Text Colour */
	width: 80px;		  /* Width of the button */
	padding: 2px;		  /* Spacing between text and the edge of the button */
	font-size: 11px;
	border: none;
}

/* 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;
	float: right;
	margin-right: 20px;
}

form.newsletter div {
	clear: both;
}