*,*:after,*:before {	-webkit-box-sizing: border-box;	-moz-box-sizing: border-box;	box-sizing: border-box;}
.clearfix:before,.clearfix:after {	content: " ";	display: table;}
.clearfix:after {	clear: both;}


nav {

    text-align: right;
    text-transform: uppercase;  
   
}

nav ul {
    width: 100%;
    margin: 0 auto;
	position:absolute;
	right:8%;
    list-style-type: none;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    padding: 0.5em 2em;
    box-sizing: border-box;
    border-radius:20px;
-o-transition: background 0.5s ease-out;
-webkit-transition: background 0.5s ease-out;
-moz-transition: background 0.5s ease-out;
transition: background 0.5s ease-out;


}

nav ul li a:hover {
    color: white;
	background:#002d7b;
	border-radius:20px;
	-o-transition: background 0.25s ease-in;
-webkit-transition: background 0.25s ease-in;
-moz-transition: background 0.25s ease-in;
transition: background 0.25s ease-in;


}

.current_page {
    background-color:#002d7b;
		border-radius:20px;
}

.current_page a {
    color: white;
}

#menu_button_wrapper{
    display: none;
}

.hidden {
    display: none;
}

/* Responsive for smaller screens */

@media (max-width: 760px) {
	
    #menu_button_wrapper {
        display: block;
		 padding: 0 1em 1em;
        color: #9d9d9d;
        -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.1);
        box-shadow: 0 1px 0 rgba(255,255,255,.1);
        margin-bottom: .5em;
		
    }

	
    
    #menu_button {
        box-sizing: border-box;
        float: right;
        padding: .5em 1em;
		background:#002d7b;
        border-radius: 5px;
        color: white;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    #menu_button:hover {
        cursor: pointer;
        background-color: #002d7b;
    }
    
    #hamburger {
        float: right;
        padding-top: .15em;
    }
    
    #menu_button span{
        display: block;
        background-color: #fff;
        width: 1.2em;
        height: .15em;
        border-radius: 1px;
        margin-bottom: .2em;
    }
    
    nav ul {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
		background:#002d7b;
		color:#fff;
		min-height:1000px;
	    right:0%;
    }

    nav ul li {
        display: block;
    }
    
    nav ul li a {
        width: 100%;
		color:#fff;
		 padding: 1em 1em;
		 font-size:16px;
		 border-radius:0px;
		 border-bottom:1px solid #0c3d93;
    }

}
