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: #fff;/*sets the body background colour*/
  color: #666; /*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: 778px; /* 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: 778px; /* sets the width of the wrapper */
  position: relative; /* important to position it relatively */
  background-color: #fff;/* sets the wrappers background color*/
  border: 1px solid #3d6694;/* 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;
  color: #0063a4;
  font-style: italic;
}

#headerText {
  font-size: 80%;
  padding: 0 20px;
}

h2 {
  font-size: 130%;
  padding: 0px 10px;
  color: #0063a4;
}

p {
  font-size: 75%;
  padding: 20px;
}

.abstract {
  font-size: 70%;
  padding: 20px;
  text-align: justify;
  clear: both; /* make sure images don't overlap */
  line-height: 150%;
}

.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: #000;
  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: #0b78b3;
  color: #fff;
  text-decoration: none;
  padding: 2px;
  font-size: 70%;
}
#topNavLinks ul li a:hover {
  text-decoration: none;
  background-color: #239fd5;
  color: #fff;
}

/* bottom */

#bottomNavLinks {
  clear: both; /* make sure images don't overlap */
  text-align: center;
  padding: 10px;
  background-color: #fff;
}

#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: #fff;
  color: #0164A4;
  text-decoration: none;
  padding-left: 2px;
  padding-right:2px;
  font-size: 70%;
}
#bottomNavLinks ul li a:hover {
  text-decoration: underline;
  background-color: #fff;
  color: #CC9966;
}



#article h2 {
  padding: 0 0 0 20px;
}
.articleParagraph {
  font-size: 70%;
  padding: 0 20px 20px 20px;
  text-align: justify;
  clear: both; /* make sure images don't overlap */
  line-height: 150%;
}

.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: #ccc;
  color: #000;
  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%;
}
