/* 
	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
--------------------- */
form.newsletter {
	float: left;
	clear: both;
}
/* LABEL WIDTH: This is the width of the field names before the fields */
form.newsletter label {
	float: left;
	width: 75px;
}

/* FIELD WIDTH */
form.newsletter input, form.newsletter select {
	border: 1px solid #CCC;
	float: right;
	padding: 2px 0;
	width: 105px;
}

/* SUBMIT BUTTON: This will change how the submit button looks, remove if you want a normal submit button */
form.newsletter input.submit {
	background: #ff9a37;  /* Background Colour */
	border: none;
	color: #162685;		  /* Text Colour */
	padding: 5px;		  /* Spacing between text and the edge of the button */
	font-size: 12px;
	font-weight: bold;
}

/* 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;
}

form.newsletter div {
	clear: both;
}

#news-subscribe p {
	clear: both;
}