/* Generic context menu styles */
.contextMenu {
	position: absolute;
	/*width: 120px;*/
	z-index: 99999;
	border: solid 1px #1EFF00;
	border-top:0;
	background: #000;
	padding: 0px;
	margin: 0px;
	display: none;
}

.contextMenu LI {
	list-style: none;
	padding: 0px;
	margin: 0px;
	background-image:url('hackbbs/images/ui-bg_dots-small_20_333333_2x2.png');
	border-top: solid 1px #1EFF00;
}

.contextMenu A {
	color: #FFF;
	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: #1EFF00;
}

.contextMenu LI.hover{
	background-color:#000;
}

.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.addIcon A { background-image: url('pics/add.png'); }
.contextMenu LI.delIcon A { background-image: url('pics/delete.png'); }
