/* Generic context menu styles */
.contextMenu {
	font-size: 11px;
	position: absolute;
	width: 160px;
	z-index: 99999;
	border: solid 2px #000;
	background: #EEE;
	padding: 2px 0px 4px 2px;
	margin: 0px;
	display: none;
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px; 
}

.contextMenu LI {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.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.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 .edit A { background-image: url(images/page_white_edit.png); }
.contextMenu .edit_population A { background-image: url(images/user_edit.png); }
.contextMenu .edit_item A { background-image: url(images/database_edit.png); }
.contextMenu .edit_response A { background-image: url(images/comment_edit.png); }
.contextMenu .edit_scheduling A { background-image: url(images/calendar_edit.png); }
.contextMenu .cut A { background-image: url(images/cut.png); }
.contextMenu .add A { background-image: url(images/add.png); }
.contextMenu .copy A { background-image: url(images/page_white_copy.png); }
.contextMenu .paste A { background-image: url(images/page_white_paste.png); }
.contextMenu .delete A { background-image: url(images/page_white_delete.png); }
.contextMenu .attach A { background-image: url(images/page_white_add.png); }
.contextMenu .quit A { background-image: url(images/door.png); }
.contextMenu .login A { background-image: url(images/bullet_key.png); }
.contextMenu .logout A { background-image: url(images/key_delete.png); }
.contextMenu .title SPAN { background-image: url(images/bullet_green.png); }

