@charset "UTF-8";
body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif; 	
	background: #666666;
	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;
}
.thrColAbsHdr #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 900px;  /* 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. */
	
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #header {
	height: 154px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	background: #DDDDDD;
	padding: 0 10px 0 20px;  /* 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. */
	background-image: url(images/header900_7.jpg);
	background-repeat: no repeat;	
} 
.thrColAbsHdr #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 */
}
.thrColAbsHdr #sidebar1 {
	position: absolute;
	top: 155px;
	left: 0;
	width: 130px; /* 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: #EBEBEB; the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
/*border: solid 1px #990000;*/
}
.thrColAbsHdr #sidebar2 {
	position: absolute;
	top: 157px;
	right: 14px;
	width: 260px;
	;
	float: left;
	margin-left: 615px;
}

.thrColAbsHdr #sidebar2 p {
	padding-left: 0px;
	padding-right: 0px;
}

.thrColAbsHdr #mainContent {
	border: solid 1px #fff;
	background-image: url(images/mainContent_BG.jpg);
	background-repeat: repeat-y;
	margin-top: 0;
	margin-right: 285px;
	margin-bottom: 0px;
	margin-left: 155px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
}

.thrColAbsHdr #mainContent2 {
	margin: 0 45px 0px 155px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0 10px 20px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border: solid 1px #fff;
	background-image: url(images/mainContent_BG.jpg);
	background-repeat: repeat-y;
	position: relative;
}

.thrColAbsHdr #mainContentSearch {
	margin: 0 45px 0px 45px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0 10px 20px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border: solid 1px #fff;
	
}

.thrColAbsHdr #mainContent p{
padding-left: 20px;
}
/* .thrColAbsHdr #mainContent ul li, .thrColAbsHdr #mainContent ol li {
padding-left: 20px;
}  */

ul{
	margin-left: 20px;
}


.thrColAbsHdr #contentColumn2 {
	margin: 0 200px 0px 140px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0 10px 20px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border: solid 1px #fff;
	background-image: url(images/mainContent_BG.jpg);
	background-repeat: repeat-y;
	
}
.thrColAbsHdr #contentColumn2 p{
padding-left: 20px;
}
.thrColAbsHdr #contentColumn2 ul li {
padding-left: 20px;
}
.thrColAbsHdr #contentCol2 ol li{
padding-left: 20px;
}



.thrColAbsHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#919191;

} 
.thrColAbsHdr #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: 25px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.thrColAbsHdr #footer img{
	margin: 0 70px 0 0;
}

.thrColAbsHdr #footer a{
	color: white;
	}

.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;
}
.welcome {
 
font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	position: absolute;
	margin: 128px 420px 0px;
}

.lpaLogoPlacement {

margin-top: 40px;
margin-left: 500px;
}

h1 {
font-size: 18px;
font-weight: 900;
color: #6a6a6a;
padding-left: 20px;  

}


h2 { 
font-size: 18px;
font-weight: 900;
color: #569bbe/*f4aa0b*/;
padding-left: 20px;  

}

h2.title { 
font-size: 18px;
font-weight: 900;
color: #ffffff;
margin: 0;
}

.ilTitle h2.title { 
font-size: 18px;
font-weight: 900;
color: #ffffff;
background-image: url('/greatlakeswest/images/glwIlHead.jpg');
background-repeat: no-repeat;
padding: 35px 0px 0px 110px;
margin: 0;
height: 58px;
}

.wiTitle h2.title { 
font-size: 18px;
font-weight: 900;
color: #ffffff;
background-image: url('/greatlakeswest/images/glwWiHead.jpg');
background-repeat: no-repeat;
padding: 35px 0px 0px 110px;
margin: 0;
height: 58px;
}

h2.headGradient { 
font-size: 16px;
font-weight: 900;
color: #ffffff;
background-image: url('/greatlakeswest/images/headerGradient.jpg');
background-repeat: repeat-y;
padding: 5px;
margin: 30px 0 0 0;
}

.ilTitle { 
/* background-image: url('/greatlakeswest/images/ilTitle.jpg');  */

background-repeat: no-repeat;
padding: 0px 30px 0 0;
margin: 0 0 0 10px;
width: 700px;
}

.wiTitle { 
/* background-image: url('/greatlakeswest/images/wiTitle.jpg');
background-repeat: no-repeat;  */
padding: 0px 30px 0 0;
margin: 0 0 0 10px;
width: 700px;
}

.ilTitle p{
	width: 600px;
}

.wiTitle p{
	width: 570px;
}

h3 { 
font-size: 12px;
font-weight: 900;
color: #000000; 
padding-left: 20px;   

}

h4 { 
font-size: 12px;
font-weight: 900;
color: #000000; 
padding-left: 20px;   

}



/*  Style for "Search" link */
.search{
	font-size: 9pt;
	text-decoration: underline;
	color: #fff;
	/*padding-top: 20px;*/
/*  	position:  absolute; top: 130px; left: 745px;    */
	}


/* style for Search input box */
.inputbox{
	border: 1px solid #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
/* position:  absolute; top: 130px; left: 640px;    */
	
}

#topNav{
	position: absolute;
	top: 130px;
	left: 180px;
	margin: 0;
	padding: 0;
}
#topNav ul{
		list-style-type: none;
		margin: 0;
		padding: 0;
}

#topNav li{
	margin: 0;
	padding: 0;
	font-family: verdana, arial, sans-serif;
	list-style-type: none;
	display: inline;
	padding: 0 20px;
	}

#topNav a{
	color: white;
	text-decoration: none;
}

#topNav a:hover{
	text-decoration: underline;
}
	
/*Primary Navigation - Left column*/
#navMain
	{
		margin: 0;
		padding: 0;
	}

#navMain ul
	{
		list-style-type: none;
		margin: 0;
		padding: 0;
	}

#navMain li 
	{
	margin: 0;
	padding: 0;
	font-family: verdana, arial, sans-serif;
	list-style-type: none;
	
	}

#navMain a 
	{
		display: block;
		color: #003366;
		padding: 3px 5px 3px 5px;
		text-decoration: none;
		border-left: 3px solid #fff;
		border-bottom: 1px solid #ddd;
	}

#navMain a:hover {
	border-left: 3px solid #f4aa0b;
	}

#navMain li ul li a{
	margin: 0;
	padding: 0;
	padding-left: 15px;
	}
	

#navMain ul ul li a{
	margin: 0;
	padding: 0;
	padding-left: 25px;
	}



#navMain  li li li{
	margin: 0;
	padding: 0;
	/* margin-left: -30px;  */
	}
	
#navMain ul li a
	{ /*This sets rules for the sub-buttons*/
		padding: 0;
		/* margin-left: -30px;  */
		background-color: #ffffff;
		padding: 3px 3px 3px 3px;
		text-decoration: none;
		/* border-bottom: 1px solid #fff;  */
	}

#navMain ul li a.nav2
	{
		background-color: #ffffff;
		font-weight: bold;
	}
.nav2
	{
		background-color: #ffffff;
		font-weight: bold;
	}
	
.homePhoto {
	width: 252px;
	border-top: 24px solid #FF9900;
	padding: 1px;
	background-color: #666666;
	}
	
#sidebar2 news{
	position: absolute;
	top: 155px;
	right: 0;
	width: 300px;
	
	}
	



	

