@font-face {
  font-family: 'Nunito-Regular';
  src: url('/assets/fonts/Nunito-Regular.woff2') format('woff2'),
       url('/assets/fonts/Nunito-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito-Regular';
  src: url('/assets/fonts/Nunito-Bold.woff2') format('woff2'),
       url('/assets/fonts/Nunito-Bold.woff') format('woff');
  font-weight: 700;
  font-style: bold;
}

body {
  font-family: 'Nunito-Regular', sans-serif;
  background: #fff;
  color: #333;
  font-size: 11px;
  height: auto;
  padding-bottom: 20px;
}

a {
  color: #888;
  text-decoration: underline dotted;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-family: Georgia, serif;
  font-weight: normal;
  padding-top: 20px;
  text-align: center;
}

h2 {
  padding-top: 20px;
  text-align: center;
}

p {
  border: 1px solid #666;
  overflow: hidden;
  padding: 10px;
  text-align: justify;
}

.container_12,
.container_16,
.container_24 {
  background-color: #fff;
  background-repeat: repeat-y;
  margin-bottom: 20px;
}

/*
.container_12 {
  background-image: url(../img/12_col.gif);
}

.container_16 {
  background-image: url(../img/16_col.gif);
}

.container_24 {
  background-image: url(../img/24_col.gif);
}
*/

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 900;
}

#popup {
    position: absolute;
    width: 480px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#popup h2 {
    margin-top: 0;
}

#popup .close {
    float: right;
    cursor: pointer;
    font-weight: bold;
}

.focusable {
  cursor: default;
}

.focusable:focus {
  cursor: pointer;
}

.focusable:hover {
  cursor: pointer;
}