@charset "UTF-8";
.tabs-head {
  display: flex;
  justify-content: left;
}
.tabs-head.center {
  justify-content: center;
}
.tabs-head.vertical {
  width: 160px;
  flex-direction: column;
}
.tabs-head.vertical a {
  width: 100%;
}
.tabs-head.double-height a {
  height: calc(2rem + 20px);
}
.tabs-head.active-underlined a.active {
  background-color: unset;
  color: unset;
  border-bottom: 2px solid #337ab7;
}
.tabs-head.framed a {
  border: 1px solid gray;
}
.tabs-head a {
  padding: 10px;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tabs-head a.active {
  background-color: #337ab7;
  color: white;
  cursor: not-allowed;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.modal .dialog {
  width: 800px;
  max-width: 90%;
  mah-height: 90%;
  overflow: auto;
  margin: 2rem auto;
  border: 1px solid darkslategray;
}
.modal .dialog .title-row {
  padding: 0.5rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  background-color: lightgray;
  color: black;
  font-weight: bold;
}
.modal .dialog .title-row .title {
  width: calc(100% - 32px);
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: none;
  display: inline-block;
}
.modal .dialog .title-row .close-box {
  display: inline-block;
  border: 1px solid;
  padding: 0 0.3rem;
  cursor: pointer;
}
.modal .dialog .body {
  height: auto;
  padding: 1rem;
  background-color: whitesmoke;
  color: darkslategray;
}
.modal .dialog .buttons {
  background-color: lightgray;
  color: black;
  padding: 0.5rem;
  display: flex;
  justify-content: flex-end;
}
.modal.narrow .dialog {
  width: 600px;
}
.modal.full .dialog {
  width: 90%;
}

/* Basic styling, mobile */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-image: url(../static/img/paper/lightpaperfibers.png);
  display: table;
  min-height: 100%;
  width: 100%;
  font-family: "Alegreya Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  color: black;
}
body .header {
  padding: 0 2rem;
}
body .content {
  min-height: calc(100vh - 160px);
}
body .content .banner {
  width: 100%;
  margin: 0;
}
body .content p.banner {
  font-size: 2rem;
  text-transform: uppercase;
  padding: 2rem 15px;
}
body .content p.banner.margin {
  width: 80%;
  margin: 0 auto;
}
body footer {
  font-size: 14px;
  padding: 10pt 10%;
  background-color: transparent;
  color: transparent;
}
body footer .full-width {
  width: 100%;
}
body footer .mr-8 {
  margin-right: 8pt;
}
body footer img {
  max-height: 64px;
}
body .copy {
  padding: 10pt 10%;
}
body.index h1, body.index h2 {
  text-align: center;
}
body.index h1 {
  font-size: 64px;
}
body.index h2 {
  font-size: 28px;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin-bottom: 8px;
}

a {
  text-decoration: none;
}

input,
select,
textarea {
  background-color: #ddd;
  padding: 0.2rem 0.4rem;
  font-size: 1rem;
  color: #222;
  border: 2px solid white;
}

input::placeholder {
  color: #888;
}

button,
a.btn {
  font-size: 1rem;
  padding: 0.2rem 0.4rem;
  text-align: center;
  background-color: whitesmoke;
  color: darkorange;
  border: 2px solid white;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
}
button:hover,
a.btn:hover {
  color: whitesmoke;
  background-color: darkorange;
}
button.disabled,
a.btn.disabled {
  color: darkgray;
  background-color: darkgray;
  border-color: lightgray;
}
button.toggle,
a.btn.toggle {
  border-radius: 0.4rem;
  border-color: gray;
}
button.toggle.active,
a.btn.toggle.active {
  border-color: white;
}

table {
  border-collapse: collapse;
  font-size: 1rem;
  width: 100%;
}
table thead {
  background-color: lightgray;
}
table thead th {
  text-align: left;
  padding: 4pt 4pt;
  background-color: inherit;
  border-collapse: collapse;
}
table thead a {
  color: cornflowerblue;
}
table thead tr.filter {
  border-bottom: 1px solid whitesmoke;
}
table thead tr.filter input,
table thead tr.filter select,
table thead tr.filter button {
  font-size: 1rem;
  padding: 2pt 4pt;
  display: inline-block;
}
table thead tr.filter input,
table thead tr.filter select {
  width: 100%;
  background-color: whitesmoke;
}
table thead,
table tbody,
table tfoot {
  background-color: whitesmoke;
}
table thead th,
table thead td,
table tbody th,
table tbody td,
table tfoot th,
table tfoot td {
  padding: 8pt 8pt;
}
table thead th a,
table thead td a,
table tbody th a,
table tbody td a,
table tfoot th a,
table tfoot td a {
  margin-right: 4px;
  border: 1px solid;
  border-radius: 4px;
  padding: 2px 4px;
  text-decoration: none;
}
table thead th a.row-action,
table thead td a.row-action,
table tbody th a.row-action,
table tbody td a.row-action,
table tfoot th a.row-action,
table tfoot td a.row-action {
  display: inline-block;
  margin-bottom: 4px;
}
table thead th a:hover,
table thead td a:hover,
table tbody th a:hover,
table tbody td a:hover,
table tfoot th a:hover,
table tfoot td a:hover {
  background-color: white;
}
table thead,
table tfoot {
  background-color: lightgray;
}
table .paginator {
  font-weight: normal;
  text-align: right;
}

#search-form {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 60px auto;
}
#search-form input, #search-form button {
  display: inline-block;
  font-size: 18px;
  vertical-align: baseline;
}
#search-form input {
  width: calc(100% - 46px);
  padding: 10px;
}
#search-form button {
  padding: 9px 12px;
}

.title {
  font-size: 1.5rem;
  font-weight: bold;
}

.subtitle {
  font-size: 1.2rem;
}

.hidden {
  display: none;
}

.toc .toolmenu {
  padding: 0 0.5rem;
}
.toc .toolmenu::before {
  content: "⁝";
}
.toc .collapsable::before {
  content: "⊟";
}
.toc .collapsable.collapsed {
  color: darkorange;
}
.toc .collapsable.collapsed::before {
  content: "⊞";
}
.toc .pdf::before {
  content: " [PDF] ";
  font-size: small;
}
.toc p .title {
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  width: calc(100% - 80px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.toc p.dirty .title {
  color: orange;
}

#toc-menu {
  position: absolute;
  display: none;
  border: 1px solid darkorange;
}
#toc-menu .menuitem {
  padding: 0.5rem 1rem;
  background-color: whitesmoke;
  color: darkorange;
  cursor: pointer;
}
#toc-menu .menuitem:hover {
  background-color: whitesmoke;
  color: orangered;
}

.toc-list p a {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar, #top-bar {
  padding: 0;
  border-bottom: 1px solid #808080;
  display: flex;
  justify-content: space-between;
}
.top-bar a, #top-bar a {
  display: inline-block;
  color: #333;
  text-decoration: none;
  padding: 10px 15px;
}
.top-bar a.home:hover, #top-bar a.home:hover {
  color: #174559;
}

.carousel {
  position: relative;
}
.carousel ul.carousel-indicators {
  position: relative;
  display: flex;
  justify-content: center;
  list-style: none;
  text-align: center;
  margin-top: 40px;
}
.carousel ul.carousel-indicators .active {
  margin: 0;
  width: unset !important;
  height: unset !important;
  background-color: #fff;
}
.carousel ul.carousel-indicators li {
  text-indent: unset !important;
  width: unset !important;
  height: unset !important;
  margin: unset !important;
  border: none !important;
  border-radius: 10px;
  cursor: pointer;
  background-color: inherit !important;
}
.carousel .carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel .carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel .carousel-inner > .item.active {
  display: block;
}
.carousel .carousel-inner > .item > img, .carousel .carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}

.thumbnail {
  display: inline-block;
  width: 220px;
}

.thumbnails-menu {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  align-content: space-between;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  text-align: left;
  padding: 4px;
  text-transform: uppercase;
  width: 100%;
}
.form-group label.mandatory::after {
  content: "*";
}
.form-group input,
.form-group select,
.form-group textarea,
.form-group .form-data {
  display: block;
  margin-top: 8px;
  width: 100%;
}
.form-group .form-data {
  border: 0;
}
.form-group .form-data iframe {
  width: 100%;
  border: 1px solid white;
}
.form-group input::placeholder {
  color: white;
}
.form-group.form-check label {
  display: inline;
}
.form-group.form-check .form-check-input {
  display: inline;
  margin-right: 4px;
  width: auto;
}
.form-group .form-control.error {
  border-color: darkred;
  color: darkred;
  background-color: lightpink;
}
.form-group textarea {
  font-size: 1rem;
  height: 4rem;
}
.form-group textarea.double-h {
  height: 8rem;
}
.form-group textarea.triple-h {
  height: 12rem;
}

img.icon {
  height: 20px;
  vertical-align: middle;
}

.s-hide {
  display: inline-block;
}

.m-hide {
  display: none;
}

.mw-5 {
  width: 30%;
}

.mw-10 {
  width: 30%;
}

.mw-15 {
  width: 30%;
}

.mw-20 {
  width: 45%;
}

.mw-25 {
  width: 45%;
}

.mw-30 {
  width: 45%;
}

.mw-35 {
  width: 100%;
}

.mw-40 {
  width: 100%;
}

.mw-45 {
  width: 100%;
}

.mw-50 {
  width: 100%;
}

.mw-60 {
  width: 100%;
}

.mr-8 {
  margin-right: 8px;
}

.mtb-36 {
  margin-top: 36px;
  margin-bottom: 36px;
}

.mt-36 {
  margin-top: 36px;
}

.mb-36 {
  margin-bottom: 36px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.pt-36 {
  padding-top: 36px;
}

.pb-36 {
  padding-bottom: 36px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.p-16 {
  padding: 16px;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.bg-base {
  background-color: white;
  color: white;
}

.bg-sec {
  background-color: transparent;
}

.margin {
  width: 80%;
  margin: 0 auto;
}

.padded {
  padding: 1rem 10%;
}

.font-small {
  font-size: small;
}

.bg-img {
  background-repeat: no-repeat;
  background-size: cover;
}

.trans-dark {
  background-color: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.6);
}

.trans-light {
  background-color: rgba(255, 255, 255, 0.7);
  color: rgba(0, 0, 0, 0.6);
}

.link {
  color: blue;
  cursor: pointer;
}
.link:visited {
  color: blue;
}

.card {
  padding: 0.5rem;
  color: inherit;
}
.card img {
  max-width: 100%;
  max-height: 100%;
}
.card.lighter {
  background-color: rgba(255, 255, 255, 0.1);
}
.card.darker {
  background-color: rgba(0, 0, 0, 0.1);
}
.card .title {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0;
}
.card .main {
  padding: 0.5rem 0;
}

nav.navbar {
  background: transparent;
  color: transparent;
  padding: 0 10%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
nav.navbar .brand,
nav.navbar #navbuttons {
  display: inline-block;
}
nav.navbar #navbuttons span {
  padding: 0.5rem;
}
nav.navbar #navbuttons span.active {
  background: lightcyan;
  color: navy;
}
nav a {
  color: darkcyan;
  text-decoration: none;
}
nav .selected a {
  color: darkcyan;
}

.menu {
  display: none;
  background-color: lightcyan;
  color: navy;
}
.menu.active {
  display: block;
}
.menu ul {
  margin: 0;
  list-style-type: none;
}
.menu ul.level1 {
  padding-left: 0.2rem;
}
.menu ul.level2 {
  padding-left: 0.5rem;
  display: none;
}
.menu ul.level3 {
  padding-left: 1rem;
  display: none;
}
.menu ul.level4 {
  padding-left: 1.5rem;
  display: none;
}
.menu ul li hr {
  color: navy;
  margin: 0.5rem 0;
}
.menu ul li a {
  display: block;
  padding: 0.2rem;
}
.menu ul li a.sub .fa-caret-up {
  display: none;
}
.menu ul li a.sub .fa-caret-down {
  display: inline;
}
.menu ul li a.sub.active .fa-caret-up {
  display: inline;
}
.menu ul li a.sub.active .fa-caret-down {
  display: none;
}
.menu ul li a.sub.active > ul {
  display: block;
}
.menu ul li ul {
  display: none;
}

.logo {
  font-size: 20px;
  padding: 8px 10px 2px 0;
}
.logo img {
  height: 24px;
}
.logo .sublogo {
  font-size: 14px;
  margin-top: -10px;
  color: lightgray;
  padding: 0 5px;
}

.button.secondary {
  /* divider between buttons and menu links */
  border-bottom: 1px #444 solid;
}

/* Submenu up from mobile screens */
.submenu {
  display: none;
}

.submenu-active .submenu {
  display: block;
}

.has-submenu i {
  font-size: 12px;
}

.has-submenu > a::after {
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  content: "\f078";
  color: white;
  padding-left: 5px;
}

.submenu-active {
  background-color: #111;
  border-radius: 3px;
}

.container {
  margin: 1rem auto;
  width: 80%;
}

.flex-left {
  display: flex;
  justify-content: left;
  flex-flow: row;
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  justify-content: center;
  flex-flow: row;
  flex-wrap: wrap;
}

.paginator span,
.paginator a {
  padding: 0.2rem 0.4rem;
  margin-right: 2px;
  border: 1px solid white;
  color: white;
}
.paginator span.paginator-current-report,
.paginator a.paginator-current-report {
  border-color: rgba(0, 0, 0, 0);
  color: gray;
}

.alert {
  margin-top: 16px;
  padding: 16px;
  background: rgba(192, 37, 37, 0.25);
}
.alert img {
  height: 40px;
  vertical-align: middle;
  margin-right: 16px;
}
.alert #alert {
  display: inline-block;
}

.plain h1,
.plain h2,
.plain h3,
.plain h4,
.plain ul,
.plain ol,
.plain p {
  margin-bottom: 8px;
}
.plain ul,
.plain ol {
  list-style-position: inside;
}

ul#lookup_helper {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 100;
  position: absolute;
  color: #08c;
  background-color: #fcfeff;
  border: 1px solid #08c;
}
ul#lookup_helper li {
  padding: 2px 4px;
  cursor: pointer;
}
ul#lookup_helper li.highlighted {
  background-color: #00b7ff;
  color: white;
}

.cols {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.full {
  width: 100%;
}

.half {
  display: inline-block;
  width: 50%;
}

.third {
  display: inline-block;
  width: 33%;
}

.third2 {
  display: inline-block;
  width: 66%;
}

.quart {
  display: inline-block;
  width: 25%;
}

.quart3 {
  display: inline-block;
  width: 69%;
}

#flash {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #ccd;
  border: 1px solid #445;
  color: black;
  width: 240pt;
}
#flash p {
  padding: 0.5rem;
  margin: 0.5rem;
}
#flash p.error {
  color: red;
}
#flash p.warn {
  color: orange;
}
#flash p.info {
  color: blue;
}
#flash p.success {
  color: green;
}
#flash .title {
  padding: 4pt 12pt;
  cursor: pointer;
}

.list-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.list-container p {
  margin: 0.4rem;
}
.list-container input,
.list-container select,
.list-container textarea {
  width: 100%;
}
.list-container .title {
  font-size: 1.5rem;
}
.list-container .filter,
.list-container .data-row,
.list-container .head {
  margin-top: 0.5rem;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.list-container .head {
  background-color: #667;
  font-weight: bold;
}
.list-container .field,
.list-container .cmd {
  padding: 0.2rem 0.4rem;
}

.ct-widget.ct-ignition {
  left: 16px;
  position: fixed;
  top: 60px;
}

.hiddeneditable,
.hiddeneditableinline {
  display: none;
}

.article {
  /*=====  End CMS :  ======*/
}
.article.editing .noneditable {
  display: none;
}
.article.editing .hiddeneditable {
  display: block;
}
.article article {
  padding: 10pt 0;
}
.article article h1 {
  font-size: 2rem;
  margin-top: 1rem;
}
.article article h2 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
.article article p {
  margin-top: 0.3rem;
}
.article article ul,
.article article ol {
  list-style-position: inside;
  margin-top: 0.3rem;
}
.article article ul li,
.article article ol li {
  margin-top: 2pt;
}
.article article .padded {
  padding: 0.3rem;
}
.article article .padded-bottom {
  padding-bottom: 0.3rem;
}
.article article .padded-top {
  padding-top: 0.3rem;
}
.article .hiddeneditable.form-container h5 {
  margin-top: 0.3rem;
}
.article .hiddeneditable.form-container h5 .font_small {
  font-weight: normal;
  font-size: small;
}
.article .hiddeneditable.form-container input,
.article .hiddeneditable.form-container textarea {
  width: 100%;
}
.article .hiddeneditable.form-container input[type=checkbox] {
  width: 16px;
}
.article .tagbox.showneditable h5 {
  margin: 0.3rem 0;
}
.article .tagbox.showneditable h5 .font_small {
  font-weight: normal;
  font-size: small;
}
.article .tagbox.showneditable .content {
  flex-direction: row;
  align-content: center;
}
.article table.list button {
  padding: 0.3rem;
  border: 2px inset #889;
}
.article a.tag {
  display: inline;
  padding: 0.2rem 0.4rem;
  background-color: white;
  font-size: 1rem;
  border: 1px solid black;
  color: black;
  margin-right: 0.2rem;
  text-decoration: none;
}
.article .inputfile input {
  display: none;
}
.article .cms-icon {
  height: 32px;
  cursor: pointer;
  padding: 0.3rem;
}
.article ul#added-files {
  list-style-type: none;
  list-style-position: inside;
  padding: 0;
}
.article ul#added-files li a {
  padding: 0.6rem;
}

/* Mobile ********************************************************************/
@media all and (max-width: 699px) {
  .center-s {
    width: 90%;
    margin: 0 auto;
  }
}
/* Tablet ********************************************************************/
@media all and (min-width: 700px) {
  .center-s {
    width: 80%;
    margin: 0 auto;
  }
  .logo {
    flex: 1;
  }
  /* Button up from tablet screen */
  .menu li.button a {
    padding: 1rem 1.5rem;
    margin: 0.3rem 0;
  }
}
/* desktop */
@media all and (min-width: 960px) {
  .s-hide {
    display: none;
  }
  .m-hide {
    display: inline-block;
  }
  .mw-5 {
    width: 5%;
  }
  .mw-10 {
    width: 10%;
  }
  .mw-15 {
    width: 15%;
  }
  .mw-20 {
    width: 20%;
  }
  .mw-25 {
    width: 25%;
  }
  .mw-30 {
    width: 30%;
  }
  .mw-35 {
    width: 25%;
  }
  .mw-40 {
    width: 30%;
  }
  .mw-45 {
    width: 25%;
  }
  .mw-50 {
    width: 30%;
  }
  .mw-60 {
    width: 30%;
  }
  .center-s {
    width: 50%;
    margin: 0 auto;
  }
  .menu {
    position: absolute;
    top: 48px;
    z-index: 10;
    left: calc(100% - 200px);
    width: 160px;
    padding: 0.5rem;
  }
  .logo {
    order: 0;
  }
  .submenu {
    background-color: #999;
    width: max-content;
  }
  .submenu .subitem {
    text-align: left;
  }
  .submenu .subitem a {
    padding: 0.3rem 0.6rem;
    display: block;
  }
  .submenu-active .submenu {
    display: block;
    position: absolute;
    left: 0;
    top: 40px;
  }
  .submenu-active {
    border-radius: 0;
  }
  .form-group label {
    width: 30%;
    display: inline-block;
  }
  .form-group .form-control {
    width: 70%;
    display: inline-block;
  }
  .ct-widget.ct-ignition {
    left: 16px;
    position: fixed;
    top: 60px;
  }
}

/*# sourceMappingURL=style.css.map */
