@charset "UTF-8";
body  {
	font: normal 100% Georgia, "Times New Roman", Times, serif;
	background: #cedbe3 url(images/bk_bar_main.jpg) repeat-x;
	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: #4D3636;
}
 #container { 
	width: 840px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */

	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
 #header {
	padding: 0;  /* 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: url(images/header_image.jpg) no-repeat;
	height: 244px;
	width: 840px;
}
h1{
	color: #000000;
	font-size: 175%;
	font-weight: normal;
	padding-top: 12px;
}
#mainContent img {
	padding-top: 24px;
	text-align: center;
}
h2{
	color: #000000;
	font-size: 175%;
}
h3{
	color: #000000;
	font-size: 125%;
	font-weight: normal;
	clear: lft;
}
h4{
	color: #000000;
	font-size: 100%;
}
 #nav {
	width: 100%;
	margin: 0px auto 0;
	text-align:center;
	position: relative;
	padding-top: 218px;
	padding-right: 0;
	padding-bottom: 0;
} 
#nav ul {
	margin: 0px auto;
	border: 0px;
	list-style-type: none;
	padding: 0px;
} 

#nav li {
	color: #fff4d4;
	letter-spacing: 0.1em;
	display: inline;
	margin: 0px;
	padding: 0px;
	text-align: center;
} 
#nav li.nomargin {margin-left: 0;}
#nav ul li a:link, #nav a:visited {
	color: #fff4d4;
	text-decoration: none;
	letter-spacing: 0.2em;
	padding: 2px 2px 4px 24px;
	font: normal .8em Georgia, "Times New Roman", Times, serif;
} 
p {
	font: normal 0.8em Georgia, "Times New Roman", Times, serif;
}

#nav ul li a:hover {
	color: #A48573;
	font-weight: normal;
	text-decoration: underline;
} 
/*#current { 

color: #2d63af; 
text-decoration: none; 
}*/ 
#nav ul li#active a {
	text-decoration: underline;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #F6965C;
	font-weight: normal;
} 
 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	 /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
#sidebar1 p {
	font: normal 0.8em/1.8em Georgia, "Times New Roman", Times, serif;
}
 #sidebar1_vid {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	 /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
 #mainContent {
	margin: 0 0 0 250px; /* 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: center;
}

 #mainContent_vid { 
	margin: 0 0 0 200px; /* 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#mainContent p {
	font: normal 0.8em/1.8em Georgia, "Times New Roman", Times, serif;
	text-align: left;
}
 #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 
 #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 */
}
.red {
	color: #DF1205;
}
.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 img {
	border: none;
}
