﻿
.ContextMenu
{
    position: relative;
    z-index: 0;
}

.ContextMenu-Trigger
{
    cursor: pointer;
    color: #69c;    
}

.ContextMenu-Menu
{
    position: absolute;
    left : 0px;
    top : 100%;
    width : auto;
    z-index: 1;
    background: #fff;
    border: 4px solid #ccc;
}

.ContextMenu.hover .ContextMenu-Menu
{
    display: block;
}

.ContextMenu-Item
{
    cursor: pointer;
    padding: 5px;
    background: #fff;
    color: #369;
}

.ContextMenu-Item.hover
{
    background: #369;
    color: #fff;
}

.ContextMenu-Item.hover a
{
    color: #fff; 
}