/*
 *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-mIcon,
.iw-mOverlay {
    left: 0;
    position: absolute;
    z-index: 999999;
}

.iw-contextMenu {
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .2);
    -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, .2);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .2);
    border: 1px solid #E6E6E6;
    display: none;
    z-index: 1000
}

.iw-cm-menu {
    background: #F4F4F4;
    color: #333;
    margin: 0;
    padding: 0;
    z-index: 9999;
}

.iw-cm-menu li {
    list-style: none;
    padding: 3px 20px 3px 30px;
    border-bottom: 1px solid #CCC;
    cursor: pointer;
    position: relative;
    z-index: 9999999;
}

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

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

.iw-mSelected {
    background-color: #036;
    color: #F2F2F2
}

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

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

.iw-mIcon {
    width: 20px;
    height: 20px;
    top: 3px
}