@charset "UTF-8";
body  {
	font: 95% Arial, Helvetica, sans-serif;
	color:#1c1B50;
	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 */
	line-height: 1.2;
	background-image: url(images/backgroundMAIN.jpg);
	background-repeat:no-repeat;
	background-position:top;
	background-color:#016110;	
	background-attachment:fixed;
}

h1 {
	font: 145% Helvetica, Arial, sans-serif;
	font-weight:bold;
	text-align: left;
	line-height: 1.3;
	color: #FCB913;
}

h2 {
	font: 120% Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: left;
	line-height: 1.2;
	color: #1C1B50;
	padding: 0px 0px 0px 0px;
}
h3 {
	font: 100% Helvetica, Arial, sans-serif;
	text-align: left;
	line-height: 1.3;
	color: #1C1B50;
}
h4 {
	font: 95% Helvetica, Arial, sans-serif;
	line-height: 1.2;
	color: #666;
}


a:link {
	color:#006;
	text-decoration: underline;
}

a:visited {
	color: #006;
	text-decoration: underline;

}
a:active {
	color: #006;
	text-decoration: underline;
}
a:hover {
	color: #666;
	text-decoration: underline;

}

#shadow {
	width: 910px;
	margin: 0 auto;
	-moz-box-shadow: 0 0 30px #000;
	-webkit-box-shadow: 0 0 30px #000;
	box-shadow: 0 0 30px #000;
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	behavior: url(http://www.c-c.com.au/PIE.htc);
}

#container {
	width: 900px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 5px solid #DDDDDD;
	text-align: left;
	background-color: #FFF;
	border-bottom-right-radius:10px;
	border-bottom-left-radius:10px;
	behavior: url(http://www.c-c.com.au/PIE.htc);

} 

#outside {
	width: 890px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 10px 5px 0px 5px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	text-align: right; /* this overrides the text-align: center on the body element. */
	background-color: #FFF;
	border-top: 10px;
	border-color: #FFF;
	border: 5px solid #DDDDDD;
	border-bottom: 0px;
} 

.logo {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0px 80px 0px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	text-align: left;
	width: 250px;
	float: left;
	margin-bottom: 0px;
	margin-left: 10px;
} 

#header { 
	background: #DDDDDD; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 505px; 
	height: 350px;
	padding: 10px 10px;
	margin-top: 0px;
	}
	
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 500px; 
	height: 350px;
	padding: 10px 10px;
	margin-top: 0px;
	}

#sidebar3 {
	float: right; /* since this element is floated, a width must be given */
	width: 420px; 
	padding: 10px 10px;
	margin-top: 0px;
	}


#sidebar1 h1 {
	font: 120% Gill sans, Helvetica, Arial, sans-serif;
	text-align: left;
	text-transform:uppercase;
	color: #999;
	padding: 0px;
}

#sidebar1 p {
	font: 85% Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	line-height: 1.5;
	color: #666;
	
}

#mainContent {
	margin: 0 0 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 15px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color:#FFF;	
} 
#bottom_nav {
	padding: 0 10px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#1C1B50;
	text-align: center;
} 
#bottom_nav p {
	font: 85% Helvetica, Arial, sans-serif;
	color: #333;
	line-height: 1.2;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 8px 0 8px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#bottom_nav a:link {
	color: #CCC;
	text-decoration: underline;
}

#bottom_nav a:visited {
	color: #999;
	text-decoration: underline;

}
#bottom_nav a:active {
	color: #69F;
	text-decoration: underline;
}
#bottom_nav a:hover {
	color: #2A74E1;
	text-decoration: underline;

}

#footer {
	width: 900px;
	margin:auto;
/* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
#footer p {
	font: 70% Helvetica, Arial, sans-serif;
	line-height: 1.2;
	color: #FFF;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#contactform {
	text-align: left;
	padding: 0px;
	width: 500px;
	margin: 0px 0px 0px 0px;
	float: left;
	background: #FFFFFF;
	vertical-align: middle;
}

#whats_this {
	width: 200px;
	float: right;
}


#footnote {
	font-size: 10px;
	font-style: italic;
}
.error-box {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	width: 350px;
	margin: 0 auto 20px auto;
	padding: 7px;
	background-color: #ffffe5;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	color: red;
	font-weight: bold;
	text-align: left;
	float:left;
}
.error-box h4 {
	display: block;
	margin: 0;
	font-size: 16px;
	color: #333333;
}
#contactinfo {
	font-family: 125% Verdana, Geneva, sans-serif;
	font-size: 10px;
	line-height:1.2;
	font-style: normal;
	font-weight: normal;
	color: #666;
	width: 300px;
	float: right;
	line-height:14px;
	margin-right: 10px;
	margin-bottom: 10px;
}
#outside #contactinfo p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 1.15;
	font-variant: normal;
	text-transform: capitalize;
}
	
#bottom_buttons {
	margin: 10px;
	padding: 10px;
	width: 860px;
}
.clearer {
	clear: both;
	margin: 0;
	padding: 0;
}
