@charset "UTF-8";
/* CSS Document */
 
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	background: #1d2c3f;
	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;
}

a:hover #logo {
	cursor: pointer;
}

#logo {
	behavior: url("iepngfix.htc");	
}

#container {
	position: relative;
	font-size: 1.4em;
	width: 672px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	background-image:url(images/bg_sliver.gif);
	background-repeat: repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 20px;
	margin-bottom: 20px;
	z-index: 1;
}
#container h1, #container h5 {
	margin: 0;
	padding: 0;
	background: #FFF;
}

.tr, .tl, .br, .bl {
	height: 0;
	width: 0;
	line-height: 0;
}

#container .tl, #container .bl {
	position: absolute;
	background-repeat: no-repeat;
	width: 674px;
	height: 17px;
	background-image:url(images/corner_top.gif);
}

#container .tl {
	top: 0;
	left: 0;
	right: 0;
}

#container .bl {
	background-image:url(images/corner_btm.gif);
	width: 674px;
	height: 17px;
	bottom: 0;
	left: 0;
	z-index: 8;
}


#sidebar1 {
	width: 145px; /* 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 */
	float: left;
}

#leftNav {
	background-image:url(images/nav_sliver.gif);
	background-repeat: repeat-y;
	margin-top: 109px;
	padding-top: 60px;
	padding-bottom: 40px;
}
#leftNav img {
	border: 0;
}

#leftNav ul {
	list-style-type:none;
	padding: 0;
	margin: 0;
}
#leftNav li {
	padding: 4px 0;
	margin: 0;
}

#leftNav a {
	color: #faf5f5;
	text-decoration: none;
}

#leftNav a:hover {
	color: #8ea768;
}

#logo {
	position: absolute;
	background-image:url(images/hand_logo.png);
	width: 101px;
	height: 108px;
	left: 80px;
	top: 34px;
}

#footer {
	position: relative;
	z-index: 12;
}

#footer ul {
	display: block;
	margin: 0;
	list-style-type: none;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 16px;
}

#footer li {
	font-family: Arial Black, Arial, Helvetica, sans-serif;
	display: inline;
	float: left;
	padding-right: 8px;
	font-size: 0.8em;
}
#footer a {
	text-decoration: none;
	color: black;
}
#footer a:hover {
	text-decoration: underline;
}


#mainContent { 
	/* margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	/* padding: 0 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-left: 145px;
}
#mainContent h1 {
	font-size: 1.1em;
}
#mainContent h1 img {
	margin: auto;
	display: block;
	padding-top: 30px;
	padding-bottom: 30px;
}
#pageContent {
	padding: 12px;
	font-size: 1em;
	font-family:Arial, Helvetica, sans-serif;
	background: #e0f0c7;
	min-height: 256px;
}
#pageContent h2 {
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	font-style: italic;
	color: #3e45ba;
}

#pageContent a {
	font-weight: bold;
	text-decoration: none;
	color: #8ea768;
}
#pageContent a:hover {
	text-decoration: underline;
}
#pageContent .homepage {
	font-weight: bold;
	text-align: center;
	color: black;
}
#pageContent .homepage p {
	margin: 24px auto;
	width: 320px;
}

.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: 0px;
  line-height: 0px;
}

