<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#cssmenu:after,
#cssmenu &gt; ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu #menu-button {
  display: none;
}
#cssmenu {                /* MAIN MENU*/
  width: auto;         /* auto     for mobile transition*/
  border-radius: 5px;
  font-family: 'Open Sans', Helvetica, sans-serif;
  background: #444444;
  background: -o-linear-gradient(top, #5e5e5e, #000000);   /*(top, #5e5e5e, #303030);*/
  background: -ms-linear-gradient(top, #5e5e5e, #000000);   /*(top, #5e5e5e, #303030);*/
  background: -webkit-linear-gradient(top, #5e5e5e, #000000);   /*(top, #5e5e5e, #303030);*/
  background: -moz-linear-gradient(top, #5e5e5e, #000000);  /*(top, #5e5e5e, #303030);*/
  background: linear-gradient(to bottom, #5e5e5e, #000000);  /*(to bottom, #5e5e5e, #303030);*/
  box-shadow: inset 0 -3px 0 #282828, inset 0 -3px 3px #2b2b2b, inset 0 2px 2px #7a7a7a, inset 1px 0 2px #323232, inset -1px 0 2px #323232, 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.06), 0 3px 3px rgba(0, 0, 0, 0.17), 2px 1px 2px rgba(0, 0, 0, 0.05), -2px 1px 2px rgba(0, 0, 0, 0.05);
}
#cssmenu.align-center &gt; ul {
  font-size: 0;
  text-align: center;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-center &gt; ul &gt; li {
  display: inline-block;
  float: none;
}
#cssmenu.align-right &gt; ul &gt; li {
  float: right;
}
#cssmenu.align-right ul ul {
  text-align: right;
}
#cssmenu &gt; ul &gt; li {
  float: left;
}
#cssmenu &gt; ul &gt; li &gt; a {           /*EACH MAIN MENU BUTTON*/
  padding: 15px 23px;             /*menu original height 20- width 25 */
  font-size: 10px;                   /*orginal 10px*/
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu &gt; ul &gt; li:hover &gt; a,
#cssmenu &gt; ul &gt; li &gt; a:hover,
#cssmenu &gt; ul &gt; li.active &gt; a {
  color: #55cbfb;
}
#cssmenu &gt; ul &gt; li.has-sub &gt; a {
  padding-right: 40px;           /*on the button with a drop down menus */
}
#cssmenu ul &gt; li.has-sub &gt; a:after {
  content: '';
  position: absolute;
  right: 5px;
  top: 16px; /*black circle location for drop down*/
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #444444;
  background: -webkit-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: -ms-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: -moz-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: -o-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: linear-gradient(to bottom, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  box-shadow: inset 0 -1px 1px #2d2d2d, inset 0 2px 1px #6a6a6a;
  background-size: 36px 36px;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
#cssmenu ul &gt; li.has-sub:hover &gt; a:after {
  background-position: 0 -18px;
}
#cssmenu ul &gt; li.has-sub &gt; a:before {
  content: '';
  position: absolute;
  right: 11px;
  top: 24px;     /*arrow location that goes ontop of black circle   24px*/
  display: block;
  width: 0;
  height: 0;
  border: 3px solid transparent;
  border-top-color: #ffffff;
  z-index: 99;      /*99*/
}
#cssmenu ul &gt; li.has-sub:hover &gt; a:before {
  border-top-color: #111111;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;      /*-9999px*/
  opacity: 0;
  -webkit-transition: top .2s ease, opacity .2s ease;
  -moz-transition: top .2s ease, opacity .2s ease;
  -ms-transition: top .2s ease, opacity .2s ease;
  -o-transition: top .2s ease, opacity .2s ease;
  transition: top .2s ease, opacity .2s ease;
  z-index: 1000;    /*100  sub menu*/   
}
#cssmenu &gt; ul &gt; li &gt; ul {
  top: 88px;     /*88px sub menu slide in from height*/
  padding-top: 8px;
  border-radius: 5px;
}
#cssmenu &gt; ul &gt; li:hover &gt; ul {
  left: auto;
  top: 35px;     /*drop down menu start from height 48px */
  opacity: 1;
}
#cssmenu.align-right &gt; ul &gt; li:hover &gt; ul {
  right: 0;
}
#cssmenu ul ul ul {
  top: 40px;
}
#cssmenu ul ul &gt; li:hover &gt; ul {
  top: 0;
  left: 178px;
  padding-left: 10px;
  opacity: 1;
}
#cssmenu.align-right ul ul &gt; li:hover &gt; ul {
  left: auto;
  right: 178px;
  padding-left: 0;
  padding-right: 10px;
  opacity: 1;
}
#cssmenu ul ul li a {    /*SUB MENU*/
  width: 180px;
  padding: 12px 25px;
  font-size: 12px;      /*   original 10px*/
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  color: #ffffff;
  text-decoration: none;
  background: #444444;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#cssmenu ul ul li:hover &gt; a,
#cssmenu ul ul li &gt; a:hover,
#cssmenu ul ul li.active &gt; a {
  color: #3db2e1;
}
#cssmenu ul ul li:first-child &gt; a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: inset 0 2px 2px #6f6f6f;
}
#cssmenu ul ul li:last-child &gt; a {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: inset 0 -3px 0 #373737, inset 0 -3px 3px #2b2b2b, 0 1px 1px rgba(0, 0, 0, 0.03), 0 2px 2px rgba(0, 0, 0, 0.05), 0 2px 3px rgba(0, 0, 0, 0.13);
}
#cssmenu ul ul &gt; li.has-sub &gt; a:after {
  right: 12px;
  top: 8px;
  background: #444444;
  background: -webkit-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: -ms-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: -moz-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: -o-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: linear-gradient(to bottom, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  box-shadow: inset 0 -1px 1px #2d2d2d, inset 0 2px 1px #6a6a6a;
  background-size: 36px 36px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
#cssmenu.align-right ul ul &gt; li.has-sub &gt; a:after {
  right: auto;
  left: 12px;
}
#cssmenu ul ul &gt; li.has-sub:hover &gt; a:after {
  background-position: 0 -18px;
}
#cssmenu ul ul &gt; li.has-sub &gt; a:before {
  top: 14px;
  right: 16px;
  border-top-color: transparent;
  border-left-color: #ffffff;
}
#cssmenu.align-right ul ul &gt; li.has-sub &gt; a:before {
  top: 14px;
  right: auto;
  left: 16px;
  border-top-color: transparent;
  border-right-color: #ffffff;
  border-left-color: transparent;
}
#cssmenu ul ul &gt; li.has-sub:hover &gt; a:before {
  border-top-color: transparent;
  border-left-color: #1e1e1e;
}
#cssmenu.align-right ul ul &gt; li.has-sub:hover &gt; a:before {
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: #1e1e1e;
}
#cssmenu.small-screen {
  width: 100%;
}
#cssmenu.small-screen ul,
#cssmenu.small-screen ul ul,
#cssmenu.small-screen ul ul ul,
#cssmenu.small-screen &gt; ul,
#cssmenu.small-screen.align-center &gt; ul,
#cssmenu.small-screen &gt; ul &gt; li &gt; ul,
#cssmenu.small-screen &gt; ul &gt; li:hover &gt; ul,
#cssmenu.small-screen ul ul li:hover &gt; ul,
#cssmenu.small-screen ul ul ul li:hover &gt; ul,
#cssmenu.small-screen.align-right ul ul,
#cssmenu.small-screen.align-right ul ul li:hover &gt; ul,
#cssmenu.small-screen.align-right ul ul ul li:hover &gt; ul {
  position: relative;
  left: 0;
  right: auto;
  top: 0;
  width: 100%;
  display: none;
  padding: 0;
  opacity: 1;
  text-align: left;
}
#cssmenu.small-screen ul li {
  width: 100%;
  border-top: 1px solid rgba(120, 120, 120, 0.2);
}
#cssmenu.small-screen &gt; ul &gt; li &gt; a,
#cssmenu.small-screen ul ul li a,
#cssmenu.small-screen ul ul li:first-child &gt; a,
#cssmenu.small-screen ul ul li:last-child &gt; a {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  /*background: none;*/
}
#cssmenu.small-screen ul li a {
  padding-left: 11px;
}
#cssmenu.small-screen ul ul li a {
  padding: 14px 25px 14px 26px;
}
#cssmenu.small-screen ul ul ul li a {
  padding-left: 41px;
}
#cssmenu.small-screen ul ul ul ul li a {
  padding-left: 56px;
}
#cssmenu.small-screen &gt; ul &gt; li.has-sub &gt; a:after,
#cssmenu.small-screen &gt; ul &gt; li.has-sub &gt; a:before,
#cssmenu.small-screen ul ul li.has-sub &gt; a:after,
#cssmenu.small-screen ul ul li.has-sub &gt; a:before {
  display: none;
}
#cssmenu.small-screen #menu-button {
  position: relative;
  display: block;
  padding: 20px;
  padding-left: 11px;
  cursor: pointer;
  font-size: 10px;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#cssmenu.small-screen .submenu-button {
  position: absolute;
  right: 0;
  display: block;
  width: 50px;
  height: 50px;
  border-left: 1px solid rgba(120, 120, 120, 0.2);
  z-index: 10;  /*10*/
  cursor: pointer;
}
#cssmenu.small-screen ul ul .submenu-button {
  height: 38px;
}
#cssmenu.small-screen ul .submenu-button:after,
#cssmenu.small-screen #menu-button:after {
  content: '';
  position: absolute;
  right: 11px;
  top: 11px;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 15px;
  background: #444444;
  background: -webkit-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: -ms-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: -moz-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: -o-linear-gradient(top, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  background: linear-gradient(to bottom, #535353 0%, #4c4c4c 25%, #3a3a3a 50%, #535353 75%, #4c4c4c 100%);
  box-shadow: inset 0 -1px 1px #2d2d2d, inset 0 2px 1px #6a6a6a;
  background-size: 56px 56px;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
#cssmenu.small-screen ul .submenu-button.submenu-opened:after,
#cssmenu.small-screen #menu-button.menu-opened:after {
  background-position: 0 -28px;
}
#cssmenu.small-screen ul ul .submenu-button:after {
  top: 5px;
}
#cssmenu.small-screen #menu-button:before,
#cssmenu.small-screen .submenu-button:before {
  content: '';
  position: absolute;
  right: 21px;
  top: 24px;
  display: block;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  z-index: 99;
}
#cssmenu.small-screen ul ul .submenu-button:before {
  top: 18px;
}
#cssmenu.small-screen #menu-button.menu-opened:before,
#cssmenu.small-screen .submenu-button.submenu-opened:before {
  border-top-color: #111111;
}
#cssmenu.small-screen.select-list {
  padding: 5px;
}
</pre></body></html>