@charset "utf-8";
/* CSS Document */

/*CSS PRINCIPAL DA PAGINA ESTA NO CÓDIGO DA MESMA*/


ul {
	margin:0;
	padding:0;
	list-style: none;
	width: 150px;
	background:#FFFFFF;
	}
	
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 199px;
	top: 0;
	display: none;
	}
	
ul li a {
	display: block;
	font-family:"Trebuchet MS";
	font-size:14px;
	text-decoration: none;
	color: #4D90AB;
	background: #fff;
	padding: 5px;
	border: 1px solid #eee;
	border-bottom: 0;
	}
	
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; }
* html ul li a { height: 1%; }
/* End */

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 200px;
	border-bottom: 1px solid #eee;
	}
	
li:hover 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; }
	
<ul id="nav">

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }

.cadeia {
	font-family: "Trebuchet MS";
	font-size: 12px;
	color: #0099FF;
	text-decoration: none;
}

.texto {
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #000000;
	text-decoration: none;
}

.h1 {
	font-size: 16px;
	font-weight: bold;
	color: #000000;
}

.h2 {
	font-size: 14px;
	font-weight: bold;
	color: #000000;
}

#box {
	width:560px;
	border:1px #FFB56A solid;
	padding-left:60px;
	}