@charset "UTF-8"; 
/*----------Basic Styling*/
* {
	margin: 0px;
	padding: 0px;
}

body {
	
	text-align: center;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 85%;
	}

#wrapper{
	position: relative;
	width: 930px;
	margin: 0 auto;
	text-align: left;
	
	}
	
#wrapper2{
	position: relative;
	width: 510px;
	margin: 0 auto;
	text-align: left;
	
	}

#wrapper3{
	position: relative;
	width: 525px;
	margin: 0 auto;
	text-align: left;
	
	}
	
#clear{
	clear:both;
	}
/*-----------position container elements-----------*/

#leftsidebar{
	float:left;
	width: 200;
	height:250px;
	/*background:url(ca.png) no-repeat;*/
	}
#rightsidebar{
	float:left;
	width:200;
	height: 250px;
	}
#header{
	}
#header h1 {
	margin-left: -1000px;
}

#content {
	position: relative;
	background:url(envision_logo.png) no-repeat
	center;
	float:left;
	width:500px;
	height:571px;
	}
#content2 {
	position: relative;
	center;
	float:left;
	font:"Trebuchet MS", Helvetica;	
	text-align: left;
	text-indent:20px;
	width:510px;
	padding:10px;
	}
	
#content3 {
	position: relative;
	center;
	float:left;
	font:"Trebuchet MS", Helvetica;	
	text-align: left;
	width:510px;
	padding:10px;
	}
#footer{
	color: #FF0000;
	font:"Trebuchet MS", Helvetica;	
	margin-top: 5em;
	text-align:center;
	}

/* -- main navigation styles --*/
 ul {
	margin: 0;
	padding: 0;
	list-style: none; 
	}

ul li {
  position: relative;
  padding: 1px 5px;
  text-decoration:none;
  float:left;
  color:#FF0000;
  font-size:16px;
  }
  
li ul {
  display: none;
  padding: 3px 20px;
  position: absolute; 
  left: 0;
  font-size:16px;
   }
#leftsidebar ul li ul li {
  border-left: 1px solid #666;
  } 
#rightsidebar ul li ul li {
	border-left: 1px solid #666;
	}
	
li > ul {
	top: auto;
	left: auto;
	 text-decoration:none
	}
	
li:hover ul, li.over ul{ 
display: block; 

}
	
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("mainNav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;


	

	
