/* Generic context menu styles */
.contextMenu {
	position: absolute;
	min-width: 150px;
	max-width: 200px;
	z-index: 99999;
	border: solid 1px #ccc;

	background: #f5f5f5;
	background: -moz-linear-gradient(top,  #f5f5f5 0%, #eeeeee 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#eeeeee));
	background: -webkit-linear-gradient(top,  #f5f5f5 0%,#eeeeee 100%);
	background: -o-linear-gradient(top,  #f5f5f5 0%,#eeeeee 100%);
	background: -ms-linear-gradient(top,  #f5f5f5 0%,#eeeeee 100%);
	background: linear-gradient(to bottom,  #f5f5f5 0%,#eeeeee 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#eeeeee',GradientType=0 );

	padding: 0px;
	margin: 0px;
	display: none;
	border-radius: 4px;
	box-shadow: 3px 3px 25px rgba(0,0,0,.15);
}

.contextMenu li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.contextMenu a {
	color: #333;
	text-decoration: none;
	display: block;
	line-height: 25px;
	height: 25px;
	background-position: 6px center;
	background-repeat: no-repeat;
	outline: none;
	padding: 1px 15px;
}

.contextMenu li.hover a {
	color: #fff;
	background-color: #3399FF;
}

.contextMenu li.disabled a {
	color: #aaa;
	text-shadow: 1px 1px 1px #fff;
	cursor: default;
}

.contextMenu li.hover.disabled a {
	background-color: transparent;
}

.contextMenu li.separator {
	border-top: solid 1px #ccc;
}

