body {/* set everything to zero for a good cross-browser starting point */
	margin: 0;/*zeroes the margins on the body*/
	padding: 0;/*zeroes the padding on the body ** Opera carries a default padding and requires this zeroing*/
	border: 0;/*zeroes off any existing border*/
	background-color: #f4dfa3;/*sets the body background colour*/
	color: #000; /*set the default text color */
	text-align: center; /* Hack to centre the wrapper in IE5.x pc */
	font-family: Verdana, Arial, Helvetica, sans-serif;/*set the default fonts */
	font-size: 100.01%;/* Sets default font size. This odd value compensates for several browser bugs. First, setting a default font size in percent (instead of em) eliminates an IE/Win problem with growing or shrinking fonts out of proportion if they are later set in ems in other elements. Additionally, some versions of Opera will draw a default font-size of 100% too small compared to other browsers. Safari, on the other hand, has a problem with a font-size of 101%. Current "best" suggestion is to use the 100.01% value for this property */
	min-width: 700px; /* Prevents the body becoming narrower than our wrapper div - keeps the content from disappearing off the left edge with Gecko browsers */
}

#wrapper {
	margin: 5px auto;/* centers the wrapper first value - 5px is applied to the top and bottom margins, auto sets the excess space on the view port evenly to the left and right*/
	width: 700px; /* sets the width of the wrapper */
	position: relative; /* important to position it relatively */
	background-color: #fcf0ca;/* sets the wrappers background color*/
	border: 0px solid #000;/* sets a border to all 4 sides */
	text-align: left;/* Realigns the text to the left after the IE hack in the body rule */
}

#header {

}

h1 {
	font-size: 145%;
	margin: 0;
	padding: 0px 10px;
}

#headerText {
	font-size: 80%;
	padding: 0 20px;
}

h2 {
	font-size: 130%;
	padding: 0px 10px;
}

p {
	font-size: 80%;
	padding: 20px;
}

.abstract {
	font-size: 80%;
	padding: 20px;
	text-align: justify;
	clear: both; /* make sure images don't overlap */
}

.abstract h2 {
	padding: 0;
}
.abstractImage {
	/*float: right;Floats the image to the */
	margin: 10px;/*sets the margins so the image sits nicely in the p elements*/
	border: 1px solid #000;/*sets a border on the image*/
  padding: 3px;
}

#footer {
	clear: both; /* make sure images don't overlap */
  background-color: #005126;
	color: #fff;
	padding: 3px;
	text-align: center;
	font-size: 60%;
}

/* NAV LISTS */

/* top */

#topNavLinks {
	text-align: center;
	padding: 10px;
}

#topNavLinks ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
/*	white-space: nowrap;*/
}

#topNavLinks ul li {
	display: inline;
	padding-right: 2px;
}

#topNavLinks .firstLink {

}

#topNavLinks ul li a {
  background-color: #005126;
	color: #fff;
	text-decoration: none;
	padding-left: 5px;
	padding-right:5px;
	font-size: 80%;
}
#topNavLinks ul li a:hover {
	text-decoration: none;
  background-color: #40841d;
}

/* bottom */

#bottomNavLinks {
	clear: both; /* make sure images don't overlap */
	text-align: center;
	padding: 10px;
}

#bottomNavLinks ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
/*	white-space: nowrap;*/
}

#bottomNavLinks ul li {
	display: inline;
	padding-right: 2px;
}

#bottomNavLinks .firstLink {

}

#bottomNavLinks ul li a {
  background-color: #005126;
  color: #fff;
	text-decoration: none;
	padding-left: 5px;
	padding-right:5px;
	font-size: 80%;
}
#bottomNavLinks ul li a:hover {
  text-decoration: none;
  background-color: #40841d;
}



#article h2 {
	padding: 0 0 0 20px;
}
.articleParagraph {
	font-size: 80%;
	padding: 0 20px 20px 20px;
	text-align: justify;
	clear: both; /* make sure images don't overlap */
}

.articleImage {
	/*float: right;Floats the image to the */
	margin: 10px;/*sets the margins so the image sits nicely in the p elements*/
	border: 1px solid #000;/*sets a border on the image*/
  padding: 3px;
  text-align: center;
}
.left {
	float: left;
}
.right {
	float: right;
}

.articleImageCaption {
  background-color: #005126;
	color: #fff;
	padding: 3px;
	text-align: center;
	font-size: 70%;
}

.displayArticleDoc {
	padding: 10px;
}

.displayArticleLink {
	padding: 10px;
}

#goBackLink {
	clear: both;
	padding: 10px;
	text-align: center;
	font-size: 80%;
}
