<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    position: relative;
    min-height: 100%;
}

td {
    padding: 10px;
    text-align: center;
    font-size: 1.2rem;
}

th[scope="row"] {
    text-align: center;
    background-color: #d7d9f2;
    font-size: 1.2rem;
}

td[scope="row"] {
    text-align: justify;
    padding-left: 12px;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

h3{
   padding-top: 30px;
   padding-bottom: 10px;
   text-transform: uppercase;
  }
    
.navbar-light{
    border-bottom: 1px solid #ddd;
}
    
h4,h5{
    padding-top: 30px;
    padding-bottom: 10px;
}

.lead {
  font-size: 1.4rem;
  font-family: Times;
  text-align: justify;
}

li, p {
  line-height: 1.6;
  font-size: 1.4rem;
  
}

.jumbotron_title{
    color: white;
    padding-top: 0px;
    padding-right: 800px;
}
    
.jumbotron {
    color: white;
    background-image: url("../img/Paris2.jpg");
    background-size: cover;
    background-position-y: 0%;
    min-height: 600px;
}
    
.center{
    text-align: center;
}
    
.conf_title{
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
}
    
.container{
    max-width: 1100px;
}

.logo2{
    max-width: 200px;
    padding: 20px;
            }
.logo3{
            max-width: 300px;
            padding: 40px;
            }
.col_logo{
    text-align: center;
}


.logo{
    height: 50px;
    padding-right: 10px;
}

.center .logo{
    height: 100px;
}

.logo-exp{
  width: 100%;
  height: auto;
  text-shadow: white 0px 0px 2px;
  font-size: 20px;
  background-size: 150px 150px;
}

.center .logo-exp{
    height: 100px;
}

.footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding-top: 100px;
    height: 60px;
    line-height: 60px; /* Vertically center the text there */ 
}

.first_div{
    padding-top: 70px;
}

&lt;!-- form --&gt;

form.form-example {
    display: table;
}

div.form-example {
    display: table-row;
}

label, input {
    display: table-cell;
    margin-bottom: 10px;
}

label {
    padding-right: 10px;
}

figure {
    border: thin #c0c0c0 solid;
    display: flex;
    flex-flow: column;
    padding: 5px;
    max-width: 800px;
    margin: auto;
}

img {
    max-width: 780px;
    max-height: auto;
}

figcaption {
    background-color: #122;
    color: #fff;
    font: italic smaller sans-serif;
    padding: 10px;
    font-size: 1.2rem;
    text-align: center;
}

.video-responsive { overflow:hidden; padding-bottom:56.25%; position:relative; height:0;}

.video-responsive iframe { left:0; top:0; height:100%; width:100%; position:absolute;}


.clignote {
  color:red;
  animation: clignote 3s linear infinite;
}
@keyframes clignote {  
  50% { opacity: 0; }
}


.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: $navbar-padding-y $navbar-padding-x;

  &gt; .container,
  &gt; .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}


.navbar-brand {
  display: inline-block;
  padding-top: $navbar-brand-padding-y;
  padding-bottom: $navbar-brand-padding-y;
  margin-right: $navbar-padding-x;
  font-size: $navbar-brand-font-size;
  line-height: inherit;
  white-space: nowrap;
}


.navbar-nav{
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  .nav-link {
    padding-right: 0;
    padding-left: 0;
  }
  .dropdown-menu {
    position: static;
    float: none;
  }
}


.navbar-text {
  display: inline-block;
  padding-top: $nav-link-padding-y;
  padding-bottom: $nav-link-padding-y;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;
  font-size: $navbar-toggler-font-size;
  line-height: 1;
  background-color: transparent; 
  border: $border-width solid transparent; 
  @include border-radius($navbar-toggler-border-radius);
  @include hover-focus {text-decoration: none;};
  &amp;:not(:disabled):not(.disabled) {cursor: pointer;};
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

// Generate series of `.navbar-expand-*` responsive classes for configuring
// where your navbar collapses.
.navbar-expand {
  @each $breakpoint in map-keys($grid-breakpoints) {
    $next: breakpoint-next($breakpoint, $grid-breakpoints);
    $infix: breakpoint-infix($next, $grid-breakpoints);

    &amp;#{$infix} {
      @include media-breakpoint-down($breakpoint) {
        &gt; .container,
        &gt; .container-fluid {
          padding-right: 0;
          padding-left: 0;
        }
      }

      @include media-breakpoint-up($next) {
        flex-flow: row nowrap;
        justify-content: flex-start;

        .navbar-nav {
          flex-direction: row;

          .dropdown-menu {
            position: absolute;
          }

          .nav-link {
            padding-right: $navbar-nav-link-padding-x;
            padding-left: $navbar-nav-link-padding-x;
          }
        }

        // For nesting containers, have to redeclare for alignment purposes
        &gt; .container,
        &gt; .container-fluid {
          flex-wrap: nowrap;
        }

        .navbar-collapse {
          display: flex !important;  // stylelint-disable-line declaration-no-important

          // Changes flex-bases to auto because of an IE10 bug
          flex-basis: auto;
        }

        .navbar-toggler {
          display: none;
        }
      }
    }
  }
}


.navbar-light {
  .navbar-brand {
    color: $navbar-light-active-color;

    @include hover-focus {
      color: $navbar-light-active-color;
    }
  }

  .navbar-nav {
    .nav-link {
      color: $navbar-light-color;

      @include hover-focus {
        color: $navbar-light-hover-color;
      }

      &amp;.disabled {
        color: $navbar-light-disabled-color;
      }
    }

    .show &gt; .nav-link,
    .active &gt; .nav-link,
    .nav-link.show,
    .nav-link.active {
      color: $navbar-light-active-color;
    }
  }

  .navbar-toggler {
    color: $navbar-light-color;
    border-color: $navbar-light-toggler-border-color;
  }

  .navbar-toggler-icon {
    background-image: $navbar-light-toggler-icon-bg;
  }

  .navbar-text {
    color: $navbar-light-color;
    a {
      color: $navbar-light-active-color;

      @include hover-focus {
        color: $navbar-light-active-color;
      }
    }
  }
}

.navbar-dark {
  .navbar-brand {
    color: $navbar-dark-active-color;

    @include hover-focus {
      color: $navbar-dark-active-color;
    }
  }

  .navbar-nav {
    .nav-link {
      color: $navbar-dark-color;

      @include hover-focus {
        color: $navbar-dark-hover-color;
      }

      &amp;.disabled {
        color: $navbar-dark-disabled-color;
      }
    }

    .show &gt; .nav-link,
    .active &gt; .nav-link,
    .nav-link.show,
    .nav-link.active {
      color: $navbar-dark-active-color;
    }
  }

  .navbar-toggler {
    color: $navbar-dark-color;
    border-color: $navbar-dark-toggler-border-color;
  }

  .navbar-toggler-icon {
    background-image: $navbar-dark-toggler-icon-bg;
  }

  .navbar-text {
    color: $navbar-dark-color;
    a {
      color: $navbar-dark-active-color;

      @include hover-focus {
        color: $navbar-dark-active-color;
      }
    }
  }
}

$positions: static, relative, absolute, fixed, sticky;

@each $position in $positions {
  .position-#{$position} { position: $position !important; }
}

// Shorthand

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: $zindex-fixed;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: $zindex-fixed;
}

.sticky-top {
  @supports (position: sticky) {
    position: sticky;
    top: 0;
    z-index: $zindex-sticky;
  }
}
</pre></body></html>