
/* STICKY TOP BAR */

nav.desce {
	background-color: #0E9AD7;

	height: 50px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
        z-index: 9;

	 /* Translate -100% to move off screen */
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);

    /* Animations */
    -webkit-transition: all 300ms ease-in-out;
       -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
}

.center{
    width: 1000px;
    display: block;
    margin:0 auto;
}

nav.desce p {
	color: #fff;
	font-size: 3em;
	line-height: 50px;
	margin: 0;
	text-align: center;
}

nav.desce li{
    list-style: none;
    float:left;
    line-height: 50px;
    margin-left:15px;
}
nav.desce li a {    
    color:#fff;
    /* font-family:'latolight';*/
     margin-left: 15px;
     /*font-size:18px;*/
     font-size:10px;
     text-decoration:  none;
     text-transform: uppercase;
}
nav.desce li a:hover{
	text-decoration:none;
	color: #aaa !important;;
}
nav.desce li a:active{
	text-decoration:none;
	color: #aaa !important;;
}

.sticky {
    -webkit-transform: translateY(0%) !important;
       -moz-transform: translateY(0%) !important;
        -ms-transform: translateY(0%) !important;
            transform: translateY(0%) !important;
}

/* For Old IEs */
.no-transitions nav.desce {
	top: -70px;
}

.no-transitions .sticky {
	top: 0;
}