@charset "UTF-8";
body {
	font : 62.5% verdana, arial, hevetica, sans-serif;	background: #ffffff;
	line-height:1.5em;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333;
}

#container {
	width: 100%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #C04A3F; 
	padding:20px 0;
	border-bottom:10px solid #F9ECD5;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding:0;
	float:left;
}
#header h2 {
	color:#F0CFAE;
	font-family:"Times New Roman", Times, serif;
	float:right;
	text-transform:uppercase;
	font-weight:normal;
	margin:0;
	padding:25px 0 0 20px;
	font-size:1.8em;
}
#mainContent {
	padding: 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	width:750px;
}
.clear {
	clear:both;
	}
.fixedwidth {
	width:750px;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

}
.indent {
	padding-left:25px;
}
.left {
	width:48%;
	float:left;
}
.right {
	width:48%;
	float:right;
}

table {
	border:1px solid #F0CFAE;
	width:100%;
	}
th, td {
	vertical-align: top;
	font-size:1.1em;
	border-bottom:1px solid #F9ECD5;
}
th {
	color:#ce5713;
	text-align:left;
	font-weight:normal;
	font-size:1.2em;
	background-color:#F9ECD5;
	}
th.title {
	color:#B22E0B;
	text-transform:uppercase;
	background-color:#F0CFAE;
	font-size:1.2em;
}
table a {
	color:#fff;
	background-color:#C04A3F;
	text-decoration:none;
	text-transform:uppercase;
	font-size:.85em;
	padding:1px 2px;
}
table a:hover {
	background-color:#666;
}