/* CSS Document */
/* ---------- Universal Settings  ---------- */
body {
	margin:0;
	padding:0;
	width:100%;
	background:none repeat scroll 0 0 #E0E0E0;
	min-width:600px;		/* Minimum width of layout - remove line if not required */
					/* The min-width property does not work in old versions of Internet Explorer */
	font-size:95%;
	text-align:center;
	font-family:Georgia, "Palatino Linotype", "Times New Roman";
}
a img {
	border:0
}
a {
	color:#003399;
	font-weight:bold;
}
a:hover {
	color:#fff;
	background:#003399;
	text-decoration:none;
}
img {
	margin:0;
	border:0;
}
h1 {
	margin:.2em 0 .2em 0;
	color:#cc0000;
	font-variant:small-caps;
	text-align:center;
	font-size:150%;
}
h2 {
	margin:.2em 0 .2em 0;
	color:#cc0000;
	font-variant:small-caps;
	text-align:center;
	font-size:125%;
}
h6 {
	margin:.2em 0 .2em 0;
	color:#cc0000;
	font-variant:small-caps;
	text-align:center;
	font-size:150%;
}

.textline {
	clear:both;
}
p {
	margin:.4em 0 .8em 0;
	padding:0;
}
.impact {
	margin:15px 30px 15px 30px;
	text-align:center;
	color:#318864;
	font-weight:bold;
}
.highlight {
	margin:0 0 15px 0;
	text-align:center;
	color:#318864;
	font-weight:bold;
}
p.small {
	font-size:90%;
}
p.bold {
	font-weight:bold;
}

img.margin {
	margin:10px 0 5px;
}

.imgfloatleft {
	float:left;
	margin:0 15px 0 0;
	width:170px;
	text-align:center;
	font-size:75%;
	font-variant:small-caps;
}
#imgfloatright {
	float:right;
	margin:0 0 0 15px;
	width:170px;
	text-align:center;
	font-size:75%;
	font-variant:small-caps;
}


/* ----------  Three Column Layout ---------- */
/* ----------  Fixed Width Container ----------  */
#fixed {
	margin:0 auto;
	width:800px;
	text-align:left;
}
/* ----------  Header Settings ----------  */
#header {
	float:left;
	width:100%;
	padding:0;
	margin:0;
	background:#E0E0E0;
}
#header img {
	margin:0;
}

/* ----------  Main menu settings ----------  */
#centeredmenu {
   clear:both;
   float:left;
   margin:0;
   padding:0;
   border-bottom:1px solid #000; /* black line below menu */
   border-top:1px solid #000; /* black line above menu */
   width:100%;
   font-family:Georgia, "Palatino Linotype", "Times New Roman"; /* Menu font */
   font-size:100%; /* Menu text size */
   z-index:1000; /* This makes the dropdown menus appear above the page content below */
   position:relative;
   background:#fff;
}
/* Top menu items */
#centeredmenu ul {
   margin:0;
   padding:0;
   list-style:none;
   float:right;
   position:relative;
   right:50%;
}
#centeredmenu ul li {
   margin:0 0 0 1px;
   padding:0;
   float:left;
   position:relative;
   left:50%;
   top:1px;
   font-size:100%;
}
#centeredmenu ul li a {
   display:block;
   margin:0;
   padding:.6em .5em .4em;
   font-size:1em;
   line-height:1em;
   background:#fff;
   text-decoration:none;
   color:#000;
   font-weight:bold;
   border-bottom:1px solid #000;
}
#centeredmenu ul li.active a {
   color:#fff;
   background:#000;
}
#centeredmenu ul li a:hover {
   background:#e0e0e0; /* Top menu items background colour */
   color:#fff;
   border-bottom:1px solid #03f;
}
#centeredmenu ul li:hover a,
#centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
   background:#444; /* Top menu items background colour */
   color:#fff;
   border-bottom:1px solid #000000;
}

/* Submenu items */
#centeredmenu ul ul {
   display:none; /* Sub menus are hiden by default */
   position:absolute;
   top:2em;
   left:0;
   right:auto; /*resets the right:50% on the parent ul */
   width:10em; /* width of the drop-down menus */
}
#centeredmenu ul ul li {
   left:auto;  /*resets the left:50% on the parent li */
   margin:0; /* Reset the 1px margin from the top menu */
   clear:left;
   width:100%;
}
#centeredmenu ul ul li a,
#centeredmenu ul li.active li a,
#centeredmenu ul li:hover ul li a,
#centeredmenu ul li.hover ul li a { /* This line is required for IE 6 and below */
   font-size:.8em;
   font-weight:normal; /* resets the bold set for the top level menu items */
   background:#eee;
   color:#000;
   line-height:1.4em; /* overwrite line-height value from top menu */
   border-bottom:1px solid #ddd; /* sub menu item horizontal lines */
}
#centeredmenu ul ul li a:hover,
#centeredmenu ul li.active ul li a:hover,
#centeredmenu ul li:hover ul li a:hover,
#centeredmenu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
   background:#868686; /* Sub menu items background colour */
   color:#fff;
}

/* Flip the last submenu so it stays within the page */
#centeredmenu ul ul.last {
   left:auto; /* reset left:0; value */
   right:0; /* Set right value instead */
}

/* Make the sub menus appear on hover */
#centeredmenu ul li:hover ul,
#centeredmenu ul li.hover ul { /* This line is required for IE 6 and below */
   display:block; /* Show the sub menus */
}

/*  ---------- Main Content Settings  ---------- */
#colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	clear:both;
	float:left;
	width:100%;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
	background:#fff;		/* Left column background colour */
	border-bottom:1px solid #000;
}
#colmid {
	float:left;
	width:300%;
	position:relative;
	left:200px;
	background:#fff;    	/* Centre column background colour */
	border-left:1px dashed #000;
	border-right:1px dashed #000;
}
#colright {
	float:left;
	width:0%;
	position:relative;
	left:50%;
	margin-left:-100px;
	background:#fff;    	/* Right column background colour */
}
#col1wrap {
	float:right;
	width:50%;
	position:relative;
	right:100%;
}
#col1pad {
	margin:0 15px 0 415px;
	overflow:hidden;
}

/* ----- Center Column Settings ----- */
#col1 {
	width:100%;
	overflow:hidden;
	text-align:left;
}

/* ----- Left Column Settings ----- */
#col2 {
	float:left;
	width:800px;
	position:relative;
	margin-left:-50%;
	left:300px;
	overflow:hidden;
	text-align:center;
}
#col2 h4 {
	font-size:95%;
	font-weight:bold;
	margin:4px 0 0 0;
	padding:1.50px;
	background-image:url('images/layout/h4_background.gif');
	color:#fff;
}
#col2 img {
	margin: 5px 0;
}
#col2 p {
	font-size:95%;
	text-align:center;
}
/* Left Side Bar Articles */
.leftsidebar_articles_box {
   background: #318864;
}
.leftsidebar_articles_top div {
   background: url(images/layout/leftsidebar_articles_tl.jpg) no-repeat top left;
}
.leftsidebar_articles_top {
   background: url(images/layout/leftsidebar_articles_tr.jpg) no-repeat top right;
}
.leftsidebar_articles_bottom div {
   background: url(images/layout/leftsidebar_articles_bl.jpg) no-repeat bottom left;
}
.leftsidebar_articles_bottom {
   background: url(images/layout/leftsidebar_articles_br.jpg) no-repeat bottom right;
}
.leftsidebar_articles_top div, .leftsidebar_articles_top, 
.leftsidebar_articles_bottom div, .leftsidebar_articles_bottom {
   width: 100%;
   height: 10px;
   font-size: 1px;
}
.leftsidebar_articles_content {
	margin:0px 0px;
	width:100%;
	text-align:center;
	font-size:95%;
	color:#fff;
	font-weight:bold;
}
.leftsidebar_articles_content a {
	color:#fff;
}

/* ----- Right Column Settings ----- */
#col3 {
	float:left;
	width:0px;
	position:relative;
	left:15px;
	overflow:hidden;
	border-left:1px dashed #000;
}

/* ---------- News and Updates Settings ---------- */
/* ----- News and Updates Header Settings ----- */
#newsandupdates {
	margin:0;
	padding:0 0 1px 0;
	background:#fff;
}
#newsandupdates h2 {
	font-size:125%;
	color:#000;
	font-style:normal;
	font-variant:small-caps;
	padding:5px;
	text-align:center;
	border-bottom:1px solid #000;
	border-top:1px solid #000;
}
/* ----- News and Updates Container Settings ----- */
#nu_container4 {
	clear:left;
	float:left;
	width:100%;
	overflow:hidden;
	background:#fff; /* column 4 background colour */
	margin:0 0 0 0;
	padding:0;
}
#nu_container3 {
	clear:left;
	float:left;
	width:100%;
	position:relative;
	right:25%;
	background:#fff; /* column 3 background colour */
	margin:0;
	padding:0;
	border-left:1px dashed #000;
	height:170px;
}
#nu_container2 {
	clear:left;
	float:left;
	width:100%;
	position:relative;
	right:25%;
	background:#fff; /* column 2 background colour */
	margin:0;
	padding:0;
}
#nu_container1 {
	float:left;
	width:100%;
	position:relative;
	right:25%;
	background:#fff; /* column 1 background colour */
	margin:0;
	padding:0;
}
#nu_container1 h3 {
	margin:15px 0 5px 0;
	font-size:125%;
	color:#cc0000;
}
#nu_container1 p {
	text-align:left;
}
.nu_container_link {
	text-align:right;
}
/* ----- News and Updates Column Settings ----- */
#nu_col1 {
	float:left;
	width:21%;
	position:relative;
	left:77%;
	overflow:hidden;
	background:#fff;
	margin:-20px 0 0 0;
	padding:0 0 0 0;
}
#nu_col2 {
	float:left;
	width:21%;
	position:relative;
	left:79%;
	overflow:hidden;
	border-left:1px dashed #000;
	margin:-20px 0 0 0;
	padding:0 0 0 10px;
	height:300px;
}
#nu_col3 {
	float:left;
	width:22%;
	position:relative;
	left:82%;
	overflow:hidden;
	border-left:1px dashed #000;
	margin:-20px 0 0 0;
	padding:0 0 0 10px;
	height:300px;
}
#nu_col4 {
	float:left;
	width:20%;
	position:relative;
	left:85%;
	overflow:hidden;	
	border-left:1px dashed #000;
	margin:-20px 0 0 0;
	padding:0 10px 0 10px;
	height:300px;
}

/*  ---------- Footer Settings  ---------- */
#footer {
	clear:both;
	float:left;
	width:100%;
	padding:0;
	margin:0;
	border-top:1px solid #000;
	text-align:center;
}
#footer a {
	color:#000;
	font-weight:bold;
}
#footer a:hover {
	color:#000;
	background:#e0e0e0;
}
#footer p {
	padding:.5em 15px;
}
.copyright {
	clear:both;
	font-size:75%;
	text-align:center;
}

/* -------------------- Two Column Page Layout -------------------- */ 
	/* ----- Most of the styling comes from the Universal and Three Column Settings ----- */
	/* ----- This layout is for all other pages ----- */

#lm_colmask {
	position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
    clear:both;
    float:left;
    width:100%;			/* width of whole page */
	overflow:hidden;	/* This chops off any overhanging divs */
	background:#fff;
}
/* 2 column left menu settings */

#lm_colright {
	float:left;
	width:200%;
	position:relative;
	left:200px;
	border-left:1px dashed #000;
}
#lm_col1wrap {
	float:right;
	width:50%;
	position:relative;
	right:200px;
	padding-bottom:1em;
	background:#fff;
}
#lm_col1 {
	margin:0 15px 0 215px;
	position:relative;
	right:100%;
	overflow:hidden;
}
#lm_col1 h1 {
	text-align:center;
	font-size:200%;
}
#lm_col2 {
	float:left;
	width:170px;
	position:relative;
	right:185px;
	text-align:center;
}
#lm_col2 h4 {
	font-size:95%;
	font-weight:bold;
	margin:4px 0 0 0;
	padding:1.50px;
	background-image:url('images/layout/h4_background.gif');
	color:#fff;
}
#lm_col2 img {
	margin: 5px 0;
}
#lm_col2 p {
	font-size:95%;
	text-align:center;
}

/* -------------------- Spotlight Page Settings -------------------- */
#spotlight_container {
	background:#fff;
	margin:0;
	width:170px;
}
#spotlight_container h2 {
	margin:0 0 .2em 0;
	color:#cc0000;
	font-variant:small-caps;
	text-align:center;
	font-size:100%;
}
.spotlight_list {
	width:160px;
	height:190px;
	margin:5px 0;
	text-align:center;
	border:1px solid #000;
	position:relative;
	left:5px;
}
.spotlight_list a {
	border:0;
	text-align:center;
}

/* Product Styles */
#prod_imgfloatleft {
	float:left;
	margin:0 15px 0 0;
	width:350px;
	text-align:center;
	font-size:75%;
	font-variant:small-caps;
}
#product_desc h2 {
	margin:.8em 0 .2em 0;
	color:#cc0000;
	font-variant:small-caps;
	text-align:left;
	font-size:125%;
}
.product_list_box {
	clear:both;
	margin:0;
	width:546px;
	height:auto;
	text-align:left;
}
.product_list {
	float:left;
	width:170px;
	height:200px;
	margin:5px;
	border:1px solid #000;
	text-align:center;
	overflow:hidden;
}
.product_list a {
	border:0;
	text-align:center;
}


/* -------------------- Individual Div Element Styles -------------------- */

#francisquote {
	width:100%;
	height:123px;
	margin: 0;
	padding:10px 0 5px;
	text-align:center;
	font-size:150%;
	font-style:italic;
	font-weight:bold;
	color:#318864;
}
#francisquote img {
	float:right;
	margin:0px;
	width:150px;
}
#francisquoteleft {
	width:100%;
	height:123px;
	margin: 0 0 0 0;
	padding:10px 0 10px 5px;
	text-align:center;
	font-size:150%;
	font-style:italic;
	font-weight:bold;
	color:#318864;
}
#francisquoteleft img {
	float:left;
	margin:0px;
	width:150px;
}
#tree {
	margin:5px 15px 0 0;
	width:100px;
	text-align:center;
	font-size:75%;
	font-variant:small-caps;
	border:1px solid #000;
	float:left;
}
.treeind {
	margin:0 15px 20px 0;
	width:100px;
	text-align:center;
	font-size:75%;
	font-variant:small-caps;
	border:1px solid #000;
	float:left;
}
.newspaper_impact {
	float:left;
	margin:0;
	font-variant:small-caps;
	font-weight:bold;
	color:#318864;
}
#faq h2 {
	font-weight:bold;
	font-variant:small-caps;
	margin:15px 0px;
	color:#318864;
	font-size:95%;
	text-align:left;
}
#faq p {
	margin:5px 0 5px 30px;
}
#repairs {
	margin:0 15px 0 0;
	width:200px;
	text-align:center;
	font-size:85%;
	font-variant:small-caps;
	border:1px solid #000;
	float:left;
}
.gallery_list_box {
	clear:both;
	margin:0;
	width:546px;
	height:auto;
	text-align:left;
}
.gallery_list {
	float:left;
	width:170px;
	height:128px;
	margin:5px;
	text-align:center;
	overflow:hidden;
}
.gallery_list a {
	border:0;
	text-align:center;
}

#clubtable {
	width:60%;
	border:0;
}
#clubtable td {
	font-size:95%;
	font-weight:bold;
	padding:5px;
	}
#classtable {
	width:100%;
	border:1px solid #318864;
	border-collapse:collapse;
}
#classtable tr td {
	font-size:95%;
	padding:5px;
	background-color:#fff;
	border:0;
	width:33%;
}
#classtable tr.alt td {
	background-color:#318864;
	font-size:100%;
	font-weight:bold;
	color:#fff;
	border:0;
	width:33%;
}
.registration {
	float:left;
	margin:0 0 0 0px;
	padding:0 0 0 15px;
	width:175px;
}
.registration h3 {
	font-size:95%;
	color:#318864;
	text-align:center;
	text-decoration:underline;
}
.registration p {
	font-size:95%;
	text-align:center;
}
.classmain {
	float:left;
	margin:0 0 0 0px;
	padding:0 0 0 15px;
	width:175px;
}
.classmain h3 {
	font-size:95%;
	color:#318864;
	text-align:center;
	text-decoration:underline;
}
.classmain h4 {
	font-size:75%;
	color:#cc0000;
	text-align:center;
	font-weight:normal;
	margin:0;
}
.classmain p {
	font-size:95%;
	text-align:center;
}
#feedback h2 {
	font-weight:bold;
	font-variant:small-caps;
	margin:15px 0px;
	color:#318864;
	font-size:95%;
	text-align:left;
}
#feedback p {
	margin:5px 0 5px 15px;
}
#feedback p.sig {
	margin:5px 0px 5px 30px;
	text-align:right;
	font-style:italic;
}
.productmain {
	float:left;
	margin:0 0 0 0px;
	padding:0 50px 0 30px;
	width:175px;
}
.productmain h3 {
	font-size:100%;
	color:#318864;
	text-align:center;
	text-decoration:underline;
}
.productmain h4 {
	font-size:75%;
	color:#cc0000;
	text-align:center;
	font-weight:normal;
	margin:0;
}
.productmain p {
	font-size:95%;
	text-align:center;
}
.accessories_list_box {
	clear:both;
	margin:0;
	width:546px;
	height:auto;
	text-align:left;
}
.accessories_list {
	width:544px;
	height:auto;
	margin:5px;
	border:1px solid #000;
	overflow:hidden;
}
.accessories_list_detail_box {
	float:left;
	padding:0 5px 0 0;
}
.accessories_list_detail a {
	border:0;
	text-align:left;
}
.accessories_list_detail p {
	font-size:85%;
	text-align:left;
	margin:0 5px 0 175px;
	color:#000000;
}		

































