@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #616161;
	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;
}
.thrColFixHdr #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #header { 
	background: #000000; 
	padding: 0 25px 0 25px;
	margin: 0;
} 
.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: 30px 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #0fc0ff;
	font-size: 180%;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
}
.thrColFixHdr #header h2 {
	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: 0 0 40px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #ffffff;
	font-size: 140%;
}
#headerDevider{
	height: 31px;
	margin-top: 1px;
	background-color: #429bc7;
}
#headerDevider ul{
	height: 0; 
	padding: 0;
	margin: 0;
}
.thrColFixHdr #mainContent { 
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.thrColFixHdr #footer {
background-color: #000000; 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 90%;
	color: #FFFFFF;
}
.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;
}
#firstSection{
	background-color: #d4e5f3;
	margin-top: 20px;
	padding: 0 0 0 10px;
}
#photoWraper{
	display: block;
	float:left;
	width: 120px;
}
.firstSectionContent{
	 margin: 0 145px 0 270px;
	 padding: 5px 5px 5px 10px;
}
.firstSectionContent h3, #sectionNavigation h3{
	font-size: 80%;
	color: #0f4c6a;
}
.firstSectionContent h3{
	margin-top: 10px;
}
#sectionNavigation h3{
	margin-top: 10px;
	margin-bottom: 5px;
}

.firstSectionContent p{
	font-size: 75%;
}
.otherSection ul li{
	font-size: 75%;
}
#sectionNavigation{
	float: right;
	width: 145px;
	margin: 5px;
	padding: 0px 5px 5px;
	background-color: #9cc9e2;
	 height: 135px;
}
#sectionNavigation ul {
	display:block;
	height:auto;
	line-height:25px;
	list-style-type:none;
	margin:0;
	min-height:25px;
	padding:0;
}

#sectionNavigation ul li {
	height:auto;
	line-height:25px;
	margin-top:0;
	min-height:25px;
	padding:0;
}

#sectionNavigation ul li a {
	font-size: 70%;
	display:block;
	font-weight:normal;
	line-height:25px;
	margin:0;
	min-height:25px;
	color: #ffffff;
	background:transparent url(images/linkArrow.gif) no-repeat scroll left center;
	padding-left: 16px;
}

.sectionHeader{
	background-color: #55a5cc;
	color: #ffffff;
	height: 21px;
	min-height: 21px;
	padding-left: 5px;
}

.sectionHeader h3{ 
	margin-right: 40px;
	font-size: 75%;
	padding-top: 5px;
}

.sectionHeader a{
	display:block;
	float: right;
	width: 40px; 
	font-size: 65%;
	margin-top: 5px;
	color: #ffffff;
	background:transparent url(images/topArrow.gif) no-repeat scroll left center;
	padding-left: 16px;

}

.otherSection p {
font-size:75%;
}