:root {
  --odi-menu-top-color: #ff7f00;
  --odi-menu-bot-color: #cc7600;
  --odi-menu-solid-color: #ff7f00;
  --odi-menu-divider-color: #dfdfdf;
}

hr.min
{
  margin:0;
}

#cssmenu
{
    width:auto;
    display:block;
    text-align:center;
    font-family:Helvetica, Arial, sans-serif;
    line-height:1.2;
    z-index:999999990;
}

#cssmenu ul
{
    width:auto;
    display:block;
    font-size:0;
    text-align:center;
    color:#FFFFFF;
    /* background-color: var(--odi-menu-solid-color); */
    background: linear-gradient(to bottom, var(--odi-menu-top-color) 75%, var(--odi-menu-bot-color) );
    border: transparent;
    margin:0; 
    padding:0;
    list-style:none;
    position:relative;
    z-index:999999990;
    border-radius: 3px;
} 

#cssmenu li
{
    display:inline-block;
    position:relative;    
    font-size:0; 
    margin:0;
    padding:0;
}

/*Top level items
---------------------------------------*/

#cssmenu >ul>li>span, #cssmenu >ul>li>a 
{   
    border-left: 1px solid var(--odi-menu-divider-color);	/* Add left-hand border to all <li> of top menu - remove if none wanted */
    font-size:15px;
    color:inherit;
    text-decoration:none;
    padding:6px 16px; 
    font-weight:400;
    text-transform:none;
    text-shadow: 2px 2px 2px black;
    letter-spacing:normal;   
    display:block;   
    position:relative;
    transition:all 0.3s;
}
#cssmenu >ul>li:last-child		/* add right-hand border to last <li> of top menu - remove this also if none wanted */
{
    border-right: 1px solid var(--odi-menu-divider-color);
}

#cssmenu >ul>li>span:hover, #cssmenu >ul>li>a:hover 	/* don't let cursor change to I-beam over the span or a tags */
{
    cursor:default;
}

#cssmenu >ul>li:not(.static):hover>span, #cssmenu >ul>li:not(.static):hover>a	/* reverse the top level gradient when hovered and/or dropdown is displayed (but NOT if .static!) */
{
    background: linear-gradient(to top, var(--odi-menu-top-color) 75%, var(--odi-menu-bot-color));
}

#cssmenu li:not(.static):hover > span, #cssmenu li:not(.static):hover > a
{  
    color:#222222;
    background-color:rgba(255,153,51,0.8);
    text-shadow: 2px 2px 2px white;
}

/*Sub level items
---------------------------------------*/
#cssmenu .dropdown
{
    text-align:left;
    left:0;
    font-family:Helvetica, Arial, sans-serif;
    color: #333333;
    background-image: none;
    background-color:#F3F3F3;
    border:none;
    position:absolute;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display:none;
    opacity:0;
    cursor:default;
}

#cssmenu .dropdown li {
    display: block;  
}

#cssmenu .dropdown li > span, #cssmenu .dropdown li > a, #cssmenu .clm a, #cssmenu .clm h3 
{
    font-size:13px;
    font-weight:400;
    font-family:inherit;
    margin:0;
    padding:6px 20px; 
    display:block;
    color:inherit;
    text-decoration:none;
}
#cssmenu .clm h3 {
    font-size:20px;
    font-weight:700;
}
#cssmenu .sub-item {
    background-color:#F3F3F3;
    position:relative;       
    transition:all 0.3s;
}

#cssmenu .dropdown li:hover > span, #cssmenu .dropdown li:hover > a
{
    color:#333333;
    background-color:#DDDDDD;
}

#cssmenu .clm a:hover
{
    color:#333333;
    transition:color 0.2s;
}

#cssmenu .dropdown.right0 {left:auto;right:0;} 
#cssmenu .dropdown li > .dropdown.right0 {left:auto;right:100%;} 
       
#cssmenu li.full-width{
    position:static;
}
#cssmenu li.full-width .dropdown{
    width:100%;
    left:0;
    box-sizing:border-box;
}  

#cssmenu li:hover > .dropdown
{
    display:block;
    opacity:1;
    z-index:1;
}

#cssmenu .dropdown li > .dropdown
{
    left:100%; right:auto;
    top:0;
}

#cssmenu ul.dropdown
{
    min-width:260px; /* Sub level menu min width */
}

#cssmenu div.dropdown  {
    text-align:center;
}

#cssmenu a.disabled {
    pointer-events: none;
    color: #aaa !important;
    cursor: default; 
}

/* each column */
#cssmenu .clm
{
    text-align:left;
    margin:20px;
    vertical-align:top;/*or middle*/
    width:auto;
    min-width:240px;
    display:inline-block;
}

#cssmenu .clm a:hover
{
    color:#333333;
    text-decoration:underline;
}

/*-----------Arrows----------------*/
#cssmenu .arrow {
    color:inherit;
    border-style:solid; border-width:1px 1px 0 0; padding:3px; transform:rotate(135deg);margin-top:-5.656px;margin-left:3px;
    position:relative;
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align:middle;
    overflow:hidden;/*for IE6*/
}
        
#cssmenu .dropdown .arrow {
    transform:rotate(45deg);
    top:50%;margin-top:-4px;
    position:absolute;left:auto;right:20px;
} 



@keyframes topItemAnimation 
  from {opacity: 0; transform:translate3d(0, -60px, 0);
  to {opacity: 1; transform:translate3d(0, 0, 0);
}
#cssmenu li a {animation:none;
#cssmenu.active li a { animation: topItemAnimation 0.5s cubic-bezier(.16,.84,.44,1) 0.08333333333333333s backwards;
#cssmenu.active li:nth-of-type(1) a { animation: topItemAnimation 0.5s cubic-bezier(.16,.84,.44,1) 0.5s backwards;
#cssmenu.active li:nth-of-type(2) a { animation: topItemAnimation 0.5s cubic-bezier(.16,.84,.44,1) 0.4166666666666667s backwards;
#cssmenu.active li:nth-of-type(3) a { animation: topItemAnimation 0.5s cubic-bezier(.16,.84,.44,1) 0.3333333333333333s backwards;
#cssmenu.active li:nth-of-type(4) a { animation: topItemAnimation 0.5s cubic-bezier(.16,.84,.44,1) 0.25s backwards;
#cssmenu.active li:nth-of-type(5) a { animation: topItemAnimation 0.5s cubic-bezier(.16,.84,.44,1) 0.16666666666666666s backwards;}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { #cssmenu.active li a{animation:none!important;}}

