.ctxmenu {
	background: #FAFAFA;
    border: 1px solid #BDBDBD;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 250px;
	z-index: 999999;
	word-break: break-word;
}

.ctxline {
border-bottom: 1px solid #E0E0E0;
    margin: 0;
    padding: 5px 35px;
}

.ctxline:hover
{
    background: #1E88E5;
    color: #FAFAFA;
}

.ctxmenu li {
	position: relative;
}

.ctxdropdown{
	position: absolute;
	left: 100%;
	display:none;
	top: 0;
}

.ctxdropdown.ctxdropdown-left{
	left: 100%
}

.ctxdropdown.ctxdropdown-right{
	right: 100%
}

.ctxline:hover + .ctxdropdown{
	display: block;
}

.ctxdropdown:hover{
	display: block;
}

.ctxe:after {
    content: ">";
    text-align: right;
    float:right;
	position: relative;
	left: 25px;
}