﻿/* The ACorns CSS 3-columns theme for BVC
- Optimized to have the content at the top and everything else at the bottom for better SEO
- www.acorns.com.au/bv/blog/

Based on a theme from Tanfa: http://www.tanfa.co.uk/css/layouts/flexi_floats/
*/

/*
125px is the header height - replace this everywhere with your new header height
168px is the columns width
*/
/* can't use * as this will apply to textboxes and we don't want that*/

span, img, p, div, a, label, ol, ul, li, h1, h2, h3, h4, body {
	margin: 0; 
	padding: 0; 
}
img
{
	border: 0;
}
body {
	text-align: center; 
	min-width: 700px;
	font-family: verdana, tahoma, arial, sans-serif;
	font-size: 12px;
	line-height: 1.5;
	/*width: 970px;*/
}

#pagetop, #adminpanel {
	position: relative;
	width: 100%;
	padding-top: 1em;
	height: 25px;
	background-color: Lime;
}



.header, #subnav
{
	clear: both; 
	width: 100%;
	text-align: center;
}

.header
{
	position: absolute;
	top: 0px;
	height: 85px;
	border: 0px;
}

.footer
{
	margin-top: 85px;
	margin-bottom: 50px;
}

#wrapper {	/* also holds the left "sliding" tab */
	background: #fff;
	text-align: left;
	width: 98%; /* this can fixed or fluid */
	margin: 0 auto; /* NN will put content out of scrollable reach if auto is used unless there's a min-width on body too*/
	margin-top: 10px;
	position: relative;
	z-index: 500;
}
#contentfloatholderhost
{
	float: left;
	width: 100%;
	position: relative;
	top: 85px;
	background: url('/Images/WebSite/verticalline.gif') repeat-y;
	background-position:left;
}
#contentfloatholder {/* also makes the right "sliding" tab */
	background: url('/Images/WebSite/verticalline.gif') repeat-y;
	background-position:right;
}

#contentfloatholder:after {
	/* this is for NN6 to clear floats */
    content: "."; 
    display: block; 
    height: 0px;
    clear: both; 
    visibility: hidden;
}

#centerpad 
{
/* the center of the screen: fluid */
	margin: 20px 185px;
	padding: 0 0 5px 0;
	clear: both;
}

.center, #homepagecolumn2 {
	float: left;
	width: 100%; 
	margin-right: -95%; 
	/* this needs to be less than 100% for Moz/Mac which thinks 
	it's empty otherwise. The difference is made up by putting a 
	negative left margin on the left float:
	Note IE/Mac doesn't like this method ~ it wants the 100% so it can 
	be fed in using IE only CSS below becasue IE/Win also works with the 100% method.  
	*/
}

.left, #homepagecolumn1 {
	float:left;
	width: 170px;
	margin-left: -5%; /* the difference to make the left colum appear flush left */
}

.right, #homepagecolumn3 {
	float:right;
	width: 170px;
	height: inherit;
}

#homepagecolumn1 .cornertop
{
	background-image: url('/Images/WebSite/corner_top_left.gif');
	height: 36px;
}
#homepagecolumn3 .cornertop
{
	background-image: url('/Images/WebSite/corner_top_right.gif');
	height: 36px;
}
.left .cornerbottom
{
	background-image: url('/Images/WebSite/corner_bottom_left.gif');
	height: 70px;
}
.right .cornerbottom
{
	background-image: url('/Images/WebSite/corner_bottom_right.gif');
	height: 70px;
}
.center .mottoback
{
	background-image: url('/Images/WebSite/horizonalline.gif');
	background-repeat: repeat-x;
	background-position: bottom;
	height: 70px;
}
.center .mottoback .motto
{
	background-image: url('/Images/WebSite/thelastpieceofthepuzzle.jpg');
	background-repeat: no-repeat;
	background-position: bottom;
	height: 70px;
}