.menu {
	display: block;
	height: auto;
	width: 153px;
	margin: 0px 0 0px 0px; /* this page only */
	text-indent: 0px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	position: relative;
	padding: 0;
	margin: 0;
	list-style-type: none;
	width: 153px;
	white-space: nowrap;
}
.menu li { /* style the list items */
	float:left; /* for IE7 */
	height: 19px;
	width: 153px;
	background-color: #6CB7DB;
	padding-top: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	line-height: 1em;
}
.menu li ul {
/* hide the sub levels and give them a positon absolute so that they take up no room */
	/* visibility: hidden; */
    /* display: none; */
	/* this is for IE to make it interpret the overrrun padding */
	margin: 0;
    padding: 0;
    /* height: 0px; */
    height: 18px;
    white-space: nowrap;
    background-color: #888888;
}
.menu li.sub {
	background-image: url(/images/botao7.jpg);
	background-repeat: no-repeat;
	height: 19px;
	width: 153px;
	line-height: 1em;
	float: left;
}
/* get rid of the table */
.menu table {
	position: fixed;
	border-collapse:collapse;
	z-index: 100;
	font-size:1em;
	width: 0px;
	height: 0px;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {
	width: 153px;
	height: 19px;
	float: left;
}
/* style the link hover */
* html .menu a:hover {
	position:relative;
	height: 19px;
	width: 153px;
	float: left;
}
/* retain the hover colors for each sublevel IE7 and Firefox etc */
.menu li:hover > a {
}
.menu li.hov:hover {
	background-color:#6699CC;
	height: 19px;
	width: 153px;
	float: left;
}
.menu li.hov a:hover {
	background-color:#6699CC;
	height: 19px;
	width: 153px;
	float: left;
}

