/*------------ Main Menu ------------*/
.mainmenu {
    font-size: 15px;
    font-weight: bold;
    position: relative;
    margin: 10px auto;
    padding: 0;
}

.mainmenu > li {
    box-sizing: border-box;
    height: 48px;
    color: #333;
    border-top: 0px solid #fff;
    background-color: #fff;
}

.mainmenu > li:first-child {
    border-top: 0;
    border-radius: 0px 0px 0 0;
}

.mainmenu > li:last-child {
    border-radius: 0 0 0px 0px;
}

.mainmenu > li span {
    line-height: 48px;
    display: block;
}

.mainmenu > li .icon {
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    padding: 14px 20px 0 20px;
}

.mainmenu > li .messages {
    font-size: 11px;
    line-height: 19px;
    display: block;
    float: right;
    width: 34px;
    height: 18px;
    margin-top: -33px;
    margin-right: 19px;
    padding: 0;
    text-align: center;
    background: url("../images/messages.png") no-repeat;
}

.expand-menu{
    transform: rotate(180deg);
}

.expandMenu{
    float:right;transition-duration: 0.5s;
    width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
    border-top: 16px solid #005491;
    padding-top:2px;
}

.showSubMenu{
    float:right;
    border: solid #005491;
    border-width: 0 3px 3px 0;
    margin: 5px 20px 0px 0px;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    cursor: pointer; 
}
.hideSubMenu{
    cursor: pointer; 
    position: absolute;
    border: solid #005491;
    border-width: 0 3px 3px 0;
    margin: 5px 20px 0px 0px;
    padding: 3px;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.expand-triangle {
    margin-left: -15px;
    width: 276px;
    height: 10px;
    content: " ";
}

.expand-triangle img {
    width: inherit;
    height: inherit;

    vertical-align: top;
}

/*------------ Sub Menu ------------*/
.submenu {
    font-size: 14px;
    box-sizing: border-box;
    content: " ";
    color: #333;
    font-weight: normal;
}

.submenu li {
    line-height: 16px;
    height: 25px;
    margin-left: -40px;
    padding-top: 12px;
    transition: border-left 220ms ease-in;
    border-left: solid 6px #484141;
    background-color: #eee;
    padding-left: 20px;
    color:#000;
}

.submenu .chosen,
.submenu .chosen:hover {
    border-left: solid 6px #96d145;
}

.submenu li:hover {
    border-left: solid 6px #d05942;
}

.submenu li span {
    margin-left: 30px;
}