@charset "utf-8";
/* CSS Document */




@media screen and (max-width: 767px)
{


#menu{
	transition: all 0.3s ease;
	position: fixed;
	width: 0%;
	top: 0;
	left: -200px;
	background: #000 none repeat scroll 0% 0%;
	height: 100%;
	z-index: 999;
	box-shadow: 0px 0px 10px black;    overflow-x: auto;
}

#menu a{
	color: white;
	text-decoration: none;
	padding:0;
	margin:0;
	border-radius: 0;
	transition: all 0.2s ease;text-transform:uppercase;
}

#menu a:hover{
	background: rgba(0, 0, 0, 0.34) none repeat scroll 0% 0%;
}

#menu-toggle{
position: fixed;
top: 5px;
left: 86%;
background: #000 none repeat scroll 0% 0%;
z-index: 1000;
padding: 10px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
transition: all 0.3s ease 0s;}

#menu-toggle:hover{
	cursor: pointer;
}

#menu.open{
	left: 0;
	width: 200px;
	display: block;
}

#menu-toggle.open{
	*left: 200px;
}


}