﻿/*index.css*/

/* Page header style */
#header{
     position: fixed;
     top: 0; left:0;
     width: 100%;
     background-color: #6A0000; /*deep red */
     background-repeat: repeat;
     border-bottom: ridge #E6E6FA;
     padding-top: 4px;
     padding-bottom: 4px;
     margin: 0;
     padding: 0;
}

/* Style rule for the page body */
#body {
	background-color: #6A0000; /*deep red */;
	font-family: Papyrus, Arial, sans-serif;
	text-align: center;
	color: #C0C0C0;
}

/* Style for main content column */
#main{
	margin-top: 6em;
	margin-right: 1em;
	margin-bottom: 1em;
	margin-left: 10em;
	font-size: 18px;
	font-family: Papyrus, Arial, sans-serif;
	color: #C0C0C0;
	text-align: center;
}

/* Style for sidebar column */
#sidebar{
	position: fixed;
	margin-top: 7em;
	margin-left: 2em;
    top:0; left:0;
    float: left;
	display: inline;
	padding: 0;
	width: 10em; /* Total width is 10em */;
	font-family: Papyrus, Arial, sans-serif;
	color: #C0C0C0;
	text-align: left;
	font-weight: bolder;
	font-style: normal;
	font-variant: normal;
	text-transform: capitalize;
	line-height:1.75
}


/* Page footer style */
#footer{
	padding: 4px;
	clear: both;
	width: 100%;
	font-size: 8pt;
	font-family: Papyrus, Arial, sans-serif;
	background-color: #6A0000; /*deep red */;
	border-top: ridge #E6E6FA;
	color: #C0C0C0;
}