
#menu{
	color: #fff;
	z-index: 11;
	width: 0px;
	height: 600px;
	overflow: hidden;
	background-color: #222;
	position: fixed;
	top: 0;
	right:0;
    -webkit-transition: width .4s ease 0s;
    transition: width .4s ease 0s;
    text-align: center;
}
#menu_scroll{
	position: absolute;
	top: 0;
	right:0;
}
#menu a{
	color: #ffffff;
	text-decoration: none;
    -webkit-transition: all .4s linear 0s;
    transition: all .4s linear 0s; 
    border-bottom: 2px solid rgba(17, 74, 234, 0);
}
#menu a:hover{
    -webkit-transition: all .1s linear 0s;
    transition: all .1s linear 0s; 
 	border-bottom: 2px solid rgba(17, 74, 234, 1);
}
#menu_content{
    -webkit-transition: all .4s linear 0s;
    transition: all .4s linear 0s; 
}
#menu_fullscreen{
	pointer-events:none;
	z-index: 10;
	position: fixed;
	top: 0;
	left:0;
	background-color: #222222;
	opacity: 0;
    -webkit-transition: opacity .4s linear 0s;
    transition: opacity .4s linear 0s;
}
#menu_close{
	text-align: right;
	width: 100%;
	cursor: pointer;
	opacity: .5;
    -webkit-transition: opacity .6s linear 0s;
    transition: opacity .6s linear 0s;
}
#menu_close:hover{
	opacity: 1;
    -webkit-transition: opacity .2s linear 0s;
    transition: opacity .2s linear 0s;
}
#menu ul{

}
#menu li{
	font-size: 2em;
	padding-bottom: 30px;
}
.menu_divider{
	width: 30%;
	height: 1px;
	background-color: #666;
	margin-left: auto;
	margin-right: auto;
}
#menu_social{
	width:50%;
	background-color: #114aea;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 400px;
}
#menu_social .btn{
	width:33%;
	float: left;

}