/**{
	margin: 0;
	padding: 0;
}
body{
	background: #fbfbfb;
	font-family: 'Exo', Helvetica, Verdana, Arial, sans-serif;
	font-size: 62.5%;
	font-weight: 200;
	line-height: 2.5em;
	-webkit-animation: bodyAnimation 3.5s ease;
}
strong, b{
	font-weight: bold;
}
a:hover{
	background: rgba(100,100,100,.1);
	color: #f00;
}
a:active{
	color: #2b3697;
	position: relative;
	top: 1px;
}*/
/*********
Alerta OUCH! ao clicar no Mapa
A alteraÃ§Ã£o da cor da fonte Ã© feita no JS
dinamicamente com Math.random() e toString(16)[hexa]
*********/
.ouch{
	color: #f00;
	font-size: 150%;
	left: 0;
	position: absolute;
	top: 0;
	z-index: 100;
}
/*********
Link fixo a esquerda do Github
*********/
.github-link{
	background: #e2e2e2;
	box-shadow: 0 0 .1em rgba(0,0,0,.4);
	color: #404570;
	display: block;
	font-size: 2em;
	font-weight: 700;
	left: -2em;
	padding: .3em 5em;
	position: absolute;
	top: .5em;
	text-decoration: none;
	text-indent: -3.3em;
	transform: rotate(-30deg);
	-webkit-transform: rotate(-30deg);
	-moz-transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	-o-transform: rotate(-30deg);
	transition: all ease-out .5s;
	-webkit-transition: all ease-out .5s;
	-moz-transition: all ease-out .5s;
	-ms-transition: all ease-out .5s;
	-o-transition: all ease-out .5s;
}
.github-link:hover{
	box-shadow: 0 0 .4em rgba(0,0,0,.6);
	padding: 1em 5em;
	text-indent: -2.3em;
	transition: all ease-out .5s;
	-webkit-transition: all ease-out .5s;
	-moz-transition: all ease-out .5s;
	-ms-transition: all ease-out .5s;
	-o-transition: all ease-out .5s;
}
/*********
Centralizando  o mapa
*********/
#maps{
	text-align: left;
}
/*********
Tooltip do :hover nos estados
Container jÃ¡ criado no HTML (preferÃ­vel dinamicamente via JS)
*********/
#legenda{
	background-color: #ced7dd;
	display: none;
	border: thin solid rgba(0,0,0,.2);
	border-radius: .2em;
	box-shadow: .2em .2em .2em rgba(0,0,0,.5);
	float: left;
	font-size: 2em;
	left: 0;
	padding: .5em;
	position: absolute;
	top: 0;
	width:270px;
}
#legenda p:nth-of-type(2){
	margin: .5em 0;
}
.title{
	display: block;
	font-size: .75em;
	font-weight: 700;
}
.nome-estado,
.nome-capital,
.sigla-estado{
	-webkit-animation: legendaAnima 1s ease-out;
}
@-webkit-keyframes legendaAnima{
	0%{
		margin-top: -1em;
		opacity: 0;
	}
	50%{
		opacity: .3;
	}
}
@-webkit-keyframes bodyAnimation{
	0%{
		margin-top: -10em;
		opacity: 0;
	}
}
/*********
Sobre o Mapa/JSON/dados
*********/
.sobre,
.detalhes,
.ideias{
	border-bottom: thin dashed #555;
	border-top: thin dashed #555;
	font-size: 150%;
	margin: 1em auto;
	padding: 1em 0;
	width: 50%;
}
.detalhes,
.ideias{
	border-top: none;
	margin: 0 auto 1em;
	padding: 0 0 1em 0;
}
.sobre p,
.detalhes p,
.ideias p{
	margin-bottom: 1em;
}
.sobre h1{
	text-align: center;
}
.sobre ul{
	list-style-position: inside;
	list-style-type: lower-greek;
}
.sobre ul li{
	margin: .5em 0;
}
.sobre ul li small{
	color: #f00;
	font-size: x-small;
}
.sobre ul li ul{
	font-size: inherit;
	list-style-type: katakana-iroha;
	margin-left: 2em;
	margin-top: .5em;
}
.sobre ul li ul li{
	margin: 0;
}
.detalhes h2,
.ideias h2{
	margin: 0 0 .5em 0;
}
.contato-links{
	display: inline-block;
	margin: 0 .3em;
}

/* tooltip styling. by default the element to be styled is .tooltip  */
  .tooltip {
    display:none;
    background:transparent url(/imagens/black_arrow.png);
    font-size:12px;
    height:70px;
    width:160px;
    padding:25px;
    color:#eee;
  }