@charset "utf-8";
body {
	font: 100% Arial, Helvetica, sans-serif;
	color: #000000;
	line-height: 1.125em;
	background-color:#FDFFDF;
	padding: 0;
	margin: 0;
	height: 100%;
	overflow-y:auto;
}
h1, h2, h3, a, #sidebar1 {
	color:#006600;
}
h1, h2, h3 p {
	padding:0;
	margin:0;
}
a:hover {
	color:#CCB87C;
}
#container p {
	font-size:1em;
}
.twoColHybLt #container {
	background: #FDFFDF;
	text-align: left;
	width: 100%;
	min-width: 800px;
	max-width:1200px;
	position: absolute;
}
/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLt #sidebar1 p" rule.
*/
.twoColHybLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	background: #E8FFCF;
	padding-top: 1.5em;
/*	border-right: 4px #fff solid;
*/	text-align: right;
	width: 14em;
}
.twoColHybLt #sidebar1 h3, .twoColHybLt #sidebar1 p {
}
/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybLt #mainContent {
	margin: 1.5em 2em 2em 18em;
	position: relative;
	padding: 0em;
	font-size: 0.88em;
}
/* Miscellaneous classes for reuse */
.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;
}
#container #mainContent h1 {
	margin: 0.2em 0;
	padding: .3em 0px;
	font-size: 1.6em;
	border-bottom: 0px #D1E0EF solid;
	font-weight: normal;
	}
/* ======================================================
This copyright notice must be untouched at all times.
The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/flyout_4level.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any
way to fit your requirements.
========================================================= */
.menu {
	height: 100%;
	/*font-size: 10pt;*/
	font-family: arial;
	z-index: 400;
	
} 
.menu ul {
	margin: 0pt;
	padding: 0pt;
	position: relative;
	z-index: 500;
	list-style-type: none;
	width: 14em;				/* menu width for IE -  <a> element's width plus its padding-right */
}
.menu li {
	background-color: #E8FFCF;			/*sidebar1 bg-colour*/
	float: left;
}
.menu li.sub {
	background-color: #E8FFCF;			/*sidebar1 bg-colour*/
}
.menu table {
	position: absolute;
	border-collapse: collapse;
	top: 0pt;
	left: 0pt;
	z-index: 100;
	font-size: 1em;
	margin-top: -1px;
}
.menu a, .menu a:visited {
	border-top: 2px solid #ffffff;
	display: block;
	text-decoration: none;  
	/*height: 2em;*/
	line-height: 2em;
	width: 12em;			/* menu width (sidebar width minus padding*/
	color: #006600;
	padding-right: 2em;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	text-transform: none;
}
.menu b {
	float: right;
	margin-right: 5px;
}
* html .menu a, * html .menu a:visited {
	width: 12em;			/* appr. .3em more (?) than <a> width above (menu width for IE 6)*/
}
* html .menu a:hover {			/* hover */
	border-color: #E8FFCF;			/*sidebar1 bg-colour*/
	color: #CCB87C;
	background-color: #D7FFCD;
	position: relative;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	text-decoration: none;
	text-transform: none;
}
.menu li:hover {
	position: relative;
}
.menu a:active, .menu a:focus {			/* hover */
	border-color: #E8FFCF;			/*sidebar1 bg-colour*/
	color: #CCB87C;
	background-color: #D7FFCD;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	text-decoration: none;
	text-transform: none;

}
.menu li:hover > a {			/* hover (firefox?) */
/*	border-color: #E8FFCF;   			/*sidebar1 bg-colour*/
	color: #CCB87C;
	background-color: #D7FFCD;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	text-decoration: none;
	text-transform: none;
	
}
.menu li ul {				/* submenu */
	padding: 2em;
	visibility: hidden;
	text-align:left;
	position: absolute;
	top: -2em;
	left: 12.1em;				/* submenu position (same as width for <a> above)*/
	background-color: transparent;

}
.menu li ul a, .menu li ul a:visited {
width:11em;  /* 11 for good spacing)*/
}
.menu li ul li a {
		padding-left:1em;
}
.menu li:hover > ul {
	visibility: visible;
}
.menu ul a:hover ul ul {
	visibility: hidden;
}
.menu ul a:hover ul a:hover ul ul {
	visibility: hidden;
}
.menu ul a:hover ul a:hover ul a:hover ul ul {
	visibility: hidden;
}
.menu ul a:hover ul {
	visibility: visible;
}
.menu ul a:hover ul a:hover ul {
	visibility: visible;
}
.menu ul a:hover ul a:hover ul a:hover ul {
	visibility: visible;
}
.menu ul a:hover ul a:hover ul a:hover ul a:hover ul {
	visibility: visible;
}


/****/



#mainContent p {
	line-height: 1.8em;
	margin: 0 0 .5em 0;
	padding: .2em 0;
}
#mainContent h2 {
	font-weight: normal;
	font-size: 1.3em;
	padding: 2em 0 .3em;
}
#sidebarPic {
}
#trillium p {
	font-size: 1em;
}
#trillium p {
	margin: 0;
	font-size: .575em;
}
#trillium img {
	border: 1px solid #FFCC99;
	margin-top: .5em;
}
a {
	text-decoration: none;
}
#mainContent h1 {
}
.imgBorder {
	border: 2px solid #EFEFEF;
	padding: 4px;
	background-color: #FFFFFF;
}
.floatLeft front {
	margin-top: 1em;
}
.green {
	color: #009900;
}
#sidebar1 h1 {
	font-weight: normal;
	font-size: 1.5em;
	padding: 0;
	margin: 0;
}
#sidebar1 .title {
	letter-spacing: 2px;
}
#sidebarPic img {
}

#sidebarPic {
}
.sideblock {
	font-size: 1em;
	text-align: right;
	border-top: 2px #fff solid;
	padding-right: 2em;
	padding-left: 0.5em;
	padding-bottom: .5em;
	padding-top: 0.5em;
	margin: 0;
}
#address {
}
/********EnviroBoutique************/

.boutiqueItem {
	margin-bottom: .5em;
	padding-bottom: 1px;
	width: 100%;
}
.boutiqueItem img {
	float: right;
	margin-bottom: 10px;
	clear: right;
	margin-left: 10px;
}
.boutiqueItem h1 {
	font-size: 1.3em;
}
.boutiqueItem h2 {
	font-size: 0.9em;
}
.boutiqueItem p {
	margin-bottom: 6px;
}
/************misc. page stuff*************/

#opa {
	width: 150px;
	font-size: 0.6em;
	float: right;
}
#opa p {
	padding: 0 10px;
}
#decals {
	float: right;
	width: 100px;
	margin-left: 10px;
}
#sponsors {
	text-align: center;
}
#sponsors img {
	margin: 10px;
}
#challenge .floatRight {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	margin-left: 0px;
}
#challenge .floatLeft {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	margin-right: 10px;
}
.imgSubtitle {
	width: 150px;
	font-size: 8pt;
	display: block;
}
.blockText h1 {
	font-size: 1.1em;
}
.blockText {
	clear: right;
}
.envirostyle p {
	font-size: .875em;
}
.front h1 {
	font-size: 1.25em;
	font-size: 1.3em;
	font-weight: normal;
}
#mainContent .front {
	width: 48%;
	position: relative;
	margin-top: 10px;
}
.minor {
	text-decoration: none;
	font-weight: normal;
}
.front p {
	margin-bottom: 0px;
}
.decals {
	float: right;
	width: 100px;
	margin-left: 10px;
}
#mainContent ul {
	font-size: 1em;
	list-style: none;
}
#mainContent .boutiqueItem h1 {
	font-weight: normal;
}
#mainContent h3 {
	display: inline;
	font-size: 1em;
	margin: 0;
	padding: .3em 0;
	font-weight: normal;
}
#sponsors a {
	color:#fff
}
#sidebar1 .title a {
}
.twoColHybLt #container #sidebar1 .title a {
}
.twoColHybLt #container #sidebar1 .title a {

}
.langSelect {
	color: #339900;
	font-style: italic;
}
.twoColHybLt #container #mainContent .fltrt {
	background-color: #FFFFFF;
}
.twoColHybLt #corner {
	position: absolute;
	height: 150px;
	width: 150px;
	z-index: 500;
	left: 0px;
	top: 0px;
}


.twoColHybLt #corner a {
border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.twoColHybLt #corner a:hover {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
/*****************Corner Rollover **************/
.cornerRoll img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;

}
/*.cornerRoll {
	width: 200px;
	height: 120px;
}*/
.cornerRoll a {
	display: block;
	width: 150px;
	height: 150px;
	background: url(../images/corner-new.gif) no-repeat top left;


}
.cornerRoll a:hover {
	background-position: bottom left;
}
/**************************************/
.twoColHybLt #container #sidebar1 .sideblock img {
	margin-top: 0.5em;
}
.twoColHybLt #container #sidebar1 .sideblock p {
	margin: 0px;
	padding: 0px;
}
#mainContent p a {
	text-decoration: underline;
}
#sidebar1 #partner p {
	font-size: 0.575em;
	font-weight: bold;
}
#mainContent .enviro {
	font-weight: normal;
}
.twoColHybLt #container #mainContent .enviro h1 {
	font-weight: normal;
}
.twoColHybLt #container #mainContent .boutiqueItem h2 {
	font-size: 1.1em;
}
#sidebar1 .menu .language {
	font-size: 14px;
	font-style: italic;
}

#mainContent p a {
color:#0033CC;
}
#container #sidebar1 #ontario img {
	background-color: #FFFFFF;
	border: 1px solid #FFCC99;
}
