﻿@import url("layout.css");
body {
	font-family: "Times New Roman";
	font-size: medium; /*This seems to affect button and footer font size and anything else not predefined lower down*/;
	color: #000;
}
#container {
	width: 100%;
	height: 100%;
	background-image:url('../theme_images/exptextb.JPG');
	/*This is sufficient for the whole page*/
}
#masthead {
	width: 100%;
	overflow: hidden;
	text-align: right;
}
#page_content {
	position: relative;
}
#navbar {
	position: relative;
	float: left;
	width: 100%;
}

#content {
	position: relative;
	width: 100%;
	padding: 10px;
	text-align: left;
	font-family: Arial, sans-serif;
	font-size: 12pt;
	color: #000;
}	

#footer {
	clear: both;
	width: 100%;
	/*float: left;*/
	overflow: auto;
	padding-top: 1%;
	padding-right: 0;
	padding-bottom: 1%;
	padding-left: 1%;
	text-align: left;
}


#masthead img {
	float: left;
}

#masthead p {
	font-size: 12pt; /*This seemed to affect size of Content paragraphs!!?*/
	margin: 0;
	margin-right: 1%;
}
#content p {
	/*Must ensure that this follows Masthead othervise <p> will adopt that style!*/
	font-family: Arial, sans-serif;
	font-size: 12pt;
	color: #000;
}

h1,h2,h3,h4,h5,h6 {
	font-family: Arial Black;
}

p {
	font-family: Arial, sans-serif;
	font-size: 12pt;
}

#footer p {
	font-size: x-small;
}

#footer a {
	color: red;
	text-decoration: underline;
}

#footer a:link { 
	color: maroon;
	text-decoration: underline;
}

#footer a:visited {
	color: maroon;
	text-decoration: underline;
}

#footer a:hover {
	color: red;
	text-decoration: none;
}

#content a:link {
	color: blue;
	text-decoration: underline;
}

#content a:visited {
	color: blue;
	text-decoration: underline;
}

#content a:hover {
	color: red;
	text-decoration: none;
}

.style_bold {
	font-weight: bold;
}

.style_italic {
	font-style: italic;
}

/* Validated by W3C CSS Validation Service */

/* set button menu position Not sure what each does?!*/
dl#menu	{ position: absolute; top: 50px; left: 20px ; width: 10px	}

/* set general button styles bot marg is space between buts*/
dt.btn {
	display:block;
	float:left;	
	margin-right:5px;
	text-align: center;
	
}


dt.btn a	{
	padding-top: 15px;/* This opens box to start revealing add butts >13< test moves up */;
	padding-bottom: 0px;
	margin-top: 1px;/* This spaces out buttons>10 */;
	margin-bottom: 0px;
	display: block;
	font-family: "Times New Roman";
	color: #FFFFCC;
	font-weight: bolder;
	text-decoration: none;
	vertical-align: top;/* This puts button text in centre */;
	width: 140px;
	height: 30px;
}

/* specify state styles... */

/* mouseout (default) */
dt.btn a:link {

	/* originally included ', a:link' This causes footer to get overwritten
If a:visited gets negated, buttons don't show until mouseover. 
reverted back when buttons still don't get shown 'til mouseover*/
	background-image: url('../theme_images/exphbuda.gif');
	background-repeat: no-repeat;
}

dt.btn a:visited {
	background-image: url('../theme_images/exphbuda.gif');
	background-repeat: no-repeat;
}

/* mouseover */
dt.btn a:hover	{

	background-image: url('../theme_images/exphbuha.gif');
	background-repeat: no-repeat;
}

/* omousedown */
dt.btn a:active {	

	background-image: url('../theme_images/exphbusa.gif');
	background-repeat: no-repeat;
}

