.dl-menuwrapper{display:none;}
@media (max-width:1024px){

.dl-menuwrapper {
	display:block;
	width: 100%;
	position: absolute;
	top:0;
	right:0;
	padding-top:10px;
	z-index: 999;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
	-webkit-perspective-origin: 50% 200%;
	-moz-perspective-origin: 50% 200%;
	perspective-origin: 50% 200%;
}
ul.dl-submenu {
    width: 100%;
}
.dl-menuwrapper button {	
	border: none;
	width: 70px; height: 70px; margin-top: 15px;
	text-indent: -900em;
	overflow: hidden;
	position: absolute;
	top:0;
	right:10px;
	cursor: pointer;
	outline: none;
	background: url(../images/menu-button-bg.png) no-repeat center;
	background-size: 100%;
}

.dl-menuwrapper ul {
	background:#056fb2;	
        padding: 0;
	list-style: none;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.dl-menuwrapper li {
	position: relative;
}
#dl-menu li.child_li>a{
background: url(../images/arrowbt2.png) 98% center no-repeat;
}
#dl-menu li.addBg2>a{
background: url(../images/arrowbt3.png) 20px center no-repeat;

}

.dl-menuwrapper li a {
	display: block;
	position: relative;
	padding: 15px 15px;
	font-size: 16px;
	line-height: 20px;
	font-weight: 300;
	color: #fff;
	
	border-bottom:1px solid rgba(255,255,255,.5);
	outline: none;
}

.no-touch .dl-menuwrapper li a:hover {
	background: rgba(255,248,213,0.1);
}

.dl-menuwrapper li.dl-back > a {
	padding-left: 30px;
	background: rgba(0,0,0,0.1);
}

.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child){
	-webkit-font-smoothing: antialiased;
	
}

.dl-menuwrapper li.dl-back:after {
	left: 10px;
	color: rgba(255,255,255,0.8);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}

.dl-menuwrapper li > a:after {
	right: 10px;
	color: rgba(255,255,255,0.8);
}

.dl-menuwrapper .dl-menu {
	margin:90px 0 0 0;
	position: absolute;
	width: 100%;
	opacity: 0;
	z-index:999;
	pointer-events: none;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.dl-menuwrapper .dl-menu.dl-menu-toggle {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.dl-menuwrapper .dl-menu.dl-menuopen {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

/* Hide the inner submenus */
.dl-menuwrapper li .dl-submenu {
	display: none;
}


.dl-menu.dl-subview li,
.dl-menu.dl-subview li.dl-subviewopen > a,
.dl-menu.dl-subview li.dl-subview > a {
	display: none;
}

.dl-menu.dl-subview li.dl-subview,
.dl-menu.dl-subview li.dl-subview .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
.dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
	display: block;
}


.dl-menuwrapper > .dl-submenu {
	position: absolute;
	width: 100%;
	top: 50px;
	left: 0;
	margin: 0;
z-index: 1000;
}

/* Animation classes for moving out and in */

.dl-menu.dl-animate-out-1 {
	-webkit-animation: MenuAnimOut1 0.4s;
	-moz-animation: MenuAnimOut1 0.4s;
	animation: MenuAnimOut1 0.4s;
}


@-webkit-keyframes MenuAnimOut1 {
	
	100% {
		
		opacity: 0;
	}
}



@-moz-keyframes MenuAnimOut1 {
	
	100% {
		
		opacity: 0;
	}
}



@keyframes MenuAnimOut1 {
	
	100% {
		
		opacity: 0;
	}
}



.dl-menu.dl-animate-in-1 {
	-webkit-animation: MenuAnimIn1 0.3s;
	-moz-animation: MenuAnimIn1 0.3s;
	animation: MenuAnimIn1 0.3s;
}



@-webkit-keyframes MenuAnimIn1 {
	
	100% {
		
		opacity: 1;
	}
}



@-moz-keyframes MenuAnimIn1 {
	100% {
		
		opacity: 1;
	}
}



@keyframes MenuAnimIn1 {
	100% {
		
		opacity: 1;
	}
}



.dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
	-webkit-animation: SubMenuAnimIn1 0.4s ease;
	-moz-animation: SubMenuAnimIn1 0.4s ease;
	animation: SubMenuAnimIn1 0.4s ease;
}


@-webkit-keyframes SubMenuAnimIn1 {
	
	100% {
		
		opacity: 1;
	}
}



@-moz-keyframes SubMenuAnimIn1 {
	100% {
		
		opacity: 1;
	}
}


@keyframes SubMenuAnimIn1 {
	100% {
		
		opacity: 1;
	}
}



.dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
	-webkit-animation: SubMenuAnimOut1 0.4s ease;
	-moz-animation: SubMenuAnimOut1 0.4s ease;
	animation: SubMenuAnimOut1 0.4s ease;
}



@-webkit-keyframes SubMenuAnimOut1 {
	
	100% {
		
		opacity: 0;
	}
}


@-moz-keyframes SubMenuAnimOut1 {
	100% {
		
		opacity: 0;
	}
}


@keyframes SubMenuAnimOut1 {
	100% {
		
		opacity: 0;
	}
}






/* No JS Fallback */
.no-js .dl-menuwrapper .dl-menu {
	position: relative;
	opacity: 1;
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}

.no-js .dl-menuwrapper li .dl-submenu {
	display: block;
}

.no-js .dl-menuwrapper li.dl-back {
	display: none;
}

.no-js .dl-menuwrapper li > a:not(:only-child) {
	background: rgba(0,0,0,0.1);
}

.no-js .dl-menuwrapper li > a:not(:only-child):after {
	content: '';
}
}

@media (max-width:750px){
.dl-menuwrapper button{width: 50px; height: 50px;    margin: 0;}
.dl-menuwrapper .dl-menu{    margin: 40px 0 0 0;}
}