/* Generic context menu styles */
.contextMenu {
	position: absolute;
	text-align: left;
	width: auto;
	z-index: 99999;
	border: solid 1px #CCC;
	background: #EEE;
	padding: 0px;
	margin: 0px;
	display: none;
	width: 220px;
}

.contextMenu .title {
	margin: 3px;
	padding: 1px 5px;
	line-height: 18px;
	background-color: #393E3C;
	color: white;
	font-weight: bold;
	display: block;
}

.contextMenu LI {
	list-style: none;
	padding: 0px;
	margin: 3px;
}

.contextMenu A {
	color: #333;
	text-decoration: none;
	display: block;
	line-height: 16px;
	height: 16px;
	outline: none;
	padding: 1px 5px;
}

.contextMenu LI.hover A {
	color: #FFF;
	background-color: #777;
}

.contextMenu LI.disabled A {
	color: #AAA;
	cursor: default;
}

.contextMenu LI.hover.disabled A {
	background-color: transparent;
}

.contextMenu LI.separator {
	border-top: solid 1px #CCC;
}


