#jqueryslidemenu {
    /*margin: 0 10px;*/
    height:100%;
}

#jqueryslidemenu ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    height:100%;
}

/*Top level list items*/
#jqueryslidemenu ul li {
    position: relative;
    display: inline;
    float: left;	/* Eng: left */
    background-image: none;
    padding:12px 12px;
    line-height:none;
    border: 0;
    text-decoration: none;
    margin: 0px;
    height:100%;
    /*    background: url('../images/menu_sep.png') right bottom no-repeat;*/
}
#jqueryslidemenu ul li a#current {
    background: url('../images/menu_hover.png') center bottom no-repeat;
}
/*#jqueryslidemenu > ul > li:before{
    display:block;
    content:"";
    position:absolute;
    background:#ebebeb;
    width:1px;
    top:20px;
    bottom:20px;
    right:0;
}*/

/*Top level menu link items style*/
#jqueryslidemenu ul li a {
    position:relative;
    display: block;
    /*padding: 10px 10px 2px 15px;*/
    padding:10px 15px;
    text-decoration: none;
    border-bottom-style: none;
    height:100%;
    /*border-top:6px solid transparent;*/
    -moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;
}

* html #jqueryslidemenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
    display: inline-block;
}

#jqueryslidemenu ul li a{
    font-family : "NexaBold", Arial, Verdana, sans-serif;
    font-size : 17px;
	text-transform: uppercase;
	font-weight: normal;
    color: #6d6e71;
    -moz-transition: all .4s;
    -webkit-transition: all  .4s;
    transition: all .4s;
}

#jqueryslidemenu ul li a:hover, #jqueryslidemenu ul li a#current {
    /*background: url('../images/texture2.jpg'); */
    /*color: #c1d9f1;*/
    /*background: url('../images/menu_hover.png') center 40px no-repeat;*/
    color:#fff;
    background:#590B0B;
    /*border-color:#ffbe19;*/
}

/*1st sub level menu*/
#jqueryslidemenu ul li ul {
    top: 2px;
    position: absolute;
    left: 0;
    display: block;
    visibility: hidden;
    z-index: 9999;
    /*border: 1px #ffbe19 solid;*/
    /*    -webkit-border-radius: 0px 0px 15px 15px;
        border-radius: 0px 0px 15px 15px;*/
    background: #590B0B;
    padding-top: 5px;
    padding-bottom: 5px;
/*    text-shadow: 1px 1px 1px #590B0B;
    filter: dropshadow(color=#590B0B, offx=1, offy=1);*/
    height:auto;
}

#jqueryslidemenu ul li ul li ul {
    margin-top: -5px;
    padding-top: 5px;
    /*    -webkit-border-radius: 15px 0px 15px 15px;
        border-radius: 15px 0px 15px 15px;*/
}

/*Sub level menu list items (undo style from Top level List Items)*/
#jqueryslidemenu ul li ul li {
    display: list-item;
    float: none;
    background: none;
    text-align: left;
    padding:0;
    height:auto;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
#jqueryslidemenu ul li ul li ul{
    top: 0;
}

/* Sub level menu links style */
#jqueryslidemenu ul li ul li a {
    color:#fff;
    /*width of sub menus*/
    width: 180px;
    padding: 7px 18px 6px;
    height: auto;
    line-height: normal;
    text-align:left; 	/* Eng: left */
    margin: 0;
    border-top-width: 0;
    /*    color: #fff !important;*/
    font-size : 16px !important;

}

#jqueryslidemenu ul li ul li a:hover{ /*sub menus hover style*/
    background: #fff !important; /*#1370BF*/
    color:#6d6e71;
    /*    -webkit-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px; */

}

/* ######### CSS classes applied to down and left arrow images  ######### */

.downarrowclass{
    position: absolute;
    top: 12px;
    right:6px;
}

.rightarrowclass{
    position: absolute;
    top: 15px;
    right: 7px;  	/* Eng: right */
}