/* Generic context menu styles */
.contextMenu {
	position: absolute;
	z-index: 9999999;
	border: 1px solid #CCC;
	padding: 0px;
	margin: 0px;
	display: none;
	background-color: #e9e9e9;
	background-repeat: no-repeat;
}

.contextMenu span.vboxMenuItemChecked {
	display: none;
	background: #ccc;
	border: 1px solid #999;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	width: 20px;
	height: 18px;
	margin: 0px;
	padding: 0px;
	position: relative;
	top: 1px;
	left: 3px;
}
ul.contextMenu {
	/* From #ffffff to #d9d9d9 */
	background-color: #e9e9e9;
	background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#d9d9d9)); /* for webkit browsers */
	background: -moz-linear-gradient(left,  #ffffff, #d9d9d9); /* for firefox 3.6+ */
	background: -o-linear-gradient(left,  #ffffff, #d9d9d9);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#ffffff', endColorstr='#d9d9d9'); /* for IE */
}

ul.contextMenu li {
	list-style: none;
	padding: 0px;
	margin: 0px;
	white-space: nowrap;
	border: 1px solid transparent;
	position: relative;
}

ul.contextMenu li.vboxMenuItemChecked > span.vboxMenuItemChecked {
	display: inline-block;
}
ul.contextMenu li.vboxMenuItemChecked > a {
	position: absolute;
	top: 0px;
}
.contextMenu LI input {
	padding-left: 2px;
}
.contextMenu a, .contextMenu SPAN {
	color: #333;
	text-decoration: none;
	display: block;
	line-height: 20px;
	height: 20px;
	background-position: 6px center;
	background-repeat: no-repeat;
	outline: none;
	padding: 1px 5px;
	padding-left: 28px;
	border: 0px solid transparent;
	cursor: pointer;
	white-space: nowrap;
}

ul.contextMenuNoBG li {
	cursor: pointer;
	border: 1px solid transparent;
}
ul.contextMenuNoBG li.disabled {
	cursor: default;
}
ul.contextMenuNoBG SPAN {
	display: inline;
	padding-left: 2px;
}
ul.contextMenuNoBG A {
	padding-left: 2px;
}

ul.contextMenu LI.hover {
	background-color: #f0f8ff;
	border: 1px solid #aaaaaa;
}
 
.contextMenu LI.disabled img {
	display: none;
}

.contextMenu LI.hover.disabled, .contextMenu LI.disabled A, .contextMenu LI.disabled SPAN {
	color: #AAA;
	cursor: default;
}

.contextMenu LI.hover.disabled, .contextMenu LI.hover.disabled A {
	background-color: transparent;
}

.contextMenu LI.separator {
	border-top: 1px solid #CCC;
}

.contextMenu LI:first {
	border-top: 1px solid transparent;
}

