.invisible {
    display:none;
}
.noticeDiv {
    width:55%;
}
@-webkit-keyframes fadein {
    0% {
      opacity: 0;
      visibility: hidden; }
    100% {
      opacity: 1;
      visibility: visible; } }
  @-moz-keyframes fadein {
    0% {
      opacity: 0;
      visibility: hidden; }
    100% {
      opacity: 1;
      visibility: visible; } }
  @-o-keyframes fadein {
    0% {
      opacity: 0;
      visibility: hidden; }
    100% {
      opacity: 1;
      visibility: visible; } }
  @keyframes fadein {
    0% {
      opacity: 0;
      visibility: hidden; }
    100% {
      opacity: 1;
      visibility: visible; } }
  @-webkit-keyframes fadeOut {
    0% {
      opacity: 1;
      visibility: visible; }
    100% {
      opacity: 0;
      visibility: hidden; } }
  @-moz-keyframes fadeOut {
    0% {
      opacity: 1;
      visibility: visible; }
    100% {
      opacity: 0;
      visibility: hidden; } }
  @-o-keyframes fadeOut {
    0% {
      opacity: 1;
      visibility: visible; }
    100% {
      opacity: 0;
      visibility: hidden; } }
  @keyframes fadeOut {
    0% {
      opacity: 1;
      visibility: visible; }
    100% {
      opacity: 0;
      visibility: hidden; } }
  /*-------------------------------------------
  header
  -------------------------------------------*/
  .navbar {
    margin-bottom: 0;
    background-color: #fff; }
  
  .headerwrap {
    position: relative;
    height: 104px;
    background-color: #fff; }
    .headerwrap .logo {
      padding: 22px 0 0; }
      .headerwrap .logo img {
        width: 192px;
        vertical-align: top; }
    .headerwrap .site {
      position: absolute;
      bottom: 22px;
      right: 0; }
      .headerwrap .site a {
        padding-left: 12px;
        color: #333;
        -webkit-transition: all 0.5s cubic-bezier(0.17, 0.935, 0.305, 1);
        -o-transition: all 0.5s cubic-bezier(0.17, 0.935, 0.305, 1);
        -moz-transition: all 0.5s cubic-bezier(0.17, 0.935, 0.305, 1);
        transition: all 0.5s cubic-bezier(0.17, 0.935, 0.305, 1); }
        .headerwrap .site a:hover {
          color: #2b8eaf; }
        .headerwrap .site a::before {
          content: '';
          display: inline-block;
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          top: 0;
          margin: auto;
          width: 6px;
          height: 6px;
          border-top: #2b8eaf 2px solid;
          border-right: #2b8eaf 2px solid;
          -webkit-transform: rotate(45deg);
             -moz-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
               -o-transform: rotate(45deg);
                  transform: rotate(45deg);
          right: 5%;
          margin: auto 0; }
    @media screen and (max-width: 767px) {
      .headerwrap {
        height: 50px; }
        .headerwrap .logo {
          padding: 15px 0 0 12.5px; }
          .headerwrap .logo img {
            width: 73px; }
        .headerwrap .site {
          padding-right: 12.5px;
          bottom: 15px; }
          .headerwrap .site a {
            font-size: 11px;
            line-height: 1.4; }
            .headerwrap .site a:before {
              margin-top: 8px; } }
  
  /* ------------------------------------------
  contents
  --------------------------------------------- */
  .loginwrap {
    padding-top: 104px;
    background-image: url(../../../J0A_LoginImages/bg.jpg);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    -webkit-background-size: 100% 100%;
       -moz-background-size: 100%;
         -o-background-size: 100%;
            background-size: 100%;
    background-color: #e2e4df;
    height: 44vw;
    min-height: 500px; }
    @media screen and (max-width: 767px) {
      .loginwrap {
        padding-top: 50px;
        padding-bottom: 50px;
        height: auto;
        width: 100%; } }
    .loginwrap .inner {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
         -moz-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 8vw 25px 0; }
      @media screen and (max-width: 1199px) {
        .loginwrap .inner {
          padding: 6vw 25px 0; } }
      @media screen and (max-width: 767px) {
        .loginwrap .inner {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
             -moz-box-orient: vertical;
             -moz-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column; } }
      .loginwrap .inner > form {
        width: 380px; }
        .loginwrap .inner > form h1 {
          margin-bottom: 30px;
          font-size: 32px;
          text-align: center; }
        .loginwrap .inner > form > input, .loginwrap .inner > form > button, .loginwrap .inner > form .forgot {
          width: 85%;
          margin: 10px auto 0; }
        .loginwrap .inner > form > input {
          height: 40px; }
        .loginwrap .inner > form .forgot {
          text-align: center; }
        .loginwrap .inner > form .btn-primary {
          background-color: #2b8eaf;
          margin-top: 20px;
          border: none;
          -webkit-transition: all 0.5s cubic-bezier(0.17, 0.935, 0.305, 1);
          -o-transition: all 0.5s cubic-bezier(0.17, 0.935, 0.305, 1);
          -moz-transition: all 0.5s cubic-bezier(0.17, 0.935, 0.305, 1);
          transition: all 0.5s cubic-bezier(0.17, 0.935, 0.305, 1); }
          .loginwrap .inner > form .btn-primary:hover {
            background-color: #1c7fa0; }
        @media screen and (max-width: 1199px) {
          .loginwrap .inner > form {
            width: 40%; }
            .loginwrap .inner > form h1 {
              font-size: 24px; } }
        @media screen and (max-width: 767px) {
          .loginwrap .inner > form {
            width: 100%;
            margin: 0 0 50px; }
            .loginwrap .inner > form h1 {
              margin-bottom: 20px; }
            .loginwrap .inner > form > input, .loginwrap .inner > form > button, .loginwrap .inner > form .forgot {
              width: 100%; }
            .loginwrap .inner > form input {
              font-size: 16px; } }
  /* ------------------------------------------
  footer
  --------------------------------------------- */
  footer {
    padding: 30px 0 20px;
    clear: both;
    font-size: 1.2rem;
    text-align: center; }
    footer #copyright {
      width: auto;
      margin: 0 auto;
      font-family: Helvetica, Arial, sans-serif; }
    footer #groupLogo {
      margin: 30px auto 15px; }
      footer #groupLogo img {
        width: 194px; }
    @media screen and (max-width: 767px) {
      footer {
        padding: 20px 0 10px;
        text-align: left; }
        footer #copyright {
          width: auto;
          font-size: 71%;
          margin: 0 0 0 20px; }
        footer #groupLogo {
          margin: 20px 0 0;
          padding: 10px 20px;
          border-top: #e5e5e5 1px solid; }
          footer #groupLogo img {
            width: 175px; } }
  