﻿/* 
   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;			/* The Background Colour of the main page itself */
	background-image: url(bgimage.jpg); size: 100%; position: center;
	color: #000000;						/* The Text Colour of the main page itself */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border-top: 2px solid #009ACD;
}

/* Header Section */

#header {
	border-top: 3px solid #009ACD;		/* The main top border at the head of the page that contains the main heading */
	border-bottom: 1px dotted #009ACD;	/* The main bottom (dashed) border at the head of the page that contains the main heading */
	height: 3em;
}
#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;
}
#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: #009ACD;
}

/* 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 #009ACD;	/* The bottom border under each main level navigation item */	
}
/* Main level navigation */
#navigation li a  {
	display: block;
	padding: 5px 5px 5px 0.5em;
	border-left: 12px solid #009ACD;	/* Background Colour of the left hand border */
	border-right: 1px solid #009ACD;	/* Background Colour of the right hand border (thin line to the right) */
	background-color: #ADD8E6;			/* Background Colour of the main navigation that contains the main headings */
	color: black;						/* Text Colour of the main navigation that contains the main headings when NOT hovering */
	text-decoration: none;
}
/* Main level navigation - hover */
#navigation li a:hover {
	background-color: #009ACD;			/* Background Colour on hover */
	color: #FFFFFF;						/* Text Colour on hover */
}
/* Second level navigation */
#navigation ul ul {
	margin-left: 12px;
}
/* Second level navigation on hover */
#navigation ul ul li {
	border-bottom: 1px solid #009ACD;
	margin:0;
	background-color: #ADD8E6;
	color: black;
}
/* Second level navigation link and visited colours */
#navigation ul ul a:link, #navigation ul ul a:visited {
	background-color: #ADD8E6;
	color: black;
}
/* Second level navigation on hover */
#navigation ul ul a:hover {
	background-color: #009ACD;
	color: #FFFFFF;
}

/* Main Content */

#content 
{
	margin-top:1em;
	margin-left: 16em;
	margin-right: 2em;
}
h1 {
	font: 150% Arial, Helvetica, Georgia, "Times New Roman", Times, serif;
}
#content p {
	font-size: 80%;
	line-height: 1.6em; 
}

#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
{
}