/* CSS Document */



#nav a{
	color:#6d6e71;
	font-family:myriadRoman;
	font-weight:bold;
	text-decoration:none;
	font-size:16px;
	text-transform:uppercase;
	letter-spacing:2px;
}

#nav a:hover{
	color:#c41230;

}


#nav ul {
  text-align: left;
  display: inline;
  margin: 0;
  padding: 15px 4px 17px 0;
  list-style: none;
  position:relative;
  z-index:2;
}

#nav ul li {
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
  margin-right: -4px;
  position: relative;
  padding-right: 75px;
  background: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#nav ul li:hover {

}
#nav ul li ul {
  padding: 0;
  position: absolute;
  /*top: 48px;*/
  left: 0;
  width: 210px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
}
#nav ul li ul li { 
  background: #e7e8e9; 
  display: block; 
  color: #fff;
  padding-left:10px;
  padding-right:10px;
  padding-top:5px;
  padding-bottom:5px;
}
#nav ul li ul li:hover { background: #e7e8e9;  }

#nav ul li ul li:hover a{ color:#c41230; }

#nav ul li:hover ul {
  display: block;
  opacity:1;
  visibility:visible;
}

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

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




 @media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 736px)
  and (-webkit-min-device-pixel-ratio: 2) { 
  /*Make dropdown links appear inline*/
	 #nav ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	#nav li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	#nav ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
	
	#nav a{
		font-size:40px;	
	}
  }