/* Generic context menu styles */
.contextMenu {
	position: absolute;
	width: 120px;
	z-index: 99999;
	border: solid 1px #CCC;
	background: #f5f5f5;
	padding: 0px;
	margin: 0px;
	display: none;
	font-size: 12px;
}

.contextMenu LI {
	list-style: none;
	padding: 0px;
	margin: 0px;
	text-align: left;
}

.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: 15px;
}

.contextMenu  A:hover {
	/*color: #FFF;*/
	background-color: #c6def6;
}

.contextMenu LI.disabled A,
.contextMenu span 
 {
	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.active A { background-image: url(../images/bgFootP.gif); }
.contextMenu LI.cut A { background-image: url(images/cut.png); }
.contextMenu LI.copy A { background-image: url(images/page_white_copy.png); }
.contextMenu LI.paste A { background-image: url(images/page_white_paste.png); }
.contextMenu LI.delete A { background-image: url(images/page_white_delete.png); }
.contextMenu LI.quit A { background-image: url(images/door.png); }
