﻿@charset "UTF-8";
body {
	font: 75% Verdana, Arial, Helvetica, sans-serif;
	line-height: 150%;
	background: #a2bac0;
	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: #666666;
}
h1 {
	font-size: 175%;
	line-height: 125%;
	color: #5AA1B4;
}
h2 {
	font-size: 130%;
	line-height: 125%;
	color: #5AA1B4;
}

a {
	color: #345D69;
	text-decoration: underline;
}

a:hover, .selected a{
	
	color: #5AA1B4;
	text-decoration: none;
}

#container {
	width: 1000px;
	background: #FFFFFF;
	margin: 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. */
}
#header {
	margin-bottom: 15px;
	padding: 0;
	background-image: url(/PublishingImages/header.jpg);
	background-repeat: no-repeat;
	height: 141px;
	width: 1000px;
}

#headerAltText {
	position: relative;
	float: left;
	width: 440px; 
	height: 100px;
	top: 20px;
	margin-left: 20px;
	padding: 0;
	text-indent: -5000px;
}

#headerAltText a {
	position: absolute;
	width: 440px; 
	height: 100px;
	top: 0px;
	left: 0px;
	
}

#upperTab {
	position: relative;
	float: right;
	bottom: -108px;
	width: 243px;
	height: 33px;
	
}
#upperTab ul {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	width: 100%;
	height 100%;
}

#upperTab ul li { float: left; }

#upperTab ul a {
	display: block;
	float: left; /* needed for IE 5 on Mac, not necessary for other browsers/platforms */
	text-decoration: none;
	color: #345D69;
	font-weight: bold;
	line-height: 270%;
	height: 33px;
}

#upperTab ul .homeLink a {
	width: 99px;
	text-indent: 45px;
	background: url(/PublishingImages/home.jpg) no-repeat left top;
}
#upperTab ul .homeLink a:hover {
	background-position: -99px 0;
	color: #5AA1B4;
}

#upperTab ul .empLogin a {
	width: 144px;
	text-indent: 22px;
	background: url(/PublishingImages/emp_login.jpg) no-repeat left top;
}
#upperTab ul .empLogin a:hover {
	background-position: -144px 0;
	color: #5AA1B4;
}



#header h1 {
	margin: 0;
	padding: 10px 0;
}

#mainContent {
	padding: 0;
	background-color: #fffff;
}

/*********** start NAV ***********/

#nav {
	position: relative;
	float: left;
	width: 187px;
	margin-right: 8px;
	background-color: #FFFFFF;
	text-indent: 32px;
	font-weight: bold;
	
}

#navTopShadow {
	padding: 0;
	margin: 0;
	width: 187px;
	height: 6px;
	background: url(/PublishingImages/top_shadow.gif) no-repeat left bottom;
}

#navBottomShadow {
	padding: 0;	
	margin: 0;
	width: 187px;
	height: 8px;
	background: url(/PublishingImages/bottom_shadow.gif) no-repeat left top;
}



#nav .navItem {
	display: block;
	width: 187px;
	height: 31px;
	line-height: 31px;
	color: #345D69;
	text-indent: 32px;
	text-decoration: none;
	background: url(/PublishingImages/button_middle.gif) no-repeat left top;
	/* background-color: #5AA1B4; */

	/*border: 2px blue solid;*/
}

#nav .navHover {
	color: #FFFFFF;
	background-position: -187px;
}

#nav .navItem .firstNav {
	padding-top: 7px;
	color: #345D69;
	text-decoration: none;
	background: url(/PublishingImages/button_first.gif) no-repeat left bottom;
	
}
#nav li.first a:hover, .selected a {
	color: #FFFFFF;
	background-position: -187px bottom;
	
}

#nav li.last a {
	height: 40px;
	color: #345D69;
	text-decoration: none;
	background: url(/PublishingImages/button_last.gif) no-repeat left top;
	
}
#nav li.last a:hover, .selected a {
	color: #FFFFFF;
	background-position: -187px top;
	
}

/*********** end NAV ***********/

#textArea {
	position: relative;
	float: left;
	width: 490px;
	margin-right: 15px;
	margin-bottom: 15px;
	background-color: #FFFFFF;
}

#graphic {
	position: relative;
	float: right;
	width: 300px;
	/* height: 250px; */
	margin-top: 7px;
	margin-bottom: 15px;
	background-color: #FFFFFF;
}

/***********  TABLE STYLES ************/

.tdBottom {
	border-bottom: #5AA1B4 solid 1px;
}
.tableHeader {
	background-color: #5AA1B4;
	border-bottom: #5AA1B4 solid 1px;
	color: #fff;
	font-weight: bold;
	font-size: 125%;
	width: 60%;
}



#footer {
	padding: 0;
	margin-top: 50px;
	height: 25px;
	background:#345D69;
	
}
#footer p {
	margin: 0;
	padding-left: 7px;
	padding-right: 7px;
	color: #ffffff;
	font-size: 75%;
	line-height: 250%;
}

#footer p a {
	text-decoration: none;
	color: #FFFFFF;
}

#footer p a:hover, .selected a {
	color: #5AA1B4;
	
}

.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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;
}
.formResponseHeaderRow
{
	border-bottom:1px black solid;
	font-weight:bold;
}
.formResponseTitle
{
	color:#5AA1B4;
	font-weight:bold;
	padding-bottom:15px;
}

/* EPPG Discussion Board Items. */

.DiscTitle
{
	font-size:14px;
	font-weight:bold;
	border-bottom: 1px black solid;
}

.DiscBody
{	
	font-style:italic;
	border-bottom: 1px gray dotted;
	font-size:11px;
}

.DiscFooter
{
	font-size:9px;
	padding-bottom:15px;
}

.DiscAddNewLink
{
	font-size:11px;
}

table tr td.ms-disc-bordered-noleft 
{
	font-family:verdana;
	font-size:11px;;
	text-align:left;
}