/*  -- 

this page is broken into six section :

-- colours

red box: #6D181B
red: #6D181B
grey: #46515F (bg)
red: #6D181B (a:link)
grey: #84878A (text colour)
home page txt blue: #C5CAD4
*/

/* **************************************************************** */
/* **********************   Basic Elements ************************ */
/* **************************************************************** */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}


html { height: 101%; } /* add scrollbars to borwsers that do not have them - this eliminates page shift between long and short pages */ 

img { border: none; }

.clear { clear: both; }


/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #46515F;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  color: #84878A;
  font-size: 1em;
  line-height: 140%;
  margin:0px;
  padding:0px;
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
.home-reverse-text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	padding: 3px;
}
/* Commonly used to style paragraphs. */
p {
	padding: 0px 0px 5px 0px;
	margin: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #38414B;
	font-size: 90%;
	line-height:20px;
}
p.form {
	padding: 0px 0px 5px 0px;
	margin: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #38414B;
	font-size: 70%;
	line-height:10px;
}
p.box {
	padding: 0px 5px 5px 5px;
	margin: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 70%;
	line-height:normal;
	text-align:left;
}
p.footer {
	padding: 5px 0px 0px 0px;
	margin: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 65%;
	line-height:10px;
	padding:5px 0px 5px 0px;
}
/* Commonly used to style page titles. */
h1 {
	color: #005683;
	font-size: 100%;
	font-weight: bold;
	line-height: 100%;
	text-align: left;
}
.grey-allround {
	border: 1px solid #CCC;
}
/* Commonly used to style section titles. */
h2 {
	color: #80A8BF;
	font-size: 90%;
	font-weight: bold;
	line-height: 150%;
	padding-top:10px;
	padding-bottom:5px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
}
h3{
	color:#38414B;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:85%;
	font-weight:bold;
	padding-top:4px;
	padding-bottom:4px;
	text-align: left;
}
h4{
	color:#808588;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:70%;
	font-weight:bold;
	padding-top:4px;
	padding-bottom:4px;
	text-align: left;
}
h5{
	color:#6D181B;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:70%;
	font-weight:bold;
	padding-top:4px;
	padding-bottom:4px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #80A8BF;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #80A8BF;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #CC2D31;
  text-decoration:none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #80A8BF;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #CC2D31;
}

/* **************************************************************** */
/* **********************   Layout         ************************ */
/* **************************************************************** */
#container{
	margin-left:auto;
	margin-right:auto;
	width:918px;
	text-align:left;
	background-color:#FFFFFF;
}

#head{
	height:107px;
	width:918px;
	background-color:#FFFFFF;
	padding:0px;
	position:relative;
}
.enquiry{
	position:absolute;
	top:-12px;
	right:35px;
}
img.head{
	padding:10px 0px 0px 10px;
}
img.box{
	padding:10px 0px 0px 0px;
}
img.box2{
	padding:10px 0px 0px 5px;
}
/* **************************************************************** */
/* **********************      Main Navigation     **************** */
/* **************************************************************** */
#anav{
	width:918px;
	height:23px;
	text-align:right;
	padding:0px 0px 0px 0px;
}
#anav li img {
	margin: 0px;
	padding: 0px 0px 0px 0px;
}
#anav ul {
	list-style: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 15px 0px 0px;
}
#anav li {
	display: inline;
	list-style: none;
	margin: 0px;
	padding: 0px;
}
/* **************************************************************** */
/* **********************      Hero        ************************ */
/* **************************************************************** */
#hero{
	width:918;
	margin:0px;
}
#testdrive{
	position:absolute;
	top:230px;
}
#testdrivehead{
}
#testdrive_graphic{
	margin:0px 0px 0px 4px;
}
/* **************************************************************** */
/* **********************      Content     ************************ */
/* **************************************************************** */
#content{
	padding:15px 0px 15px 15px;
	width:430px;
	float: left;
}
#content_right{
	float:right;
	width:440px;
	position:relative;
	padding:15px 15px 15px 15px;
}
#boxcontainer{
	height:100%;
	margin:7px 8px 14px 7px;
}
#box1{
	width:210px;
	height:181px;
	float:left;
	position:relative;
	margin:7px 8px 10px 8px;
}
#box2{
	background-color:#80A8BF;
	width:210px;
	height:170px;
	float:left;
	position:relative;
	margin:7px 8px 10px 7px;
}
#box3{
	background-color:#A6C3D2;
	width:210px;
	height:170px;
	float:left;
	position:relative;
	margin:7px 8px 10px 7px;
}
#box4{
	background-color:#80A8BF;
	width:210px;
	height:170px;
	float:left;
	position:relative;
	margin:7px 8px 14px 7px;
}
.boxlogo{
}
.boxbutton{
	margin:0px 1px 1px 1px;
	position:absolute;
	top:170px;
}
.boxtext{
	position:absolute;
	top:49px;
	left: 8px;
	width: 198px;
}
#footer{
	width:918px;
	height:129px;
}
#footer2{
	text-align:left;
	padding-top:15px;
	background-color:#46515F;
	height:20px;
}
#phase{
	text-align:left;
	padding-top:5px;
	background-color:#46515F;
	float:left;
}
#info{
	text-align:right;
	padding-top:5px;
	background-color:#46515F;
	float:right;
	position:relative;
	width:340px;
}
#content ul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	font-size: 90%;

}
#content li {
	list-style-position: outside;
	list-style-type:square;
	
}

#content ol {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #38414B;
	font-size: 90%;

}
#content ol li {
	list-style-position: outside;
	list-style-type: decimal;
}
#content ol p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #38414B;
	font-size: 90%;
}
#content_right ul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	font-size: 90%;

}
#content_right li {
	list-style-position: outside;
	list-style-type:square;
	
}

#content_right ol {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #38414B;
	font-size: 90%;

}
#content_right ol li {
	list-style-position: outside;
	list-style-type: decimal;
}
#content_right ol p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #38414B;
	font-size: 90%;
}

.form_container {
	clear: both;
	float: left;
}

.formcell {
	width: 150px;
/*--height: 40px;--*/
	padding: 7px;
	display: block;
	float: left;
	margin: 0 3px 3px 1px;
	color: #333;
	text-decoration: none;
	font-size: 70%;
	}

.formcell1{
	width: 150px;
	height: 110px;
	padding: 7px;
	display: block;
	float: left;
	margin: 0 3px 3px 1px;
	color: #333;
	text-decoration: none;
	font-size: 70%;
	}
	
.descriptioncell {
	width: 150px;
/*--height: 40px;--*/
	padding: 5px;
	display: block;
	float: left;
	margin: 0 3px 3px 1px;
	color: #333;
	text-decoration: none;
	font-size: 70%;
	}
.text-bold-cnter {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	text-align: center;
	font-weight: bold;
}
