/* Generic context menu styles */
.contextMenu {
	position: absolute;
	width: auto;
	*width: 280px;
	z-index: 99999;
	border: solid 1px #1557ab;
	background-color: aliceblue;
	padding: 5px;
	margin: 0px;
	display: none;
	-moz-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
}

.contextMenu LI {
	list-style: none;
	padding: 0px;
	margin: 0px;
	font-size: 0.9em;
}

.contextMenu A {
	color: #333;
	text-decoration: none;
	display: block;
	line-height: 2em;
	height: 2em;
	background-position: 6px center;
	background-repeat: no-repeat;
	outline: none;
	padding: 1px 5px;
	padding-left: 28px;
}

.contextMenu LI.hover A {
	color: #000;
	background-color: rgba(60,76,85,0.15);
}

.contextMenu LI.disabled A {
	color: #AAA;
	cursor: default;
}

.contextMenu LI.hover.disabled A {
	background-color: transparent;
}

.contextMenu LI.separator {
	border-top: solid 1px #CCC;
}

/*
	Adding Icons
	
	You can add icons to the context menu by adding
	classes to the respective LI element(s)
*/

.contextMenu LI.gotoURL A { background-image: url(img/arrow_down.png); }
