/* CSS Document */

/* set page background to white and text to very dark gray
 * html is included because this is the root element for
 * pages served as application/xhtml+xml */
/* the height spawns a vertical scrollbar on all pages
 * to prevent short pages jumping to the left on Firefox
 * add a color and tiled image background to the page */ 
html, body {
	height: 100%;
	color:#000000;
	margin: 0;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #000000;
  }
#container {
	position : relative;
	width : 1122px;
	margin: 0 auto;
	top: 0px;
  }
#sidebar {
	position: absolute;
	right: 0;
	width: 222px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(./images/container_bg.jpg) top right repeat;
	background-image: url(images/container_bg.jpg);
  }
/* set width of wrapper to same width as title image
 * no top or bottom margin
 * auto on both sides will center wrapper in modern browsers */
#wrapper {
	position : absolute;
	width: 900px;
	/*margin: 0 auto;*/
	left: 0;
	top: 0px;
  }
/* maincontent width is 1px smaller to account for left border */
#maincontent {
	margin: 0;
	padding: 0;
	font-size: 85%;
	background: #FFFFFF url(./images/container_bg.jpg) top right repeat;
	background-image: url(images/container_bg.jpg);
  }
/* set margins, padding, and line height for maincontent paragraphs */
#maincontent p {
	margin: 0 40px 0 40px;
	padding: 5px 0;
	line-height:1.4;
  }
/* set dimensions for level 1 and 2 headings in maincontent */
#maincontent h1, #maincontent h2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 15px;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
  }
#maincontent h1 {
  font-size: 165%;
  text-align:center;
  }
#maincontent h2 {
  font-size: 135%;
  text-align:center;
  }
#footer { } 
/* styles for the nav menu - remove padding, margin and bullets */
#nav {
	height:20px;
	background:#000000;
	color:#FFFFFF;
	font-size: 85%;
	text-align: center;
}
/* style the links in the nav list */
#nav a {
	background:#000000;
	display:block;
	margin: 0;
	text-decoration: none;
	text-align:center;
	font-variant:small-caps;
	font-size: 100%;
  }
#nav a:link {
  background:#000000;
  color: #FFFFFF;
}
#nav a:visited {
  background:#000000;
  color:#FFFFFF;
}
#nav a:hover {
  background:#000000;
  color:#FF0000;
}
#thispage a:link, #thispage a:visited {
  background:#000000;
  color:#0033FF;
} 
#thispage a:hover {
  background:#000000;
  color:#FF0000;
} 
