/* Generic context menu styles */
.contextMenu {
	position: absolute;
	z-index: 99999;
	border: solid 1px #CCC;
	background-color: rgb(255, 255, 255);
	margin: 0;
	padding: 0;
	display: none;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contextMenu LI {
	list-style: none;
	margin: 0px;
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 20px;
	padding: 3px 15px;
	padding-left: 30px;
}

.contextMenu LI.hover {
	color: #FFF;
	background-color: rgba(0, 0, 0, 0.1);
}

.contextMenu A {
	color: #333;
	text-decoration: none;
	display: block;
	line-height: 25px;
	height: 25px;
	outline: none;
	width: 100%;
	border-left: 1px solid rgba(0, 0, 0, 0.1);
	padding-left: 5px;
}

.contextMenu LI.disabled A {
	color: #AAA;
	cursor: default;
}

.contextMenu LI.hover.disabled A {
	background-color: transparent;
}

.contextMenu LI.separator {
	border-top: solid 1px #CCC;
}
