
/* STICKY TOP BAR */

nav {
	/*background-color: #131313;*/
	background-color: #ffffff;
	border-bottom: 1px solid #CCC;
	height: 50px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
        z-index: 99;

	 /* 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;
}

nav p {
	color: #fff;
	font-size: 3em;
	line-height: 50px;
	margin: 0;
	text-align: center;
}

nav li{
    list-style: none;
    float:left;
    line-height: 50px;
    margin-left:15px;
}
nav li a {    
    /*color:#b6b9c1;*/
    color:#333333;
     
     margin-left: 15px;
     font-size:18px;
     text-decoration:  none;
}
nav li a:hover {
    color:#2b8d52;
}

.sticky {
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
}

/* For Old IEs */
.no-transitions nav {
	top: -70px;
}

.no-transitions .sticky {
	top: 0;
}