@charset "utf-8";
body  {
	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: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #003366;
}
.thrColFixHdr #container {
	width: 1044px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #header {
	height: 235px;
	background-color: #003366;
} 
.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: 201px; /* 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 */
	background: #EA1B23; /* padding keeps the content of the div away from the edges */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	height: 100%;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 239px; /* padding keeps the content of the div away from the edges */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #EA1B23;
	height: 100%;
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 262px;
	margin-bottom: 0;
	margin-left: 209px;
	padding-top: 0;
	padding-right: 25px;
	padding-bottom: 10px;
	padding-left: 25px;
} 
.thrColFixHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
} 
.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;
}

/* Text Styles */
.caption{font-style:italic;text-align:center;font-size:12px;}

.blueText{color:#3333FF;}
.blueTextSpec{color:#3333FF;text-transform:uppercase;font-weight:normal;font-size:8px;}
.blueText2{color:#3333FF;font-weight:bold;}

.bigBlue{color:#000066;font-size:28px;font-weight:bold;text-align:center;}
.smallBlue{color:#3333FF;font-size:8px;text-transform:uppercase;}

.redHead{color:#cc0000;font-size:18px;font-weight:bold;text-align:left;}
.redBold{color:#FF3333;font-weight:bold;}

.sideTextTitle{
	color:#ffffff;
	font-size:20px;
	text-align:left;
	font-weight:bold;
	padding-left: 10px;
}
.sideText{color:#ffffff;font-size:12px;text-align:left;font-weight:bold;}
.sideText2{color:#ffffff;font-size:12px;text-align:left;font-weight:bold;font-style:italic;}
H1{color:#003399;font-size:22px;font-weight:bold;}
H3{font-size:20px;text-align:left;}
.companyColor{color:#003399;}
.boldText{font-weight:bold;}
.plainText{font-weight:normal;}

.whiteText{text-align:center;color:#ffffff;font-weight:normal;font-size:24px;}
.whiteText2{text-align:center;color:#ffffff;font-weight:normal;font-size:18px;}
.whiteText3{text-align:center;color:#ffffff;font-weight:bold;font-size:20px;}
.whiteText4{text-align:left;color:#ffffff;font-weight:bold;font-size:16px;}

.footerTextTitle{
	color:#CC0000;
	font-weight:bold;
	text-align:center;
	font-size:21px;
}
.footerTextGray{color:#999999;text-align:center;font-weight:bold;font-size:16px;}
.footerTextBlue{
	color:#0033CC;
	text-align:center;
	font-weight:bold;
	font-size:21px;
}
.footerTbl{
	font-size:17px;
	font-weight:bold;
	text-align:center;
}
.footerTbl2{
	font-size:21px;
	font-weight:bold;
	text-align:center;
}
.footerLight{color:#6666FF;text-align:center;font-weight:bold;}
.footerBlue{color:#003399;font-size:24px;text-align:center;font-style:italic;}
.FooterNavigation{font-size: 12px; font-family: arial,helvetica,sans-serif; color: #000000;}

/* Side navigation Control */
#sidebarNav p {
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;

}

a.sideNav:link, a.sideNav:visited {
	display: block;
	font-size: 12px;
	font-weight: bold;
	padding-top: 14px;
	padding-left: 5px;
	height: 31px !important;
	width: auto;
	text-decoration: none;
	background-image: url(../images/sideNav-bg.gif);
	background-repeat: no-repeat;
	background-position: center 2px;
	color: #003366;
	text-align: center;
}

a.sideNav:hover {
	background-position: center -39px;
	text-decoration: none;
	color: #fff;
}
/* NAVIGATION */
#sidebarNav {
	position: relative;
	width: 201px;
}

#sidebarNav ul, #sidebarNav li{
   z-index:10;
   margin: 0px;
   list-style: none;
   width: 201px;
   display: block;
   border-bottom-width: 1px;
   border-bottom-style: solid;
   border-bottom-color: #768ec2;
   padding-top: 0px;
   padding-right: 0px;
   padding-bottom: 0px;
   padding-left: 0px;
}

#sidebarNav li a, #sidebarNav li a:link, #sidebarNav li a:visited, #sidebarNav li a:active {
	font-size: 11px;
	font-weight: bold;
	height: 31px !important;
	width: auto;
	text-decoration: none;
	background-image: url(../images/sideNav-bg.gif);
	background-repeat: no-repeat;
	background-position: center 2px;
	color: #003366;
	text-align: center;
	padding-top: 14px;
	display: block;
	margin: 0px;

}
#NavHome li a:hover {
	background-image: url(../images/sideNav-bg.gif);
	background-repeat: no-repeat;
	background-position: center;
	text-decoration: none;
	color: #fff;
}
.sidebar2LeftPadding {
	border: 1px solid #CCCCCC;
	margin-right: 10px;
	margin-left: 10px;
	padding-top: 3px;
	padding-right: 7px;
	padding-bottom: 3px;
	padding-left: 7px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.highlightBox {
	padding-top: 3px;
	padding-right: 7px;
	padding-bottom: 3px;
	padding-left: 7px;
	border: 1px solid #003366;
	margin-top: -5px;
	margin-right: 0px;
	margin-bottom: -5px;
	margin-left: 0px;
}
