#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#cssmenu {
	font-family: Roboto, sans-serif;
}
#cssmenu > ul {

	width: 220px;
	background: #ffffff;
}
#cssmenu > ul > li > a {
	padding: 12px 15px;
	font-size: 14px;
	color: #bcbcbc;
	/*
	 *font-weight: 700;
	 */

	text-decoration: none;
	-webkit-transition: color .2s ease;
	-o-transition: color .2s ease;
	-ms-transition: color .2s ease;
	transition: color .2s ease;
}
#cssmenu > ul > li:hover > a, #cssmenu > ul > li > a:hover {
	color: #000000;
}

#cssmenu ul li.has-sub > a::before {
	right: 30px;
	position: absolute;
	z-index: 2;
	display: block;
	width: 0;
	height: 0;
	border: 3px solid transparent;
	content: "";
}
#cssmenu > ul > li.has-sub > a::before {
	top: 16px;
	border-left-color: #bcbcbc;
}

#cssmenu ul ul li.has-sub > a::before {
	top: 15px;
	border-left-color: #bcbcbc;
}

#cssmenu ul li.has-sub > a:hover::after {
	position: absolute;
	right: 30px;
	z-index: 2;
	display: block;
	width: 0;
	height: 0;
	border: 3px solid transparent;
	content: "";
}
#cssmenu > ul > li.has-sub > a:hover::after {
	top: 16px;
	border-left-color: #000000;
}

}
#cssmenu ul ul li.has-sub > a:hover::after {
	top: 150px;
	border-left-color: #000000;
}

#cssmenu ul {
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
	perspective: 600px;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
#cssmenu ul ul {
	position: absolute;
	top: 0;
	left: -9999px;
	width: 180px;
	background: #ffffff;
	opacity: 0;
	-moz-transition: opacity 0.2s ease, -moz-transform 0.2s ease;
	-webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
	-ms-transition: opacity 0.2s ease, -ms-transform 0.2s ease;
	-o-transition: opacity 0.2s ease, -o-transform 0.2s ease;
	transition: opacity .2s ease, transform .2s ease;
	-webkit-transform: rotate3d(0, 1, 0, 45deg);
	-moz-transform: rotate3d(0, 1, 0, 45deg);
	transform: rotate3d(0, 1, 0, 45deg);
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	transform-origin: left center;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}
#cssmenu ul li:hover > ul {
	left: 100%;
	opacity: 1;
	transform: rotate3d(0, 0, 0, 0);
}
#cssmenu ul ul::after {
	position: absolute;
	left: -8px;
	top: 14px;
	z-index: 5;
	display: block;
	width: 0;
	height: 0;
	border: 4px solid transparent;
	border-right-color: #ffffff;
	content: "";
}
#cssmenu ul ul a {
	padding: 12px 15px;
	font-size: 14px;
	color: #bcbcbc;
	/*font-weight: 700;
	 *
	 */
	text-decoration: none;
	-webkit-transition: color .2s ease;
	-o-transition: color .2s ease;
	-ms-transition: color .2s ease;
	transition: color .2s ease;
}
#cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {
	color: #000000;
}

#cssmenu .active1 > a {
	color: #000000;
	font-weight: bold;
}