﻿/*------------------师文佼--------2014-03-31------------------*/
/* Ver 1.0.0 */
/* 
用于定义上下文菜单的样式
*/

.contextMenu
{
    background-color: #F0F0F0;
    border: 0px; 
    position: absolute;
    z-index: 12000;
}

.contextMenu .menu
{
    border: 1px solid #D7D7D7;
    background: #F0F0F0 url(../Image/Control/context_menu_bg.gif) repeat-y;
    background-position: -410px top;
    position: absolute;
    z-index: 12300;
    width: 150px;
}
.contextMenu .menu li
{
    font-size: 0px;
    line-height: 23px;
    height: 23px;
    position: relative;
}
.contextMenu .menu .liHover
{
    background-color: #FAFAFA;
    border: 1px solid #7EABCD;
    height: 21px;
    line-height: 21px;
}
.contextMenu .menu a
{
    display: block;
    width: 100%;
    cursor: pointer;
    position: relative;
    border: none;
    height: 100%;
}
.contextMenu .menu .icon
{
    width: 16px;
    height: 16px;
    position: absolute;
    left: 4px;
    top: 3px;
    z-index: 12330;
}
.contextMenu .menu .icon img
{
    width: 16px;
    height: 16px;
    position: static;
    font-size: 0px;
    overflow: hidden;
}
.contextMenu .menu .icon .checkbox
{
    width: 16px;
    height: 16px;
    position: static;
    font-size: 0px;
    overflow: hidden;
    background: url(../Image/Control/context_menu_bg.gif) no-repeat;
}
.contextMenu .menu .icon .checked
{
    background-position: -3px -11px;
}
.contextMenu .menu .icon .unchecked
{
    background-position: 20px 20px;
}

.contextMenu .menu .text
{
    position: absolute;
    left: 30px;
    top: 0px;
    color: Black;
    text-align: left;
    text-indent: 0px;
    z-index: 12310;
    font-size: 12px;
    height: 22px;
    line-height: 22px;
    overflow: hidden;
}
/*水平线，分隔符*/
.contextMenu .menu .line
{
    height: 3px;
    line-height: 3px;
    overflow: hidden;
    background: url(../Image/Control/context_menu_bg.gif) no-repeat;
    background-position: left top;
    border: none;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-right: 3px;
    font-size: 0px;
}
/*子菜单样式*/
.contextMenu .menu li .menu
{
    position: absolute;
    left: 149px;
    top: -1px;
    display: none;
}
.contextMenu .menu li .arrow
{
    width: 16px;
    height: 16px;
    background: url(../Image/Control/context_menu_bg.gif) no-repeat;
    background-position: -50px -10px;
    position: absolute;
    right: 10px;
    top: 3px;
}