.contextmenu-wrapper{
    border: 1px solid #B8CBCB;
    background-color: #ffffff;
    -moz-box-shadow: 2px 2px 5px #666;
    -webkit-box-shadow: 2px 2px 5px #666;
    box-shadow: 2px 2px 5px #666;
}
.contextmenu-wrapper *{
	box-sizing: border-box;
	position: relative;
}
.contextmenu-wrapper ul,
.contextmenu-wrapper li {
	list-style: none;
	border: 0;
	outline: 0;
}
.ctxmenu-ulist{
	padding: 2px 0;
	margin: 0;
}
.ctxmenu-ulist .ctxmenu-item{
	margin: 0;
	padding: 0 2px;
	position: relative;
	width: 200px;
	font-size: 12px;
	background-color: #ffffff;
}
.ctxmenu-ulist .ctxmenu-item-separate::after{
	content: ' ';
    width: 100%;
    height: 1px;
    display: block;
    background-color: #afafaf;
    margin: 3px 0;
}
.ctxmenu-item-extend{
	position: absolute;
	left: calc(200px - 6px);
	top: 0px;
}
.ctxmenu-item-extend-icon{
	width: 0;
    height: 0;
    border: 5px dashed transparent;
    border-left: 5px solid #666666;
    overflow: hidden;
    position: absolute;
    top: 7px;
    right: 5px;
}
.ctxmenu-item-content-hover ~ .ctxmenu-item-extend-icon{
	border-left: 5px solid #ffffff;
}
.ctxmenu-item-content{
	width: 100%;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-content: center;
	-webkit-align-content: center;
	-moz-align-content: center;
	padding: 5px 15px 5px 1px;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	cursor: pointer;
}
.ctxmenu-item-content:hover{
	color: #ffffff;
	background-color: #319cb7;
}
.ctxmenu-item-content-hover{
	color: #ffffff;
	background-color: #319cb7;
}
.ctxmenu-item-content-disabled{
	color: #999999 !important;
	cursor: default !important;
	background-color: #ffffff;
}
.ctxmenu-item-content-disabled:hover{
	color: #999999 !important;
	cursor: default !important;
	background-color: #ffffff;
}
.ctxmenu-item-content .ctxmenu-item-tag{
	width: 25px;
	flex: 0 0 25px;
	text-align: left;
}
.ctxmenu-item-content .ctxmenu-item-tips{
	width: 30px;
	flex: 0 0 30px;
	text-align: right;
}
.ctxmenu-item-content .ctxmenu-item-text{
	width: 100%;
	overflow: hidden;
    text-overflow: ellipsis;
	white-space: nowrap;
	text-align: left;
}
.ctxmenu-item-tag-selected{
	width: 6px;
    height: 12px;
    border-color: #009933;
    border-style: solid;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate3d(4px, -4px, 0);
}
.ctxmenu-item-content:hover > .ctxmenu-item-tag .ctxmenu-item-tag-selected{
	border-color: #ffffff;
}
