<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.overflow-hidden { overflow: hidden;}

.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background-color: #ffffff;
  z-index: 2;
  padding-top: 50px;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
  background: rgba(0,0,0,0.4);
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}


header {
  position:fixed; 
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
   border-bottom:1px solid #dedede;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
header.lateral-menu-is-open {
  /* translate to show the lateral menu */
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
header.is-fixed {position: fixed;}

#cd-logo { display: block;float: left; margin: 0px; text-indent:-999999;}
#cd-logo img {display: block;}

#cd-menu-trigger {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 50px;
  background-color: #ffffff;
  z-index:1000;
}
#cd-menu-trigger .cd-menu-text {
  height: 100%;
  text-transform: uppercase;
  color: #5d5d5d;
  font-weight: 600;
  display: none;
  text-indent:-9999px;
}
#cd-menu-trigger .cd-menu-icon {
  /* this span is the central line in the menu menu */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: #5d5d5d;
  /* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: inherit;
  left: 0;
}
#cd-menu-trigger .cd-menu-icon::before { bottom: 5px;}
#cd-menu-trigger .cd-menu-icon::after { top: 5px;}
#cd-menu-trigger.is-clicked .cd-menu-icon {background-color: rgba(255, 255, 255, 0);}
#cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
  background-color: #5d5d5d;
   z-index:1000000;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
   z-index:10000;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
   z-index:10000;
}


#cd-lateral-nav {
  position: fixed;
  height: 100%;
  left: 0;
  top: 50px;
  visibility: hidden;
  /* the secondary navigation is covered by the main element */
  z-index: 1000;
  width: 259px;
  background-color: #ffffff;
  border-right:1px #cdcdcd solid;
  overflow-y: auto;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
  transition: transform .4s 0s, visibility 0s .4s;
  /* this creates the subtle slide in animation of the navigation */
  -webkit-transform: translateX(-260px);
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -o-transform: translateX(-260px);
  transform: translateX(-260px);
}
#cd-lateral-nav .cd-navigation { margin: 0px 0 16px;}
#cd-lateral-nav .sub-menu { padding: 10px 10px 10px 10px; display: none;  border-bottom:1px #e4e5e8 solid;}
#cd-lateral-nav .sub-menu a {
/*
  font-size:14px;
  line-height:30px;
  color:#666666;
  border:none;
  background:none;
*/

  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  border-bottom:1px #e4e5e8 solid;
font-size:15px;
   color:#000000;
  line-height:45px;
  background:none;
  /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav a {
  display: block;
  padding: 0 16px 0 32px;
  border-bottom:1px #e4e5e8 solid;
  font-size:15px;
  font-weight: bold;
  color:#000000;
  line-height:45px;
  background:url('../images/navi_arrow.png') 90% 50% no-repeat;
  background-size: auto 14px;
}
#cd-lateral-nav a.current {	background-color: #ffffff;color: #666666;}
.no-touch #cd-lateral-nav a:hover { color: #333333;} 

#cd-lateral-nav.lateral-menu-is-open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
  transition: transform .4s 0s, visibility 0s 0s;
  /* smooth the scrolling on touch devices - webkit browsers */
  -webkit-overflow-scrolling: touch;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-has-children &gt; a {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  border-bottom:1px #e4e5e8 solid;
font-size:15px;
   color:#000000;
  line-height:45px;
  /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children &gt; a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1em;
  background: url("/images/cd-arrow.svg") no-repeat center center;
  background-size: 8px 11px;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
#cd-lateral-nav .item-has-children &gt; a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

#cd-lateral-nav .nav_thome { background:#4274ba; width:100%; height:50px; display:inline-block;}
#cd-lateral-nav .nav_thome li { float:left;  }
#cd-lateral-nav .nav_thome li.home a { display:block; width:50px; height:50px;line-height:50px;  background:#3163a9 url('../images/mobile/home.png') 50% 50% no-repeat !important; background-size:50px 50px !important; border:none; margin-right:20px; text-indent:-999999px;  }
#cd-lateral-nav .nav_thome li.ment { color:#ffffff; font-size:14px; line-height:50px;}
#cd-lateral-nav .nav_thome li.ment b { color:#ffffff; font-size:15px; font-weight:bold;}

#cd-lateral-nav .nav_tmenu { background:#ffffff; width:100%; height:40px; display:inline-block;}
#cd-lateral-nav .nav_tmenu li { float:left; width:50%; height:26px; margin:7px 0px; }
#cd-lateral-nav .nav_tmenu li a { display:block; line-height:26px; height:26px; font-size:12px; color:#333333; padding-left:35px; text-align:center; border-bottom:none; }
#cd-lateral-nav .nav_tmenu li.ntm1 a { background:#ffffff url('../images/mobile/icon_login.png') 30% 50% no-repeat; background-size:20px auto; border-right:1px #dcdcdc solid; }
#cd-lateral-nav .nav_tmenu li.ntm2 a { background:#ffffff url('../images/mobile/icon_join.png') 25% 50% no-repeat; background-size:20px auto;  }
#cd-lateral-nav .nav_tmenu li.ntm3 a { background:#ffffff url('../images/mobile/icon_user.png') 25% 50% no-repeat; background-size:20px auto; border-right:1px #dcdcdc solid; }
#cd-lateral-nav .nav_tmenu li.ntm4 a { background:#ffffff url('../images/mobile/icon_logout.png') 25% 50% no-repeat; background-size:20px auto;  }


#cd-lateral-nav .nav_top { background:#efefef; height:120px; text-align:center;border-bottom:1px #e1e2e5 solid; }
#cd-lateral-nav .nav_top ul.nav_top_ul { display:inline-block; width:90%; height:80px; margin:20px 5%; }
#cd-lateral-nav .nav_top ul.nav_top_ul li { float:left; width:33.3%; }
#cd-lateral-nav .nav_top ul.nav_top_ul li a { display:block; font-size:13px; color:#333333; text-align:center; padding:60px 0px 0px 0px;line-height:18px; border:none; }
#cd-lateral-nav .nav_top ul.nav_top_ul li a.nt_per { background:url('../images/mobile/nt_per.png') 50% 0px no-repeat; background-size:50px 50px;  }
#cd-lateral-nav .nav_top ul.nav_top_ul li a.nt_group { background:url('../images/mobile/nt_group.png') 50% 0px no-repeat; background-size:50px 50px;  }
#cd-lateral-nav .nav_top ul.nav_top_ul li a.nt_free { background:url('../images/mobile/nt_free.png') 50% 0px no-repeat; background-size:50px 50px;  }

#cd-lateral-nav .nav_bottom { background:#ffffff;height:auto;border:none; }
#cd-lateral-nav .nav_bottom ul.nav_bottom_ul { display:inline-block; width:84%; height:auto; margin:10px 8% 70px 8%; }
#cd-lateral-nav .nav_bottom ul.nav_bottom_ul li { float:none; width:100%; margin-bottom:4px;}
#cd-lateral-nav .nav_bottom ul.nav_bottom_ul li a { display:block;height:35px; font-size:13px; background:#e8e8e8; color:#333333; text-align:left; text-indent:20px; padding:0px;line-height:35px; border:none; }


</pre></body></html>