@charset "UTF-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	margin: 20px 0px 0px; /* 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: #333333;
	background-color: #660000;
}
.twoColFixLtHdr #container {
	width: 860px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 10px solid;
	text-align: left;
	border-color: #6e0909;
	background-color: #cccc99;
	background-image: url(../i/bg_container.png);
	background-repeat: repeat-y;
} 
.twoColFixLtHdr #header {
	padding: 0 10px 0 20px;  /* 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. */
	background-color: #ffffcc;
	height: 20px;
} 
.twoColFixLtHdr #header_inside {
	padding: 0 10px 0 20px;  /* 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. */
	background-color: #B9B980;
	height: 20px;
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 260px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px;
	background-color: #CCCC99;
	height: 380px;
}
.twoColFixLtHdr #sidebar1 p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	padding: 20px 20px 0px;
	line-height: 1.7em;
}
.twoColFixLtHdr  #sidebar1 #sidebar1_content {
	font-family: Arial, Helvetica, sans-serif;
	color: #ffffcc;
	font-size: 12px;
	padding: 15px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 3px;
}
.twoColFixLtHdr  #sidebar1 #sidebar1_content {
	font-family: Arial, Helvetica, sans-serif;
	color: #ffffcc;
	font-size: 12px;
	padding: 15px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 3px;
}
.twoColFixLtHdr #mainContent {
	margin: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
	width: 500px;
	background-color: #ffffcc;

	background-repeat: no-repeat;
	padding: 120px 30px 20px 30px;
	background-position: -30px -40px;
	background-image: url(../i/bg_mainContent_r2_c2_r2_c2.jpg);
} 
.twoColFixLtHdr #mainContent h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	color: #CCCC99;
	font-size: 24px;
	margin: 0;
}
.twoColFixLtHdr #mainContent p {
}

.box ul {
	list-style-type: none;
	margin: 0px 0px 0px 40px;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	font-weight: bold;
	font-size: 13px;
	text-indent: 5px;
}
.box a {
	color: #ffffcc;
	text-decoration: none;
	height: 18px;
	display: block;
	padding: 2px 0 0 0;
}
.box a:hover {
	text-decoration: none;
	border-left: 3px solid;
	border-left-color: #FFFFCC;
	color: #660000;
	padding: 2px 0 0 0;
	height: 18px;
	text-indent: 7px;
}
.box .last_li {
	border: 0;
}

.box_inside ul {
	list-style-type: none;
	margin: 15px 5px 0px 15px;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	font-weight: bold;
	font-size: 13px;
	text-indent: 1px;
}
.box_inside a {
	color: #666666;
	text-decoration: none;
	height: 18px;
	display: block;
	padding: 0px 0px 0px 5px;
}
.box_inside a:hover {
	text-decoration: none;
	border-left: 3px solid;
	border-left-color: #660000;
	color: #cccc99;
	padding: 0px;
	height: 18px;
	text-indent: 5px;
}
.box_inside .last_li {
	border: 0;
}

.twoColFixLtHdr #footer {
	padding: 0 10px 0 40px;
	background-color: #660000;
	background-repeat: repeat-x;
	background-position: -300;
	height: 150px;
	background-image: url(../i/bg_footer.gif);
} 
.twoColFixLtHdr #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;
}
.twoColFixLtHdr #mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .83em;
	line-height: 1.7em;
}
.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;
}

.leftColumn {
	list-style-type: none;
	margin: 20px 10px 0px 30px;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	font-size: 12px;
	text-indent: 0px;
}


.leftColumnStaff {
	list-style-type: none;
	margin: 10px 10px 0px 10px;
	padding: 0;
	font-family: Verdana;
	color: #666666;
	font-size: 12px;
	text-indent: 0px;
}


.leftColumnStaff-2 {
	list-style-type: none;
	padding: 0;
	font-family: Verdana;
	color: #666666;
	font-size: 13px;
	text-indent: 0px;
}
/*Homepage Style below*/




.twoColFixLtHdr_index #container {
	width: 860px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 10px solid;
	text-align: left;
	border-color: #6E0909;
	background-color: #660000;
} 
.twoColFixLtHdr_index #header {
	padding: 0 10px 0 20px;  /* 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. */
	background-color: #ffffcc;
	height: 20px;
} 
.twoColFixLtHdr_index #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 */
}
.twoColFixLtHdr_index #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 260px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 20px 30px;
	background-color: #cccc99;
	height: 430px;
}
.twoColFixLtHdr_index #sidebar1 p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	line-height: 1.7em;
	margin: 10px 20px 10px 35px;
}
.twoColFixLtHdr_index #mainContent {
	margin: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
	width: 520px;
	background-color: #FFFFCC;
	height: 440px;
	background-repeat: no-repeat;
	padding: 7px 20px 33px;
	background-image: url(../i/MASTER_913_r2_c4.jpg);
} 
.twoColFixLtHdr_index #mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.twoColFixLtHdr_index #footer {
	padding: 0 10px 0 40px;
	background-color: #660000;
	background-repeat: repeat-x;
	background-position: -300;
	height: 150px;
	background-image: url(../i/bg_footer.gif);
} 
.twoColFixLtHdr_index #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;
}
.twoColFixLtHdr #container #sidebar1 h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #330000;
	text-align: center;

}
.twoColFixLtHdr_index #container #sidebar1 h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 22px;
	padding: 5px;
	border: 1px solid #FFFFFF;
	background-color: #FFFFCC;
	line-height: 1em;
	color: #6E0909;
	width: 200px;
	margin-left: 20px;
}
.twoColFixLtHdr #container #sidebar1 h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 20px;
	padding: 5px;
	border: 1px solid #6E0909;
	background-color: #FFFFCC;
	line-height: 1em;
	color: #999966;
	width: 200px;
	margin-left: 20px;
}

}
.smallText{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #cccc99;

}
