﻿/* Chosen v1.1.0 | (c) 2011-2013 by Harvest | MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}

.chosen-container a {
  cursor: pointer;
}

.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 23px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), color-stop(100%, #f4f4f4));
  background: -webkit-linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background: -moz-linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background: -o-linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background: linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

.chosen-container-single .chosen-default {
  color: #999;
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(chosen-sprite.png) -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(chosen-sprite.png) no-repeat 0 2px;
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

.chosen-container-single .chosen-search input[type=text] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: #fff url(chosen-sprite.png) no-repeat 100% -20px;
  background: url(chosen-sprite.png) no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}

.chosen-container .chosen-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

.chosen-container .chosen-results li.no-results {
  display: list-item;
  background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: 700;
  cursor: default;
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: -webkit-linear-gradient(#eee 1%, #fff 15%);
  background-image: -moz-linear-gradient(#eee 1%, #fff 15%);
  background-image: -o-linear-gradient(#eee 1%, #fff 15%);
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
  margin: 1px 0;
  padding: 5px;
  /*height:15px;*/
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #666;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-multi .chosen-choices li.search-field .default {
  color: #999;
}

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 0 3px 5px;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(chosen-sprite.png) -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: -webkit-linear-gradient(#eee 20%, #fff 80%);
  background-image: -moz-linear-gradient(#eee 20%, #fff 80%);
  background-image: -o-linear-gradient(#eee 20%, #fff 80%);
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: 0;
  background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type=text] {
  color: #111 !important;
}

.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.chosen-disabled .chosen-single {
  cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

.chosen-rtl {
  text-align: right;
}

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

.chosen-rtl .chosen-choices li {
  float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type=text] {
  direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

.chosen-rtl.chosen-container-single-nosearch .chosen-search, .chosen-rtl .chosen-drop {
  left: 9999px;
}

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: 0;
}

.chosen-rtl .chosen-search input[type=text] {
  padding: 4px 5px 4px 20px;
  background: #fff url(chosen-sprite.png) no-repeat -30px -20px;
  background: url(chosen-sprite.png) no-repeat -30px -20px;
  direction: rtl;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
  .chosen-rtl .chosen-search input[type=text], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-container-single .chosen-search input[type=text], .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span {
    background-image: url(chosen-sprite@2x.png) !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}

.HeadingOrange {
  color: #fe7d1a;
}

.HeadingOrange a {
  color: #fe7d1a;
}

.HeadingOrange a:hover {
  color: #df6e17;
  text-decoration: none;
}

.HeadingLightBlue {
  color: #5f7db8;
}

.HeadingLightBlue a {
  color: #5f7db8;
}

.HeadingLightBlue a:hover {
  color: #4e6aa2;
  text-decoration: none;
}

/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  top: 0;
  left: 0;
  padding: 4px;
  margin-top: 1px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  /*.dow {
    border-top: 1px solid #ddd !important;
  }*/
}

.datepicker:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 6px;
}

.datepicker:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
  top: -6px;
  left: 7px;
}

.datepicker > div {
  display: none;
}

.datepicker table {
  width: 100%;
  margin: 0;
}

.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.datepicker td.day:hover {
  background: #eeeeee;
  cursor: pointer;
}

.datepicker td.day.disabled {
  color: #eeeeee;
}

.datepicker td.old,
.datepicker td.new {
  color: #999999;
}

.datepicker td.active,
.datepicker td.active:hover {
  color: #ffffff;
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #0044cc;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker td.active:hover,
.datepicker td.active:hover:hover,
.datepicker td.active:focus,
.datepicker td.active:hover:focus,
.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active,
.datepicker td.active.disabled,
.datepicker td.active:hover.disabled,
.datepicker td.active[disabled],
.datepicker td.active:hover[disabled] {
  color: #ffffff;
  background-color: #0044cc;
  *background-color: #003bb3;
}

.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active {
  background-color: #003399 \9;
}

.datepicker td span {
  display: block;
  width: 47px;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 2px;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.datepicker td span:hover {
  background: #eeeeee;
}

.datepicker td span.active {
  color: #ffffff;
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #0044cc;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker td span.active:hover,
.datepicker td span.active:focus,
.datepicker td span.active:active,
.datepicker td span.active.active,
.datepicker td span.active.disabled,
.datepicker td span.active[disabled] {
  color: #ffffff;
  background-color: #0044cc;
  *background-color: #003bb3;
}

.datepicker td span.active:active,
.datepicker td span.active.active {
  background-color: #003399 \9;
}

.datepicker td span.old {
  color: #999999;
}

.datepicker th.switch {
  width: 145px;
}

.datepicker th.next,
.datepicker th.prev {
  font-size: 21px;
}

.datepicker thead tr:first-child th {
  cursor: pointer;
}

.datepicker thead tr:first-child th:hover {
  background: #eeeeee;
}

.input-append.date .add-on i,
.input-prepend.date .add-on i {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

@font-face {
  font-family: 'Baron Neue';
  src: url("/Static/Fonts/baron_neue_normal_50.ttf") format("truetype");
  src: url("/Static/Fonts/baron_neue_normal_50.woff") format("woff");
}

body.modal-open {
  overflow: visible;
}

html {
  overflow-y: scroll;
}

html, body, form {
  height: 100%;
}

a:focus, a:active {
  outline: medium solid #B4DCC2;
}

body {
  /*padding-top: 130px;*/
  background: #fff;
  color: #232323;
}

body p {
  font-size: 16px;
}

body h1 {
  font-family: "Helvetica Neue", "Helvetica", "Arial", "Sans-serif";
  /*text-transform: uppercase;*/
  margin-top: 10px;
}

body h2 {
  margin-bottom: 20px;
}

body a {
  text-decoration: underline;
  color: #356FA2;
}

body a:hover {
  text-decoration: underline;
}

.ellipsis {
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
  overflow: hidden;
}

a:focus {
  background-color: #ffffcc;
  color: #BF1722;
  transition: background-color 0.5s linear 0s;
  -webkit-transition: background-color 0.5s linear 0s;
  outline: medium solid #B4DCC2;
}

a.nofocus:focus {
  outline: none;
}

.greenhover:hover {
  color: #91cca6;
}

#pageContainer {
  min-height: 100%;
  position: relative;
}

#mainContent {
  height: 100%;
  padding-bottom: 60px;
}

#mainContent:focus {
  outline: none;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60px;
}

.inlineblock {
  display: inline-block;
}

.relative-position {
  position: relative;
}

.text-muted {
  color: #747474;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.nopadding {
  padding: 0;
}

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

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

.remove-left-padding {
  padding-left: 0;
}

.remove-right-padding {
  padding-right: 0;
}

.nomargin {
  margin: 0;
}

.padding {
  padding: 20px;
}

.padding-bottom {
  padding-bottom: 20px;
}

.padding-top {
  padding-top: 20px;
}

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

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

.small-padding-top {
  padding-top: 10px;
}

.small-padding-bottom {
  padding-bottom: 10px;
}

.add-small-padding {
  padding-top: 10px;
  padding-bottom: 10px;
}

.addmargin {
  margin-top: 3%;
  margin-bottom: 3%;
}

.addpadding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.sidepadding {
  padding-left: 20px;
  padding-right: 20px;
}

.fullheight {
  min-height: 100%;
}

.fullwidth {
  min-width: 100%;
}

.border-box {
  border: 1px solid #E6E6E6;
}

.bottom-border {
  border-bottom: 1px solid #E6E6E6;
}

.top-border {
  border-top: 1px solid #E6E6E6;
}

.left-border {
  border-left: 1px solid #E6E6E6;
}

.right-border {
  border-right: 1px solid #E6E6E6;
}

.text-danger {
  font-weight: bold;
}

.required {
  color: red;
}

.pointer-cursor {
  cursor: pointer;
}

.darkbackground {
  background-color: #232323;
  color: #F2F2F2;
}

.darkbackground ul.chosen-results {
  color: #232323;
}

.darkbackground legend {
  color: #FFF;
}

.darkbackground a {
  color: #6ebc88;
}

.darkbackground a:hover {
  color: #b4dcc2;
}

.whitebackground {
  background-color: #FFF;
  color: #232323;
}

.whitebackground a {
  color: #1E588B;
}

.whitebackground a:hover {
  color: #2a6496;
}

.lightgreybackground {
  background-color: #F2F2F2;
  color: #232323;
}

.lightgreybackground a {
  color: #1E588B;
}

.lightgreybackground a:hover {
  color: #2a6496;
}

.darkgraybackground {
  background-color: #41464B;
  color: #F2F2F2;
}

.darkgraybackground a {
  color: #6ebc88;
}

.darkgraybackground a:hover {
  color: #b4dcc2;
}

.redbackground {
  background-color: #F0AA90;
  color: #232323;
}

.redbackground a {
  color: #8A0000;
}

.redbackground a:hover {
  color: #A8000B;
}

.greenbackground {
  background-color: #B4DCC2;
  color: #232323;
}

.greenbackground a {
  color: #1E588B;
}

.greenbackground a:hover {
  color: #2a6496;
}

.yellowbackground {
  background-color: #F2EBA7;
  color: #232323;
}

.yellowbackground a {
  color: #1E588B;
}

.yellowbackground a:hover {
  color: #2a6496;
}

.bluebackground {
  background-color: #adb1ed;
  color: #232323;
}

.bluebackground a {
  color: #8A0000;
}

.bluebackground a:hover {
  color: #A8000B;
}

.autumnbackground {
  background-color: #ffeccc;
  color: #232323;
}

.autumnbackground a {
  color: #1E588B;
}

.autumnbackground a:hover {
  color: #2a6496;
}

.rotate-45 {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Opera, Chrome, and Safari */
}

.rotate-back-45 {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  /* IE 9 */
  -webkit-transform: rotate(-45deg);
  /* Opera, Chrome, and Safari */
}

input.valid, select.valid {
  border-color: #c1e2b3;
  background: #dff0d8;
}

input.text-danger, select.text-danger {
  border-color: #e4b9b9;
  background: #f2dede;
}

input.duplicate-user, select.duplicate-user {
  border-color: #e4b9b9 !important;
  background: #f2dede !important;
}

.btn-primary {
  background-color: #B4DCC2;
  border-color: #E6E6E6;
  color: #000 !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary.active {
  background-color: #91cca6;
  border-color: #E6E6E6;
}

.btn-secondary {
  background-color: #F2EBA7;
  border-color: #E6E6E6;
  color: #000 !important;
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #ebe17b;
  border-color: #E6E6E6;
  color: #fff;
}

.btn-tertiary {
  background-color: #F0AA90;
  border-color: #E6E6E6;
  color: #000 !important;
}

.btn-tertiary:hover, .btn-tertiary:focus {
  background-color: #ea8863;
  border-color: #E6E6E6;
  color: #fff;
}

.btn-postswitch-sm {
  font-size: x-large;
}

.postswitch-container-sm {
  padding: 15px 0;
}

.postswitch-container-sm a {
  padding: 0 15px;
}

.postswitch-container-xs {
  font-size: x-large;
  padding: 5% 0;
}

.postswitch-container-xs a {
  padding: 10% 0;
}

.btn-halfsize {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block, a.btn-block {
  margin: 0 auto 10px;
  width: 50%;
}

.radio input[type="radio"] {
  margin-left: 0;
}

a.btn {
  text-decoration: none;
}

#KriposBtn {
  max-width: 70px;
}

.btn-toggle {
  background-color: #F2F2F2;
  border-color: #E6E6E6;
  color: #000;
}

.btn-toggle:hover, .btn-toggle:focus, .btn-toggle.active {
  background-color: #91cca6;
  border-color: #E6E6E6;
  color: #fff;
}

.round-image {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
  padding: 20px;
}

.heart-image {
  width: 18px;
}

.square-image {
  width: 100%;
  max-width: 300px;
  padding: 20px;
}

.fullwidth-image {
  width: 100%;
  padding: 20px;
}

.fullwidth-nopadding-image {
  width: 100%;
}

.nav {
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  display: block;
}

.nav a:hover {
  text-decoration: none;
}

.nav a:focus {
  background: none;
}

.nav a.focus {
  outline: 0;
}

.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.nav ul li {
  display: inline;
  padding: 11px 20px;
}

.nav ul li a {
  display: inline;
  color: #000000;
  text-decoration: none;
}

.nav ul li.active {
  background-color: #B4DCC2;
  text-decoration: none;
}

.logoutlink a, .logoutlink {
  display: inline-block;
  text-transform: lowercase;
  font-size: 10px;
  margin-top: 5px !important;
}

#navbarheader {
  height: 90px;
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
}

.adminbBtnContainer {
  width: 23%;
}

#menubutton, #profilebutton, #loginbutton, #logoutbutton, #userbutton {
  cursor: pointer;
}

#menubutton p, #profilebutton p, #loginbutton p, #logoutbutton p, #userbutton p {
  font-size: 10px;
  margin: 0;
}

#menubutton a, #profilebutton a, #loginbutton a, #logoutbutton a, #userbutton a {
  position: relative;
  font-size: 10px;
}

#menubutton i, #profilebutton i, #loginbutton i, #logoutbutton i, #userbutton i {
  font-size: 24px;
}

.navbutton {
  margin-top: 25px;
}

#menubutton {
  visibility: hidden;
  width: 23%;
}

#loginbutton, #logoutbutton, #userbutton {
  width: 100%;
  min-width: 60px;
}

#userbutton, #loginbutton {
  cursor: default;
}

#userbutton a, #loginbutton a {
  font-size: 10px;
}

#menulinks, #profilelinks {
  padding: 10px 0;
}

#menulinks > ul > div, #profilelinks > ul > div {
  display: inline-block;
}

#menulinks a, #profilelinks a {
  font-size: 12px;
}

#menulinks span.username, #profilelinks span.username {
  text-transform: none;
}

#logo {
  width: 54%;
}

#logo img {
  margin: 10px auto 0;
  max-height: 75px;
  max-width: 104px;
}

a.skipNav {
  position: fixed;
  top: 0;
  left: 0;
  text-indent: -10000px;
  padding: 5px 15px;
}

a.skipNav:focus {
  background-color: #B4DCC2;
  color: #000;
  text-indent: 0;
}

.fa {
  color: #232323;
}

.fa.fa-heart {
  color: #232323;
  font-size: 10px;
}

.fa.comment-icon {
  color: #777;
}

.fa.fa-question-circle {
  float: left;
  font-size: 25px;
  margin-top: 1px;
}

.kosignering-type {
  font-size: 25px;
}

.btn-primary:hover .fa {
  color: #fff;
}

.text-muted .fa {
  color: #747474;
}

.darkbackground .fa {
  color: #fff;
}

.nodecoration {
  text-decoration: none;
}

.nodecoration:hover {
  text-decoration: none;
  cursor: pointer;
}

.fa-question-circle {
  color: #B4DCC2;
}

.article {
  margin-top: 20px;
  max-height: 350px;
}

.article-inner {
  border: 1px solid #E6E6E6;
  height: 340px;
  width: 100%;
  overflow: hidden;
  background-color: white;
  display: table;
  /*&:hover {
//		box-shadow: 0px 0px 5px #000;
	}*/
}

.article-inner .noimage {
  display: table-cell !important;
  vertical-align: middle !important;
}

.article-inner img {
  padding: 0;
  margin: 0;
}

.article-inner h3 {
  font-weight: bold;
  font-size: 20px;
}

.article-inner p {
  font-size: 14px;
}

.article-inner p.text-muted {
  font-size: 12px;
}

#articlepage {
  margin-bottom: 40px;
}

#articlepage p.text-muted {
  font-size: 14px;
}

a
.article-contentwrapper {
  margin: 0;
  padding: 8% 11% 8% 11%;
}

a
.article-contentwrapper p {
  max-height: 120px;
  overflow: hidden;
}

.article-container {
  background-color: #fff;
  box-shadow: 0 0 3px #E6E6E6;
}

.articlecontent {
  padding: 40px 5% 40px 5%;
}

.articlecontent > .text-center a {
  color: #356FA2;
  text-decoration: none;
  margin: 0 auto;
}

a.fill-div, a.fill-div:hover {
  display: block;
  height: 100%;
  width: 100%;
  color: black;
  text-decoration: none;
}

.articleimage {
  overflow: hidden;
  max-height: 500px;
  padding: 0;
}

.articleimage img {
  max-height: 500px;
  margin: 0 auto;
  width: 100%;
  min-width: 100%;
}

.articleimage-small {
  overflow: hidden;
  max-height: 150px;
  padding: 0;
}

.articleimage-small img {
  margin: 0 auto;
  width: 100%;
  min-width: 100%;
}

.img-info {
  font-size: 0.8em;
  margin: 0;
  padding: 1%;
}

.categories-select li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.categories-select li a {
  color: #232323;
  background-color: #F2F2F2;
}

.categories-select li a:focus {
  color: #BF1722;
}

.categories-select li a:hover, .categories-select li a.active, .categories-select li a:focus {
  color: #fff;
  background-color: #B4DCC2;
}

.list-inline li:first-child {
  margin-left: 2px;
  padding-left: 5px;
}

.articleCategoryContainer {
  width: 812px;
  margin: 0 auto;
  padding: 50px 0;
}

.articleCategoryBox {
  width: 150px;
  height: 150px;
  font-family: "Helvetica Neue", "Helvetica", "Arial", "Sans-serif";
  cursor: pointer;
  font-size: 16px;
}

.articleCategoryBox :hover {
  color: #fff;
  text-decoration: none;
}

.articleCategoryBox a {
  display: block;
  width: 100%;
  height: 100%;
  color: #232323;
  text-decoration: none;
}

.articleCategoryBoxContent p {
  display: table-cell;
  vertical-align: middle;
}

.articleCategoryBox.number-1 {
  background-color: #B4DCC2;
  margin-left: 106px;
}

.articleCategoryBox.number-2 {
  background-color: #F2EBA7;
  margin-top: -150px;
  margin-left: 544px;
}

.articleCategoryBox.number-3 {
  background-color: #F0AA90;
  margin-left: -4px;
  margin-top: -40px;
}

.articleCategoryBox.number-4 {
  background-color: #F2EBA7;
  margin-left: 216px;
  margin-top: -150px;
}

.articleCategoryBox.number-5 {
  background-color: #B4DCC2;
  margin-top: -150px;
  margin-left: 434px;
}

.articleCategoryBox.number-6 {
  background-color: #F0AA90;
  margin-top: -150px;
  margin-left: 653px;
}

.articleCategoryBox.number-7 {
  background-color: #B4DCC2;
  margin-top: -40px;
  margin-left: 106px;
}

.articleCategoryBox.number-8 {
  background-color: #F0AA90;
  margin-top: -150px;
  margin-left: 325px;
}

.articleCategoryBox.number-9 {
  background-color: #F2EBA7;
  margin-left: 544px;
  margin-top: -150px;
}

.articleCategoryBox.number-10 {
  background-color: #F2EBA7;
  margin-top: -40px;
  margin-left: 216px;
}

.articleCategoryBox.number-11 {
  background-color: #B4DCC2;
  margin-left: 434px;
  margin-top: -150px;
}

.articleCategoryBox.number-12 {
  background-color: #F0AA90;
  margin-left: 325px;
  margin-top: -40px;
}

.articleCategoryBoxContent {
  display: table;
  height: 100%;
  width: 100%;
}

.articleCategoryBox.number-1:hover, .articleCategoryBox.number-5:hover, .articleCategoryBox.number-7:hover, .articleCategoryBox.number-11:hover {
  background-color: #6ebc89;
}

.articleCategoryBox.number-1 a:focus, .articleCategoryBox.number-5 a:focus, .articleCategoryBox.number-7 a:focus, .articleCategoryBox.number-11 a:focus {
  background-color: #6ebc89;
  color: #fff;
}

.articleCategoryBox.number-2:hover, .articleCategoryBox.number-4:hover, .articleCategoryBox.number-9:hover, .articleCategoryBox.number-10:hover {
  background-color: #e5d74e;
}

.articleCategoryBox.number-2 a:focus, .articleCategoryBox.number-4 a:focus, .articleCategoryBox.number-9 a:focus, .articleCategoryBox.number-10 a:focus {
  background-color: #e5d74e;
  color: #fff;
}

.articleCategoryBox.number-3:hover, .articleCategoryBox.number-6:hover, .articleCategoryBox.number-8:hover, .articleCategoryBox.number-12:hover {
  background-color: #ea8863;
}

.articleCategoryBox.number-3 a:focus, .articleCategoryBox.number-6 a:focus, .articleCategoryBox.number-8 a:focus, .articleCategoryBox.number-12 a:focus {
  background-color: #ea8863;
  color: #fff;
}

.gs-webResult.gs-result .gsc-table-result a.gs-title:link, .gs-webResult.gs-result .gsc-table-result a.gs-title:link b, .gs-imageResult .gsc-table-result a.gs-title:link, .gs-imageResult .gsc-table-result a.gs-title:link b {
  color: #356FA2;
}

.gsc-results .gsc-cursor-box .gsc-cursor .gsc-cursor-current-page {
  color: #000;
  background-color: #B4DCC2;
  text-shadow: none;
  font-weight: normal;
}

.gsc-option-menu-container .gsc-selected-option-container {
  width: auto !important;
}

td input.gsc-search-button {
  color: #232323;
  font-size: 1.2em;
  font-weight: normal;
}

td input.gsc-search-button :hover {
  color: #F2F2F2;
}

.reset-box-sizing,
.reset-box-sizing * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.contact-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
}

.item-container, .item-container2 {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.item-container:hover .caption, .item-container2:hover .caption, .item-container:hover .caption-red, .item-container2:hover .caption-red, .item-container:hover .caption-green, .item-container2:hover .caption-green, .item-container:hover .caption-yellow, .item-container2:hover .caption-yellow, .item-container:hover .caption-blue, .item-container2:hover .caption-blue {
  display: inline-block;
}

.item-container a:link, .item-container2 a:link, .item-container a:visited, .item-container2 a:visited, .item-container a:hover, .item-container2 a:hover, .item-container a:active, .item-container2 a:active {
  text-decoration: none;
  color: black;
}

.item-container2:hover .caption, .item-container2:hover .caption-red, .item-container2:hover .caption-green, .item-container2:hover .caption-yellow, .item-container2:hover .caption-blue {
  display: block;
}

/*.valign:after {
	display: inline-block;
	height: 100%;
	width: 0;
	vertical-align: middle;
	content: '';
}

.valign > .valigned {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}*/
.valign {
  height: 100%;
}

.valigned {
  display: table;
  height: 100%;
  width: 100%;
}

.valigned p {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

#ed24DivOffline, #ed24DivOnline, #ed24DivBusy {
  position: relative;
  cursor: pointer;
}

.caption, .caption-red, .caption-green, .caption-yellow, .caption-blue {
  text-transform: uppercase;
  font-weight: bold;
  color: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 50%;
  display: none;
  visibility: visible;
  cursor: pointer;
}

.caption-red {
  background: rgba(240, 170, 144, 0.95);
}

.caption-red > .valigned p {
  font-size: 24px;
}

.caption-green {
  background: rgba(180, 220, 194, 0.95);
}

.caption-green > .valigned p {
  font-size: 24px;
}

.caption-yellow {
  background: rgba(242, 235, 167, 0.95);
}

.caption-yellow > .valigned p {
  font-size: 24px;
}

.caption-blue {
  background: rgba(173, 177, 237, 0.95);
}

.caption-blue > .valigned p {
  font-size: 24px;
}

.carousel {
  max-height: 450px;
}

.carousel .carousel-inner .item img {
  height: 100%;
  width: 100%;
}

.carousel .carousel-inner .item div {
  height: 100%;
}

.carousel-inner > .item {
  -webkit-transition: 0.6s ease-in-out left;
  -moz-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

.carousel-image {
  position: absolute;
}

.carousel-text p {
  position: absolute;
  font-size: 24px;
}

.carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.carousel-indicators li {
  border: 1px solid #232323;
}

.carousel-indicators .active {
  background-color: #4fa86e;
}

.topleft p {
  top: 5%;
  left: 2%;
}

.topright p {
  top: 5%;
  right: 2%;
}

.bottomright p {
  top: 100%;
  margin-top: -90px;
  right: 2%;
}

.bottomleft p {
  top: 100%;
  margin-top: -90px;
  left: 2%;
}

.notextbackground p {
  padding: 0;
  background-color: none;
  border-radius: 0;
}

.darktextbackground a {
  color: #6ea2cf;
}

.darktextbackground p {
  color: #fff;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6);
}

.lighttextbackground p {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.6);
}

.footer-links li + li {
  margin-left: 0;
}

#contact_block {
  padding: 20px;
  padding-bottom: 40px;
}

#search_block {
  padding: 20px;
}

#volunteer_block {
  padding: 20px;
}

#volunteer_block .row:first-child {
  margin-bottom: 10px;
}

#volunteer_block_images {
  display: inline-block;
  margin-bottom: 0;
}

.isFocused {
  border-color: rgba(180, 220, 194, 0.6);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(180, 220, 194, 0.6);
  outline: 0 none;
}

textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
  border-color: rgba(180, 220, 194, 0.6);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(180, 220, 194, 0.6);
  outline: 0 none;
}

.main-category {
  margin-top: 10px;
  margin-bottom: 0;
}

.single-category {
  text-decoration: none;
  color: #356FA2;
  font-size: 1.5em;
  display: block;
  width: 100%;
}

.single-post {
  text-decoration: none;
  font-size: 1.5em;
  display: block;
  width: 100%;
}

.lastpost {
  display: block;
  width: 100%;
}

.lastpost a {
  text-decoration: none;
}

.list-forumactivity {
  font-family: "Helvetica Neue", "Helvetica", "Arial", "Sans-serif";
  text-transform: uppercase;
  margin-bottom: 3%;
  list-style-type: none;
  -webkit-padding-start: 0px;
}

.list-forumactivity li {
  line-height: 2;
}

.list-forumactivity li a {
  text-decoration: none;
}

.list-forumactivity li .text-muted {
  text-transform: none;
}

.list-group {
  margin-bottom: 0;
}

.list-group-item:first-child {
  border-radius: 0;
}

.list-group-item:last-child {
  border-radius: 0;
}

.forum_rightbox_overview {
  position: absolute;
  right: 5px;
  top: 5px;
}

.forum_rightbox {
  position: absolute;
  right: 10px;
  top: 10px;
}

.forum_leftbox {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 24px;
  color: #747474;
}

.postcount {
  background-color: #B4DCC2;
  width: 45px;
  padding: 10px 3px;
  text-align: center;
}

.answercount {
  background-color: #B4DCC2;
  width: 45px;
  padding: 10px 3px;
  text-align: center;
}

.postcount.nonewposts, .answercount.nonewposts {
  background-color: #B4DCC2;
}

.fa.stepforward {
  height: 100%;
  padding-left: 10px;
  margin-right: 0px;
  color: #CCCCCC;
}

a:hover .fa.greenhover, a:focus .fa.greenhover {
  color: #91cca6;
}

.fa.stepbackwards {
  height: 100%;
  padding-right: 10px;
  margin-left: 0px;
  color: #fff;
  font-size: 35px;
}

.fa.newpost {
  height: 100%;
  padding-left: 10px;
  margin-right: 0px;
  color: #fff;
  font-size: 25px;
}

.newpost-description {
  color: #fff;
  font-size: 1em;
}

.lastpost {
  font-size: 1.1em;
}

.forumpost {
  padding: 0px;
}

.authorinfo {
  padding: 5px 40px;
  height: 30px;
  color: #356FA2;
}

.forumpostbody {
  /*padding: 10px 40px 20px;*/
  padding: 20px;
}

.forumpostHeader {
  padding: 0px;
}

.stepbackwardsContainer {
  padding: 10px;
}

.pagination {
  font-size: 1.5em;
  color: #356FA2;
  border-radius: 0;
}

#Content_DataPagerPanel {
  border-bottom: none;
}

#Content_DataPagerPanel2 {
  border-top: none;
}

.PageNumbers:nth-child(6) {
  text-decoration: none;
}

.originalPost {
  background-color: #f9f5d3;
}

.originalPostLink {
  font-size: 14px;
  color: #356FA2;
}

.media-object {
  max-height: 64px;
  max-width: 64px;
  border: 1px solid #E6E6E6;
  padding: 5px;
}

.mailbox-menu {
  border-bottom: 0;
}

#Inbox, #Draft, #Sendt {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  border: 0;
}

.unread .mailheader {
  font-weight: bold;
}

.mailbox-menu li.active a, .mailbox-menu li.active a:focus, .mailbox-menu li.active a:hover {
  border-radius: 0;
  margin-right: 0;
  background-color: #232323;
  color: #fff;
}

.mailbox-menu li {
  background-color: #F2F2F2;
}

.mailbox-menu li a {
  color: #232323;
}

#MailHistoryTable {
  table-layout: fixed;
}

#MailHistoryTable th {
  cursor: pointer;
}

#MailHistoryTable th.mailHistoryTitle {
  width: 40%;
}

#MailHistoryTable tr {
  overflow-wrap: break-word;
}

.locked {
  color: #BF1722;
}

#tab-container li.list-group-item {
  padding-left: 0;
  padding-right: 0;
}

.tab-content {
  max-width: 910px;
}

.mailheader {
  max-width: 80%;
  color: #356FA2;
}

/* Konkurranse */
.tree {
  font-family: "Montserrat", "Helvetica Neue", "Helvetica", "Arial", "Sans-serif";
  position: relative;
  background-size: 768px;
  background-position: center center;
  width: 768px;
  margin: 0 auto;
  height: 900px;
  color: black;
  font-size: 13px;
}

.tree .leaf1 {
  position: absolute;
}

.tree .leaf1 img {
  cursor: pointer;
}

.tree .leaf1 .text {
  cursor: pointer;
}

.tree .leaf2 {
  position: absolute;
}

.tree .leaf2 img {
  cursor: pointer;
}

.tree .leaf2 .text {
  cursor: pointer;
}

.tree .leaf3 {
  position: absolute;
}

.tree .leaf3 img {
  cursor: pointer;
}

.tree .leaf3 .text {
  cursor: pointer;
}

.tree .leaf4 {
  position: absolute;
}

.tree .leaf4 img {
  cursor: pointer;
}

.tree .leaf4 .text {
  cursor: pointer;
}

.tree .leaf5 {
  position: absolute;
}

.tree .leaf5 img {
  cursor: pointer;
}

.tree .leaf5 .text {
  cursor: pointer;
}

.tree .leaf6 {
  position: absolute;
}

.tree .leaf6 img {
  cursor: pointer;
}

.tree .leaf6 .text {
  cursor: pointer;
}

.tree .leaf7 {
  position: absolute;
}

.tree .leaf7 img {
  cursor: pointer;
}

.tree .leaf7 .text {
  cursor: pointer;
}

.tree .leaf8 {
  position: absolute;
}

.tree .leaf8 img {
  cursor: pointer;
}

.tree .leaf8 .text {
  cursor: pointer;
}

.tree .leaf9 {
  position: absolute;
}

.tree .leaf9 img {
  cursor: pointer;
}

.tree .leaf9 .text {
  cursor: pointer;
}

.tree .leaf10 {
  position: absolute;
}

.tree .leaf10 img {
  cursor: pointer;
}

.tree .leaf10 .text {
  cursor: pointer;
}

.tree .leaf11 {
  position: absolute;
}

.tree .leaf11 img {
  cursor: pointer;
}

.tree .leaf11 .text {
  cursor: pointer;
}

.tree .leaf12 {
  position: absolute;
}

.tree .leaf12 img {
  cursor: pointer;
}

.tree .leaf12 .text {
  cursor: pointer;
}

.tree .leaf13 {
  position: absolute;
}

.tree .leaf13 img {
  cursor: pointer;
}

.tree .leaf13 .text {
  cursor: pointer;
}

.tree .leaf14 {
  position: absolute;
}

.tree .leaf14 img {
  cursor: pointer;
}

.tree .leaf14 .text {
  cursor: pointer;
}

.tree .leaf15 {
  position: absolute;
}

.tree .leaf15 img {
  cursor: pointer;
}

.tree .leaf15 .text {
  cursor: pointer;
}

.tree .leaf16 {
  position: absolute;
}

.tree .leaf16 img {
  cursor: pointer;
}

.tree .leaf16 .text {
  cursor: pointer;
}

.tree .leaf17 {
  position: absolute;
}

.tree .leaf17 img {
  cursor: pointer;
}

.tree .leaf17 .text {
  cursor: pointer;
}

.tree .leaf18 {
  position: absolute;
}

.tree .leaf18 img {
  cursor: pointer;
}

.tree .leaf18 .text {
  cursor: pointer;
}

.tree .leaf19 {
  position: absolute;
}

.tree .leaf19 img {
  cursor: pointer;
}

.tree .leaf19 .text {
  cursor: pointer;
}

.tree .leaf20 {
  position: absolute;
}

.tree .leaf20 img {
  cursor: pointer;
}

.tree .leaf20 .text {
  cursor: pointer;
}

.tree .leaf21 {
  position: absolute;
}

.tree .leaf21 img {
  cursor: pointer;
}

.tree .leaf21 .text {
  cursor: pointer;
}

.tree .leaf22 {
  position: absolute;
}

.tree .leaf22 img {
  cursor: pointer;
}

.tree .leaf22 .text {
  cursor: pointer;
}

.tree .leaf23 {
  position: absolute;
}

.tree .leaf23 img {
  cursor: pointer;
}

.tree .leaf23 .text {
  cursor: pointer;
}

.tree .leaf24 {
  position: absolute;
}

.tree .leaf24 img {
  cursor: pointer;
}

.tree .leaf24 .text {
  cursor: pointer;
}

.tree .leaf1 {
  top: 285px;
  left: 715px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
}

.tree .leaf1 img {
  height: 80px;
  width: 140px;
}

.tree .leaf1 .text {
  position: relative;
  top: 0;
  left: 15px;
  margin-top: -47px;
}

.tree .leaf2 {
  top: 185px;
  left: 725px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf2 img {
  height: 90px;
  width: 130px;
}

.tree .leaf2 .text {
  position: relative;
  top: 0;
  left: 15px;
  margin-top: -55px;
}

.tree .leaf3 {
  top: 210px;
  left: 580px;
}

.tree .leaf3 img {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(170deg);
  -moz-transform: rotate(170deg);
  -ms-transform: rotate(170deg);
  -o-transform: rotate(170deg);
  transform: rotate(170deg);
  height: 80px;
  width: 140px;
}

.tree .leaf3 .text {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
  transform: rotate(-15deg);
  position: relative;
  top: 0;
  left: 30px;
  margin-top: -60px;
}

.tree .leaf4 {
  top: 345px;
  left: 620px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf4 img {
  height: 80px;
  width: 140px;
}

.tree .leaf4 .text {
  position: relative;
  top: 0;
  left: 20px;
  margin-top: -47px;
}

.tree .leaf5 {
  top: 360px;
  left: 500px;
}

.tree .leaf5 img {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(170deg);
  -moz-transform: rotate(170deg);
  -ms-transform: rotate(170deg);
  -o-transform: rotate(170deg);
  transform: rotate(170deg);
  height: 90px;
  width: 130px;
}

.tree .leaf5 .text {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  transform: rotate(-10deg);
  position: relative;
  top: 0;
  left: 23px;
  margin-top: -60px;
}

.tree .leaf6 {
  top: 445px;
  left: 700px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf6 img {
  height: 80px;
  width: 140px;
}

.tree .leaf6 .text {
  position: relative;
  top: 0;
  left: 20px;
  margin-top: -50px;
}

.tree .leaf7 {
  top: 445px;
  left: 570px;
}

.tree .leaf7 img {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(170deg);
  -moz-transform: rotate(170deg);
  -ms-transform: rotate(170deg);
  -o-transform: rotate(170deg);
  transform: rotate(170deg);
  height: 80px;
  width: 140px;
}

.tree .leaf7 .text {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
  transform: rotate(-15deg);
  position: relative;
  top: 0;
  left: 30px;
  margin-top: -60px;
}

.tree .leaf8 {
  top: 530px;
  left: 715px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf8 img {
  height: 90px;
  width: 130px;
}

.tree .leaf8 .text {
  position: relative;
  top: 0;
  left: 20px;
  margin-top: -55px;
}

.tree .leaf9 {
  top: 620px;
  left: 680px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf9 img {
  height: 80px;
  width: 140px;
}

.tree .leaf9 .text {
  position: relative;
  top: 0;
  left: 30px;
  margin-top: -50px;
}

.tree .leaf10 {
  top: 620px;
  left: 540px;
}

.tree .leaf10 img {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(170deg);
  -moz-transform: rotate(170deg);
  -ms-transform: rotate(170deg);
  -o-transform: rotate(170deg);
  transform: rotate(170deg);
  height: 80px;
  width: 140px;
}

.tree .leaf10 .text {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
  transform: rotate(-15deg);
  position: relative;
  top: 0;
  left: 30px;
  margin-top: -60px;
}

.tree .leaf11 {
  top: 640px;
  left: 150px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf11 img {
  height: 90px;
  width: 130px;
}

.tree .leaf11 .text {
  position: relative;
  top: 0;
  left: 18px;
  margin-top: -55px;
}

.tree .leaf12 {
  top: 640px;
  left: 20px;
}

.tree .leaf12 img {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(170deg);
  -moz-transform: rotate(170deg);
  -ms-transform: rotate(170deg);
  -o-transform: rotate(170deg);
  transform: rotate(170deg);
  height: 80px;
  width: 140px;
}

.tree .leaf12 .text {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
  transform: rotate(-15deg);
  position: relative;
  top: 0;
  left: 30px;
  margin-top: -60px;
}

.tree .leaf13 {
  top: 500px;
  left: 0px;
  margin-left: -45px;
}

.tree .leaf13 img {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(160deg);
  -moz-transform: rotate(160deg);
  -ms-transform: rotate(160deg);
  -o-transform: rotate(160deg);
  transform: rotate(160deg);
  height: 80px;
  width: 140px;
}

.tree .leaf13 .text {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
  transform: rotate(-25deg);
  position: relative;
  top: 0;
  left: 20px;
  margin-top: -65px;
}

.tree .leaf14 {
  top: 500px;
  left: 80px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf14 img {
  height: 90px;
  width: 130px;
}

.tree .leaf14 .text {
  position: relative;
  top: 0;
  left: 18px;
  margin-top: -55px;
}

.tree .leaf15 {
  top: 410px;
  left: 0px;
  margin-left: -100px;
}

.tree .leaf15 img {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(160deg);
  -moz-transform: rotate(160deg);
  -ms-transform: rotate(160deg);
  -o-transform: rotate(160deg);
  transform: rotate(160deg);
  height: 80px;
  width: 140px;
}

.tree .leaf15 .text {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
  transform: rotate(-25deg);
  position: relative;
  top: 0;
  left: 30px;
  margin-top: -65px;
}

.tree .leaf16 {
  top: 410px;
  left: 20px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}

.tree .leaf16 img {
  height: 80px;
  width: 140px;
}

.tree .leaf16 .text {
  position: relative;
  top: 0;
  left: 25px;
  margin-top: -50px;
}

.tree .leaf17 {
  top: 280px;
  left: 70px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf17 img {
  height: 90px;
  width: 130px;
}

.tree .leaf17 .text {
  position: relative;
  top: 0;
  left: 20px;
  margin-top: -55px;
}

.tree .leaf18 {
  top: 230px;
  left: 0px;
  margin-left: -50px;
}

.tree .leaf18 img {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(160deg);
  -moz-transform: rotate(160deg);
  -ms-transform: rotate(160deg);
  -o-transform: rotate(160deg);
  transform: rotate(160deg);
  height: 80px;
  width: 140px;
}

.tree .leaf18 .text {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
  transform: rotate(-25deg);
  position: relative;
  top: 0;
  left: 30px;
  margin-top: -65px;
}

.tree .leaf19 {
  top: 100px;
  left: 245px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf19 img {
  height: 80px;
  width: 140px;
}

.tree .leaf19 .text {
  position: relative;
  top: 0;
  left: 30px;
  margin-top: -47px;
}

.tree .leaf20 {
  top: 320px;
  left: 300px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf20 img {
  height: 90px;
  width: 130px;
}

.tree .leaf20 .text {
  position: relative;
  top: 0;
  left: 20px;
  margin-top: -55px;
}

.tree .leaf21 {
  top: 120px;
  left: 110px;
}

.tree .leaf21 img {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(160deg);
  -moz-transform: rotate(160deg);
  -ms-transform: rotate(160deg);
  -o-transform: rotate(160deg);
  transform: rotate(160deg);
  height: 80px;
  width: 140px;
}

.tree .leaf21 .text {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
  transform: rotate(-25deg);
  position: relative;
  top: 0;
  left: 25px;
  margin-top: -65px;
}

.tree .leaf22 {
  top: 80px;
  left: 470px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf22 img {
  height: 80px;
  width: 140px;
}

.tree .leaf22 .text {
  position: relative;
  top: 0;
  left: 30px;
  margin-top: -50px;
}

.tree .leaf23 {
  top: 160px;
  left: 340px;
}

.tree .leaf23 img {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(160deg);
  -moz-transform: rotate(160deg);
  -ms-transform: rotate(160deg);
  -o-transform: rotate(160deg);
  transform: rotate(160deg);
  height: 90px;
  width: 130px;
}

.tree .leaf23 .text {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
  transform: rotate(-25deg);
  position: relative;
  top: 0;
  left: 25px;
  margin-top: -70px;
}

.tree .leaf24 {
  top: 160px;
  left: 480px;
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
}

.tree .leaf24 img {
  height: 80px;
  width: 140px;
}

.tree .leaf24 .text {
  position: relative;
  top: 0;
  left: 20px;
  margin-top: -50px;
}

.leaf-bottom {
  font-family: "Montserrat", "Helvetica Neue", "Helvetica", "Arial", "Sans-serif";
  display: inline-block;
  position: relative;
  width: 120px;
  height: 80px;
  cursor: pointer;
  font-size: 13px;
}

.leaf-bottom .name {
  position: absolute;
  top: 26px;
  left: 12px;
}

.leaf-bottom:nth-child(3n+2) .name {
  top: 32px;
}

.leaf-bottom:nth-child(3n) .name {
  top: 24px;
}

.leaf-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

/* Min side */
.mypagebox-container {
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  display: inline-block;
}

.mypagebox {
  width: 150px;
  height: 150px;
  display: inline-block;
}

.mypagebox a:focus, .mypagebox a:hover {
  text-decoration: none;
}

.mypagebox.active {
  opacity: 1;
}

.mypagebox.greenbackground:hover, .mypagebox.greenbackground.active {
  background-color: #6ebc89;
  color: #fff;
}

.mypagebox.greenbackground:hover i, .mypagebox.greenbackground:hover h3, .mypagebox.greenbackground.active i, .mypagebox.greenbackground.active h3 {
  color: #fff;
}

.mypagebox.redbackground:hover, .mypagebox.redbackground.active {
  background-color: #ea8863;
  color: #fff;
}

.mypagebox.redbackground:hover i, .mypagebox.redbackground:hover h3, .mypagebox.redbackground.active i, .mypagebox.redbackground.active h3 {
  color: #fff;
}

.mypagebox.yellowbackground:hover, .mypagebox.yellowbackground.active {
  background-color: #e5d74e;
  color: #fff;
}

.mypagebox.yellowbackground:hover i, .mypagebox.yellowbackground:hover h3, .mypagebox.yellowbackground.active i, .mypagebox.yellowbackground.active h3 {
  color: #fff;
}

.mypagebox.bluebackground:hover, .mypagebox.bluebackground.active {
  background-color: #5961db;
  color: #fff;
}

.mypagebox.bluebackground:hover i, .mypagebox.bluebackground:hover h3, .mypagebox.bluebackground.active i, .mypagebox.bluebackground.active h3 {
  color: #fff;
}

.mypagebox-content {
  padding: 20px 0 35px;
}

.mypagebox-content i.fa {
  font-size: 3em;
  color: #232323;
}

.mypagebox-content h3 {
  color: #232323;
  font-size: 16px;
}

.notification-label {
  position: relative;
  margin-left: -12px;
}

/* INNBOKS */
.mypagebox-content {
  padding: 20px 0 35px;
}

.mypagebox-content i.fa {
  font-size: 3em;
  color: #232323;
}

.mypagebox-content h3 {
  color: #232323;
  font-size: 16px;
}

#id_matrix td {
  padding-bottom: 15px;
}

/* tablesorter */
table.tablesorter {
  font-family: arial;
  margin: 10px 0pt 15px;
  font-size: 10pt;
  width: 100%;
  text-align: left;
}

table.tablesorter thead tr th, table.tablesorter tfoot tr th {
  background-color: #B4DCC2;
  border: 1px solid #F2F2F2;
  font-size: 10pt;
  padding: 8px;
}

table.tablesorter thead tr .header {
  background-image: url(bg.gif);
  background-repeat: no-repeat;
  background-position: center right;
  cursor: pointer;
}

table.tablesorter tbody td {
  color: #3D3D3D;
  padding: 8px;
  background-color: #FFF;
  vertical-align: top;
}

table.tablesorter tbody tr.odd td {
  background-color: #F0F0F6;
}

table.tablesorter thead tr .headerSortUp {
  background-image: url(asc.gif);
}

table.tablesorter thead tr .headerSortDown {
  background-image: url(desc.gif);
}

table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
  background-color: #4fa86e;
}

.schema {
  padding: 3%;
}

.schema table {
  margin: 0 auto;
}

.alert {
  margin-top: 20px;
}

.alert-slide {
  z-index: 1000;
  width: 30%;
  left: 35%;
  position: fixed;
  bottom: -150px;
  text-align: center;
}

@-webkit-keyframes floatBubble {
  0% {
    bottom: -100px;
  }
  100% {
    bottom: 50px;
  }
}

@keyframes floatBubble {
  0% {
    bottom: -100px;
  }
  100% {
    bottom: 50px;
  }
}

@media (max-width: 910px) {
  .articleCategoryContainer {
    width: 696px;
    margin: 0 auto;
    padding: 50px 0;
  }
  .articleCategoryBox {
    width: 100px;
    height: 100px;
  }
  .articleCategoryBox.number-1 {
    background-color: #B4DCC2;
    margin-left: 150px;
  }
  .articleCategoryBox.number-2 {
    background-color: #F2EBA7;
    margin-top: -100px;
    margin-left: 450px;
  }
  .articleCategoryBox.number-3 {
    background-color: #F0AA90;
    margin-left: 74px;
    margin-top: -24px;
  }
  .articleCategoryBox.number-4 {
    background-color: #F2EBA7;
    margin-left: 226px;
    margin-top: -100px;
  }
  .articleCategoryBox.number-5 {
    background-color: #B4DCC2;
    margin-top: -100px;
    margin-left: 374px;
  }
  .articleCategoryBox.number-6 {
    background-color: #F0AA90;
    margin-top: -100px;
    margin-left: 526px;
  }
  .articleCategoryBox.number-7 {
    background-color: #B4DCC2;
    margin-top: -24px;
    margin-left: 150px;
  }
  .articleCategoryBox.number-8 {
    background-color: #F0AA90;
    margin-top: -100px;
    margin-left: 300px;
  }
  .articleCategoryBox.number-9 {
    background-color: #F2EBA7;
    margin-left: 450px;
    margin-top: -100px;
  }
  .articleCategoryBox.number-10 {
    background-color: #F2EBA7;
    margin-top: -24px;
    margin-left: 226px;
  }
  .articleCategoryBox.number-11 {
    background-color: #B4DCC2;
    margin-left: 375px;
    margin-top: -100px;
  }
  .articleCategoryBox.number-12 {
    background-color: #F0AA90;
    margin-left: 301px;
    margin-top: -24px;
  }
  .articleCategoryBoxContent {
    padding: 40px 0;
  }
  .articleCategoryBoxContent p {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .nav ul li {
    padding: 11px 10px;
  }
}

@media (min-width: 1200px) {
  .article-inner {
    height: 350px;
  }
}

@media (max-width: 767px) {
  #Content_ResultChart {
    height: auto !important;
    width: 100% !important;
  }
  .alert-slide {
    left: 25%;
    width: 50%;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 26px;
  }
  .nav ul li {
    display: block;
    padding: 1em;
  }
  .article {
    max-height: none;
  }
  .article-inner {
    height: 5%;
  }
  .articleimage-small {
    max-height: 387px;
  }
  .contact-image img {
    max-width: 200px;
  }
  .forum_rightbox {
    position: absolute;
    right: 10px;
    top: 5px;
  }
  .postcount, .answercount {
    padding: 6px 3px;
  }
  .fa.stepforward {
    font-size: 30px;
    padding-top: 2px;
  }
}

@media (max-width: 991px) {
  .contactContainer:last-of-type, .contactContainer:nth-last-of-type(2) {
    margin-top: 3%;
  }
}

@media (max-width: 696px) {
  #articleCategoryBlock {
    padding-bottom: 40px;
  }
  .articleCategoryContainer {
    width: 100%;
    padding: 0px;
    text-align: center;
  }
  .articleCategoryContainer .articleCategoryBox {
    border: 2px solid #232323;
    position: relative;
    float: left;
    display: none;
    margin: 0px;
    width: 33%;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Opera, Chrome, and Safari */
  }
  .articleCategoryContainer .articleCategoryBox .articleCategoryBoxContent {
    display: block;
    padding: 40px 10px;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Opera, Chrome, and Safari */
  }
  .articleCategoryContainer .articleCategoryBox p {
    display: block;
    margin: 0px;
  }
  .articleCategoryBox.number-1 {
    display: inline-block;
  }
  .articleCategoryBox.number-2 {
    display: inline-block;
    width: 34%;
  }
  .articleCategoryBox.number-3 {
    display: inline-block;
  }
  .articleCategoryBox.number-4 {
    display: inline-block;
  }
  .articleCategoryBox.number-5 {
    display: inline-block;
    width: 34%;
    background-color: #F0AA90;
  }
  .articleCategoryBox.number-5:hover, .articleCategoryBox.number-5 a:focus {
    background-color: #e46536;
  }
  .articleCategoryBox.number-6 {
    display: inline-block;
    background-color: #B4DCC2;
  }
  .articleCategoryBox.number-6:hover, .articleCategoryBox.number-6 a:focus {
    background-color: #6ebc89;
  }
}

@media (max-width: 480px) {
  .navbutton {
    margin-top: 15px;
  }
  .articleCategoryContainer {
    width: 100%;
    padding: 0px;
    text-align: center;
  }
  .articleCategoryContainer .articleCategoryBox {
    position: relative;
    float: left;
    display: none;
    margin: 0px;
    width: 50%;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Opera, Chrome, and Safari */
  }
  .articleCategoryContainer .articleCategoryBox .articleCategoryBoxContent {
    display: block;
    padding: 40px 10px;
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Opera, Chrome, and Safari */
  }
  .articleCategoryContainer .articleCategoryBox p {
    display: block;
    margin: 0px;
  }
  .articleCategoryBox.number-1 {
    display: inline-block;
  }
  .articleCategoryBox.number-2 {
    display: inline-block;
  }
  .articleCategoryBox.number-3 {
    display: inline-block;
  }
  .articleCategoryBox.number-4 {
    display: inline-block;
    background-color: #B4DCC2;
  }
  .articleCategoryBox.number-4:hover, .articleCategoryBox.number-4 a:focus {
    background-color: #6ebc89;
  }
  .articleCategoryBox.number-5 {
    display: inline-block;
    background-color: #F2EBA7;
  }
  .articleCategoryBox.number-5:hover, .articleCategoryBox.number-5 a:focus {
    background-color: #e5d74e;
  }
  .articleCategoryBox.number-6 {
    display: inline-block;
    background-color: #F0AA90;
  }
  .articleCategoryBox.number-6:hover, .articleCategoryBox.number-6 a:focus {
    background-color: #e46536;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  .container {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }
  .contact-image img {
    max-width: 100%;
    border-radius: 0;
  }
  .contactContainer {
    padding: 0;
  }
  .caption, .caption-red, .caption-green, .caption-yellow, .caption-blue {
    border-radius: 0;
  }
  .single-category, .single-post {
    font-size: 1.2em;
    max-width: 80%;
  }
  .sidepadding {
    padding-left: 5px;
    padding-right: 5px;
  }
  input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block, a.btn-block {
    width: 100%;
  }
  .alert-slide {
    left: 4%;
    width: 92%;
  }
  .infomessage {
    font-size: 24px;
  }
  .fa.newpost {
    font-size: 20px;
  }
  .fa.stepbackwards {
    font-size: 25px;
  }
  #logo img {
    max-height: 60px;
    margin-top: 10px;
  }
  #navbarheader {
    height: 75px;
  }
  /*body {
		padding-top: 75px;
	}*/
  .categories-select li a {
    font-size: 12px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  #contact_block {
    padding: 0;
  }
  #contact_block > item-container a {
    display: block;
  }
  .articleCategoryBoxContent {
    padding: 40px 0;
  }
  .contactContainer:last-of-type, .contactContainer:nth-last-of-type(2) {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  #menubutton {
    visibility: visible;
  }
  #menulinks {
    display: none;
  }
}

@media (max-width: 767px) {
  #menulinks, #profilelinks {
    padding: 0;
  }
  #menulinks ul li, #profilelinks ul li {
    display: block;
  }
  #menulinks ul div, #profilelinks ul div {
    display: block;
  }
}

/*@media (min-width: 480px) and (max-width: 767px) {
	body {
		padding-top: 90px;
	}
}*/
@media (max-width: 658px) {
  .mypagebox-container {
    width: 100%;
    padding: 0;
  }
  .mypagebox-container .mypagebox {
    width: 48%;
    margin: 1%;
    float: left;
  }
}

.input-group .form-control:first-child {
  border-radius: 4px;
}

.input-group-addon {
  min-width: 40px;
  padding: 0 5px;
  border: none;
  background-color: transparent;
}

.chosen-single {
  height: 30px !important;
}

.chosen-single span {
  margin-top: 2px;
}

.gsc-cursor-page {
  font-size: 16px !important;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

td .gsc-input {
  background: #fff !important;
  color: #000 !important;
  border-radius: 2px !important;
}

input .gsc-input {
  width: 100% !important;
}

.gsc-control-cse .gs-no-results-result, .gsc-control-cse .gs-no-results-result .gs-snippet {
  font-family: "Helvetica Neue", "Helvetica", "Arial", "Sans-serif" !important;
  font-size: 16px !important;
  padding: 10px !important;
  background-color: white !important;
  border: none !important;
  text-align: center !important;
}

.gs-title {
  text-decoration: none !important;
  color: #356FA2 !important;
}

.gcsc-branding, .gs-webResult div.gs-visibleUrl-long, .gsc-orderby-container {
  display: none !important;
}

.gsc-clear-button {
  display: none;
}

.frontpage-image {
  height: 0;
  padding: 0;
  padding-bottom: 23%;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.frontpage-image span {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 30px;
}

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