﻿/* Generic context menu styles */
.contextMenu 
{
    
	position: absolute;
	width: 141px;
	z-index: 99999;
	background: url("images/bg/menu_bg.png") repeat-y transparent center;
	margin: 0px;
	padding: 0px;
	display: none;
}

.contextMenu LI {
	list-style: none;
	padding: 0px;
	margin: 0px 1px 0px 1px;
}

.contextMenu A 
{
	color: #333;
	text-decoration: none;
	display: block;
	line-height: 20px;
	height: 20px;
	background-repeat: no-repeat;
	outline: none;
	padding: 1px 1px;
	padding-left: 22px;
}

.contextMenu LI.hover A {
	color: #FFF;
	background-color: #3399FF;
	background: url("images/bg/menu_select.png") repeat-x transparent;
}

.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.top{ padding-top:1px; background: url("images/icons.png") no-repeat -44px -300px  transparent; }
.contextMenu LI.bottom{ padding-top:1px; background: url("images/icons.png") no-repeat -44px -300px  transparent; }
.contextMenu LI.open span{ padding-left:15px; padding-bottom:6px; margin:0px 8px; font-size:10px;   float:left; background: url("images/icons.png") no-repeat -100px -280px  transparent; }
.contextMenu LI.delete span { padding-left:15px; padding-bottom:6px;margin:0px 8px;font-size:10px;      float:left;background: url("images/icons.png") no-repeat -60px -280px  transparent; }
.contextMenu LI.sendToFavorite span { padding-left:15px; padding-bottom:6px;margin:0px 8px;font-size:10px;     float:left; background: url("images/icons.png") no-repeat -80px -280px  transparent;}
.contextMenu LI.sendToDesktop span { padding-left:15px; padding-bottom:6px;margin:0px 8px;font-size:10px;     float:left; background: url("images/icons.png") no-repeat -40px -280px  transparent;}
