/* CSS Styles to add for the mailer form */

body,
#mailerform { /* here you can set the general font sizes, colors, background-colors, etc. */
	color: #000000;
	background-color: #FFFFFF;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
}
#mailerform a { /* this is mainly for the Unsubscribe link at the bottom of the box */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #90000;
}
#mailerform a:hover { /* hover properties for unsubscribe link */
	
}
#mailerform .required { /* this is the styling for the required fields on the form, i.e. email, confirm email as well as the required text at the top of the form */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;	
}
#mailerform table { /* if you want to add any styling to the table, i.e. borders, etc. */
	
}
#mailerform td {  /* if you want to add styling to the cells in the table */
	
}
#mailerform .attributename { /* here you can style the text next to the input boxes */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}
#mailerform input { /* this one is for the styling of the submit button */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;	
}
#mailerform .attributeinput input { /* This is mainly for the two email enter boxes */
	font-size: 12px;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
}
#mailerform select.attributeinput { /* this one is mainly for the dropdown box on the form */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;	
}
#mailerform h3 { /* This is for the thank you page for subscribing after subscription takes place */
	
}