@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--choices-guttering, 24px);
  font-size: var(--choices-font-size-lg, 16px);
}

.choices:focus {
  outline: 0;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-open {
  overflow: visible;
}

.choices.is-disabled :is(.choices__inner, .choices__input) {
  background-color: var(--choices-bg-color-disabled, #eaeaea);
  cursor: not-allowed !important;
  -webkit-user-select: none;
  user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
  color: var(--choices-item-disabled-color, #fff);
}

.choices [hidden] {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}

.choices[data-type*=select-one] .choices__inner {
  padding-bottom: var(--choices-inner-one-padding, 7.5px);
}

.choices[data-type*=select-one] .choices__input {
  display: block;
  width: var(--choices-width, 100%);
  padding: var(--choices-dropdown-item-padding, 10px);
  border-bottom: var(--choices-base-border, 1px solid) var(--choices-keyline-color, #ddd);
  background-color: var(--choices-bg-color-dropdown, #fff);
  margin: 0;
}

.choices[data-type*=select-one] .choices__button {
  background-image: var(--choices-icon-cross-inverse, url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg=="));
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}

.choices[data-type*=select-one] .choices__button:is(:hover, :focus) {
  opacity: var(--choices-button-opacity-hover, 1);
}

.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px var(--choices-highlight-color, #005F75);
}

.choices[data-type*=select-one] .choices__item[data-placeholder] .choices__button {
  display: none;
}

.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: var(--choices-text-color, #333) transparent transparent transparent;
  border-width: var(--choices-arrow-size, 5px);
  position: absolute;
  right: var(--choices-arrow-right, 11.5px);
  top: 50%;
  margin-top: var(--choices-arrow-margin-top, -2.5px);
  pointer-events: none;
}

.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent var(--choices-text-color, #333);
  margin-top: var(--choices-arrow-margin-top-open, -7.5px);
}

.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices:is([data-type*=select-multiple], [data-type*=text]) .choices__inner {
  cursor: text;
}

.choices:is([data-type*=select-multiple], [data-type*=text]) .choices__button {
  position: relative;
  display: inline-block;
  margin: 0 calc(var(--choices-button-offset, 8px) * -0.5) 0 var(--choices-button-offset, 8px);
  padding-left: calc(var(--choices-button-offset, 8px) * 2);
  border-left: 1px solid color-mix(in srgb, var(--choices-primary-color, #005F75) 90%, var(--choices-darken, black));
  background-image: var(--choices-icon-cross, url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg=="));
  background-size: var(--choices-button-dimension, 8px);
  width: var(--choices-button-dimension, 8px);
  line-height: var(--choices-button-line-height, 1);
  border-radius: var(--choices-button-border-radius, 0);
  opacity: var(--choices-button-opacity, 0.75);
}

.choices:is([data-type*=select-multiple], [data-type*=text]) .choices__button:is(:hover, :focus) {
  --choices-button-opacity:var(--choices-button-opacity-hover, 1);
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: var(--choices-width, 100%);
  background-color: var(--choices-bg-color, #f9f9f9);
  padding: var(--choices-inner-padding, 7.5px 7.5px 3.75px);
  border: var(--choices-base-border, 1px solid) var(--choices-keyline-color, #ddd);
  border-radius: var(--choices-border-radius, 2.5px);
  font-size: var(--choices-font-size-md, 14px);
  min-height: var(--choices-input-height, 44px);
  overflow: hidden;
}

.is-focused .choices__inner, .is-open .choices__inner {
  border-color: color-mix(in srgb, var(--choices-keyline-color, #ddd) 85%, var(--choices-darken, black));
}

.is-open .choices__inner {
  border-radius: var(--choices-border-radius, 2.5px) var(--choices-border-radius, 2.5px) 0 0;
}

.is-invalid .choices__inner {
  border-color: var(--choices-invalid-color, #d33141);
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 var(--choices-border-radius, 2.5px) var(--choices-border-radius, 2.5px);
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: var(--choices-list-single-padding, 4px 16px 4px 4px);
}

[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single, .choices__list--single .choices__item {
  width: var(--choices-width, 100%);
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: var(--choices-border-radius-item, 20px);
  padding: var(--choices-multiple-item-padding, 4px 10px);
  font-size: var(--choices-font-size-sm, 12px);
  font-weight: 500;
  margin-right: var(--choices-multiple-item-margin, 3.75px);
  margin-bottom: var(--choices-multiple-item-margin, 3.75px);
  background-color: var(--choices-primary-color, #005F75);
  border: 1px solid color-mix(in srgb, var(--choices-primary-color, #005F75) 95%, var(--choices-darken, black));
  color: var(--choices-item-color, #fff);
  word-break: break-all;
  box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: var(--choices-multiple-item-margin, 3.75px);
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: color-mix(in srgb, var(--choices-primary-color, #005F75) 95%, var(--choices-darken, black));
  border: 1px solid color-mix(in srgb, var(--choices-primary-color, #005F75) 90%, var(--choices-darken, black));
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: color-mix(in srgb, var(--choices-disabled-color, #eaeaea) 75%, var(--choices-darken, black));
  border: 1px solid color-mix(in srgb, var(--choices-disabled-color, #eaeaea) 65%, var(--choices-darken, black));
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  display: none;
  z-index: var(--choices-z-index, 1);
  position: absolute;
  width: var(--choices-width, 100%);
  background-color: var(--choices-bg-color-dropdown, #fff);
  border: var(--choices-base-border, 1px solid) var(--choices-keyline-color, #ddd);
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: var(--choices-border-radius, 2.5px);
  border-bottom-right-radius: var(--choices-border-radius, 2.5px);
  overflow: hidden;
  word-break: break-all;
}

.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  display: block;
}

.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: color-mix(in srgb, var(--choices-keyline-color, #ddd) 85%, var(--choices-darken, black));
}

.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: var(--choices-dropdown-item-padding, 10px);
  font-size: var(--choices-font-size-md, 14px);
}

[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable.is-highlighted[data-select-text], .choices__list[aria-expanded] .choices__item--selectable.is-highlighted[data-select-text] {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable.is-highlighted[data-select-text]::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted[data-select-text]::after {
    content: attr(data-select-text);
    font-size: var(--choices-font-size-sm, 12px);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable.is-highlighted[data-select-text], [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable.is-highlighted[data-select-text] {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable.is-highlighted[data-select-text]::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable.is-highlighted[data-select-text]::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-selected::after, .choices__list[aria-expanded] .choices__item--selectable.is-selected::after {
  content: none !important;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list--dropdown .choices__item--selectable.is-selected, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-selected {
  background-color: var(--choices-highlighted-color, #f2f2f2);
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--choices-keyline-color, #ddd) 90%, var(--choices-lighten, white));
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus, .choices__input:focus {
  outline: 0;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: var(--choices-bg-color, #f9f9f9);
  font-size: var(--choices-font-size-md, 14px);
  margin-bottom: var(--choices-input-margin-bottom, 5px);
  border: 0;
  border-radius: 0;
  max-width: var(--choices-width, 100%);
  padding: var(--choices-input-padding, 4px 0 4px 2px);
}

.choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-decoration, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}

.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: var(--choices-placeholder-opacity, 0.5);
}

/* -----------------------------------------------------------------------


 Blueprint CSS Framework 1.0.1
 http://blueprintcss.org

   * Copyright (c) 2007-Present. See LICENSE for more info.
   * See README for instructions on how to use Blueprint.
   * For credits and origins, see AUTHORS.
   * This is a compressed file. See the sources in the 'src' directory.

----------------------------------------------------------------------- */
/* reset.css */
html {
  margin: 0;
  padding: 0;
  border: 0;
}

body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  font-weight: inherit;
  font-style: inherit;
}

article, aside, details, figcaption, figure, dialog, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  background: white;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  float: none !important;
}

table, th, td {
  vertical-align: middle;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

a img {
  border: none;
}

:focus {
  outline: 0;
}

/* typography.css */
html {
  font-size: 100%;
}

body {
  font-size: 87.5%;
  color: #333;
  background: #fff;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  color: #222;
}

h1 {
  font-size: 3em;
  line-height: 1;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 2em;
  margin-bottom: 0.75em;
}

h3 {
  font-size: 1.5em;
  line-height: 1;
  margin-bottom: 1em;
}

h4 {
  font-size: 1.2em;
  line-height: 1.25;
  margin-bottom: 1.25em;
}

h5 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1.5em;
}

h6 {
  font-size: 1em;
  font-weight: bold;
}

h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  margin: 0;
}

p {
  margin: 0 0 1.5em;
}

.left {
  float: left !important;
}

p .left {
  margin: 1.5em 1.5em 1.5em 0;
  padding: 0;
}

.right {
  float: right !important;
}

p .right {
  margin: 1.5em 0 1.5em 1.5em;
  padding: 0;
}

a:focus, a:hover {
  color: #09f;
}

a {
  color: #06c;
  text-decoration: underline;
}

blockquote {
  margin: 1.5em;
  color: #666;
  font-style: italic;
}

strong, dfn {
  font-weight: bold;
}

em, dfn {
  font-style: italic;
}

sup, sub {
  line-height: 0;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
}

address {
  margin: 0 0 1.5em;
  font-style: italic;
}

del {
  color: #666;
}

pre {
  margin: 1.5em 0;
  white-space: pre;
}

pre, code, tt {
  font: 1em "andale mono", "lucida console", monospace;
  line-height: 1.5;
}

li ul, li ol {
  margin: 0;
}

ul, ol {
  margin: 0 1.5em 1.5em 0;
  padding-left: 1.5em;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

dl {
  margin: 0 0 1.5em 0;
}

dl dt {
  font-weight: bold;
}

dd {
  margin-left: 1.5em;
}

table {
  margin-bottom: 1.4em;
  width: 100%;
}

th {
  font-weight: bold;
}

thead th {
  background: #c3d9ff;
}

th, td, caption {
  padding: 4px 10px 4px 5px;
}

tbody tr:nth-child(even) td, tbody tr.even td {
  background: #e5ecf9;
}

tfoot {
  font-style: italic;
}

caption {
  background: #eee;
}

.small {
  font-size: 0.8em;
  margin-bottom: 1.875em;
  line-height: 1.875em;
}

.large {
  font-size: 1.2em;
  line-height: 2.5em;
  margin-bottom: 1.25em;
}

.hide {
  display: none;
}

.quiet {
  color: #666;
}

.loud {
  color: #000;
}

.highlight {
  background: #ff0;
}

.added {
  background: #060;
  color: #fff;
}

.removed {
  background: #900;
  color: #fff;
}

.first {
  margin-left: 0;
  padding-left: 0;
}

.last {
  margin-right: 0 !important;
  padding-right: 0;
}

.top {
  margin-top: 0;
  padding-top: 0;
}

.bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* forms.css */
/* label {font-weight:bold;} */
fieldset {
  padding: 0 1.4em 1.4em 1.4em;
  margin: 0 0 1.5em 0;
  border: 1px solid #ccc;
}

legend {
  font-weight: bold;
  font-size: 1.2em;
  margin-top: -0.2em;
  margin-bottom: 1em;
}

fieldset, #IE8#HACK {
  padding-top: 1.4em;
}

legend, #IE8#HACK {
  margin-top: 0;
  margin-bottom: 0;
}

input[type=text], input[type=password], input[type=url], input[type=email], input.text, input.title, textarea {
  background-color: #fff;
  border: 1px solid #bbb;
  color: #000;
}

input[type=text]:focus, input[type=password]:focus, input[type=url]:focus, input[type=email]:focus, input.text:focus, input.title:focus, textarea:focus {
  border-color: #666;
}

select {
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
}

input[type=text], input[type=password], input[type=url], input[type=email], input.text, input.title, textarea, select {
  margin: 0.5em 0;
}

input.text, input.title {
  width: 300px;
  padding: 5px;
}

input.title {
  font-size: 1.5em;
}

textarea {
  width: 390px;
  height: 250px;
  padding: 5px;
}

form.inline {
  line-height: 3;
}

form.inline p {
  margin-bottom: 0;
}

.error, .alert, .notice, .success, .info {
  padding: 0.8em;
  margin-bottom: 1em;
  border: 2px solid #ddd;
}

.error, .alert {
  background: #fbe3e4;
  color: #8a1f11;
  border-color: #fbc2c4;
}

.notice {
  background: #fff6bf;
  color: #514721;
  border-color: #ffd324;
}

.success {
  background: #e6efc2;
  color: #264409;
  border-color: #c6d880;
}

.info {
  background: #d5edf8;
  color: #205791;
  border-color: #92cae4;
}

.error a, .alert a {
  color: #8a1f11;
}

.notice a {
  color: #514721;
}

.success a {
  color: #264409;
}

.info a {
  color: #205791;
}

/* grid.css */
.container {
  width: 950px;
  margin: 0 auto;
}

.showgrid {
  background: url("src/grid.png");
}

.column, .span-1, .span-2, .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-9, .span-10, .span-11, .span-12, .span-13, .span-14, .span-15, .span-16, .span-17, .span-18, .span-19, .span-20, .span-21, .span-22, .span-23, .span-24 {
  float: left;
  margin-right: 10px;
}

.last {
  margin-right: 0;
}

.span-1 {
  width: 30px;
}

.span-2 {
  width: 70px;
}

.span-3 {
  width: 110px;
}

.span-4 {
  width: 150px;
}

.span-5 {
  width: 190px;
}

.span-6 {
  width: 230px;
}

.span-7 {
  width: 270px;
}

.span-8 {
  width: 310px;
}

.span-9 {
  width: 350px;
}

.span-10 {
  width: 390px;
}

.span-11 {
  width: 430px;
}

.span-12 {
  width: 470px;
}

.span-13 {
  width: 510px;
}

.span-14 {
  width: 550px;
}

.span-15 {
  width: 590px;
}

.span-16 {
  width: 630px;
}

.span-17 {
  width: 670px;
}

.span-18 {
  width: 710px;
}

.span-19 {
  width: 750px;
}

.span-20 {
  width: 790px;
}

.span-21 {
  width: 830px;
}

.span-22 {
  width: 870px;
}

.span-23 {
  width: 910px;
}

.span-24 {
  width: 950px;
  margin-right: 0;
}

input.span-1, textarea.span-1, input.span-2, textarea.span-2, input.span-3, textarea.span-3, input.span-4, textarea.span-4, input.span-5, textarea.span-5, input.span-6, textarea.span-6, input.span-7, textarea.span-7, input.span-8, textarea.span-8, input.span-9, textarea.span-9, input.span-10, textarea.span-10, input.span-11, textarea.span-11, input.span-12, textarea.span-12, input.span-13, textarea.span-13, input.span-14, textarea.span-14, input.span-15, textarea.span-15, input.span-16, textarea.span-16, input.span-17, textarea.span-17, input.span-18, textarea.span-18, input.span-19, textarea.span-19, input.span-20, textarea.span-20, input.span-21, textarea.span-21, input.span-22, textarea.span-22, input.span-23, textarea.span-23, input.span-24, textarea.span-24 {
  border-left-width: 1px;
  border-right-width: 1px;
  padding-left: 5px;
  padding-right: 5px;
}

input.span-1, textarea.span-1 {
  width: 18px;
}

input.span-2, textarea.span-2 {
  width: 58px;
}

input.span-3, textarea.span-3 {
  width: 98px;
}

input.span-4, textarea.span-4 {
  width: 138px;
}

input.span-5, textarea.span-5 {
  width: 178px;
}

input.span-6, textarea.span-6 {
  width: 218px;
}

input.span-7, textarea.span-7 {
  width: 258px;
}

input.span-8, textarea.span-8 {
  width: 298px;
}

input.span-9, textarea.span-9 {
  width: 338px;
}

input.span-10, textarea.span-10 {
  width: 378px;
}

input.span-11, textarea.span-11 {
  width: 418px;
}

input.span-12, textarea.span-12 {
  width: 458px;
}

input.span-13, textarea.span-13 {
  width: 498px;
}

input.span-14, textarea.span-14 {
  width: 538px;
}

input.span-15, textarea.span-15 {
  width: 578px;
}

input.span-16, textarea.span-16 {
  width: 618px;
}

input.span-17, textarea.span-17 {
  width: 658px;
}

input.span-18, textarea.span-18 {
  width: 698px;
}

input.span-19, textarea.span-19 {
  width: 738px;
}

input.span-20, textarea.span-20 {
  width: 778px;
}

input.span-21, textarea.span-21 {
  width: 818px;
}

input.span-22, textarea.span-22 {
  width: 858px;
}

input.span-23, textarea.span-23 {
  width: 898px;
}

input.span-24, textarea.span-24 {
  width: 938px;
}

.append-1 {
  padding-right: 40px;
}

.append-2 {
  padding-right: 80px;
}

.append-3 {
  padding-right: 120px;
}

.append-4 {
  padding-right: 160px;
}

.append-5 {
  padding-right: 200px;
}

.append-6 {
  padding-right: 240px;
}

.append-7 {
  padding-right: 280px;
}

.append-8 {
  padding-right: 320px;
}

.append-9 {
  padding-right: 360px;
}

.append-10 {
  padding-right: 400px;
}

.append-11 {
  padding-right: 440px;
}

.append-12 {
  padding-right: 480px;
}

.append-13 {
  padding-right: 520px;
}

.append-14 {
  padding-right: 560px;
}

.append-15 {
  padding-right: 600px;
}

.append-16 {
  padding-right: 640px;
}

.append-17 {
  padding-right: 680px;
}

.append-18 {
  padding-right: 720px;
}

.append-19 {
  padding-right: 760px;
}

.append-20 {
  padding-right: 800px;
}

.append-21 {
  padding-right: 840px;
}

.append-22 {
  padding-right: 880px;
}

.append-23 {
  padding-right: 920px;
}

.prepend-1 {
  padding-left: 40px;
}

.prepend-2 {
  padding-left: 80px;
}

.prepend-3 {
  padding-left: 120px;
}

.prepend-4 {
  padding-left: 160px;
}

.prepend-5 {
  padding-left: 200px;
}

.prepend-6 {
  padding-left: 240px;
}

.prepend-7 {
  padding-left: 280px;
}

.prepend-8 {
  padding-left: 320px;
}

.prepend-9 {
  padding-left: 360px;
}

.prepend-10 {
  padding-left: 400px;
}

.prepend-11 {
  padding-left: 440px;
}

.prepend-12 {
  padding-left: 480px;
}

.prepend-13 {
  padding-left: 520px;
}

.prepend-14 {
  padding-left: 560px;
}

.prepend-15 {
  padding-left: 600px;
}

.prepend-16 {
  padding-left: 640px;
}

.prepend-17 {
  padding-left: 680px;
}

.prepend-18 {
  padding-left: 720px;
}

.prepend-19 {
  padding-left: 760px;
}

.prepend-20 {
  padding-left: 800px;
}

.prepend-21 {
  padding-left: 840px;
}

.prepend-22 {
  padding-left: 880px;
}

.prepend-23 {
  padding-left: 920px;
}

.border {
  padding-right: 4px;
  margin-right: 5px;
  border-right: 1px solid #ddd;
}

.colborder {
  padding-right: 24px;
  margin-right: 25px;
  border-right: 1px solid #ddd;
}

.pull-1 {
  margin-left: -40px;
}

.pull-2 {
  margin-left: -80px;
}

.pull-3 {
  margin-left: -120px;
}

.pull-4 {
  margin-left: -160px;
}

.pull-5 {
  margin-left: -200px;
}

.pull-6 {
  margin-left: -240px;
}

.pull-7 {
  margin-left: -280px;
}

.pull-8 {
  margin-left: -320px;
}

.pull-9 {
  margin-left: -360px;
}

.pull-10 {
  margin-left: -400px;
}

.pull-11 {
  margin-left: -440px;
}

.pull-12 {
  margin-left: -480px;
}

.pull-13 {
  margin-left: -520px;
}

.pull-14 {
  margin-left: -560px;
}

.pull-15 {
  margin-left: -600px;
}

.pull-16 {
  margin-left: -640px;
}

.pull-17 {
  margin-left: -680px;
}

.pull-18 {
  margin-left: -720px;
}

.pull-19 {
  margin-left: -760px;
}

.pull-20 {
  margin-left: -800px;
}

.pull-21 {
  margin-left: -840px;
}

.pull-22 {
  margin-left: -880px;
}

.pull-23 {
  margin-left: -920px;
}

.pull-24 {
  margin-left: -960px;
}

.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12, .pull-13, .pull-14, .pull-15, .pull-16, .pull-17, .pull-18, .pull-19, .pull-20, .pull-21, .pull-22, .pull-23, .pull-24 {
  float: left;
  position: relative;
}

.push-1 {
  margin: 0 -40px 1.5em 40px;
}

.push-2 {
  margin: 0 -80px 1.5em 80px;
}

.push-3 {
  margin: 0 -120px 1.5em 120px;
}

.push-4 {
  margin: 0 -160px 1.5em 160px;
}

.push-5 {
  margin: 0 -200px 1.5em 200px;
}

.push-6 {
  margin: 0 -240px 1.5em 240px;
}

.push-7 {
  margin: 0 -280px 1.5em 280px;
}

.push-8 {
  margin: 0 -320px 1.5em 320px;
}

.push-9 {
  margin: 0 -360px 1.5em 360px;
}

.push-10 {
  margin: 0 -400px 1.5em 400px;
}

.push-11 {
  margin: 0 -440px 1.5em 440px;
}

.push-12 {
  margin: 0 -480px 1.5em 480px;
}

.push-13 {
  margin: 0 -520px 1.5em 520px;
}

.push-14 {
  margin: 0 -560px 1.5em 560px;
}

.push-15 {
  margin: 0 -600px 1.5em 600px;
}

.push-16 {
  margin: 0 -640px 1.5em 640px;
}

.push-17 {
  margin: 0 -680px 1.5em 680px;
}

.push-18 {
  margin: 0 -720px 1.5em 720px;
}

.push-19 {
  margin: 0 -760px 1.5em 760px;
}

.push-20 {
  margin: 0 -800px 1.5em 800px;
}

.push-21 {
  margin: 0 -840px 1.5em 840px;
}

.push-22 {
  margin: 0 -880px 1.5em 880px;
}

.push-23 {
  margin: 0 -920px 1.5em 920px;
}

.push-24 {
  margin: 0 -960px 1.5em 960px;
}

.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23, .push-24 {
  float: left;
  position: relative;
}

div.prepend-top, .prepend-top {
  margin-top: 1.5em;
}

div.append-bottom, .append-bottom {
  margin-bottom: 1.5em;
}

.box {
  padding: 1.5em;
  margin-bottom: 1.5em;
  background: #e5eCf9;
}

hr {
  background: #ddd;
  color: #ddd;
  clear: both;
  float: none;
  width: 100%;
  height: 1px;
  margin: 0 0 17px;
  border: none;
}

hr.space {
  background: #fff;
  color: #fff;
  visibility: hidden;
}

.clearfix:after, .container:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}

.clearfix, .container {
  display: block;
}

.clear {
  clear: both;
}

/* -------------------------------------------------------------- 

   liquid.css
   * Sets up an easy-to-use grid of 24 columns that stretch
     to the window width or can also be fixed width.

   Liquid grid work by:
   * Ben Listwon
   * David Bedingfield
   * Andrei Michael Herasimchuk
   Involution Studios, http://www.involutionstudios.com

   -----

   grid.css
   * Sets up an easy-to-use grid of 24 columns.

   Based on work by:
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Khoi Vinh         [subtraction.com]

   -----

   By default, the grid is 80% of window width, with 24 columns.

   To make the grid fixed, simply change the .container width
   property to a pixel value. e.g., 960px.

-------------------------------------------------------------- */
/* A container should group your entire grid. */
.container {
  min-width: 950px;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}

/* A block should group all your columns per row stack. */
.block {
  overflow: hidden;
}

/* Columns
-------------------------------------------------------------- */
/* Use this class together with the .span-x classes
   to create any composition of columns in a layout. */
.column {
  float: left;
}

/* The last column in a row needs this class. */
.last {
  margin-right: 0;
}

/* Use these classes to set the width of a column. */
.span-1 {
  width: 3.167%;
}

.span-2 {
  width: 7.376%;
}

.span-3 {
  width: 11.585%;
}

.span-4 {
  width: 15.794%;
}

.span-5 {
  width: 20.003%;
}

.span-6 {
  width: 24.212%;
}

.span-7 {
  width: 28.421;
}

.span-8 {
  width: 32.63%;
}

.span-9 {
  width: 36.839%;
}

.span-10 {
  width: 41.048%;
}

.span-11 {
  width: 45.257%;
}

.span-12 {
  width: 49.466%;
}

.span-13 {
  width: 53.657%;
}

.span-14 {
  width: 57.884%;
}

.span-15 {
  width: 62.093%;
}

.span-16 {
  width: 66.302%;
}

.span-17 {
  width: 70.511%;
}

.span-18 {
  width: 74.72%;
}

.span-19 {
  width: 78.929%;
}

.span-20 {
  width: 83.138%;
}

.span-21 {
  width: 87.347%;
}

.span-22 {
  width: 91.556%;
}

.span-23 {
  width: 95.765%;
}

.span-24 {
  width: 99.974%;
  margin-right: 0;
}

.column, .span-1, .span-2, .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-9, .span-10, .span-11, .span-12, .span-13, .span-14, .span-15, .span-16, .span-17, .span-18, .span-19, .span-20, .span-21, .span-22, .span-23, .span-24 {
  float: left;
  margin-right: 1.042%;
}

/* .span-1>div, .span-2>div, .span-3>div, .span-4>div,  */
/* .span-5>div, .span-6>div, .span-7>div, .span-8>div,  */
/* .span-9>div, .span-10>div, .span-11>div, .span-12>div, */
/* .span-13>div, .span-14>div, .span-15>div, .span-16>div,  */
/* .span-17>div, .span-18>div, .span-19>div, .span-20>div,  */
/* .span-21>div, .span-22>div, .span-23>div, .span-24>div { */
/*   margin-right: 1.042% !impora; */
/* 	overflow: hidden; */
/* } */
/* Add these to a column to append empty cols. */
.append-1 {
  padding-right: 4.209%;
}

.append-2 {
  padding-right: 8.418%;
}

.append-3 {
  padding-right: 12.627%;
}

.append-4 {
  padding-right: 16.836%;
}

.append-5 {
  padding-right: 21.045%;
}

.append-6 {
  padding-right: 25.254%;
}

.append-7 {
  padding-right: 29.463%;
}

.append-8 {
  padding-right: 33.672%;
}

.append-9 {
  padding-right: 37.881%;
}

.append-10 {
  padding-right: 42.09%;
}

.append-11 {
  padding-right: 46.299%;
}

.append-12 {
  padding-right: 50.508%;
}

.append-13 {
  padding-right: 54.717%;
}

.append-14 {
  padding-right: 58.926%;
}

.append-15 {
  padding-right: 63.135%;
}

.append-16 {
  padding-right: 67.344%;
}

.append-17 {
  padding-right: 71.553%;
}

.append-18 {
  padding-right: 75.762%;
}

.append-19 {
  padding-right: 79.971%;
}

.append-20 {
  padding-right: 84.18%;
}

.append-21 {
  padding-right: 88.389%;
}

.append-22 {
  padding-right: 92.598%;
}

.append-23 {
  padding-right: 96.807%;
}

/* Add these to a column to prepend empty cols. */
.prepend-1 {
  padding-left: 4.209%;
}

.prepend-2 {
  padding-left: 8.418%;
}

.prepend-3 {
  padding-left: 12.627%;
}

.prepend-4 {
  padding-left: 16.836%;
}

.prepend-5 {
  padding-left: 21.045%;
}

.prepend-6 {
  padding-left: 25.254%;
}

.prepend-7 {
  padding-left: 29.463%;
}

.prepend-8 {
  padding-left: 33.672%;
}

.prepend-9 {
  padding-left: 37.881%;
}

.prepend-10 {
  padding-left: 42.09%;
}

.prepend-11 {
  padding-left: 46.299%;
}

.prepend-12 {
  padding-left: 50.508%;
}

.prepend-13 {
  padding-left: 54.717%;
}

.prepend-14 {
  padding-left: 58.926%;
}

.prepend-15 {
  padding-left: 63.135%;
}

.prepend-16 {
  padding-left: 67.344%;
}

.prepend-17 {
  padding-left: 71.553%;
}

.prepend-18 {
  padding-left: 75.762%;
}

.prepend-19 {
  padding-left: 79.971%;
}

.prepend-20 {
  padding-left: 84.18%;
}

.prepend-21 {
  padding-left: 88.389%;
}

.prepend-22 {
  padding-left: 92.598%;
}

.prepend-23 {
  padding-left: 96.807%;
}

/* Border on right hand side of a column. */
.border {
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
.colborder {
  padding-right: 2%;
  margin-right: 2%;
  border-right: 1px solid #eee;
}

.colborder > div {
  margin: 0;
}

/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column. */
.pull-1 {
  margin-left: -4.209%;
}

.pull-2 {
  margin-left: -8.418%;
}

.pull-3 {
  margin-left: -12.627%;
}

.pull-4 {
  margin-left: -16.836%;
}

.pull-5 {
  margin-left: -21.045%;
}

.pull-6 {
  margin-left: -25.254%;
}

.pull-7 {
  margin-left: -29.463%;
}

.pull-8 {
  margin-left: -33.672%;
}

.pull-9 {
  margin-left: -37.881%;
}

.pull-10 {
  margin-left: -42.09%;
}

.pull-11 {
  margin-left: -46.299%;
}

.pull-12 {
  margin-left: -50.508%;
}

.pull-13 {
  margin-left: -54.717%;
}

.pull-14 {
  margin-left: -58.926%;
}

.pull-15 {
  margin-left: -63.135%;
}

.pull-16 {
  margin-left: -67.344%;
}

.pull-17 {
  margin-left: -71.553%;
}

.pull-18 {
  margin-left: -75.762%;
}

.pull-19 {
  margin-left: -79.971%;
}

.pull-20 {
  margin-left: -84.18%;
}

.pull-21 {
  margin-left: -88.389%;
}

.pull-22 {
  margin-left: -92.598%;
}

.pull-23 {
  margin-left: -96.807%;
}

.push-1 {
  margin-left: 1.042%;
  margin-right: -4.209%;
}

.push-2 {
  margin-left: 1.042%;
  margin-right: -8.418%;
}

.push-3 {
  margin-left: 1.042%;
  margin-right: -12.627%;
}

.push-4 {
  margin-left: 1.042%;
  margin-right: -16.836%;
}

.push-5 {
  margin-left: 1.042%;
  margin-right: -21.045%;
}

.push-6 {
  margin-left: 1.042%;
  margin-right: -25.254%;
}

.push-7 {
  margin-left: 1.042%;
  margin-right: -29.463%;
}

.push-8 {
  margin-left: 1.042%;
  margin-right: -33.672%;
}

.push-9 {
  margin-left: 1.042%;
  margin-right: -37.881%;
}

.push-10 {
  margin-left: 1.042%;
  margin-right: -42.09%;
}

.push-11 {
  margin-left: 1.042%;
  margin-right: -46.299%;
}

.push-12 {
  margin-left: 1.042%;
  margin-right: -50.508%;
}

.push-13 {
  margin-left: 1.042%;
  margin-right: -54.717%;
}

.push-14 {
  margin-left: 1.042%;
  margin-right: -58.926%;
}

.push-15 {
  margin-left: 1.042%;
  margin-right: -63.135%;
}

.push-16 {
  margin-left: 1.042%;
  margin-right: -67.344%;
}

.push-17 {
  margin-left: 1.042%;
  margin-right: -71.553%;
}

.push-18 {
  margin-left: 1.042%;
  margin-right: -75.762%;
}

.push-19 {
  margin-left: 1.042%;
  margin-right: -79.971%;
}

.push-20 {
  margin-left: 1.042%;
  margin-right: -84.18%;
}

.push-21 {
  margin-left: 1.042%;
  margin-right: -88.389%;
}

.push-22 {
  margin-left: 1.042%;
  margin-right: -92.598%;
}

.push-23 {
  margin-left: 1.042%;
  margin-right: -96.807%;
}

.push-0, .push-1, .push-2, .push-3, .push-4 {
  float: right;
}

/* Misc classes and elements
-------------------------------------------------------------- */
/* Use a .box to create a padded box inside a column.  */
.box {
  padding: 1.5em;
  margin-bottom: 1.5em;
  background: #eee;
}

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd;
  color: #ddd;
  width: 100%;
  height: 0.083em;
  margin: 0 0 1.583em;
  border: none;
}

hr.space {
  background: #fff;
  color: #fff;
}

/* --------------------------------------------------------------

   fancy-type.css
   * Lots of pretty advanced classes for manipulating text.

   See the Readme file in this folder for additional instructions.

-------------------------------------------------------------- */
/* Indentation instead of line shifts for sibling paragraphs. */
/* p + p { text-indent:2em; margin-top:-1.5em; } */
form p + p {
  text-indent: 0;
} /* Don't want this in forms. */
/* For great looking type, use this code instead of asdf:
   <span class="alt">asdf</span>
   Best used on prepositions and ampersands. */
.alt {
  color: #666;
  font-family: "Warnock Pro", "Goudy Old Style", "Palatino", "Book Antiqua", Georgia, serif;
  font-style: italic;
  font-weight: normal;
}

/* For great looking quote marks in titles, replace "asdf" with:
   <span class="dquo">&#8220;</span>asdf&#8221;
   (That is, when the title starts with a quote mark).
   (You may have to change this value depending on your font size). */
.dquo {
  margin-left: -0.5em;
}

/* Reduced size type with incremental leading
   (http://www.markboulton.co.uk/journal/comments/incremental_leading/)

   This could be used for side notes. For smaller type, you don't necessarily want to
   follow the 1.5x vertical rhythm -- the line-height is too much.

   Using this class, it reduces your font size and line-height so that for
   every four lines of normal sized type, there is five lines of the sidenote. eg:

   New type size in em's:
     10px (wanted side note size) / 12px (existing base size) = 0.8333 (new type size in ems)

   New line-height value:
     12px x 1.5 = 18px (old line-height)
     18px x 4 = 72px
     72px / 5 = 14.4px (new line height)
     14.4px / 10px = 1.44 (new line height in em's) */
p.incr, .incr p {
  font-size: 10px;
  line-height: 1.44em;
  margin-bottom: 1.5em;
}

/* Surround uppercase words and abbreviations with this class.
   Based on work by Jørgen Arnor Gårdsø Lom [http://twistedintellect.com/] */
.caps {
  font-variant: small-caps;
  letter-spacing: 1px;
  text-transform: lowercase;
  font-size: 1.2em;
  line-height: 1%;
  font-weight: bold;
  padding: 0 2px;
}

body.bp {
  font-family: normal Verdana, Tahoma, sans-serif;
}
body.bp a {
  color: #20538D;
  text-decoration: none;
}
body.bp a:hover,
body.bp a:focus {
  color: #06C;
}
body.bp .button_to {
  display: inline;
}
body.bp .link-button {
  background: none;
  border: none;
  color: #20538D;
  font: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
body.bp .link-button:hover, body.bp .link-button:focus {
  color: #06C;
}
body.bp p {
  margin: 0 0 0.5em;
}
body.bp p.indent {
  margin: 0 0 0.5em 2.5em;
}
body.bp p.bold {
  font-weight: bold;
}
body.bp th,
body.bp td {
  padding: 0px 2px 0px 2px;
}
body.bp th {
  white-space: nowrap;
}
body.bp td.nowrap {
  white-space: nowrap;
}
body.bp #container {
  overflow: visible;
}
body.bp #header {
  margin-right: 1.042%;
  padding-bottom: 10px;
}
body.bp #header .name {
  font-size: 4em;
}
body.bp #header {
  display: inline;
}
body.bp #header .auth {
  font-size: 16px;
  padding-top: 10px;
}
body.bp #header .auth .inner {
  float: right;
}
body.bp #header .auth {
  display: inline;
  margin-right: 0 !important;
}
body.bp #nav {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  height: 36px;
  width: 100%;
  background: #617798;
}
body.bp #nav #menu {
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}
body.bp #nav #menu li {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
  white-space: nowrap;
  display: inline;
  float: left;
  padding-left: 0px;
  padding-right: 0px;
}
body.bp #nav #menu li:first-child, body.bp #nav #menu li.first {
  padding-left: 0;
}
body.bp #nav #menu li:last-child {
  padding-right: 0;
}
body.bp #nav #menu li.last {
  padding-right: 0;
}
body.bp #nav #menu {
  font-size: 18px;
  height: 36px;
}
body.bp #nav #menu li {
  border-width: 0 2px 0 1px;
  display: block;
  line-height: 32px;
  float: left;
}
body.bp #nav #menu li a {
  display: block;
  height: 34px;
  background: #617798;
  border: solid 1px #20538D;
  color: white;
  padding: 0 80px 0 40px;
}
body.bp #nav #menu li a:hover, body.bp #nav #menu li a:focus {
  background: #356094;
}
body.bp #nav #menu li a:active {
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
}
body.bp #nav #menu li a.active {
  background: #20538D;
}
body.bp #nav #menu li:last-child {
  text-align: right;
  display: block;
  float: right;
}
body.bp #content {
  margin-top: 5px;
  min-height: 400px;
}
body.bp #content h1 {
  font-size: 20px;
  margin-bottom: 10px;
  width: 100%;
}
body.bp #content h2 {
  font-size: 18px;
  margin-bottom: 5px;
}
body.bp #content h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
body.bp #actions {
  margin-bottom: 15px;
}
body.bp #footer {
  margin-top: 20px;
}
body.bp #flash {
  padding-top: 10px;
}
body.bp .field_with_errors {
  padding: 2px;
  background: red;
  display: table;
}
body.bp #admin-messages {
  display: inline-block;
  border: 2px solid #fbc2c4;
  box-sizing: border-box;
  margin: 0.5rem 0;
  padding: 0.5rem;
}
body.bp #admin-messages.admin-messages-empty {
  display: none;
}
body.bp #error_explanation {
  width: 450px;
  border: 3px solid red;
  padding: 7px;
  padding-bottom: 0;
  margin-bottom: 20px;
  background: #f0f0f0;
}
body.bp #error_explanation h2 {
  text-align: left;
  font-weight: bold;
  padding: 5px 5px 5px 15px;
  font-size: 12px;
  margin: -7px;
  margin-bottom: 0px;
  background: #c00;
  color: #fff;
}
body.bp #error_explanation ul li {
  list-style: square;
}
body.bp fieldset,
body.bp .page-box {
  background: #EEE;
  padding: 10px;
  margin-bottom: 8px;
  width: 100%;
  box-sizing: border-box;
}
body.bp fieldset legend,
body.bp .page-box legend {
  font-size: 18px;
  text-shadow: grey 2px 2px 3px;
}
body.bp .page-box.terms-and-conditions strong {
  display: block;
  margin-top: 1rem;
}
body.bp .collection_map {
  border: 1px solid grey;
  width: 100%;
}
body.bp table.table {
  box-shadow: rgba(0, 0, 0, 0.1) 2px 2px 3px;
  margin-bottom: 5px;
  word-break: keep-all;
}
body.bp table.table th {
  background: #617798;
  color: white;
  font-weight: normal;
}
body.bp table.table tr {
  background: whiteSmoke;
}
body.bp table.table td,
body.bp table.table th {
  border-bottom: #000 solid 1px;
}
body.bp table.table td:nth-child(1),
body.bp table.table th:nth-child(1) {
  border-left: none;
}
body.bp table.table th span.ui-icon {
  float: right;
}
body.bp table.table th.sortable:after {
  content: " ▲▼";
}
body.bp table.table th.sortable.current[data-direction=asc]:after {
  content: " ▼";
}
body.bp table.table th.sortable.current[data-direction=desc]:after {
  content: " ▲";
}
body.bp table.table td a {
  padding: 0px 5px;
}
body.bp table.form {
  margin-bottom: 0;
  overflow-x: scroll;
  word-break: keep-all;
}
body.bp table.form td {
  vertical-align: top;
  min-width: 50px;
  max-width: 70%;
}
body.bp table.form td .map {
  width: 100%;
  border: 1px solid grey;
}
body.bp table.form td.missing {
  font-style: italic;
  color: red;
}
body.bp table.form td.append {
  line-height: 1;
  padding-top: 0px;
}
body.bp table.form td div input {
  margin-right: 10px;
}
body.bp table.form td span.no-map-match-message {
  color: red;
}
body.bp table.form th {
  text-align: right;
  vertical-align: top;
}
body.bp table.form th label:after {
  content: ":";
}
body.bp table.form th {
  min-width: 30%;
  max-width: 30%;
  width: 30%;
}
body.bp table.form select {
  width: 100%;
  height: 28px;
  padding: 4px 0;
  border: solid 1px #E5E5E5;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
  background: linear-gradient(to top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
}
body.bp table.form select.bool {
  width: auto;
}
body.bp table.form.show {
  border-spacing: 5px;
}
body.bp table.form.show td {
  background: white;
  padding: 4px;
}
body.bp table.form.show td.empty {
  background: transparent;
}
body.bp input[type=text].short,
body.bp input[type=email].short,
body.bp input[type=password].short,
body.bp input[type=date].short,
body.bp textarea.short,
body.bp div .choices.short,
body.bp td select.short {
  width: 200px;
}
body.bp input[type=text].middle,
body.bp input[type=email].middle,
body.bp input[type=password].middle,
body.bp input[type=date].middle,
body.bp textarea.middle,
body.bp div .choices.middle,
body.bp td select.middle {
  width: 400px;
}
body.bp input[type=text],
body.bp input[type=email],
body.bp input[type=password],
body.bp input[type=date],
body.bp textarea,
body.bp div .choices,
body.bp td select {
  border: solid 1px #E5E5E5;
  background: linear-gradient(to top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
}
body.bp input[type=text]:hover, body.bp input[type=text]:focus,
body.bp input[type=email]:hover,
body.bp input[type=email]:focus,
body.bp input[type=password]:hover,
body.bp input[type=password]:focus,
body.bp input[type=date]:hover,
body.bp input[type=date]:focus,
body.bp textarea:hover,
body.bp textarea:focus,
body.bp div .choices:hover,
body.bp div .choices:focus,
body.bp td select:hover,
body.bp td select:focus {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 8px;
}
body.bp input[type=text]:focus,
body.bp input[type=email]:focus,
body.bp input[type=password]:focus,
body.bp input[type=date]:focus,
body.bp textarea:focus,
body.bp div .choices:focus,
body.bp td select:focus {
  border-color: #617798;
}
body.bp input[type=text] .search-field input,
body.bp input[type=email] .search-field input,
body.bp input[type=password] .search-field input,
body.bp input[type=date] .search-field input,
body.bp textarea .search-field input,
body.bp div .choices .search-field input,
body.bp td select .search-field input {
  height: 24px;
}
body.bp input[type=text],
body.bp input[type=email],
body.bp input[type=password],
body.bp input[type=date],
body.bp textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 7px;
  margin: 0 7px 0 0;
}
body.bp input[type=text]#search,
body.bp input[type=email]#search,
body.bp input[type=password]#search,
body.bp input[type=date]#search,
body.bp textarea#search {
  width: 300px;
}
body.bp input[type=submit],
body.bp button:not(.choices__button):not(.link-button),
body.bp .button {
  width: auto;
  height: 32px;
  line-height: 32px;
  margin: 0;
  padding: 0 16px;
  background: #617798;
  border: solid 1px #20538D;
  font-size: 14px;
  color: #FFFFFF;
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
}
body.bp input[type=submit]:hover, body.bp input[type=submit]:focus,
body.bp button:not(.choices__button):not(.link-button):hover,
body.bp button:not(.choices__button):not(.link-button):focus,
body.bp .button:hover,
body.bp .button:focus {
  background: #356094;
}
body.bp input[type=submit]:active,
body.bp button:not(.choices__button):not(.link-button):active,
body.bp .button:active {
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
}
body.bp a.button {
  color: #FFFFFF;
  display: inline-block;
  height: 30px;
}
body.bp .button-red {
  background-color: #DC2626;
  color: white;
}
body.bp .left {
  float: left;
}
body.bp .right {
  float: right;
  display: inline-block !important;
}
body.bp .clear {
  clear: both;
}
body.bp .pagination {
  margin-top: 5px;
  margin-bottom: 5px;
}
body.bp .pagination span {
  padding: 0px 5px;
}
body.bp #statistics tr td:first-child {
  text-align: right;
}
body.bp #media_item {
  text-align: center;
}
body.bp #media_item > * {
  width: 100%;
  height: auto;
  min-height: 32px;
}
body.bp #no_comments {
  font-style: italic;
}
body.bp .comment_body {
  font-family: "Lucida Console", monospace;
}
body.bp .comment_body input[type=submit],
body.bp .comment_body button,
body.bp .comment_body .button {
  float: right;
}
body.bp .comment_who {
  font-style: italic;
}
body.bp .no-empty-submit {
  padding: 0 5px;
}
body.bp #facets .fix-scroll-height {
  overflow: auto;
  height: 200px;
  overflow-x: hidden;
}
body.bp #facets td {
  width: 20%;
}
body.bp #facets fieldset {
  background: whiteSmoke;
}
body.bp .choices {
  margin-bottom: inherit;
}
body.bp .choices__inner {
  min-height: inherit;
}
body.bp .invisible {
  visibility: hidden;
}
body.bp .separated-message {
  border-top: 1px solid #BBBBBB;
  margin-top: 0.3rem;
  padding: 0.3rem;
  text-align: center;
}
body.bp .delete-warning {
  border: 2px solid #88001a;
  padding: 0.2rem;
  text-align: center;
}
body.bp .grant {
  display: block;
  border-top: 1px solid #ccc;
}
body.bp .grant .grant-name {
  display: block;
}
body.bp .grant .grant-ids {
  font-style: italic;
}
body.bp .grant .grant-ids .grant-id {
  display: inline-block;
  margin: 0.2rem;
}
body.bp .grant .grant-ids .grant-id a {
  padding: 0;
}
body.bp #funding-bodies input[type=text] {
  width: 85%;
  height: 1.2rem;
  font-size: 14px;
}
body.bp #funding-bodies label {
  font-weight: bold;
  position: absolute;
  right: 0.4rem;
  top: 0.1rem;
}
body.bp #funding-bodies a {
  cursor: pointer;
}
body.bp #funding-bodies a.row-action {
  font-weight: bold;
  position: absolute;
  right: 0.4rem;
  top: 0.1rem;
}
body.bp #funding-bodies a.remove {
  color: #cc0000;
}
body.bp #funding-bodies a.remove:hover {
  color: #dd1100;
}
body.bp #funding-bodies a.remove:active {
  color: #bb0033;
}
body.bp #funding-bodies div,
body.bp #funding-bodies span {
  position: relative;
}
body.bp #funding-bodies div.grant-fields,
body.bp #funding-bodies span.grant-fields {
  display: block;
  margin-top: 0.5rem;
  padding: 0 0.4rem;
}
body.bp #funding-bodies > div {
  border: 1px solid black;
  border-radius: 3px;
  margin: 0.4rem 0.2rem;
  padding: 0.2rem 0.4rem;
}
body.bp #funding-bodies > div > span:first-child {
  width: 100%;
  display: inline-block;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid #aaa;
}
body.bp #funding-bodies .grant-id {
  padding: 0.2rem 0;
}
body.bp #funding-bodies .grant-id span {
  font-style: italic;
}
body.bp #licence-footer {
  clear: both;
  text-align: center;
  padding-top: 1.5rem;
}
body.bp .report-sender-form input[type=submit] {
  margin-left: 40px;
}
body.bp span.access {
  border: 2px solid black;
  border-radius: 5px;
  color: white;
  display: inline-block;
  font-size: small;
  margin: 1px;
  width: 37px;
}
body.bp span.access.open {
  background-color: #50b855;
  border-color: #1c800c;
}
body.bp span.access.open:before {
  content: "open";
  margin-left: 4px;
}
body.bp span.access.closed {
  background-color: #db5750;
  border-color: #9d0000;
}
body.bp span.access.closed:before {
  content: "closed";
}
body.bp span.access.other {
  background-color: #6e6e6e;
  border-color: #000000;
}
body.bp span.access.other:before {
  content: "other";
  margin-left: 3px;
}
body.bp .minwhitespace {
  margin: 0 !important;
  padding: 0 !important;
}

.full-width {
  width: 100%;
}

.hidden {
  display: none !important;
}

body.bp #content {
  overflow: visible;
}

body.bp ul.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.bp .input-inline {
  padding: 0;
  margin: 0;
  position: relative;
  height: 30.8px;
}
body.bp .input-inline .head {
  display: table-cell;
  vertical-align: middle;
  width: 30%;
  max-width: 30%;
  height: 30.8px;
}
body.bp .input-inline input {
  display: inline-block;
}
body.bp .input-inline input.tail {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  max-width: 70%;
  margin: 0;
}

.pagination-container > * {
  display: inline-block;
}
.pagination-container .pagination a {
  padding: 5px;
  margin: 2px 0;
}
.pagination-container .pagination a.next_page, .pagination-container .pagination a.previous_page {
  padding: 2px;
  margin: 2px;
}
.pagination-container .pagination .current {
  font-weight: bold;
  font-style: normal;
}
.pagination-container .next_page, .pagination-container .last_page, .pagination-container .previous_page, .pagination-container .first_page {
  padding: 2px;
  margin: 2px;
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 4px;
  line-height: 1.2;
}
.pagination-container .next_page.disabled, .pagination-container .last_page.disabled, .pagination-container .previous_page.disabled, .pagination-container .first_page.disabled {
  border: none;
}
.pagination-container .next_page.disabled:hover, .pagination-container .last_page.disabled:hover, .pagination-container .previous_page.disabled:hover, .pagination-container .first_page.disabled:hover {
  border: none;
  background: inherit;
}
.pagination-container .next_page:hover, .pagination-container .last_page:hover, .pagination-container .previous_page:hover, .pagination-container .first_page:hover {
  border: 1px solid rgb(200, 200, 200);
  background: rgba(200, 200, 200, 0.5);
}

.codeblock {
  padding: 10px;
  border: 1px solid #adbede;
  background: #f5f5ff;
}
