#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; */
/* 	-ms-box-sizing: border-box;  /*  New addition */ */
	box-sizing: border-box;
}
#cssmenu {
/* 	width: 220px; */
	font-family: Lato, sans-serif;
	color: #ffffff;
}
#cssmenu ul ul {
  display: none;
}
#cssmenu > ul > li.active > ul {
	display: block;
}
#cssmenu > ul > li.active > a {
	background: #444444;
	color: #ffffff;
}
.align-right {
	float: right;
}
#cssmenu > ul > li > a {
	padding: 16px 22px;
	cursor: pointer;
	z-index: 2;
	font-size: 16px;
	text-decoration: none;
	color: #ffffff;
	background: #444444;  /* #3ab4a6 */
/* 	-webkit-transition: color .2s ease; */
/* 	-moz-transition: color .2s ease;  This breaks the menu in Firefox. */
/* 	-ms-transition: color .2s ease;  /*  New addition */ */
/* 	-o-transition: color .2s ease; */
	transition: color .2s ease;
}
#cssmenu > ul > li > a:hover {
	color: violet;
}
/*
#cssmenu ul > li.has-sub > a:after {
	position: absolute;
	right: 26px;
	top: 19px;
	z-index: 5;
	display: block;
	height: 10px;
	width: 2px;
	background: #cccccc;
	content: "";
	-webkit-transition: all 0.1s ease-out;
	-moz-transition: all 0.1s ease-out;
	-ms-transition: all 0.1s ease-out;
	-o-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
}
*/
#cssmenu ul > li.has-sub > a:before {
	position: absolute;
	right: 22px;
	top: 19px;
	display: block;
	width: 15px;
	height: 12px;
	/* background: #cccccc; */
	content: "";
	border: 6px solid transparent;
	border-left: 7px solid #ffffff;
}
#cssmenu ul > li.has-sub.open > a:after,
#cssmenu ul > li.has-sub.open > a:before {
	right: 26px;
	top: 22px;
	border: 7px solid transparent;
	border-top: 6px solid #ffffff;
}
#cssmenu ul ul li a {
	padding: 14px 22px;
	cursor: pointer;
	z-index: 2;
	font-size: 14px;
	text-decoration: none;
	color: #dddddd;
	background: #777777;  /* #49505a */
/* 	-webkit-transition: color .2s ease; */
/* 	-moz-transition: color .2s ease;  /*  New addition */ */
/* 	-ms-transition: color .2s ease;   /*  New addition */ */
/* 	-o-transition: color .2s ease; */
	transition: color .2s ease;
}
#cssmenu ul ul ul li a {
	padding-left: 32px;
}
#cssmenu ul ul li a:hover {
	color: greenyellow;
}
#cssmenu ul ul > li.has-sub > a:after {
	top: 16px;
	right: 26px;
	/* background: #cccccc; */  /* #dddddd */
}
#cssmenu ul ul > li.has-sub > a:before {
	top: 20px;
	/* background: #cccccc; */  /* #dddddd */
}

.loner, .loner > a {
/* 	width: 220px; */
	padding: 14px 10px;
	cursor: pointer;
	z-index: 2;
	font-size: 14px;
	color: white;
	background: #777;
	text-decoration: none;
/* 	-webkit-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease; */
}
.loner a:hover {
	color:greenyellow;
}
