/*************************/
/* Horizontal Menu Style */
/*************************/
.ccl_plus_menu.h ul {
    position: relative;
    list-style-type: none;
    padding: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px #444;
    height: 32px;
}

.ccl_plus_menu.h ul ul {
    position: absolute;
    display: none;
    width: 215px;
    height: auto;
    box-shadow: 0 0 10px #444;
}

.ccl_plus_menu.h ul ul ul {
    margin-top: -32px;
    margin-left: 200px;
    box-shadow: 0 0 10px #444;

}

.ccl_plus_menu.h ul li {
    float: left;
    border-right: 1px solid #ddd;
}

.ccl_plus_menu.h ul ul li {
    float: none;
    border-right: none;
    border-bottom: 1px solid #ddd;
}

.ccl_plus_menu.h ul li:hover > ul {
    display: block;
}

.ccl_plus_menu.h a {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
    height: 14px;
    line-height: 14px;
    background-color: #fff;
    color: #333;

}

.ccl_plus_menu.h a.lock{
    background-color: #1d5987;
    color:#fff;
}

.ccl_plus_menu.h ul ul a{
    text-align: left;
    padding-left: 10px;
}

/*.ccl_plus_menu_h a:hover {*/
/*background-color: #444;*/
/*color: #fff;*/
/*text-shadow: 0 0 10px #369;*/
/*}*/

/***********************/
/* Vertical Menu Style */
/***********************/
.ccl_plus_menu.v ul {
    position: relative;
    list-style-type: none;
    width: 200px;
    padding-left: 0px;
    border:1px solid #1d5987;
    box-shadow: 0 0 10px #444;
}

.ccl_plus_menu.v ul ul {
    position: absolute;
    display: none;
    margin-left: 200px;
    margin-top: -36px;
}

/*.ccl_plus_menu ul li:hover > ul {*/
/*display: block;*/
/*}*/

.ccl_plus_menu.v ul li {
    display: block;
}

.ccl_plus_menu.v a {
    text-decoration: none;
    display: block;
    padding: 10px;
}