/* Generic context menu styles */
.contextMenu {
	position: fixed;
	width: 120px;
	z-index: 999999;
	border: solid 1px #CCC;
	background: #fff1a9;
	padding: 0px;
	margin: 0px;
	display: none;
}

.contextMenu LI {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.contextMenu A {
	color: #00366B;
	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: #FFF;
	background-color: #00366B;
}

.contextMenu LI.disabled A {
	color: #AAA;
	cursor: default;
}

.contextMenu LI:hover.disabled A {
	background-color: transparent;
}

.contextMenu LI.separator {
	border-top: solid 1px #CCC;
}

.contextMenu LI.cancel
{
	background-color:#d4d4d4;
	border-bottom:solid 1px #CCC;
	font-weight:bold;
}

/*
	Adding Icons
	
	You can add icons to the context menu by adding
	classes to the respective LI element(s)
*/
/*
.contextMenu LI.block A 
{ 
	
	background-image: url(../img/seat.gif); 
	background-repeat: no-repeat;
	background-position: -10px 0;
	display: block;
	width: 10px;
	height: 10px;
}
.contextMenu LI.soc A 
{ 
	background-image: url(../img/seat.gif); 
	background-repeat: no-repeat;
	background-position: -20px 0;
	display: block;
	width: 10px;
	height: 10px;
}

*/