/* Getting the new tags to behave */
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);

#ver_cssmenu,
#ver_cssmenu ul,
#ver_cssmenu ul li,
#ver_cssmenu ul li a {
  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;
}
#ver_cssmenu {
  width: 160px;
  font-family: Nanum Gothic;
  color: #009ae1;
}
#ver_cssmenu ul ul {
  display: none;
}
#ver_cssmenu > ul > li.active > ul {
  display: block;
}
.align-right {
  float: right;
}
#ver_cssmenu > ul > li > a {
  border-bottom: thin solid #CCC;
  padding: 16px 22px;
  cursor: pointer;
  z-index: 2;
  font-size: 13px;
  text-decoration: none;
  color: #3C3C3C;
  background: #ffffff;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#ver_cssmenu > ul > li > a:hover {
  font-weight:bold;
  color: #009ae1;
}

#ver_cssmenu ul > li.active > a  {
  font-weight:bold;
  color:#009ae1;
}

#ver_cssmenu ul > li.has-sub > a:after {
  position: absolute;
  right: 26px;
  top: 19px;
  z-index: 5;
  display: block;
  height: 10px;
  width: 2px;
  background: #009ae1;
  content: "";
  -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;
}
/*버튼들*/
#ver_cssmenu ul > li.has-sub > a:before {
  position: absolute;
  right: 22px;
  top: 23px;
  display: block;
  width: 10px;
  height: 2px;
  background: #009ae1;
  content: "";
  -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;
}
#ver_cssmenu ul > li.has-sub.open > a:after,
#ver_cssmenu ul > li.has-sub.open > a:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#ver_cssmenu ul ul li a {
  padding: 14px 22px;
  cursor: pointer;
  z-index: 2;
  font-size: 12px;
  text-decoration: none;
  color: #49505a;
  background: #ffffff;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#ver_cssmenu ul ul ul li a {
  padding-left: 32px;
}
#ver_cssmenu ul ul li a:hover {
  font-weight:bold;
  color: #009ae1;
}
#ver_cssmenu ul ul > li.has-sub > a:after {
  top: 16px;
  right: 26px;
  background: #dddddd;
}
#ver_cssmenu ul ul > li.has-sub > a:before {
  top: 20px;
  background: #dddddd;
}



@media all and (max-width: 768px), 
only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), 
only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), 
only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), 
only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), 
only screen and (min-resolution: 192dpi) and (max-width: 1024px), 
only screen and (min-resolution: 2dppx) and (max-width: 1024px) {

#ver_cssmenu {
  display: none;

  }