#button {
	width: 12em;
	border-right: 0px solid #000;
	padding: 0 0 0.3em 0;
	margin: -5;
	margin-bottom: 1em;
	font-family: 'Trebuchet MS', 'Lucida Grande',
	  Verdana, Lucida, Geneva, Helvetica, 
	  Arial, sans-serif;
	background-color: #bfdac4;
	color: #333;
    	font-size: 14;
	}



	#button ul {
		list-style: none;
		margin: 0;
		padding: 0;
		border: none;
		}
		
	#button li {



		position: relative;



		border-bottom: 1px solid #bfdac4;
		margin: 0;
		}

	#button li a {
		display: block;
		padding: 5px 5px 5px 0.5em;
		border-left: 6px solid #488c56;
		border-right: 6px solid #92a295;
		background-color: #74927a;
		color: #fff;
		text-decoration: none;
		width: 100%;
		}

	html>body #button li a {
		width: auto;
		}

	#button li a:hover {
		border-left: 6px solid #1c64d1;
		border-right: 6px solid #5ba3e0;
		background-color: #2586d7;
		color: #fff;
		}






#button ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 161px;
	border-bottom: 1px solid #ccc;
	}


ul li {
	position: relative;
	}

li ul {
	position: absolute;
	left: 160px;
	top: 0;
	display: none;
	}

ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; }
* html ul li a { height: 1%; }
/* End */


li:hover ul, li.over ul { 
	display: block; }



startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
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;


li:hover ul, li.over ul { 
	display: block; }


/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

