@charset "utf-8"

body {
    font-family:Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
/**Layout Divs**/
/*this container centers the content in the browser and fixes the overall width*/
#wrapper {
	margin: 1px auto;
	width: 99%;
	max-width: 1200px;
	text-align: left;
	background: #000;
}
/*this container holds the logo and heading graphic*/
#header {
	width: 100%;
	height: 407px;
	background-image:url(../images/background-header.jpg);
}
/*this container holds the horizontal navigation bar and defines the background image*/
#hnav {
	height: 32px;
	background: #000;
	}
/*style for the fading image or rotating images */
#photoholder {
	width:770px;
	height:200px;
	/* background:#000 url('images/loading.gif') 50% 50% no-repeat; */
}
#thephoto {
	width:770px;
	height:200px;
}
#rotating-item-wrapper-1 {
	position: relative;
	width: 770px;
	height: 200px;
	float:right;
}
.rotating-item-1 {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
}
/*this container holds the four boxes at the bottom of the index page*/
#floatcontainer {
	width: 100%;
	padding-top: 15px;
	background-color: #000;
	padding-bottom: 15px;
}
/*set up the four floated boxes - these are held within the above selector*/
.floatboxes {
	text-align:left;
    width: 23%;
	margin: 9px;
	border: 1px solid #0071f7;
	float: left;
	background-color: #deedff;
	overflow: visible;/*set overflow to auto - if the content exceeds the boxes height scroll bars are provided*/
	scrollbar-face-color: #8cbffd;
	scrollbar-highlight-color: #deedff;
	scrollbar-3dlight-color: #0071f7;
	scrollbar-darkshadow-color: #1b64ba;
	scrollbar-shadow-color: #7ab4f9;
	scrollbar-arrow-color: #ffffff;
	scrollbar-track-color: #c1dcfd;
}
/*style the text in the lower boxes*/
.floatboxes p {
	font-size: 90%;
	margin: 0px;
	padding-bottom: 4px;
	padding-right: 5px;
	padding-left: 5px;
	padding-top: 4px;
}
/*style the heading text in the lower boxes*/
.floatboxes h1 {
	font-size: 85%;
	margin: 0px;
	padding-bottom: 4px;
	padding-top: 2px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0071f7;
	padding-left: 5px;
	background-color: #8cbffd;
}
/*alternative style for the heading text in the lower boxes*/
.floatboxes h2 {
	font-size: 85%;
	margin: 0px;
	padding-bottom: 4px;
	padding-top: 2px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0071f7;
	padding-left: 5px;
	background-color: #dad2d2;
}
/*alternative style for the heading text in the lower boxes*/
.floatboxes h3 {
	font-size: 85%;
	margin: 0px;
	padding-bottom: 2px;
	padding-top: 2px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #0071f7;
	padding-left: 5px;
	background-image: url(../image_files/image_paragraph_bg.gif);
	background-repeat: no-repeat;
	
}
/*style the heading text in the footer*/
#footer {
	width: 100%;
	clear: both;
	font-size: 85%;
	text-align: center;
	margin-right: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-left: 22px;
	background: #000;
	color:#FFF;
}
/*sets margins to 0*/
p {
	margin-top: 0px;
	margin-bottom: 0px;
}
h3 {
	margin: 0 20 4;
	font-size: 90%;
	background-color: #fff;
	background-image: url(../image_files/image_h2_bg.gif);
	background-repeat: no-repeat;
	border-bottom-color: #0071f7;/*themecolour1;*/
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 4px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
/*floats element to the left*/
.left {
	float: left;
	margin: 0px;
	padding: 0px;
	left: -2px;
}
/*floats element to the right*/
.right {
	float: right;
}

/*link styles*/
a:link {
	color: blue;
}
a:link:hover {
	color: red;
	text-decoration:underline;
}
a:visited {
	color:blue;
}

/*floats image to the left of text blocks*/ 
.imagefloat {
	float: left;
	vertical-align: middle;
	padding: 2px;
}

/*floats logo graphic to the left */ 
div.row span.left {
  float: left;
  text-align: left;
  font-weight: bold;
  color: #ffffff; 
  }

/*floats heading graphic to the right */ 
div.row span.right {
  float: right;
  text-align: right;
  font-weight: bold;
  color: #fff; 
  }
