/* Generic context menu styles */
.contextMenu {
	position: absolute;
	width: 180px;
	z-index: 99999;
	border: solid 1px #CCC;
	background: #FFF;
	padding: 0px;
	margin: 0px;
	display: none;
	font-size: 11px;
	-moz-box-shadow: 3px 3px 6px #333333;
	-webkit-box-shadow: 3px 3px 6px #333333;
	box-shadow: 3px 3px 6px #333333;
}

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

.contextMenu A {
	color: #111;
	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;
}

.contextMenu LI.hover A {
	color: #FFF;
	background-color: #3399FF;
}

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

.contextMenu LI.hidden A {
	display: none;
}

.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.edit A { background-image: url(/rs/resources/images/icons/silk/pencil.png); }
.contextMenu LI.pdf24 A { background-image: url(/rs/resources/images/icons/icon_pdf_24.png); }
.contextMenu LI.forward A { background-image: url(/rs/resources/images/icons/silk/forward_blue.png); }
.contextMenu LI.undo A { background-image: url(/rs/resources/images/icons/silk/arrow_undo.png); }
.contextMenu LI.sync A { background-image: url(/rs/resources/images/icons/silk/arrow_refresh.png); }
.contextMenu LI.copy A { background-image: url(/rs/resources/images/icons/silk/page_white_copy.png); }
.contextMenu LI.ok A { background-image: url(/rs/resources/images/icons/silk/tick.png); }
.contextMenu LI.wand A { background-image: url(/rs/resources/images/icons/silk/wand.png); }
.contextMenu LI.cancel A { background-image: url(/rs/resources/images/icons/silk/cross.png); }
.contextMenu LI.pageAdd A { background-image: url(/rs/resources/images/icons/silk/page_add.png); }
.contextMenu LI.pageCopy A { background-image: url(/rs/resources/images/icons/silk/page_copy.png); }
.contextMenu LI.pageDelete A { background-image: url(/rs/resources/images/icons/silk/page_delete.png); }