/* css document */

Body	{
		color: #003300;
		font-family: Gill Sans MS, sans-serif;
		background-color: #CCCCCC;
		margin-right: auto; /* margin right and left auto will centre the page contents */
		margin-left: auto;
		
}

/* containers for top row logo and images, and bottom row title header and strapline */		

#pagecontainer {
	padding-left: 10%;
	width: 80%;
}

#headercontainer {
	margin-top: 10px;
	background-color: #003300;
	padding: 10px;
}		

#headercontainertop {
	height:102px;
	background-position:right top;
	overflow:hidden;
	padding: 0px;
}

#headerleft  {
	float:left;
	border:0;
	overflow:hidden;
	text-align: left;
	padding: 2px;
}

#headerright  {
	border:0;
	margin:0;
	float: right;
	background-repeat: no-repeat;
	padding: 5px;
}

#headercontainerbottom {
	height:35px;
	background-position:right top;
	overflow:hidden;
	padding: 5px;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #CCCCCC;
}

#headerstrap  {
	border:0;
	margin:0;
	float: right;
	background-repeat: no-repeat;
	font-size: 12px;
	text-align: right;
	vertical-align: bottom;
	color: #CCCCCC;
	text-indent: 10px;
	font-weight: normal;
	padding-right: 10px;
}

/*  Navigation Bar styling for container box -uses a jpeg backround image repeated horizontally */

.top-nav {
	height: 25px;
	color: #CCCCCC;
	font-size: 75%;
	font-family: Gill Sans MS, sans-serif;
	font-weight: normal;
	background-image: url(navbground.jpg);
	background-repeat: repeat-x;
	/* background-image: url(navbground.jpg);  background image but could just use a lighter colour 
	background-repeat: repeat-x;*/
	background-color: #003300;
	border-top: 1px solid #CCCCCC;
	text-align:center;
}

.top-nav-inner {
	padding: 5px 10px;
}

/* navigation text styling for active, visted, hover links etc*/

.top-nav-inner a:link {
	color: #CCCCCC;
	font-weight: normal;
	text-decoration: none;
}

.top-nav-inner a:visited {
	color: #CCFFCC;
	font-weight: normal;
	text-decoration: none;
}
.top-nav-inner a:hover {
	color: #003300;
	font-weight: normal;
	text-decoration: underline;
	background-color: #CCFFCC;
}
.top-nav-inner a:active {
	color: #003300;
	font-weight: normal;
	text-decoration: underline;
}

/* main page content container*/
#content {
	padding-top: 20px;
	background-color: #CCCCCC;
	background-position: center;
	padding-right: 10px;
	padding-bottom:20px;
	text-align:center;
}

#contentleft  {
	float:left;
	border:0;
	overflow:hidden;
	background-color:#C0C0C0;

	/* width:25%; */
	padding:10px;
}

#contentright  {
	float:right;
	border:0;
	overflow:hidden;
	background-color:#C0C0C0;
	/*width:25%; */
	padding:10px;
}

/* page footer container */
#footer {
/*	clear: left;
	border: 1px solid #999999;
	height: 15px;

*/	margin-top: 5px;
	background-color: #003300;
	padding-top: 1px;
	padding-right: 5px;
	padding-bottom: 1px;
	padding-left: 5px;	
	
	font-size: 10px;
	margin-bottom: 5px;
	color: #CCCCCC;
}





/* Header text styles */

h1 {
	color: #CCCCCC;
	text-align: left;
	font-family: Gill Sans MS, sans-serif;
	font-size: 20px;
	font-weight: normal;
	margin-top: 10px;
}

h2 {
	color: #003300;
	text-align: left;
	font-family: Gill Sans MS, sans-serif;
	font-size: 17px;
	font-weight: bold;
	margin-top: 10px;
	margin-left: 10px;
}		

/* paragraph text styles */

p.text {
	font-family:  Gill Sans MS, sans-serif;
	font-size:80%;
	vertical-align:top;
	text-align: left;
	color: #003300;
	display: block;
	border: none;
}

p.grey {
	font-family:  Gill Sans MS, sans-serif;
	font-size:90%;
	vertical-align:top;
	text-align: left;
	color: #CCCCCC;
	display: block;
	border: none;
	margin-left: 10px;
}	
	
p.contacttext {
	font-family:  Gill Sans MS, sans-serif;
	vertical-align:top;
	text-align: right;
	color: #CCCCCC;
	display: block;
	border: none;
}

p.right {
	font-family:  Gill Sans MS, sans-serif;
	vertical-align:top;
	text-align: right;
	color: #003300;
	display: block;
	border: none;
}

/* navigation text styling for active, visted, hover links etc outside top-nav-inner div*/

a:link {
	color: #009900;
	text-decoration:none;
}

a:visited {
	color: #666699;
	text-decoration:none;
}

a:active {
	color: #990033;
}

a:hover {
	color: #990000;
}