@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	background-color: #000034;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	color: #CCCCCC;
}
#container {
	width: 760px;
	margin: 0 auto;
	text-align: left;
	border: solid #FFFF66 thin;
}
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 140%;
	}
h2	{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 120%;
	}
h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 100%;
	}
p	{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 100%;
	line-height: 140%;
	} 
#header {
	margin-bottom: 8px;
	border-bottom-width: medium;
	border-bottom-style: groove;
	border-bottom-color: #CCCCCC;
	padding: 0px;
} 
.thrColFixHdr #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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #CCCCCC;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 120px; /* padding keeps the content of the div away from the edges */
	text-align: center;
	padding-top: 2px;
	padding-right: 6px;
	padding-bottom: 8px;
	padding-left: 6px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 130%;
	background-color: #faf0c8;
	color: #000066;
	margin-left: 6px;
	margin-top: 8px;
	margin-right: 8px;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 150px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 120%;
	padding-top: 2px;
	padding-right: 8px;
	padding-bottom: 15px;
	padding-left: 8px;
	background-color: #faf0c8;
	color: #000066;
	margin-right: 6px;
	margin-left: 8px;
	margin-top: 8px;
}
#mainContent {
	margin-top: -8px;
	margin-right: 182px;
	margin-bottom: 0;
	margin-left: 148px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #FFFF66;
	border-left-color: #FFFF66;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #FFFFFF;
}
.photol {
	float: left;
	margin: 6px 10px 6px 0;
	}
.photor {
	float: right;
	} 
#footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #999999;
	text-align: center;
	padding-top: 4;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 0px;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #CCCCCC;
	clear: both;
} 
.thrColFixHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .9em;
	font-weight: normal;
	text-transform: uppercase;
	color: #FFCC33;
	text-decoration: underline;
}
a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: normal;
	text-transform: uppercase;
	color: #CCCCCC;
}
a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: normal;
	text-transform: uppercase;
	color: #FFFFFF;
	text-decoration: underline;
}
a:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: normal;
	text-transform: uppercase;
	color: #FFFF00;
	text-decoration: underline;
}
