html {
	height: 100%;
}

body {
	margin: 0px;
	background: #E0E4CC;
	font-family: Helvetica, sans-serif;
	height: 100%;
}

a {
	color: #F38630;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

div#water {
	width: 100%;
	height: 95%;
	background: #A7DBD8;
	z-index: -1;
	position: absolute;
}

/* Content divs */

div.content {
	background: #fff;
	width: 757px;
	height: 100%;
	margin: 0 auto;
	overflow-y: auto;
	overflow-x: hidden;
}

div.sectionheader {
	margin: 10px;
	font-weight: bold;
	font-variant: small-caps;
	font-size: 16pt;
}

div.sectionheader a {
	color: #000;
}

div.sectionheader a:hover {
	text-decoration: none;
}

div.sectioncontent {
	margin: 20px 50px;
}

div.sectioncontent span {
	font-weight: bold;
}

div.sectioncontent span.italics {
	font-style: italic;
	font-weight: normal;
}

/* Formatting hacks */

.hidden {
	display: none;
}

div.clear {
    width: 100%;
    height: 1px;
    margin: 0 0 -1px;
    clear: both;
}

div#spacer {
	float: left;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	padding: 0px 9px;
	width: 281px;
	height: 5px;
}

div#footerspacer {
	height: 120px;
}

div#gradient {
	width: 730px;
	height: 50px;

	/* webkit example */
	background-image: -webkit-gradient(
	  linear, left top, left bottom, from(rgba(255, 255, 255, 0)),
	  to(rgba(255, 255, 255, 1.0))
	);

	/* mozilla example - FF3.6+ */
	background-image: -moz-linear-gradient(
	  top,
	  rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 1.0) 95%
	);

	/* IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.gradient(
	  gradientType=0, startColor=0, endColorStr=#FFFFFF
	);

	/* IE8 uses -ms-filter for whatever reason... */
	-ms-filter: progid:DXImageTransform.Microsoft.gradient(
	  gradientType=0, startColor=0, endColoStr=#FFFFFF
	);
}

/* Navigation bar */

img#logo {
	float: left;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	padding: 0px 9px;
	background: #69D2E7;
}

ul#list-nav {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	width: 760px
}

ul#list-nav li {
	display: inline
}

ul#list-nav li a {
	text-decoration: none;
	font-weight: bold;
	padding: 10px 0px;
	width: 150px;
	background: #69D2E7;
	color: #000;
	float: left;
	text-align: center;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

ul#list-nav li a:hover {
	background: #FA6900;
	color: #000
}

ul#underline-nav {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	width: 760px;
}

ul#underline-nav li {
	display: inline;
	float: left;
	text-decoration: none;
	width: 150px;
	height: 5px;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;	
}

ul#underline-nav li.selected {
	background: #F38630;
}

/* Figures and captions */

div.caption {
	margin: 0px auto;
	margin-top: 10px;
	font-weight: bold;
	text-align: center;
}

img.figure {
	margin: 0 auto;
	margin-top: 20px;
	display: block;
}

/* Footer */

div#footer {
	position: absolute;
	bottom: 0;
	width: 730px;	
	padding: 0;
	font-size: 10pt;
	text-align: center;	
}

div#footercontent {
	background: #fff;
	padding: 10px 0px 10px 25px;
}

div#footer hr {
	border: 0 none;
	color: #A7DBD8;
	background: #A7DBD8;
	height: 2px;
}

div#footer span {
	font-weight: bold;
	color: #FA6900;
	font-size: 14pt;
}

div#footer span.hidden {
	font-weight: normal;
	font-size: 10pt;
	color: #F38630;
	display: inline;
}

div#footer span.email {
	display: none;
}

div#footer a {
	font-weight: bold;
}

/* Pop up */

#blanket {
	background-color: #111;
	opacity: 0.65;
	filter: alpha(opacity=65);
	position: fixed;
	z-index: 9001;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

div.popUpDiv {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 9002;
}