/* Generic context menu styles */
.contextMenu {
	position: absolute;
	/*width: 100px;*/
	z-index: 99999;
	border: solid 1px #CCC;
	background: #EEE;
	padding: 0px;
	margin: 0px;
	display: none;
}

.contextMenu li {
	list-style: none;
	padding: 0px;
	margin: 0px;
	text-align:left;
	white-space:nowrap;
	width:180px;
}

.contextMenu li:hover {
	background-color: #7799cc;
}

.contextMenu A {
	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;
}

.contextMenu li hr {
	border:none;
	height:1px;
	background-color:#999;
}

.contextMenu LI.hover A {
	color: #FFF;
}

.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.edit a { background-image: url(../img/icons/page_white_edit.png); }
.contextMenu li.add a  { background-image: url(../img/icons/page_white_add.png); }
.contextMenu li.delete a  { background-image: url(../img/icons/page_white_delete.png); }
.contextMenu li.cancel a  { background-image: url(../img/icons/cross.png); }
.contextMenu li.up a  { background-image: url(../img/icons/arrow_up.png); }
.contextMenu li.down a  { background-image: url(../img/icons/arrow_down.png); }
.contextMenu li.preview a  { background-image: url(../img/icons/magnifier.png); }
.contextMenu li.link a  { background-image: url(../img/icons/link.png); }

