/* =carregando
----------------------------------------- */

.carregando ul
{
	padding: 0;
    margin: 0 auto;
	list-style: none;
	text-align: center;
	display: block;
}

.carregando li:nth-child(6) {animation-delay: 0s}
.carregando li:nth-child(5) {animation-delay: 0.2s}
.carregando li:nth-child(4) {animation-delay: 0.4s}
.carregando li:nth-child(3) {animation-delay: 0.6s}
.carregando li:nth-child(2) {animation-delay: 0.8s}
.carregando li:nth-child(1) {animation-delay: 1.0s}

.carregando li
{
	width: 5px;
	height: 5px;
	background-color: white;
	box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
	display: inline-block;
	border-radius: 50%;
	margin: 0 4px;
	animation: loading 5s infinite;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.030, 0.615, 0.995, 0.415);
}

@keyframes loading
{
	0% { transform: translateX(-30px); opacity: 0 }
	25% { opacity: 1}
	50% { transform: translateX(30px); opacity: 0 }
	100% { opacity: 0}
}


/* =nav
----------------------------------------- */

nav li>span
{
    transition: all 0.4s ease-out;
}


/* =inicial
----------------------------------------- */
#inicial
{
    background-image:url(../imgs/fx/inicial/nuvens.jpg);
    background-position:center top;
    background-color:#08142e;
}

#inicial .geral header nav li a
{
    z-index:3;
}

#inicial .radar
{
    width:100%;
    height:100%;
    position: absolute;
    background:transparent url(../imgs/fx/inicial/radar.png) center center no-repeat;
    z-index:1;
}

#inicial .conteudo
{
    position:absolute;
    z-index:3;
}

#inicial .geral header nav li.link04 a
{
    background-image:none;
}