/* Generic context menu styles */
.contextMenu {
	position: absolute;
	width: 120px;
	z-index: 99999;
	border: solid 1px #CCC;
	background: #EEE;
	padding: 0px;
	margin: 0px;
	display: none;
}

.contextMenu LI {
	list-style: none;
	margin: 0px;
	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;
	 cursor: pointer;
}
/*
.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.hover A {
	color: #FFF;
	background-color: #3399FF;
}

.contextMenu LI.disabled A {
	color: #AAA;
	cursor: default;
}

.contextMenu LI.hover.disabled A {
	background-color: transparent;
}

.contextMenu LI.hover {
	color: #FFF;
	background-color: #3399FF;
}

.contextMenu LI.disabled.hover {
	background-color: transparent;
	
}

*/

.contextMenu LI:hover {
	color: #FFF;
	background-color: #3399FF;
}

.contextMenu LI.disabled {
	color: #AAA;
	cursor: default;
}

.contextMenu LI.disabled:hover {
	background-color: transparent;
}
.contextMenu LI.fillColor:hover {
	background-color: transparent;
}
.contextMenu LI.separator {
	border-top: solid 1px #CCC;
}

.contextMenu LI.selected {
	color: #FF0000;
	background-color: #F5D0A9;
}

.contextMenu LI.fillColor img {
	border:solid 1px black;
}
.contextMenu LI.fillColor img:hover {
	border:solid 1px red;
}


/*
	Adding Icons
	
	You can add icons to the context menu by adding
	classes to the respective LI element(s)
*/

.contextMenu LI.edit  { background-image: url(/bingmaps/images/page_white_edit.png); background-repeat:no-repeat;}
.contextMenu LI.cut  { background-image: url(/bingmaps/images/cut.png); background-repeat:no-repeat;}
.contextMenu LI.copy   { background-image: url(/bingmaps/images/page_white_copy.png); background-repeat:no-repeat;}
.contextMenu LI.paste   { background-image: url(/bingmaps/images/page_white_paste.png); background-repeat:no-repeat;}
.contextMenu LI.delete   { background-image: url(/bingmaps/images/page_white_delete.png); background-repeat:no-repeat;}
.contextMenu LI.quit { background-image: url(/bingmaps/images/door.png); background-repeat:no-repeat; }
