/* stylesheetwatersedge.css */

/* Body text and page background */
body{
	margin: 0;
	padding: 0;
	background-color:#e3ffff;    /* pale yellow tan */
	
	color: #077c7c;               /* deep navy */   
}

/* Page Header style */
#header{
	width: 100%;
	height: 297px;
	background-color: #e3ffff;
	color: #077c7c;
	font-family: Georgia, 'Lucida Bright', serif;
	font-size: 3.5em;
	font-weight: bold;
	font-style: italic;
	line-height: 1em;
	text-align: center;
	border-bottom: thin solid #077c7c;
}

/* Style for Main content column */
#main{
	margin: 1em;	/* top bottom and right*/
	margin-left: 12em;
	font-family: Georgia, 'Lucida Bright', serif;
	color: #077c7c;
}	

/* Style for Sidebar column */
#sidebar{
	float: left;
	display: inline;
	padding: 0;
	margin: 1em;
	width: 10em;
	background-color: #FFeaff;
	color: #077c7c;
	font-family: Geneva, Tahoma, serif;
	line-height: 2.5em;
}

/* Page Footer style */
#footer{
	clear: both;	/* this will keep footer from moving up on page */
	width: 100%;
	height: 30px;
	margin: 1em;
	padding: 1em;
	border-top: thin solid #077c7c;
	font-family: Georgia, 'Lucida Bright', serif;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
}

/* style rule for level 2 headings */
h2{
 	color: #06526f;               /*  */
	text-align:center;
	font-family: Georgia, 'Lucida Bright', serif;
}


/* style rule for level 1 headings */
h1{
 	color: #077c7c;               /*  */
	text-align:center;
	font-family: Georgia, 'Lucida Bright', serif;
}

/* style rule for level 3 headings */
h3{
 	color: #06526f;               /* navy blue */
	text-align:center;
	font-family: Georgia, 'Lucida Bright', serif;
}

/* Unvisited links */
a:link{
	color:#09938b;
	text-decoration: none;
}

/* Visited links */
a:visited{
	color:#294300;
	text-decoration: none;
}

/* Hover links */
a:hover{
	color:maroon;
	text-decoration: underline;
}

/* Active links */
a:active{
	color: #294300;
	text-decoration: underline;
}



/* Center image between margins */
div.center{
   width: 100%;
   text-align: center
}