			body {
				padding: 0;
				margin: 0;
				font-family: Arial, Helvetica, Sans-serif;
				font-size: 14px;
				font-style: normal;
				font-weight: normal;
				text-decoration: none;
				background-color: rgb(251,174,92);
			}
			
			
			.horBox {
				width: 100%;
				margin-top: 40px;
				border-top: 2px solid rgb(2,68,155);
				border-bottom: 2px solid rgb(2,68,155);
				background-color: #FFF;
			}


			.msgBox {
				width: 800px;
				margin-left: auto;
				margin-right: auto;
				padding: 5px;
				text-align: center;
			}


			a:link, a:visited {
				text-decoration: none;
				color:rgb(1,123,180);
			}


			.note, .err {
				color: #C60000;
			}


			.notRaffled, .paidMember {
				background-color: rgb(168,196,226);
			}



/* -------------------------- Form Classes -------------------------- */


			form {
				margin: 5px;
				padding: 0px;
			}


			fieldset {
				margin: 0px;
				padding: 0px;
				border: 0px;
			}


			label {
				width: 140px;
				float: left;
				text-align: right;
				margin-left: 0;
				margin-right: .4em;
				clear: both;
			}


			input {
				width: 200px;
				margin-bottom: .8em;
				float: left;
			}


			.submit {
				/* Class for submit buttons */
				width: auto;
				float: left;
				clear: both;
			}


			select {
				width: 200px;
				margin-bottom: .8em;
				float: left;
			}


			textarea {
				position: relative;
				float: left;
			}

	/* -------------------------- Table Classes -------------------------- */

	table {
		width: 100%;
		border: 1px solid #000;
	}

	.tableHeader {
		font-weight: bold;
		background-color: rgb(251,174,92);
	}

	.tableRowDarkGrey {
		background-color: rgb(213, 213, 213);
	}

	.tableRowLightGrey {
		background-color: rgb(229, 229, 229);
	}

	.tableRowBlue {
		background-color: rgb(168,196,226);
	}


	/* -------------------------- Receipt Classes -------------------------- */

	table.receipt {
		width: 600px;
		border: 1px solid #000;
		text-align: left;
	}

	table.receipt td {
		text-decoration: underline;
	}

	
	/* -------------------------- Print Classes -------------------------- */

	@media print {


	.msgBox {
		text-align:left;
	}

	.horBox {
		left:0;
		margin:0;
		border:none;
	}
	
	form.receipt {
		display:none;
	}

	table.receipt {
		page-break-after:always;
	}

	}