﻿/* 
   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: #66ff99;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border-top: 2px solid #B51032;
	font-size: small;
}

/* Header Section */

#header {
	border-top: 3px solid #B51032;
	border-bottom: 1px dotted #B51032;
	height: 4em;
}
#header .title {
	font: 120% Arial, Helvetica, Georgia, "Times New Roman", Times, serif;
	color: green;
	background-color: transparent;
	float: left;
	margin-right: 2em;
	margin-top: 0.3em;
	margin-left: .8em;
	top: 23px;
	left: 0px;
}
#header .breadcrumb {
	font: 90% Arial, Helvetica, Georgia, "Times New Roman", Times, serif;
	color: black;
	background-color: transparent;
	float: right;
	margin-right: 2em;
	margin-top: 0.8em;
	font-weight:bold;
}

#header a:link, a:visited  {
	color: #B51032;
}

/* Navigation */

#navigation {
	width: 200px;
	top: 5em;
	left: 1em;
	width: 13em;	
	position:absolute;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:90%;
}
#navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#navigation li {
	border-bottom: 1px solid #ED9F9F;
}
#navigation li a
{
	display: block;
	padding: 1px 1px 5px 0.5em;
	border-left: 12px solid #711515;
	border-right: 1px solid #711515;
	background-color: green;
	color: white;
	text-decoration: none;
}
#navigation li a:hover
{
	background-color: yellow;
	color: blue;
}
#navigation ul ul {
	margin-left: 12px;
}
#navigation ul ul li
{
	border-bottom: 1px solid #711515;
	margin: 0;
	background-color: teal;
	color: white;
}
#navigation ul ul a:link, #navigation ul ul a:visited {
	background-color: teal;
	color: white;
}
#navigation ul ul a:hover {
	background-color: yellow;
	color: blue;
}

/* Main Content */

#content 
{
	margin-top:1em;
	margin-left: 16em;
	margin-right: 2em;
}
h1 {
	font: normal normal 700 150% normal Arial, Helvetica, Georgia, Times New Roman, Times, serif;
}
#content p {
	font-size: 80%;
	line-height: 1.6em;
	text-align: left;
}

#content ul {
	font-size: 80%;
	line-height: 1.6em; 
}


/* Data Web Control Styles */

.DataWebControlStyle
{
    font-size: 90%;
}

.HeaderStyle
{
    background-color: #900;
    color: White;
    font-weight: bold;
}

.AlternatingRowStyle
{
    background-color: #fcc;
}

.RowStyle
{
}

#footer {
	height: 0.5em;
}
