#main {
	position: relative;
	top: 0px;
	width:850px;
	margin-right: auto;
	margin-left: auto;
}
#main #maintext {
	position: absolute;
	height: 250px;
	width: 300px;
	left: 500px;
	top: 280px;
	border: 0;
}
#main #suptext {
	position: absolute;
	height: 120px;
	width: 300px;
	left: 50px;
	top: 40px;
	border: 0;
}
#main #suptext p {
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	color:#000099;
}

#main #maintext p {
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.05em;
	line-height: 1.25em;
	text-align: right;
	margin-top: 8px;
}
#main #maintext h2 {
	line-height: 1em;
	text-align: right;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	margin-bottom: 0px;
	font-size: 2em;
}
#main #maintext h3 {
	line-height: 1em;
	text-align: right;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	margin-top: 6px;
	font-size: 1.4em;
}
#main #maintext h4 {
	line-height: 1em;
	text-align: right;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	margin-top: 6px;
	margin-bottom: 6px;
	font-size: 1.2em;
}
body {
	margin-top:0;
	margin-left:0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}
#foot {
	margin-left:100px;
}
#foot p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.2em;
	text-align: center;
	margin-top: 8px;
	color: #333333;
	width: 650px;
}
#nav {
	position:absolute;
	z-index:10;
	top:10px;
	left:10px;
	margin-left:0px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	height: 20px;
	width: 800px;
	font-size: 0.8em;
	color:#000099;
}
div#nav ul {
	margin:0 0 0 0px;/* indents ul from edge of container - NOTE: diff value for IE in hacks below */
	padding-left:2px;
	}
div#nav li {
	border-top:1px none #006699;
	border-bottom:1px none #006699;
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	padding:0 10px;
	border-right:1px solid #069; /* creates dividing lines between the li elements */
	}
div#nav li:hover { 
	background-color:#FFF; /*sets the background of the menu items */
	}
div#nav a {
	display:block;
	padding:0 6px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#000099;	/* sets the type color */
	}
div#nav a:hover {
	color:#F33;
	}
/* the menu ends here */
/* the drop-down starts here */
div#nav ul li ul {
	margin:0; 
	z-index:10; /* puts drop-down on top of div - Safari needs this as menu is 1px higher */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:5em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	border-right:0; /* stops SCBs drops having two right borders - they inherit the border, IE doesn't */
	left:-1px; /*aligns the drop exactly under the menu */
	border-top: 0px none #006699;
	}
div#nav ul li ul li {
	padding:0 9px;
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px none #006699; /*  three sides of each drop-down item */
	border-right:1px none #006699;
	border-top: 0px none #006699;
	background-color:#FFF;
	color:#000099;
	font-size:12px;	/* SET FONT-SIZE HERE */
	font-weight:normal;
	text-align:left;
	line-height:20px;
	
	}
div#nav ul li ul li a {padding:1px 1px;}
div#nav ul li ul li:first-child {
	border-top:1px none #006699; /*the top edge of the dropdown */
	border-left:1px none #006699; /*the first vertial line on the menu */
	}
/* make the drop-down display as the menu is rolled over */
div#nav ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#nav ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* pop-out starts here */
body div#nav ul li ul li ul  {
	position:absolute; 
	visibility:hidden; /* same effect as display:none in this situation */
	top:0px;
	left:1em;
	}
div#nav ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* second level popouts start here*/
div#nav ul li ul li:hover ul li ul {visibility:hidden;}
div#nav ul li ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */

/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#nav ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px none #006699; /* adds the rightmost menu vertical line to the ul */
	margin-left:0px; /* IE doubles the given value above - why? */
	}

/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#nav ul li ul {
	border-top:1px none #006699;
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* the Tantek hack to feed IE Win 5.5-5.0 a lower value to get the pop-out to touch the drop-down */
* html  div#nav ul li ul li ul { 
  left:4.85em; 
  voice-family: "\"}\""; 
  voice-family:inherit;
  left:5em;
  } 
/* and the "be nice to Opera" rule */
html>body div#nav ul li ul li ul {
  left:5em;
} 

/* an Opera-only hack to fix a redraw problem by invisibly extending the ul */
/* the first-level drop stays open for 100px below the bottom but at least it works */
/* this can be reduced to as little as 22px if you don't have pop-outs */
/* the pop-out menu stays open for 22px below the bottom but at least it works */
	@media all and (min-width: 0px){
   body div#nav ul li ul {padding-bottom:100px;}
   body div#nav ul li ul li ul {padding-bottom:22px;}
   ul li ul li ul li ul li:hover {visibility:visible;} /* same effect as display:block in this situation */

   }
/*end Opera hack */
/* END OF HACK ZONE */
/* the drop-down ends here */
/* END OF LIST-BASED MENU */
#main #header {
	background-color: #FFFFFF;
	position: absolute;
	z-index:5;
	height: 113px;
	width: 850px;
	top: 35px;
	border: 0;
}
#main #content {
	background-color: #FFFFFF;
	position: absolute;
	height: 400px;
	width: 850px;
	top: 150px;
}
.imgRight {
	float: right;
	margin-right: 20px;
	margin-left: 10px;
}
.imgLeft {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}
h2 {
	color: #000099;
	margin-top:0;
}
#main #content p {
	font-size: 0.9em;
	line-height: 1.5em;
}
.centretext {
	text-align: center;
}
.tdnowrap {
	white-space: nowrap;
}
.tableblue {
	background-color: #C4D7FF;
}
.tablebluecentred {
	background-color: #C4D7FF;
	text-align: center;
}
#main #prices {
	height: 100px;
	width: 250px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	position: absolute;
	top: 80px;
	left: 50px;
}
