@import url(https://fonts.googleapis.com/css?family=Cutive);
/**
 * Design Shack Respnsive Menu
 */


* {
	padding: 0;
	margin: 0;
	
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
}

nav.top, .toggleMenu {
  position: fixed;
  top: 0;
  width: 100%;
  color: #ffffff;
  /* Adds shadow to the bottom of the bar */
  -webkit-box-shadow: 0px 0px 8px 0px #000000;
  -moz-box-shadow: 0px 0px 8px 0px #000000;
  box-shadow: 0px 0px 8px 0px #000000;
  /* Adds the transparent background */
  background-color: rgba(1, 1, 1, 0.8);
  color: rgba(1, 1, 1, 0.8);
  overflow: hidden;
  z-index: 1000;
}

.toggleMenu {
	font: 400 13px/1.4 'Cutive', Helvetica, Verdana, Arial, sans-serif;
	color: white;
	padding: 5px;
	text-align: center;
	width: 100px;
	cursor: pointer;
}

nav.top li a {
	font: 400 13px/1.4 'Cutive', Helvetica, Verdana, Arial, sans-serif;
	padding: 15px;
	color: white;
	text-decoration: none;
	text-align: center;
	width: 10%;
	display: block;
	float: left;
}

nav.top ul {
	margin: 0;
    list-style: none;
    overflow: hidden;
    padding-left: 0;
	height: 100%;
}

nav.top ul li {
	border-right: 1px solid #fff;
}

nav.top .current {
	background-color: rgba(63, 162, 191, 1);
}

nav.top .current:hover {
	color: white;
	text-decoration: underline;
}

@media only screen and (max-width : 1220px),
only screen and (max-device-width : 1220px){
    nav.top li a {
        width: 12%;
		font: 400 11px/1.4 'Cutive', Helvetica, Verdana, Arial, sans-serif;
    }
}

@media only screen and (max-width : 770px),
only screen and (max-device-width : 770px){
    nav.top li a {
        width: 22%;
        font: 400 12px/1.4 'Cutive', Helvetica, Verdana, Arial, sans-serif;		
    }	
}

@media only screen and (max-width : 620px),
only screen and (max-device-width : 620px){
    nav.top li a {
        width: 45%;
        font: 400 12px/1.4 'Cutive', Helvetica, Verdana, Arial, sans-serif;		
    }	
}

@media only screen and (max-width : 400px),
only screen and (max-device-width : 400px){
    nav.top li a {
        width: 100%;
        font: 400 12px/1.4 'Cutive', Helvetica, Verdana, Arial, sans-serif;
		border-bottom: 1px solid white;	
    }
	
	nav.top li:last-of-type a{
		border: none;
	}
}

nav.top a:hover {
	color: #999;
}
