@charset "utf-8";
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #666;
	color: #AA0000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #AA0000;
	font-size: 18px;
	font-weight: bold;
	line-height: 25px;
}
/* Commonly used to style section titles. */
h2 {
	color: #AA0000;
	font-size: 16px;
	font-weight: bold;
	line-height: 16px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #AA0000;
	font-weight: normal;
	text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
	color: #000;
	text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}

.footer_style {font-size: x-small}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 100%;
	float: left;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#outerWrapper #header {
	background: #f8f1a1;
	padding-right: 10px;
	padding-left: 10px;
	height: 115px;
	border-bottom-color: #000000;
	border-bottom-width: thick;
	border-bottom-style: solid;
}
.Sidebar_Heading {
	font-size: 12pt;
	padding-bottom: 10px;
	color: #ffffff;
	text-align: center;
}

 #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 */
	font-size: 10pt;
}

#outerWrapper #contentWrapper {
  background-image: url("2ColumnFixedLeftSidebarHeaderandFooter0_images/contentWrapper_bg.png");
  background-repeat: repeat-y;
  overflow: hidden;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #007F00; /* Sets the right border properties for an element using shorthand notation */
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 175px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 220px;
}
#outerWrapper #footer {
  border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  background-color: #f8f1a1;
}

/* Miscellaneous classes for reuse */
.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;
}
.photo_caption {
	font-size: small;
	color: #AA0000;
}
h3 {
	font-size: 14px;
	font-weight: bold;
}
.GreyMessage {
	color: #888888;
}
.sidebar_info {
	color: #f8f1a1;
	font-size: 10px;
}
