/* Generic context menu styles */
.contextMenu {
	position: absolute;
	width: 200px;
	z-index: 99999;
	border: solid 1px #d16105;
	background: #000;
	padding: 0px;
	margin: 0px;
	display: none;
	-moz-opacity: 1 !important;
-webkit-opacity: 1 !important;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
filter: alpha(opacity=100) !important;
opacity: 1 !important;

/*filter: alpha(opacity:0.7);
	KHTMLOpacity: 0.7;
	MozOpacity: 0.7;
	-khtml-opacity:.70;
	-ms-filter:”alpha(opacity=70)”;
	-moz-opacity:.70;
	filter:alpha(opacity=70);
	opacity:.70;*/



}

.contextMenu LI {
	list-style: none;
	padding: 0px;
	margin: 0px;
	height:40px;	
}

.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;
	font-size:12px;
	height:40px;
	 vertical-align:middle;

}

.contextMenu LI.hover A {
	color: #FFF;
	background-color: #d16105;
	font-size:12px;
	height:40px;
	vertical-align:middle;
	
}

.contextMenu LI.disabled A {
	color: #AAA;
	cursor: default;
}

.contextMenu LI.hover.disabled A {
	background-color: transparent;
}

.contextMenu LI.separator {
	border-top: solid 1px #d16105;
}

/*
	Adding Icons
	
	You can add icons to the context menu by adding
	classes to the respective LI element(s)
*/

.contextMenu LI.play A { background-image: url(images/play.png); }
.contextMenu LI.playexternal A { background-image: url(images/new-win-icon.gif); }
.contextMenu LI.add A { background-image: url(images/addtoplaylist.png); }
.contextMenu LI.dedicate A { background-image: url(images/dedicate.png); }
.contextMenu LI.download A { background-image: url(images/download.png); }
.contextMenu LI.share A { background-image: url(images/share.png); }
