
body {
    background: #CCC
}

footer {
    background-color: #333;
    color: #DDD;
    text-align: right;
    padding: 2em;
}

.primary-wrapper {
    background: #FFF;
}

.foot-link {
    color: #F0BA18;
    font-size: 1.2em;
}

.foot-link-minor {
    color: #DDD;
    font-size: 1.0em;
}


.blog-post-meta {
    margin-bottom: 1em;
    color: #AAA
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}


a {
    color: #444444;
    text-decoration: none;
}

a:hover {
    color: #CF8D03; /*F8A704*/
    text-decoration: none;
}

#sidebar {

    background: #F9F9F9;

}

#sidebar h2 {
    background: url(/asset/img/bg-sidebar-title.jpg) no-repeat left top;
    text-shadow: #D2D2D2 -1px 1px 2px;
    text-align: right;
    text-transform: uppercase;
    color: #555;
    padding: 0.5em;
    font-size: 1.6em;
}

caption {
    font: 1.4em Arial, Helvetica, sans-serif;
    text-align: left;
    background-color: #EAEAEA;
    padding: 0.2em;
    color:#666666;
}

caption a {
    color: #333333;
}

thead {
    background-color: #F8AE0D;
    color: #FFF;
}

thead tr th {

    font-weight: bold;
    padding: 0px 7px;
    margin: 20px 0px 0px;
    text-align: left;
    border-right: 1px solid #FCF1D4;

}

.form-update-ok, .form-update-error, .form-update-neutral {
    color: #FFF;
    font-size: 1.1em;
    font-weight: bold;
    padding: 0.2em;
    text-align: center;
}

.form-update-ok {
    background: #74A446;
    border: solid 1px #618A3C;
}

.form-update-error {
    background: #CC3300;
    border: solid 1px #C88;
}

.form-update-neutral {
    background: #FFF9D7;
    border: solid 1px #E2C822;
    color: #000;
    font-weight: normal;
}

.form-error, .form-error-sidebar {
    font-size: 1.2em;
    padding: 6px;
    margin: 4px;
    color: #FFF;
    background: #CC3300;
    border: solid 1px #C88;
}


.sbt-but {
    min-width: 8em;
}

.sbt-hot-link {
    font-weight: bold;
    color: #333;
}

.bg-dark {
    background-color: #000 !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75);
}

.info-box {
    border: solid 0.125rem #F7E292;
    background: #FCF7D9;
    padding: 1rem;
    margin: 1rem;
    text-align: center;
    color: #C7A51D;
}

.form-input-text-area {
    width: 50rem;
    height: 12rem;
}

/*ticker - css compiled */

@-webkit-keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-left: 100%;
}

.ticker {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
  white-space: nowrap;
  padding-right: 100%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 30s;
}
.ticker__item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 1.2rem;
}