/* generic styles */
/* NOTE: any * > selector rules are for standards-compliant browsers. The rule before will have a style that works in IE6. */
/* Table of Contents 
	Layout
	Typography and Inline Elements
	Forms
	Tables
*/

/* Layout */
* {margin:0;} /* Reset all elements to zero margin and padding */

body {
	color: #333333;
	font-family: "Times New Roman", Times, serif;
}
.left {float:left; margin:0 1em 1em 0}
.right{float:right; margin: 0 0 1em 1em}

/* Typography and Inline Elements */
h1 {
	font-size: 1.4em;
	color: #82361B;
	font-weight: bold;
	margin: 0 0 .5em;
}
h2 {font-size: 1.2em; margin:0 0 .5em}
h3 {}
p {margin: 0 0 1em;}

ul {}
li {}

a img {
	border:0px solid #FFFFFF;
}
.important {
	color: #b68b6f;
	font-weight: bold;
	font-size: 1.2em;
}

/* Forms */
form {
	width:95%;
}
label {
	display:block;
	margin-bottom:0.25em;
	margin-right:0;
	margin-top:0;
}
label span {
	display:block;
	float:left;
	margin-right:15px;
	text-align:right;
	width:20%;
}
form span.buttons {
	clear:both;
	display:block;
	float:left;
	margin-left:15px;
	padding-left:20%;
	position:relative;
	text-align:right;
}
/* Tables */
table {}
tr {}
td {}
tr:hover {}

