@charset "utf-8";
/* Colors
#2847A1 blue
#124212 green
#DDE4F7 white
#863369 pink
#777F96 gray
*/

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #81c5ea;
	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;
}
#container {
	width: 780px;  /* 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: 2px solid #2b8c3f;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	padding: 0px 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/iwheader.jpg);
	height: 106px;

}
#header h1 {
	color: #FFF;
}
#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: 10px 0 10px 0;
	color: #FFF;
	line-height: 0.5em;
}
#header p {
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.8em;
}
/* End hide */



/* Menu Start */
#nav-menu {
	padding: 0px 0px 0px 350px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.8em;
	height: 20px;
	background-image:url(Images/iwnavback.gif);
}
#nav-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#nav-menu li {
	float: left;
	margin: 0 0.5em;
}
#nav-menu li a {
	text-decoration: none;
	text-align: center;
	width: 80px;
	padding: 1px;
	display: block;
	color: #faf2c2; /*Button Text Color*/

}
#nav-menu a:visited {
	color: #faf2c2; /*Button Text Color*/
}
#nav-menu a:hover {
	color: #0F0;
	border-top: solid 1px;
	border-bottom: solid 1px;
}
#nav-menu a:active {
	color: #9F0;
}



/*
<style type="text/css">
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:active {text-decoration: none}
A:hover {text-decoration: underline; color: red;}
</style>
*/


#opening {
	background-color: #2847A1;
	clear: both;
	padding: 20px;
}
#opening h1 {
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.4em;
	color: #faf2c2;
}
	

.imageFloatRight {
	float: right;
	border: thin solid #666;
	margin: 10px;
	border-style: none;
}
.imageCaption {
	font-family: Verdana, Geneva, sans-serif;
	clear:both;
	font-size: 0.6em;
	text-align: right;
}

/* Menu End */

#mainContent {
	background: #FFFFFF;
	padding-left: 20px;
	padding-right: 20px;
}
#mainContent h1 {
	color: #aa448e;
	font-size: 1.3em;
}
#mainContent p {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.8em;
	color: #333;
	line-height: 1.5;
}
#footer {
	padding: 5px 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#aa448e;
}
#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	color: #DDE4F7;
	font-size: 0.8em;
	text-align: center;
}
#footer a {
	color: #fff;
}
#footer a:visited {
color: #ccc;
}
#footer a:hover {
	color: #0C9;
}
#footer a:active {
	color: #C36;
}
