@charset "UTF-8";
/*** ESSENTIAL STYLES ***/
/* line 4, nav.scss */
.sf-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  margin-bottom: 1em;
}
/* line 8, nav.scss */
.sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* line 13, nav.scss */
.sf-menu li {
  position: relative;
}
/* line 16, nav.scss */
.sf-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}
/* line 23, nav.scss */
.sf-menu > li {
  float: left;
}
/* line 27, nav.scss */
.sf-menu li:hover > ul, .sf-menu li.sfHover > ul {
  display: block;
}
/* line 31, nav.scss */
.sf-menu a {
  display: block;
  position: relative;
}
/* line 35, nav.scss */
.sf-menu ul {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  min-width: 8em;
  /* allow long menu items to determine submenu width */
  *width: 12em;
  /* no auto sub width for IE7, see white-space comment below */
}
/* line 36, nav.scss */
.sf-menu ul ul {
  top: 0;
  left: 100%;
}
/* line 48, nav.scss */
.sf-menu a {
  border-left: 1px solid #fff;
  border-top: 1px solid #dFeEFF;
  /* fallback colour must use full shorthand */
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: .75em 1em;
  text-decoration: none;
  zoom: 1;
  /* IE7 */
  color: #13a;
}
/* line 59, nav.scss */
.sf-menu li {
  background: #BDD2FF;
  white-space: nowrap;
  /* no need for Supersubs plugin */
  *white-space: normal;
  /* ...unless you support IE7 (let it wrap) */
  -webkit-transition: background .2s;
  transition: background .2s;
}
/* line 69, nav.scss */
.sf-menu ul li {
  background: #AABDE6;
}
/* line 72, nav.scss */
.sf-menu ul ul li {
  background: #9AAEDB;
}
/* line 77, nav.scss */
.sf-menu li:hover, .sf-menu li.sfHover {
  background: #CFDEFF;
  /* only transition out, not in */
  -webkit-transition: none;
  transition: none;
}

/*** DEMO SKIN ***/
/*** arrows (for all except IE7) **/
/* line 88, nav.scss */
.sf-arrows .sf-with-ul {
  padding-right: 2.5em;
  *padding-right: 1em;
  /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* line 92, nav.scss */
.sf-arrows .sf-with-ul:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -3px;
  height: 0;
  width: 0;
  /* order of following 3 rules important for fallbacks to work */
  border: 5px solid transparent;
  border-top-color: #dFeEFF;
  /* edit this to suit design (no rgba in IE8) */
  border-top-color: rgba(255, 255, 255, 0.5);
}
/* line 109, nav.scss */
.sf-arrows > li > .sf-with-ul:focus:after, .sf-arrows > li:hover > .sf-with-ul:after {
  border-top-color: white;
  /* IE8 fallback colour */
}
/* line 114, nav.scss */
.sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: white;
  /* IE8 fallback colour */
}
/* line 120, nav.scss */
.sf-arrows ul .sf-with-ul:after {
  margin-top: -5px;
  margin-right: -3px;
  border-color: transparent;
  border-left-color: #dFeEFF;
  /* edit this to suit design (no rgba in IE8) */
  border-left-color: rgba(255, 255, 255, 0.5);
}
/* line 129, nav.scss */
.sf-arrows ul li > .sf-with-ul:focus:after, .sf-arrows ul li:hover > .sf-with-ul:after {
  border-left-color: white;
}
/* line 133, nav.scss */
.sf-arrows ul .sfHover > .sf-with-ul:after {
  border-left-color: white;
}

/* styling for both css and generated arrows */
/* styling for right-facing arrows */
/*** eeh-navigation ***/
/*용도를 알 수 없음 용도 확인 필요*/
/*
.eeh-navigation-navbar .navbar-right {
  margin-right: 0;
}

.eeh-navigation-sidebar {
  border-radius: 0;
  border-top: none;
  border-right: none;
  border-left: none;
  > .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
    > ul.sidebar-nav {
      !* Indent second level menu items *!
      !* Indent third level menu items *!
      > li > ul > li > {
        a {
          padding-left: 30px;
        }
        ul > li > a {
          padding-left: 45px;
        }
      }
    }
  }
  .navbar-default > .active {
    background-color: #e7e7e7;
    color: #e7e7e7;
  }
  .sidebar-search .sidebar-search-input a {
    position: relative;
    display: block;
    padding: 10px 15px;
  }
  .sidebar-arrow {
    line-height: 1.5em;
  }
  .sidebar-nav > {
    li a {
      color: #777;
      &:hover, &:focus {
        color: #333;
        background-color: transparent;
      }
    }
    .active > a {
      color: #555;
      background-color: #e7e7e7;
      &:hover, &:focus {
        color: #555;
        background-color: #e7e7e7;
      }
    }
    .disabled > a {
      color: #ccc;
      background-color: transparent;
      &:hover, &:focus {
        color: #ccc;
        background-color: transparent;
      }
    }
  }
}

@media (min-width: 768px) {
  .eeh-navigation-sidebar {
    z-index: 1;
    position: absolute;
    width: 250px;
    &.sidebar-text-collapsed {
      width: 50px;
    }
  }
  #eeh-navigation-page-wrapper.sidebar-text-collapsed {
    margin-left: 50px;
  }
  .sidebar-nav-nested.text-collapsed {
    position: absolute;
    left: 51px;
    top: 0;
    width: 250px;
    background-color: #f8f8f8;
    a {
      padding-left: 15px !important;
    }
    .sidebar-nav-nested.text-collapsed {
      position: relative;
      left: 0;
      a {
        padding-left: 30px !important;
      }
    }
  }
}

#eeh-navigation-page-wrapper {
  padding: 0 15px;
  min-height: 568px;
  background-color: #fff;
  &.sidebar-invisible {
    margin-left: 0;
    border-left: none;
  }
}

@media (min-width: 768px) {
  #eeh-navigation-page-wrapper {
    position: inherit;
    margin: 0 0 0 250px;
    padding: 0 30px;
    border-left: 1px solid #e7e7e7;
  }
}

.search-input-popover .navbar-form {
  padding: 0;
  margin: 0;
}

.eeh-navigation {
  margin-bottom: 0;
  a {
    cursor: pointer;
  }
  .icon-fw {
    width: 1.28571429em;
    text-align: center;
  }
  .float-right {
    float: right !important;
    margin-right: -10px;
    ~ .float-right {
      margin-right: 0;
    }
  }
}
*/
/*# sourceMappingURL=eeh-navigation.css.map */
/*성서한림원 전용 커스텀*/
/* line 287, nav.scss */
.icon-fw.point + span {
  color: #ffa100;
  font-size: 11pt;
  font-weight: 800;
}

/* line 292, nav.scss */
.navigation-menu {
  width: 1213px;
  margin: auto;
  background-color: #333;
  height: 48px;
}
/* line 297, nav.scss */
.navigation-menu .sf-menu {
  margin-bottom: 0;
  margin: auto;
  float: none;
  text-align: center;
  height: 48px;
}
/* line 303, nav.scss */
.navigation-menu .sf-menu > li {
  float: none;
  display: inline-block;
  background-color: #333;
}
/* line 309, nav.scss */
.navigation-menu .sf-menu a {
  border: none;
  color: #fff;
  font-size: 10.5pt;
  font-weight: 800;
  padding: 14px 16px;
  margin: 0 5px;
  cursor: pointer;
}

/* line 321, nav.scss */
.sf-menu li:hover, .sf-menu li.sfHover {
  background-color: #292929;
  color: #ffb81f;
}

/* line 325, nav.scss */
.sf-menu li:hover > a {
  color: #ffb81f;
}

/* line 328, nav.scss */
.sf-menu li.sfHover > a {
  color: #ffb81f;
}

/* line 332, nav.scss */
.sf-menu ul li {
  background: #333;
  text-align: left;
  font-size: 11pt;
}

/* line 337, nav.scss */
.sf-menu li ul li {
  background: #1f4e79;
  border-bottom: 1px solid #225788;
  /*  background-image: url(/img/arrow/main_btn_arrow.png);
    background-repeat: no-repeat;
    background-position: 170px center;*/
}

/* line 344, nav.scss */
.sf-menu li ul li:hover, .sf-menu li ul li.sfHover {
  background: #193f63;
  /*  background-image: url(/img/arrow/main_btn_arrow_on.png);
    background-repeat: no-repeat;
    background-position: 170px center;*/
}
