@charset "UTF-8";

body {
	background-color: #FFFFFF;
	color: #666666;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 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. */
}


.thrColFixHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(../images/page_background_tile.gif) repeat-y left;
	margin: 0 auto;
	text-align: left;
} 

.thrColFixHdr #header {
	padding: 0 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. */
	width: 780px;
	height: 75px;
	float: left;
	background-color: #FFFFFF;
	background-image: url(../images/header_art.gif);
	background-repeat: no-repeat;
	background-position: left top;
} 

.thrColFixHdr #header2 {
	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. */
	width: 750px;
	height: 25px;
	float: left;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	background-color: #FFFFFF;
} 

.thrColFixHdr #header3 {
	padding: 5px 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. */
	width: 748px;
	height: 25px;
	float: left;
	background-color: #FFFFFF;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
} 

.thrColFixHdr #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 */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 115px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 10px 10px 15px; /* padding keeps the content of the div away from the edges */
}

.thrColFixHdr #rightContainer {
	float: right; /* since this element is floated, a width must be given */
	width: 630px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCCCCC;
}

.thrColFixHdr #splashContainer {
	float: right; /* since this element is floated, a width must be given */
	width: 630px; /* the background color will be displayed for the length of the content in the column, but no further */
}

.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 170px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 15px 15px 20px; /* padding keeps the content of the div away from the edges */
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
}

.thrColFixHdr #mainContent {
	padding: 10px 40px;
	float: left;
	width: 340px;
} 

.thrColFixHdr #footer {
	padding: 10px 5px 10px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
} 

.thrColFixHdr #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;
}

/* Commonly used to style page titles. */

h1 {
	color: #005599;
	font-size: 18px;
	font-weight: bold;
	line-height: 22px;
}

/* Commonly used to style section titles. */

h2 {
	color: #005599;
	font-size: 14px;
	font-weight: bold;
	line-height: 16px;
	font-family: Arial, Helvetica, sans-serif;
}

h3 {
	color: #005599;
	font-size: 9px;
	font-weight: bold;
	line-height: 20px;
	font-family: Arial, Helvetica, sans-serif;
}

h4 {
	color: #0069AA;
	font-size: 11px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 30px;
}

h5 {
	color: #333333;
	font-size: 11px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}

h6 {
	color: #FFFFFF;
	background-color: #0069AA;
	font-size: 12px;
	font-weight: bold;
	line-height: 25px;
}


/* Sets the style for unvisited links. */

a,  a:link {
	color: #005286;
	font-weight: bold;
	text-decoration: underline;
}

/* Sets the style for visited links. */

a:visited {
	color: #2390D6;
	font-weight: bold;
	text-decoration: none;
}

/* Sets the style for links on mouseover. */

a:hover {
	color: #003366;
	text-decoration: underline;
}

/* Sets the style for a link that has focus. */

a:focus {
	color: #0069A9;
}

/* Sets the style for a link that is being activated/clicked. */

a:active {
	color: #0069A9;
}

.sideBarNavigation {
	color: #0069A9;
	font-size: 12px;
	font-weight: bold;
	line-height: 2px;
	font-family:Arial, Helvetica, sans-serif;
}

.bankHoursSpacer {
	font-size: 12px;
	line-height: 25px;
}

.internetBankingLogin {
	font-size: 10px;
	line-height: 10px;
	font-family: Arial, Helvetica, sans-serif;
}

.textInLists {
	list-style-position: outside;
	list-style-type: none;
	list-style-image: url(../images/blue_bullet.gif);
}

.breadcrumbs {
	font-size: 8pt;
	line-height: 14pt;
}

.subHeadline {
	color: #0069AA;
	font-size: 11px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 30px;
}

.hoursText {
	color: #333333;
	font-size: 11px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}

.boxedText {
	color: #FFFFFF;
	background-color: #0069AA;
	font-size: 12px;
	font-weight: bold;
	line-height: 25px;
}

.addressText {
	color: #0069AA;
	font-weight: bold;
}

.blueText {
	color: #006AA9
}

.redHighlight {
	color: #FF0000
}

/* positions the header bits */


#headerLogo {
	height: 73px;
	width: 435px;
	position: relative;
	float: left;
}

#headerLogin {
	height: 28px;
	width: 150px;
	position: relative;
	float: left;
	padding-top: 10px;
}

#headerSearch {
	height: 38px;
	width: 170px;
	position: relative;
	float: left;
	padding-top: 5px;
	padding-left: 10px;
}

#headerAddress {
	height: 30px;
	width: 330px;
	position: relative;
	float: left;
}
