/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
    color: #000000;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-image: url(../images/nwnbackground.gif);
    background-position: center top;
	background-repeat: repeat-y;
}

table.center {
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	border: 0;
    background-color: #FFFFFF;
}

table.login {
	margin-left: auto;
	margin-right: 20px;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	border: medium ridge #004984;
    background-color: #FFFFFF;
}

table.text {
    text-align: left;
	font-size: 1em;
}

img.header {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1em;
}

#content {
	position: static;
	top: 0px;
	left: 0px;
	width: 100%;
	margin: 0;
	padding: 10px 0 0 0;
}

#content h1 {
    font: bold 2em Arial, Helvetica, sans-serif;
	color: #006699;
	margin: 0;
	padding: 0 0 20px 0;
	text-align: center;
	line-height: 1em;
}

#content h2 {
    font: bold 1.7em Arial, Helvetica, sans-serif;
	color: #006699;
	margin: 0;
	padding: 0 0 20px 0;
	text-align: center;
	line-height: 1em;
}

#content h3 {
	font: bold 1.4em Arial, Helvetica, sans-serif;
	color: #006666;
	margin: 0;
	padding: 0;
	line-height: 1em;
}

#content h4 {
    font: bold 1em Arial, Helvetica, sans-serif;
	color: #009999;
	margin: 0;
	padding: 0;
	line-height: 1em;
}

#content h5 {
    font: italic 1em Arial, Helvetica, sans-serif;
	color: #009999;
	margin: 0;
	padding: 0;
	line-height: 1em;
}

#content h6 {
    font: italic 1em Arial, Helvetica, sans-serif;
	color: #009999;
	margin: 0;
	padding: 0 20px 0 0;
	line-height: 1em;
}

#content p {
	font: normal 1em Arial, Helvetica, sans-serif;
	line-height: 1.1em;
	margin: 0 10px 1.25em 0;
	color: #000000;
}

#nav {
    position: relative;
	margin: 0;
	padding: 0;
	border: 0;
}

#nav p {
    text-align: center;
	margin: 5px 0 5px 0;
	padding: 0;
}

#nav img {
    margin: 0;
	padding: 0;
	border: 0;
}

a:link {
	color: #009999;
	text-decoration: underline;
}

a:visited {
	color: #009999;
	text-decoration: underline;
}

a:hover {
	color: #FF1A1A;
	text-decoration: underline;
	cursor: hand;
}

p.address {
	color: #003366;
	font: bold 1em Arial, Helvetica, sans-serif;
	text-align: right;
	margin: 20px 10px 1.25em 0;
}

p.logo {
    margin: 10px 0 0 0;
	border: 0;
	padding: 0;
	text-align: center;
}

table.masthead {
	font: bold .76em Arial, Helvetica, sans-serif;
	margin: 10px 0 20px 0;
	padding: 0;
	line-height: 1em;
}

.offset1 {
    padding-top: 5px;
}

.pdf {
	color: #FF0000;
	font-weight: bold;
	font-style: normal;
}

