:root {
	--verde: #025446;
	--verde_hover: #417F74;
	--azul: #6aa5bf;
	--azul_hover: #8FBCCF;
	--azul_claro: #f4fcff;
}
*{
	margin: 0;
	padding: 0;
	font-family: Degular, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: var(--verde);
	font-size: 18px;
	line-height: 1.3em;
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
	transition:
			color 0.2s ease,
			background-color 0.2s ease;
}
b, strong{
	font-weight: bold;
}
i, em{
	font-style: italic;
}
img, table{
	border: none;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
	color: var(--azul);
}
a:hover{
	text-decoration: underline;
}
table{
	border-spacing: 0;
    border-collapse: separate;
}
html, body{
	width: 100%;
	height: 100%;
}
* html #divTudo{
	height: 100%;
}
#divTudo{
	position: relative;
	min-height: 100%;
}
#divGeral{
	position: relative;
	width: 100%;
}
.limite{
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
h1{
	font-size: 30px;
	font-weight: bold;
}