@charset "UTF-8";
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0px none;
  outline: 0;
  font-size: 100%
}
/* 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 {
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
}
.bodybold {
	color: #000;
	margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0;
	font: bold 12px/20px Verdana, Arial, Helvetica, sans-serif;
}
.caption {
	color: #000;
	margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
	font: italic 12px/20px Verdana, Arial, Helvetica, sans-serif;
}
/* Commonly used to style page titles. */
h1 {
	color: #000;
	font: 24px/30px "Trebuchet MS", Arial, Helvetica, sans-serif;
}
/* Commonly used to style section titles. */
h2 {
	color: #060;
	font: 20px/24px "Trebuchet MS", Arial, Helvetica, sans-serif;
}
h3 {
	color: #000;
	font: 16px/20px "Trebuchet MS", Arial, Helvetica, sans-serif;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #00F;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #00F;
	text-decoration: none;
}
/* 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: #383644;
}
/* 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 {
	margin: 0 auto 0 auto; /* 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: 900px;
	background: #FFF;
}
#outerWrapper #header {
	border-bottom: solid 1px #767a7f; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	line-height: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: #FFF;
	height: 72px;
}
#outerWrapper #nav {
	background: #FFF url('../images/nav/navbk.jpg');
	height: 26px;
	text-align: center
}
#outerWrapper #subnav {
	height: 25px;
	text-align: center;
	border-bottom: 2px groove #FC0;
	padding-top: 5px;
}
#outerWrapper #subnav2 {
	height: 25px;
	text-align: center;
	border-bottom: 2px groove #FC0;
	padding-top: 5px;
	margin-bottom: 20px;
}
#outerWrapper #feature {
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 10px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: #FFF;
	height: 310px;
	text-align: center;
}
#outerWrapper #feature1 {
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 10px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: #FFF;
	height: 10px;
	text-align: center;
}
#outerWrapper #feature2 {
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 10px 10px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: #FFF;
	text-align: center;
}
#outerWrapper #contentWrapper {
  background-image: url('../3ColumnFixedHeaderandFooter_images/contentWrapper_bg.png');
  background-repeat: repeat-y;
  overflow: hidden
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left;
	padding: 10px 10px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 260px;
}
#outerWrapper #contentWrapper #leftColumn2 {
	float: left;
	padding: 0px 10px 0px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 260px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#outerWrapper #contentWrapper #leftColumn3 {
	float: left;
	padding: 0px 0px 0px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 260px;
}
#outerWrapper #contentWrapper #rightColumn1 {
	float: right; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 270px;
}
#outerWrapper #contentWrapper #rightColumn2 {
	float: right; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 270px;
	padding: 0px 30px 0px 0px;
}
/* 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: 0 300px;
	padding: 0px 0px 10px;
	height: 300px;
}
/* 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 #content2 {
	margin: 0 315px;
	padding: 0px 0px 10px;
}
#outerWrapper #contentWrapper #content1 {
	margin: 0 30px 0 305px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 10px;
}
#outerWrapper #contentWrapper #content10 {
	margin: 0 30px 0 105px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 10px;
}
#outerWrapper #footer {
	border-top: 1px solid #9ea3aa; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: #FC0 url('../images/footer.png') no-repeat bottom;
}
.imageRight {
	padding-left: 5px;	
	float: right;
}
.imageLeft {
	float: left;
	padding-right: 5px;
}
.large {
	font: 18px/24px "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #666;
}
.largebold {
	font: 24px/30px "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #000;
}