/* zerando html no css */

* {
	margin: 0;
	padding: 0;
	border: 0;
	text-align:inherit;
	font-family:inherit;
	font-weight:inherit;
	font-size:inherit;

}

a {
	font-family:Arial, Helvetica, sans-serif;	
}

/* define o estilo de foco! */
:focus {
	outline: 0;
}
body {
	line-height: 17px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.8em;
	font-weight:normal;
	color: #646464;
	overflow-x:hidden;
	background: #b6b69d;
	text-align:center; /* centraliza a div onde consta o mapa e o conteúdo */
}
ol, ul, li {
	list-style: none;
	list-style-type:none;
}

table {
	border-collapse: separate;
	border-spacing: 0; /*cellpading*/
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}