/* menu android fix */
body { 
	-webkit-animation: bugfix infinite 1s;	 
}

@-webkit-keyframes bugfix { 
    from { padding:0; }
    to { padding:0; }
}

.nav{
	float: left;	
	width: 60%;
	height: 50px;
	position: relative;
	z-index: 99;
	background-color: #d91c5c;
	text-align: center;
	font-size: 0.8em;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0px;		
}

/*Strip the ul of padding and list styling*/
.nav ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
	width: 100%;
	
}

/*Create a horizontal list with spacing*/
.nav li {
	display:inline-block;
	float: left;
	margin-right: 1px;
	width: 14%;
		
}

.bdr{
	border-left: solid 1px #444;
}


/*Style for menu links*/
.nav li a {
	display:block;	
	min-width:140px;
	height: auto;	
	text-align: center;
	line-height: 50px;	
	color: #fff;	
	text-decoration: none;
	/* text-transform: uppercase; */
	-webkit-transition: all .9s ease;
	-moz-transition: all .9s ease;
	-ms-transition: all .9s ease;
	-o-transition: all .9s ease;
	transition: all .9s ease;
}

/*Hover state for top level links*/
.nav li:hover a {
	color: #bdd239;
	text-decoration: none;	
}

/*Style for dropdown links*/
.nav li:hover ul a {	
	background-color: #f36621;
	color: #fff;
	height: auto;
	text-align: left;
	line-height: 40px;
	text-decoration: none;
	text-transform: none;
}

/*Hover state for dropdown links*/
.nav li:hover ul a:hover {
	background: #991a83;
	color: #fff;
	text-decoration: none;
}

/*Hide dropdown links until they are needed*/
.nav li ul {
	display: none;	
}

/*Make dropdown links vertical*/
.nav li ul li {
	display: block;
	float: none;	
}

/*Prevent text wrapping*/
.nav li ul li a {
	width: 125%;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
.nav ul li a:hover + .hidden, .hidden:hover {
	display: block;	
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #333;
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	.nav {
		font-size: 1.3em;
		width: 100%;						
	}

	.nav ul {
		position: static;
		display: none;	
	}
	/*Create vertical spacing*/
	.nav li {
		margin-bottom: 0px;
		text-align: left;
		background-color: #666;
		color: #222;
	}
	/*Make all menu links full width*/
	.nav ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
	
	/*Prevent text wrapping*/
	.nav li ul li a {
	width: 100%;
	min-width: 100px;
	padding: 0 0px;
	}
}


