﻿/* 
   The below CSS file was built using samples + techniques described by Rachel Andrew in her book:
   The CSS Anthology: 101 Essential Tips, Tricks & Hacks
*/

/* Overall Page */

body
{
    margin: 0;
    padding-bottom: 2em;
    background-color: #FFFFFF;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    border-top: 2px solid #B51032;
    border-color: #B51032;
    border-top-style: none;
}

/* Header Section */

#header {
	border-top: 3px solid #B51032;
	border-bottom: 1px dotted #B51032;
	height: 86px;
	display: none;
}
#header .title {
	font: 190% Arial, Helvetica, Georgia, "Times New Roman", Times, serif;
	color: black;
	background-color: transparent;
	float: left;
	margin-right: 2em;
	margin-top: 0.3em;
	margin-left: .8em;
    width: 370px;
    display: none;
}
#header .breadcrumb
{
    font: 90% Arial, Helvetica, Georgia, "Times New Roman" , Times, serif;
    color: #000000;
    background-color: transparent;
    float: right;
    margin-right: 2em;
    margin-top: 0.8em;
    font-weight: bold;
    display: none;
}

#header a:link, a:visited  {
	color: #B51032;
	display: none;
}

/* Footer */

#footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1.5em;
	background-color: #B51032;
	color: #FFFFFF;
	border-top: #778899;
	text-align: center;
	display: none;
}

#footer a:link, #footer a:visited {
	padding: 0.8em 1em 0.5em 1em;
	color: #FFFFFF;
	background-color: transparent;
	font-size: 80%;
	display: none;
}


/* Navigation */

#navigation
{
    width: 200px;
    top: 5em;
    left: 1em;
    width: 13em;
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 90%;
    text-decoration: blink;
    display: none; 
}
#navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
}
#navigation li {
	border-bottom: 1px solid #ED9F9F;
	display: none;
}
#navigation li a:link, #navigation li a:visited
{
    display: block;
    padding: 5px 5px 5px 0.5em;
    border-left: 12px solid #711515;
    border-right: 1px solid #711515;
    background-color: #B51032;
    color: #FFFFFF;
    text-decoration: none;
    display: none;
}
#navigation li a:hover
{
    background-color: #711515;
    color: #FFFFFF;
    display: none;
}
#navigation ul ul {
	margin-left: 12px;
	display: none;
}
#navigation ul ul li {
	border-bottom: 1px solid #711515;
	margin:0;
	display: none;
}
#navigation ul ul a:link, #navigation ul ul a:visited {
	background-color: #ED9F9F;
	color: #711515;
	display: none;
}
#navigation ul ul a:hover {
	background-color: #711515;
	color: #FFFFFF;
	display: none;
}

/* Main Content */

#content
{
    margin: 1cm 2cm 2cm 1cm;
}
h1
{
    font: 24px Arial, Helvetica, Georgia, 'Times New Roman' , Times, serif;
    text-align: center;
}
#content p
{
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
}
#navigation
{display: none;
}
h2
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-align: center;
}
h3
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: left;
}
h4
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: left;
}


