
.navigation ul li {
        position: relative;
    }

.navigation ul ul {
        position: absolute;
        width: 100%;
    }
.navigation ul {
	margin: 0;
	padding: 0;	
}
.navigation ul li {width:10%;}

.navigation {width:75%;
margin-left:8vw;
	position:absolute;
}

.navigation li {
    display:inline-block;
    float: left;
	min-width:10%;
	
	margin-right:0.2em;
	padding-top:0.45em;
	padding-bottom: 0.5em;
	margin-top:0.2em;
	border-left-style: ridge;
	border-left-color:#f2cc33;
	border-left-width:thin;
	
}



.navPipeRight {
    
	border-right-style: ridge;
	border-right-color:#f2cc33;
	border-right-width:thin;
	
}




.navigation li a {
    display:block;
   	text-align: center;
   	text-decoration: none;
	font-size:0.9vw;
	
}
.navigation li:hover a {
    background: #000;
																			/*here*/
}
.navigation li:hover ul a {
    background: #000;
    color: #2f3036;
    
}
.navigation li ul {
    display: none;
}
/*Make dropdown links vertical*/
.navigation li ul li {
    display: block;
    float: none;

}
.navigation li ul li:hover a {
    background: #1e324d;
	
}
.navigation > ul li a:hover + .hidden, .hidden:hover {
    display: block;
	 
}

/*Style 'show menu' label button and hide it by default*/
.navigation .show-menu {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    background: #1e324d;
    text-align: center;
    padding: 10px 0;
    display: none;
}
.navigation > input[type=checkbox]{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
.navigation > input[type=checkbox]:checked ~ #menu{
    display: block;
	margin:0 auto;
	
}
ul.hidden li {width:100%;}
@media screen and (max-width : 760px){
    /*Make dropdown links appear inline*/
	.navigation {
		margin-left:17vw;
		line-height:0.5vh;
		background-color:#585353;
		width:150px;
	}											/*centers responsive show menu and at 50% */
	/*#menu {margin-left:20%;} 														/*centers responsive links*/
    .navigation ul {
        position: static;
        display: none;
		padding:0;
		z-index:1;
    }
    /*Create vertical spacing*/
    .navigation li {
        margin-bottom: 1px;
		width:100%;
    }
    /*Make all menu links full width*/
    .navigation ul li, li a {
        width: 100%; 																/* controls responsive drop down width */
    }
    /*Display 'show menu' link*/
    .navigation .show-menu {
        display:block;
		background-color: #585353;
    }
	.navigation li ul li a {
    width: auto;
    min-width: 10em;
    padding: 0 20px;
}
	.navigation li ul li {
    display: block;
    float: none;
	width:100%;
}
	.navigation ul li {
       background-color: #6e6868;
		z-index:3;
    }
	.navigation li a {
    display:block;
   	text-align: center;
   	text-decoration: none;
	font-size:2vw;
	
}
.navigation li {
   border:0;
	
}
	ul #menu {width:150px;}
}