<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
* multilevel menu main.css
*/
.multilevel-menu{
font-weight: bold;
background: #626060; /* Old browsers */
background: -moz-linear-gradient(top, #414141 0%, #000000 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #414141 0%,#000000 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #414141 0%,#000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#414141', endColorstr='#000000',GradientType=0 ); /* IE6-9 */ 
position:relative;
border-bottom: 1px solid #6D6B6B;
border-top: 1px solid #6D6B6B;
height: 38px;
text-transform: uppercase;
}

.multilevel-menu ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.multilevel-menu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.multilevel-menu ul li a{
display: block;
background: transparent; /*background of menu items (default state)*/
color: white;
padding: 0 25px;
height: 38px;
line-height: 38px;
border-right: 1px solid #6D6B6B; 
color: #9d9ea0;
text-decoration: none;
}

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

.multilevel-menu ul li a:link, .multilevel-menu ul li a:visited{
color: #9d9ea0;
}

.multilevel-menu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background-color: #00adef; 
color: #000;
}

.multilevel-menu ul li a:hover{
background-color: #00adef; /*background of menu items during onmouseover (hover state)*/
color: #000;
}
	
/*1st sub level menu*/
.multilevel-menu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}

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

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

/* Sub level menu links style */
.multilevel-menu ul ul li a{
background-color: #000000;
background-color: rgba(0,0,0,0.8);
font-weight: normal;
font-size: 14px;
width: 228px; /*width of sub menus*/
padding: 7px 25px;
margin: 0;
border-top-width: 0;
border: 0;
height: auto;
line-height: normal;
color: #d1d3d2;
text-transform: none;
}
.multilevel-menu ul ul ul li a{
background-color: #000000;
  background-color: rgba(0,0,0,0.65);
}

.multilevel-menu span {
  padding-right: 15px;
}

.multilevel-menu ul ul li a:link, .multilevel-menu ul ul li a:visited{
color: #d1d3d2;
}

.multilevel-menu ul ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background-color: #747577; 
color: #d1d3d2;
}

.multilevel-menu ul ul li a:hover{
background-color: #747577; /*background of menu items during onmouseover (hover state)*/
color: #d1d3d2;
}
	


/* Holly Hack for IE \*/
* html .multilevel-menu{height: 1%;} /*Holly Hack for IE7 and below*/


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

.downarrowclass{
position: absolute;
top: 12px;
right: 7px;
display: none;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
display: none;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: silver;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.8;
}</pre></body></html>