/* Define the background color and fonts - ie. the color & font for the area surrounding the outside of the main table
   The max-width is for Firefox, to let it know how wide the page should be - this is the maximum
   width of the main content table. */

body {
  max-width: 1050px;
  min-width: 900px;
  background-color:#cccccc; 
  font-family:Arial,Verdana,sans-serif;
  font-size:81.25%;
  color:#fff;
  margin:auto;
  padding:0;
  text-align:center
}

h1 {
	font-family:Arial,Verdana,sans-serif;
	font-size:1.4em;
	font-weight:bold;
	color:#fff;
	text-align:center;
	margin-top:0;
	margin-bottom:16px;
}

h2 {
	font-family:Arial,Verdana,sans-serif;
	font-size:1.1em;
	font-weight:bold;
	color:#000;
	margin-top:0;
	margin-bottom:10px;
}
	
h3 {
	font-family:Arial,Verdana,sans-serif;
	font-size:1.0em;
	font-weight:bold;
	color:#000;
	margin-top:0;
	margin-bottom:10px;
}

h4 {
	font-family:Arial,Verdana,sans-serif;
	font-size:1.0em;
	font-weight:bold;
	color:#000066;
	margin-top:0;
	margin-bottom:5px;
}

p {
	margin-top:0;
	margin-bottom:16px
}

/* As we are using a table based layout, all the text is within a table.
   So this is the area to change the size, color and font family. */

table {
  font-family:Arial,Verdana,sans-serif;
  font-size:1.0em;
  border-collapse:collapse;
	margin:0;
	padding:0;
  color:#000;
  text-align:justify;
  line-height:1.3;
}

/* The width:expression part is for internet explorer, which doesnt understand max-width commands.
	 So this works WITH the max-width at the top of this page. If you change that to say 1050px,
	 change both occurrences here to 1050px as well - Otherwise those using IE wont get the width
	 constraint....their page would expand indefinitely! Firefox will ignore this part, and IE will
	 ignore the max-width part....you need both of them. */

.main-table {
	table-layout:fixed;
	width:expression(document.body.clientWidth > 1052? "1050px": "auto" );
	width:expression(document.body.clientWidth < 898? "900px": "auto" );
	background-color:#fff;
	text-align:center;
	margin:0;
	padding:0;
	border-style:none;
}

/* Define the background colors for the main table cells */

td.spacerbg {
	background-color:#e8e8e8;
	height:1px;
	width:160px;
	padding:0
}

td.contentbg {
	background-color:#fff; 
  vertical-align:text-top;
}

td.leftbg {
  font-size: 0.95em;
  background-color:#e8e8e8;
  padding:6px;
  vertical-align:text-top;
}

td.rightbg {
  font-size: 0.9em;
  background-color:#fff;
  padding:15px 8px 0 8px;
  align:center;
  vertical-align:text-top;
}

td.footerbg {
  font-size: 0.85em;
  background-color:#fff;
}

/* Define the link text */

a {
	font-family:Arial,Verdana,sans-serif;
  font-size:1.0em;
  color:#000099;
  text-decoration:underline;
}

a:hover {
	font-family:Arial,Verdana,sans-serif;
  font-size:1.0em;
  color:#fff;
  background-color:#000066;
}

/* information below is to remove the link styling for anchor links */

a.jumplink {
  font-size:1.0em
  color:#000;
  background-color:transparent;
  text-decoration:none;
}

a:hover.jumplink {
  font-size:1.0em
  color:#000;
  background-color:transparent;
  text-decoration:none;
}

a.BreadCrumblink {
  font-size:0.85em;
  color:#000;
  background-color:transparent;
  text-decoration:underline;
}

a:hover.BreadCrumblink {
  font-size:0.85em;
  color:#fff;
  background-color:#000;
  text-decoration:underline;
}
