/*
 *contextMenu.js v 1.4.0
 *Author: Sudhanshu Yadav
 *s-yadav.github.com
 *Copyright (c) 2013 Sudhanshu Yadav.
 *Dual licensed under the MIT and GPL licenses
 */
/*Context menu css */

.iw-contextMenu {
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
	border: 1px solid #D3D3D3;
	border-left: 3px solid #D1D1D1;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	display: none;
	z-index: 1160 !important;
}

.iw-cm-menu {
	color: #333;
	margin: 0;
	padding: 0;
}

.iw-cm-menu li {
	list-style: none;
	padding: 6px 10px 6px 32px;
	transition: all 0.2s;
	background-color: #E9E9E9;
	cursor: pointer;
	position: relative;
	font-size: 14px;
	border-bottom: 1px solid #DDD;
}

.iw-cm-menu li:hover {
	background-color: #DDD;
}

.iw-cm-menu li:last-child {
	border-bottom: 0;
}

.iw-mOverlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #FFF;
	opacity: .5;
}

.iw-contextMenu li.iw-mDisable {
 	opacity: .3;
}

.iw-mSelected {
	background-color: #DDD;
}

.iw-cm-arrow-right {
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid #333333;
	position: absolute;
	right: 3px;
	top: 50%;
	margin-top: -3px;
}

.iw-mSelected > .iw-cm-arrow-right {
	border-left: 5px solid #FFF;
}

.iw-mIcon {
	width: 18px;
	height: 18px;
	left: 6px;
	top: 6px;
	position: absolute;
}

/*context menu css end */