.jquerycssmenu{
    font: 12px AvenirNext-Medium;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: none;
    padding: 0px; /*offset of tabs relative to browser left edge*/
    /*margin:0 0 0 120px;*/
    height: 30px;
    z-index: 99999;
}

.jquerycssmenu ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/*Top level list items*/
.jquerycssmenu ul li{
    position: relative;
    display: inline;
    float: left;
    padding-bottom: 0;
    padding-top: 0;
    z-index: 99999;

}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
    display: block;
    /* background: white url(../images/meniu/tintblue.gif) top center repeat-x;; */ /*background of tabs (default state)*/
    background-color:white;
    padding: 7px 20px 6px 20px;
    /* margin-right: 1px; spacing between tabs*/
    border: 1px solid #F99B1C;
    /* border-bottom-width: 0; */
    color: black;
    text-decoration: none;
    vertical-align: middle;
    /* height: 30px; */
    z-index: 99999;

}
.jquerycssmenu ul li a.wizard { background-color:#0CC;  }

.jquerycssmenu ul li a:hover{
    /* background-image: url(../images/meniu/tintbluedark.gif) */ /*tab link background during hover state*/
    background-color:white;
}

/*1st sub level menu*/
.jquerycssmenu ul li ul{
    position: absolute;
    left: 0;
    display: block;
    visibility: hidden;
    border-top: 1px solid black;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
    display: list-item;
    float: none;
}

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

/* Sub level menu links style */
.jquerycssmenu ul li ul li a{
    transition: 0s background-color;
    font: 10px AvenirNext-Regular;
    width: 160px; /*width of sub menus*/
    background: white;
    color: black;
    padding: 4px 3px;
    text-align:left;
    margin: 0;
    border-top-width: 0;
    border-bottom: 1px solid #F99B1C;
    height: 30px;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
    background: #eff9ff;
    color: black;
    transition-delay:0s;
}

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

.downarrowclass{
    position: absolute;
    top: 11px;
    right: 5px;
}

.rightarrowclass{
    position: absolute;
    top: 11px;
    right: 5px;
}
a{
    cursor: pointer;
}