#dockLogin {
	clear: left;
	float: left;
	position: relative;
	background-color: #FFFFFF;
	border-color: #002f55;
	border-width: 2px;
	border-style: solid;
	width: 150px;
}
#dockNewsletter {
	clear: left;
	float: left;
	position: relative;
	background-color:#FFFF66;
	width: 150px;
	margin-top: 10px;
	border-color: #002f55;
	border-style: solid;
	border-width: 2px;
}

#dockJogador {
	clear: left;
	float: left;
	position: relative;
	background-color: #ACDDCF;
	width: 150px;
	margin-top: 10px;
	border-width: 2px;
	border-color: #002f55;
	border-style: solid;
}
#dockAnuncio {
	clear: left;
	float: left;
	position: relative;
	background-color: #FFFFFF;
	width: 150px;
	margin-top: 10px;
	margin-bottom: 10px;
	border-width: 2px;
	border-color: #002f55;
	border-style: solid;
	height: 160px;
}
ul {

	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	display: block;

	}


ul li {
	position: relative;
	display: block;
	}
	
li ul {
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;

	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	background: #162D4E;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

ul li a:hover {
	color: #FFFFFF;
	background: #006699;
} /* Hover Styles */
		
li ul li a { 
	padding: 2px 5px;
	display: block;
	} /* Sub Menu Styles */
		
li:hover ul, li.over ul {
		display: block;
} /* The magic */

