/*
 * General stylings
 */
html {
    background: #A5B5DE url('../images/gradiant.gif') fixed repeat-x top left;
}
html body {
    margin: 0; padding: 0;
    color: black; 
	font-family: Verdana, sans-serif;
	font-size: 90%;
    vertical-align: top;
 	background: url('../images/snowflake.jpg') fixed no-repeat top right;
	min-height: 640px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, "New Century Schoolbook", Times, serif;
	margin: .5em 1em 0 1em;
	font-variant: small-caps;
	padding: 0;
}
h1 {
	font-size: 160%; font-weight: bold;
	text-align: center;
}
h2 {
	font-size: 140%; font-weight: bold;
}
h3 {
    font-size: 140%; font-style: italic;
}
h4 {
    font-size: 120%; font-weight: bold;
}
h5 {
    font-size: 120%; font-style: italic;
}
h6 {
    font-size: 100%; font-weight: bold;
}
p {
	margin: .5em 1em 0 1em;
	padding-bottom: .75em;
	line-height: 1.4em;
}
ol, ul {
	margin: .5em 4em 0 6em;
	padding: 0;
}
a, a:visited, a:active, a:link {
	color: #800000;
	font-weight: bold;
	text-decoration: none;
}
a:hover, a:focus {
	color: #800000;
	text-decoration: underline;
}
.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.smallPrint {
	font-family: Verdana, sans-serif;
	font-size: 75%;	
}
table tr td.value {
	text-align: left;
	vertical-align: top;
	padding-left: .25em;
}
table tr td.label {
	text-align: right;
	vertical-align: top;
}
blockquote {
	margin: 1.5em auto;
	padding: 0;
	width: 75%;
	border: 0;
	border-left: 1px dotted #222;
	font-style: oblique;
}
blockquote.error {
	padding: 3px;
	color: red;
	font-style: normal;
	font-size: 100%;
	border: 1px solid #222;
	background-color: #DDD;
}

/*
 * Everything div: holds all content, header, footer, sidebars, etc.  Basically,
 * this is the div for the whole page
 */
#everything {
    margin-left: auto; margin-right: auto;
    padding-top: 10px;
	position: relative;
	max-width: 758px;
    background: url('../images/trans-20.png') repeat top left;
}

/*
 * Content div holds all content in a given page.  It does not include the header, 
 * footer, or menu divs.
 */
#content {
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	padding-bottom: 10px;
}

/*
 * Sidebars
 */
.sidebar {
    width: 25%;
    float: right;
    background-color: rgb(225,225,225);
    font-size: 85%;
    margin: 0 0 5px 5px;
    border: 1px dotted black;
    border-right: 0;
}
.sidebar h1, .sidebar h2, .sidebar h3, .sidebar h4,
.sidebar h5, .sidebar h6, .sidebar p {
	margin-left: 10px;		/* Less room, so less margin, but leave top */
	margin-right: 5px;		/* and bottom untouched */
}
.sidebar ul, .sidebar ol {
	margin: 0;
	padding: 0 0 0 25px;
}
.sidebar ul li, .sidebar ol li {
	line-height: 1.2em;
	padding-bottom: 10px;
}

/*
 * Header
 */
#header {
    height: 6.25em;
    margin: 0; padding: 0;
}
#header h1 {
    margin: 0 auto 0 auto; 
    padding: 0;
}
#header h1 a {
	color: #FFF;
    text-decoration: none;
    text-align: right;
    font-size: 175%;
    line-height: 40px;
    margin-right: 5%;
}
#header h1 a:hover, #header h1 a:focus {
    color: rgb(226,222,245);
}


/*
 * Footer
 */
#footer {
    clear: both;
    text-align: center;
    margin: 0;
    padding: 8px 0 8px 0; 
    z-index: 2;
}
#footer p {
    margin: 0; padding: 0;
	font-family: Verdana, sans-serif;
    font-size: 70%;
    line-height: 100%;
}

/*
 * Menu
 */
#menu {
	position: absolute;
	top: 4.25em;
	margin: 0 auto 0 auto;
	z-index: 3;
}
#menu ul {
    margin: 0 0 0 0%; padding: 0;
	height: 2em;
    padding-left: 2px;		/* Make up for rounding in ul li width calculation */
}
#menu ul li {
    background-color: #E2DEF5;
    border: 1px solid rgb(52,38,132);
	list-style: none;
    white-space: nowrap;
    text-align: center;
	position: relative;
    margin-left: -1px;
    float: left;
    width: 150px;			/* everything width = 758px.  Minus 5px (borders), divided by 5 */
}
#menu ul li a,
#menu ul li a:link,
#menu ul li a:visited {
    text-decoration: none;
	font-weight: normal;
	color: #000;
    display: block;
    padding: 3px 5px 3px 5px;
}
#menu ul li a:hover, #menu ul li a:active {
    background-color: rgb(52,38,132);
    color: white;
	text-decoration: none;
}
#menu ul li.active {		/* Current page indicator */
    background-color: #7B89CB;
}
#menu ul li.active a {
	color: white;
	font-weight: bold;
}

/*
 * Comment form
 */
div.feedback {
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #CCC;
}
div.feedback p {
	width: 96%;
	margin: 0 2% 0 2%;
	padding: 3px 0 0 0;
	text-align: center;
}
div.feedback input {
	margin: 2px 0 0 3px;
	width: 45%;
}
div.feedback input.submit {
	width: 20%;
	padding-left: 5px;
	padding-right: 5px;
	margin-left: auto;
	margin-right: auto;
}
div.feedback textarea {
	width: 98%;
}