@charset "utf-8";
body  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	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: #000000;
	background-color: #4F0000;
		background-image: url(/Templates/images/bg_gradient.jpg);
	background-repeat: repeat-x;
}
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	background: #DDDDDD;
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	line-height: 1.2;
} 

#header h1 {
	font-size: 36px;
	color: #9A0000;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-bottom: -20px;
	margin-left: 28px;
}
#header p {
	line-height: 1.2;
	margin-left: 28px;
} 
#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 12px 15px 30px 15px;
	text-align: right;
	font-size: 14px;
	margin: 10px 0px 20px 0px;
	background-color: #990100;
}

#sidebar a:active, #sidebar a:link, #sidebar a:visited, #sidebar a:hover {
	display: block;
	padding:10px 5px 10px 0px;
	text-decoration: none;
}

#sidebar a:active, #sidebar a:link, #sidebar a:visited {
	background-color: #990100;
	color: #FFFFFF;
	border-bottom: 1px dashed #333333;
}
#sidebar a:hover{
	background-color: #640000;
	text-decoration: none
} 

#sidebaron a:active, #sidebaron a:link, #sidebaron a:visited, #sidebaron a:hover {
	background-color: #640000;
	color: #FFFFFF;
}






#mainContent {
	margin: 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: left;
} 
#mainContent p {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	line-height: 1.2;
}

#footer {
	padding: 20px 0px 20px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	font-size: 10px;
} 
#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;
}

.nav a:link, .nav a:visited{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration:none;
	padding: 7px;
	background-color: #DDDDDD;
	color: #A20005;
}

.nav a:hover{
	background-color: #CEC1C5;
	color: #333333;
}


#pagetitle{
	margin: 30px 0px 20px 0px;
}

#pagetitle h1{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	color: #9A0000;
	font-weight: bolder;
}

h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #333333;
}
h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	color: #CC0000;
}
h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	color: #333333;
}
