/*
STRUCTURE: 3 column flex, accessible
last modified: March 2007
Stephen Ross, greenlight Environmental
Basic default positioning and definitions
for layout and cross-browser appearance.
-------------------------------------------------------------------------[comment] */
/*
layout areas 
-------------------------------------------------------------------------[comment] */

/*
centering in Explorer 5x
-------------------------------------------------------------------------[comment] */
body {
	text-align: center;
	}
/*
centering for compliant browsers
---------------------------------[comment] */
#container {
	margin:auto;
	width:90%;
	min-width:40em;
	max-width:1200px;
/*

re-aligning text after Explorer centering
---------------------------------[comment] */
	text-align: left;
	border: solid black 1px;
	}
#identity {
	margin-bottom: 1px;
	border-bottom: solid black 1px;
	}
	#identity h2 {
	padding:0px;
	margin:0px;
	display:none;
	}
	#identity p {
	display:none;
	}
#topnav, #breadcrumb {
	font-size: 90%;
	}
	#topnav li, #breadcrumb li {
	display: inline;
	padding: 0em 0.2em 0em 0em;
	list-style-type: none;
	}
#navigation {
	clear: both;
	float: left;
	width: 20%;
	margin-left: 3px;
	display: inline;
	margin-bottom: 2px;
	border-right: solid black 1px;
    }
	#navigation ul {
	list-style:none;
	text-decoration: none;
	margin: 5px;
	}
#main-content {
	float: left;
	width: 75%;
	margin-left: 3px;
	margin-bottom: 2px;
	padding-bottom: 10px;
	}
#siteinformation {
	clear: both;
	border-top: solid black 1px;
	}
	#siteinformation li {
	display: inline;
	list-style-type: none;
	}

/*
Standardize text appearance across browsers- mostly
-------------------------------------------------------------------------[comment] */	
/*
General text and related selectors 
---------------------------------[comment] */
body {
	font-family: Geneva, Verdana, Arial, Helvetica, sans-serif;
	margin:5px;
	padding: 0;
	}
/*
links and related selectors 
---------------------------------[comment] */
a {
	border:none;
	background: none;
	text-decoration: none;
	}
	

/*replaced elements 
-------------------------------------------------------------------------[comment] */
img {
	border: 0px;
	padding: 0px;
	}