/*
General styles that apply to all pages. This file contains styles for:
1. the banner area
2. the sidebar & menu.
3. general content area.


pale blue: #F2F6FF
mid blue:  #9DBDFF

*/

body
{
	background-color: white;
	color: navy;
	font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: small;
}

h1
{ 
	font-family : Verdana, Arial, Helvetica, sans-serif;
  font-size: large;
	font-weight: bold;
	text-transform: lowercase;
}

h2
{ 
	font-family : Verdana, Arial, Helvetica, sans-serif;
  font-size: medium;
	font-weight: bold;
	text-transform: lowercase;
}

h3
{ 
	font-family : Verdana, Arial, Helvetica, sans-serif;
  font-size: small;
	font-weight: bold;
	text-transform: lowercase;
}

a:hover
{
	background-color: #DDE8FF;
	color: red;
}

a.imagelink
{
  background-color: Transparent;
}

img
{
	border: none;
}

/* banner styles */

#banner
{
  background-color: white;
	color: navy;
	border-style: outset;
}

/* sidebar styles */

#sidebar
{
	background-color: white; /*#D1E0FF;*/
	color: #000380;
	position: absolute;
	left: 1ex;
	top: 80px;
	width: 25ex;
	padding: 1em 1ex;
}

/* menu styles */

#sidebar #menu
{
	background-color: #FDFFF2;
	color: #000380;
	border-style: outset;
	margin: 0;
}

#sidebar #menu dl
{
	margin: 0;
}

#sidebar #menu dt
{
	color: red;
	font-weight:bold;
	margin: 0.25em 1ex;
	text-transform: lowercase;
}

#sidebar #menu dt a:link,
#sidebar #menu dt a:visited,
#sidebar #menu dt.heading
{
	color: navy;
	display: block;
	text-decoration:none;
}

#sidebar #menu dt a:hover
{
	color: red;
}

#sidebar #menu dd
{
	color: red;
	margin: 0.25em 1ex 0.25em 3ex;
	padding: 0;
	text-transform: lowercase;
}

#sidebar #menu dd a:link,
#sidebar #menu dd a:visited
{
	color: navy;
	display: block;
	margin-left: -2ex;
	padding-left: 2ex;
	text-decoration:none;
}

#sidebar #menu dd a:hover
{
	color: red;
	margin-left: -2ex;
	padding-left: 2ex;
}

#sidebar #copyright
{
	margin-top: 1em;
  font-size: x-small;
}

/* main content styles */

#content
{
  background-color: white;
  top: 80px;
	margin: 1em 0ex 0em 27ex;
	padding: 1em 1ex;
}

/* general table style */

table
{
	border-collapse:collapse;
	width: 100%;
}

tr
{
	text-align: left;
	vertical-align: top;
}

th, td
{
	padding: 0.5em 1ex 0.5em 1ex;
}

