/*screen.css*/
/*Main stylesheet for screen, and standard fontsize stylesheet*/

/*Universal settings to make positioning work*/
* {	margin: 0px;
	padding: 0px;
}

/*Formatting of body and background - main background colour can be changed here*/
html, body {
	height: 100%;
	background-color: #FFE6BF; 
}

/*Formatting of container for header and main text - does not include footer*/
#container {
	min-height: 100%;
	overflow: auto;
	}

/*Formatting of header, including background image*/
#logo
{	position: absolute;
	top: 0;
	width: 100%;
	height: 200px;
	padding-bottom: 0;
	margin-bottom: 0;
	background: url(../images/sunrise_bg.jpg) repeat left top;
}

/*Formatting for the navigation menu*/
#navlist /*Formats the entire div*/
{ position:absolute;
top:200px;
left:0px;
margin-left: 0;
font: bold 0.8em Verdana, sans-serif;
width: 20%;
float: left;
padding-bottom: 3em;
}

#navlist li /*Formats the items in the list*/
{ list-style: none;
margin: 0;
border-top: 1px solid #B30600;
border-right: 1px solid #B30600;
text-align: left;
}

#navlist li a /*Formats the links in the list*/
{ display: block;
padding: 0.25em 0.5em 0.25em 0.75em;
border-left: 1em solid #FF0800;
background: #F2ACAA;
text-decoration: none;
}

#navlist li a:link { color: #B30600; }
#navlist li a:visited { color: #B30600; }

#navlist li a:hover
{ border-color: #FF8480;
color: #FF8480;
background: #B30600;
}

#navlist li a.bottom /*Puts bottom border on last item in list*/
{	border-bottom: 1px solid #B30600;
}

#navlist li a.current /*Formats the link for the page being viewed*/
{
	background: #B30600;
	border-color: #FF8480;
color: #FF8480;
}

#navlist li a.sub /*Formats the link for a sub-page not shown on all menus*/
{	background: #F2ACAA;
border-left: 1.8em solid #FF0800;
color: #B30600;
}

#navlist li a.sub:hover{
border-color: #FF8480;
color: #FF8480;
background-color: #B30600;	
}

#navlist li a.subcurrent{
border-left: 1.8em solid;
border-color: #FF8480;
color: #FF8480;
background: #B30600;	
}
/*End of navigation formatting*/

/*Formatting for links to increase and decrease font size*/
div.fontlinks {
	text-align: right;
}

.fontsize ul
{
margin-left: 0;
padding-left: 0;
white-space: nowrap;
}

.fontsize li
{
display: inline;
list-style-type: none;
font-size: 0.6em;
	font-family: Verdana, sans-serif;
	color: #B30600;
}

.fontsize a { padding: 3px 10px;
text-decoration:none; }

.fontsize a:link, .fontsize a:visited
{
color: #B30600;
background-color: #F2ACAA;
text-decoration: none;
}

/*Formatting for main content area*/
#maincontent
{
	margin-left: 20%;
	margin-top: 200px;
	padding-top: 1em;
	padding-left: 2em;
	padding-right: 2em;
	padding-bottom: 3em;
	clear: both;
}

#maincontent li.normal {
	list-style: none;
	margin-left: 3em;
	color: #B30600;
	font: 0.9em Verdana, sans-serif;
	line-height: 1.3;
}

/*Formatting of counter*/
#counter
{
	background-color: #F2ACAA;
	color: #B30600;
	margin-top: -4em;
	position: relative;
}

/*Formatting of footer*/
#footer
{
	background-color: #F2ACAA;
	color: #B30600;
	height: 2em;
	margin-top: -3em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	position: relative;
	font: 0.8em Verdana, sans-serif;
	text-align: center;
}

/*Formatting for text in general*/

p {
	font: 0.9em Verdana, sans-serif;
	line-height: 1.5;
	color: #B30600;
	padding-bottom: 0.8em;
}

p a {
	background-color: #F2ACAA;
	padding: 2px;
	color: #B30600;
	}

h1 {
	color: #B30600;
	font: bold 2.2em Verdana, sans-serif;
	padding-bottom: 0.6em;
	}
	
h2 {
	color: #B30600;
	font: 1.5em Verdana, sans-serif;
	font-style: italic;
	padding-bottom: 0.5em;
	padding-top: 1em;
}

 abbr, acronym, span.abbr {
  cursor: help;
  border-bottom: 1px dashed #000;
}

label {  
display: block;
font: 0.9em Verdana, sans-serif;
color: #B30600;
}

.center {
	text-align: center;
}