@charset "utf-8";

/* TEXT */

h1 {
	font-size:160%;
	font-weight:500;
	margin:5px 0 15px 0;
}
h2 {
	font-size:120%;
	font-weight:500;
	margin:16px 0 8px 0;
	color:#131533
}
p {
	margin: 5px 0 8px 0;
}
a:link, a:visited {
	color: #8d2304;
	text-decoration:none
}

a:hover { 
	color: #8d2304;
	text-decoration:underline
}

a:active { 
	color: #8d2304;
	text-decoration:none
}

/* PAGE LAYOUT */

* {
	margin:0;
	padding:0;
}
body  {
	font: 90% "Times New Roman", Times, serif;
	background-image:url(images/background-stripe.gif);
	margin-top: 15px;
	padding: 0;
	text-align: center; 
	color: #727272;
	line-height: 150%;
}
#container { 
	width: 930px; 
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; 
} 
#topbar {
	padding: 18px 12px 0 12px;
	height: 36px;
	color: #a0a0a0;
}
#nav{
	float:right;
	width: 350px;
	text-align:right;
	font-size:110%;
}
#nav ul {
	list-style: none;
}
#nav li { 
	position: relative;
	float: left;
	padding: 0 15px 0 15px;
	border-right: #eae9e9 2px solid;
}
#nav a:link, a:visited {
	color: #a0a0a0;
	text-decoration:none
}

#nav a:hover { 
	color: #8d2304;
	text-decoration:none
}

#nav a:active { 
	color: #a0a0a0;
	text-decoration:none
}
#header { 
	padding: 0 11px 0 11px;  
} 
#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	float: left; 
	width: 320px; 
	padding: 0 10px 0 25px;
}
#mainContent { 
	width:540px; 
	margin: 0 0 0 360px; 
	padding: 5px 10px 20px 10px;
} 
#mainContent li { 
	margin-left:40px
}
#footer { 
	padding: 8px 0 0 0;
	text-align:center;
	margin:11px;
	background:#eae9e9; 
	font-size: 80%;
	height: 30px
} 
.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;
}