body
{
	font-family: 'Droid Sans', 'Helvetica', Arial, sans-serif;
	margin:0;
	padding: 0;
	height: 100%;
}

header
{
	padding-top: 10px ;
	height: 50px;
	width: 100%;
	text-align: center;
	font-size: 1.5em;
	background-color: black;
	color: white;
}

nav
{
	
	padding: 0;
	height: 40px;
	width: 100%;
	background-color: gray;
	text-align: center;
}

ul 
{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	display: inline-block;
}
			
li 
{
	display: inline;
}

ul li a 
{
	font-size: 12pt;        
	color: white;
	background-color: gray;
	text-decoration: none;
	text-transform: uppercase;
	padding: 10px;
	float: left;

}
			
ul li a:hover
{
	background-color: #eee;
	color: gray;
}

#map
{
	position: absolute;
	top: 100px;
	left: 0;        /* ajusta a borde de navegador */
	right: 0;
	bottom: 0;
	background: rgba(0,255,0,0.5);
}


