@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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;
}

.thrColElsHdr #container { 
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #666666;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColElsHdr #header { 
	background: #FFFFFF; 
	padding: 0 10px;  /* 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. */
	height: 85px;
	border-top: 5px solid #CCC;
} 
.thrColElsHdr #header p { 
	font-size: 12px;
	color: #23A491;
	line-height: 18px;
} 
.thrColElsHdr #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 */
}

.thrColElsHdr #sidebar1Top {
	width: 170px;
	height: 44px;
	background: url(sidebar_top.png) top no-repeat;
	margin: 0 -18px 0 -25px;
}
.thrColElsHdr #sidebar1 {
	float: left; 
	/*width: 11em; /* since this element is floated, a width must be given */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 18px 0 25px; /* top and bottom padding create visual space within this div */
	width: 127px;
	background: url(sidebar_bg.png) top repeat-y;
	
}
.thrColElsHdr #sidebar1Bottom {
	background: url(sidebar_bottom.png) top no-repeat;
	min-height: 22px;
	padding: 0;
	margin: 0 -18px 0 -25px;
	width: 170px;
}
.thrColElsHdr #sidebar1 ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.thrColElsHdr #sidebar1 ul li{
	list-style-type: none;
	padding: 2px 0 7px 0;
	border-bottom: solid 1px #9F9F9F;
}
.thrColElsHdr #sidebar1 ul li a{
	font-family: Verdana;
	font-size: 12px;
	color: #939598;
	text-decoration: none;
}
.thrColElsHdr #sidebar1 ul li ul li a{
	font-family: Verdana;
	font-size: 12px;
	color: #939598;
	text-decoration: none;
	padding-left: 4px;
}

.thrColElsHdr #sidebar2Top{
	background: url(sidebar2_top.png) top no-repeat;
	height: 222px;
	width: 170px;
}
.thrColElsHdr #sidebar2 {
	float: right; 
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 0 26px 0 18px; /* top and bottom padding create visual space within this div */
	width: 170px;
	margin-top: 0px;
	background: url(sidebar2_bg.png) top repeat-y;
	position: relative;
}
.thrColElsHdr #sidebar2Bottom {
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 0 26px 0 18px; /* top and bottom padding create visual space within this div */
	width: 170px;
	margin-top: 0px;
	background: url(sidebar2_bottom.png) top no-repeat;
	height: 20px;
}
.thrColElsHdr #sidebar2 p{
	padding: 0 26px 0 18px; /* top and bottom padding create visual space within this div */
	color: #59BBAE;
	font-family: Verdana;
	font-size: 0.688em;
}
.thrColElsHdr #sidebar1 h3, .thrColElsHdr #sidebar2 h3 {
	margin-left: 17px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 26px;
}
.thrColElsHdr #mainContent p, .thrColElsHdr #mainContent h2{
	padding: 0 26px 0 20px;
	font-size: 12px;
	color: #7F7F7F;
	line-height: 18px;
	text-align:justify;
}
.thrColElsHdr #mainContent div{
	font-size: 12px;
	color: #7F7F7F;
	line-height: 18px;
}
.thrColElsHdr #mainContent table td p,.thrColElsHdr #mainContent table td{
	font-size: 12px;
	color: #7F7F7F;
	
}
.thrColElsHdr #mainContent table td img{
	text-align: center;
	vertical-align:top;
}
.thrColElsHdr #mainContent {
 	/*margin: 0 12em 0 12em;  the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	width: 460px;
	float: right;
	padding: 0;
	background: url(mainContent_bg.png) top no-repeat;
	min-height: 208px;
	
	position: relative;
	
} 
.thrColElsHdr #mainContentTop{
	width: 460px;
	padding: 0;
	background: url(mainContent_bg.png) top no-repeat;
	min-height: 208px;
}
.thrColElsHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #FFFFFF;
} 
.thrColElsHdr #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 */
	color: #8C8C8C;
	font-size: 0.688em;
}

/* 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;
}
.navigationbar{
	padding: 2px 0 0 9px;
	margin: 0;
}
.navigationbarLink a{
 font-size: 11px;
}
.navigationbarLink a:hover{
 font-size: 11px;
 color: #111380;

}
.navigationbarSeparator{
	 font-size: 11px;
}
a.privacy{
	color: #8C8C8C;
	font-size: 11px;
	text-docration: none;
	background: url(privacy-icon.gif) left no-repeat;
	padding-left: 20px;

}
a.privacy:hover{
	color: #8C8C8C;
	font-size: 11px;
	text-docration: underline;
	background: url(privacy-icon.gif) left no-repeat;
	padding-left: 20px;
}
