﻿

#menu-button{ /* hiding responsive menu button */
	display: none;
}
nav.mobile { /* hiding responsive menu */
	display:none;
}



@media screen and (max-width: 1537px)  {

/*==============================
Mobile Nav Styles			
================================*/	
#menu-button{ /* initially will need to be hidden */
	display: block;
	font-size: 30px;
	position: relative;
	z-index: 999;/* needs to be lower than nav.mobile, adjust as needed */
	padding:0 1% 0.5% 3%;
	width:96%;
	float:left;
	background:none;
	text-align: right;
	margin-top: 10px
}
#menu-button a{
	color:#fff;
	text-decoration: none;
}
#menu-button h3{color: #fff !important;}
#menu-button h3:hover{color: #ccc !important;}

#menu-button a:hover{
	color:#ccc;
	transition: all .4s ease-in-out !important; 
	-moz-transition: all .4s ease-in-out; 
	-webkit-transition: all .4s ease-in-out;
}
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #333;
	z-index: 999999999999999999; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 22px;
	border-bottom: 4px solid #222;	
	letter-spacing: 1px;
	font-weight: 700;
	text-align: left
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	line-height: 1;
	background: #222;
	color: #999;
	text-decoration: none;
	vertical-align: top;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #ccc;
}
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	border-top: 1px solid #151515;
	border-bottom: 1px solid #454545;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	border-top: 1px solid #454545;
	border-bottom: 1px solid #151515;
}
nav.mobile ul li a {
	position: relative;
	display: block;
	padding: 8px 10px;
	color: #999;
	text-decoration: none;
	font-size:14px;
	letter-spacing: 2px;
	font-weight: 300;
	text-align: left;
	text-transform: uppercase;
}
nav.mobile ul li a:hover {
	background: #fff;
	color: #000;
}
nav.mobile ul li li a { /* appearance of the sub-level links */
	background: #444;
	position: relative;
	display: block;
	padding: 10px 10px 10px 15px;
	color: #ccc;
	text-decoration: none;
	font-size:14px;
	letter-spacing: 2px;
}
nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
	background: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #fff;
	text-decoration: none;
	font-size:14px;
	letter-spacing: 2px;
}
nav.mobile ul li span.click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
	background:url(../siteart/arrow.png) 10px 12px no-repeat;
	background-size:55%;
	position:relative;
	display:block;
	float:right;
	margin:-44px 0 0 0;
	cursor:pointer;
	z-index: 12399994;
	width:44px;
	height:44px;
	-webkit-transition:background-size .3s ease-in-out;
	-moz-transition:background-size .3s ease-in-out;
	transition:background-size .3s ease-in-out;
}
nav.mobile ul li span.click:hover{
	background-size:60%;
}
}



@media screen and (max-width: 649px)  {
	
	#menu-button{text-align: left;}
	
}