/* CONTEXTMENU
==============================================================================*/
#contextmenu {
    min-width: 160px;
    border: 1px solid #bbb;
    background: #f7f7f7;
}
#contextmenu a, #contextmenu a:visited {
    display: block;
    margin: 0 5px;
    padding: 8px 10px;
    color: #555;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #e3e3e3;
    text-decoration: none;  
}
#contextmenu a:first-child {
    border-top: 0;
}
#contextmenu a:last-child {
    border-bottom: 0;
}
#contextmenu a:hover, #contextmenu a:focus {
    color: orangered;
}
/* CONTEXTMENU DARK
------------------------------------------------------------------------------*/

#contextmenu.dark {
    min-width: 160px;
    border: 1px solid #555;
    background: #444;/*#343434;*/
}
#contextmenu.dark a, #contextmenu.dark a:visited {
    display: block;
    margin: 0 5px;
    padding: 8px 10px;
    color: #aaa;/*#7d7d7d;*/
    border-top: 1px solid #393838;
    border-bottom: 1px solid #555;/*#2c2b2b;*/
    text-decoration: none;
}
#contextmenu.dark a:hover, #contextmenu.dark a:focus {
    color: #eee;/*#d2d2d2;*/
}
#contextmenu.pale{
    min-width: 160px;
    border: 1px solid #777;
    background: #d699ff;/*#343434;*/
}
#contextmenu.pale a, #contextmenu.pale a:visited {
    display: block;
    margin: 0 5px;
    padding: 8px 10px;
    color: #666;/*#7d7d7d;*/
    border-top: 1px dotted #ddccff;
    border-top: 1px dotted #ddccff;/*#2c2b2b;*/
    text-decoration: none;
}
#contextmenu.pale a:hover, #contextmenu.pale a:focus {
    color: #333;/*#d2d2d2;*/
}
