@charset "utf-8";
/* CSS Document */

/* ~~ this fixed width container surrounds all other elements ~~ */
.maincontainer {
	width: 90%;
	background-color: #FFF;
	margin: 20px auto; /* the auto value on the sides, coupled with the width, centers the layout */
	border-radius: 10px;
	border:#CCC solid thin;
	box-shadow: 0px 15px 15px #999999;
}

.maincontainerBlank {
	width: 90%;
	margin: 20px auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

.content {
	padding-left:40px;
	padding-right:40px;
}

p, li, table, form
{
	color:#333;
	font-family:Calibri, Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size:16px;
}


h1
	{
		font-family:Calibri, Arial, Helvetica, sans-serif;
		font-weight: bold;
		font-size:24px;
		margin-top: 0px;
	}
	
h2
	{
		font-family:Calibri, Arial, Helvetica, sans-serif;
		font-weight: bold;
		font-size:18px;
		margin-top: 0px;
		margin-bottom: 3px;
	}
	
a
	{
		color:#900;
		font-weight: bold;
		text-decoration:none;
	}