/* 
	Context menu classes 
	These classes are also duplicated in system.css.
*/
.ContextMenu
{
	text-align: left;
	font-family: Tahoma, MS Sans Serif, Arial, Geneva, Helvetica;
	font-weight: normal;
	font-size: 11px;
	color: black;
	position: absolute;
	display: none;
	border: 1px solid #8B8B8B;
	background-color: white;
	background-image: none;
	cursor: default;
	top: 0px;
	left: 0px;
	width: 190px;
	z-index: 20100;
	-moz-user-select: none;
}

/* In IE6 an iframe is used to cover selectlists and such */
.ContextMenuCover
{
	position: absolute;
	display: none;
	border: none;
	top: 0px;
	left: 0px;
	width: 190px;
	z-index: 20000;
	-moz-user-select: none;
	overflow:hidden;
}

.ContextMenuItem, 
.ContextMenuItem-Active, 
.ContextMenuItemDisabled,
.ContextMenuItemDisabled-Active
{
	position: relative;
	font-size: 11px;
	line-height: 17px;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	cursor: default;
	height: 17px;
	background-repeat: no-repeat;
	background-position:4px 1px;
	padding-left: 25px;
	padding-top: 2px;
}

.ContextMenuItem-Active
{
	background-color: #FFEEC2;
	border-top: 1px solid #6D8CA8;
	border-bottom: 1px solid #6D8CA8;
	cursor: pointer;
}

.ContextMenuItemDisabled, .ContextMenuItemDisabled-Active
{
	color: black;
	background-color: white;
	filter: alpha(opacity = 50);
	opacity: 0.5;
}

.ContextMenuItemDisabled-Active
{
	background-color: #FFEEC2;
	border-top: 1px solid #6D8CA8;
	border-bottom: 1px solid #6D8CA8;
}

.ContextMenuItem-Separator 
{
	position: relative;
	font-size: 1px;
	margin:	1px 0px;
	overflow: hidden;
	border-top:	1px solid #6D8CA8;
	border-bottom: 1px solid #EDF2FC;
	height: 2px;
}

.ArrowMenuImage
{
	position: relative;
	float: right;
	margin-right: 5px;
	margin-left: 1px;
	margin-top: 0px;
	margin-bottom: 0px;
}