

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.6;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 22px;
  margin-bottom: 11px;
}
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 11px;
  margin-bottom: 11px;
}
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 14px;
}

h6, .h6 {
  font-size: 12px;
}

p {
  margin: 0 0 11px;
}

.lead {
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}

small,
.small {
  font-size: 85%;
}

cite {
  font-style: normal;
}

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

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

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

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

.text-muted {
  color: #999999;
}

.text-primary {
  color: #141414;
}
.text-primary a:hover {
  color: black;
}

.text-success {
  color: #3c763d;
}
.text-success a:hover {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}
.text-info a:hover {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}
.text-warning a:hover {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}
.text-danger a:hover {
  color: #843534;
}

.bg-primary {
  color: #fff;
  background-color: #141414;
}
.bg-primary a:hover {
  background-color: black;
}

.bg-success {
  background-color: #dff0d8;
}
.bg-success a:hover {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}
.bg-info a:hover {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}
.bg-warning a:hover {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}
.bg-danger a:hover {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 10px;
  margin: 44px 0 22px;
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 11px;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.list-inline > li:first-child {
  padding-left: 0;
}

dl {
  margin-top: 0;
  margin-bottom: 22px;
}

dt,
dd {
  line-height: 1.6;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
  .dl-horizontal dd:before, .dl-horizontal dd:after {
    content: " ";
    display: table;
  }
  .dl-horizontal dd:after {
    clear: both;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 11px 22px;
  margin: 0 0 22px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.6;
  color: #999999;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

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

address {
  margin-bottom: 22px;
  font-style: normal;
  line-height: 1.6;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
  }
}
@media (min-width: 992px) {
  .container {
  }
}
@media (min-width: 1200px) {
  .container {
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}
/*
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
*/
.col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: 0%;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: 0%;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1 {
    float: left;
  }

  .col-sm-1 {
    width: 8.33333%;
  }

  .col-sm-2 {
    width: 16.66667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333%;
  }

  .col-sm-5 {
    width: 41.66667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333%;
  }

  .col-sm-8 {
    width: 66.66667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333%;
  }

  .col-sm-11 {
    width: 91.66667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: 0%;
  }

  .col-sm-pull-1 {
    right: 8.33333%;
  }

  .col-sm-pull-2 {
    right: 16.66667%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-4 {
    right: 33.33333%;
  }

  .col-sm-pull-5 {
    right: 41.66667%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-7 {
    right: 58.33333%;
  }

  .col-sm-pull-8 {
    right: 66.66667%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-10 {
    right: 83.33333%;
  }

  .col-sm-pull-11 {
    right: 91.66667%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: 0%;
  }

  .col-sm-push-1 {
    left: 8.33333%;
  }

  .col-sm-push-2 {
    left: 16.66667%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-4 {
    left: 33.33333%;
  }

  .col-sm-push-5 {
    left: 41.66667%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-7 {
    left: 58.33333%;
  }

  .col-sm-push-8 {
    left: 66.66667%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-10 {
    left: 83.33333%;
  }

  .col-sm-push-11 {
    left: 91.66667%;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
    float: left;
  }

  .col-md-1 {
    width: 8.33333%;
  }

  .col-md-2 {
    width: 16.66667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333%;
  }

  .col-md-5 {
    width: 41.66667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333%;
  }

  .col-md-8 {
    width: 66.66667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333%;
  }

  .col-md-11 {
    width: 91.66667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: 0%;
  }

  .col-md-pull-1 {
    right: 8.33333%;
  }

  .col-md-pull-2 {
    right: 16.66667%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-4 {
    right: 33.33333%;
  }

  .col-md-pull-5 {
    right: 41.66667%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-7 {
    right: 58.33333%;
  }

  .col-md-pull-8 {
    right: 66.66667%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-10 {
    right: 83.33333%;
  }

  .col-md-pull-11 {
    right: 91.66667%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-push-0 {
    left: 0%;
  }

  .col-md-push-1 {
    left: 8.33333%;
  }

  .col-md-push-2 {
    left: 16.66667%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-4 {
    left: 33.33333%;
  }

  .col-md-push-5 {
    left: 41.66667%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-7 {
    left: 58.33333%;
  }

  .col-md-push-8 {
    left: 66.66667%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-10 {
    left: 83.33333%;
  }

  .col-md-push-11 {
    left: 91.66667%;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1 {
    float: left;
  }

  .col-lg-1 {
    width: 8.33333%;
  }

  .col-lg-2 {
    width: 16.66667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333%;
  }

  .col-lg-5 {
    width: 41.66667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333%;
  }

  .col-lg-8 {
    width: 66.66667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333%;
  }

  .col-lg-11 {
    width: 91.66667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: 0%;
  }

  .col-lg-pull-1 {
    right: 8.33333%;
  }

  .col-lg-pull-2 {
    right: 16.66667%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-4 {
    right: 33.33333%;
  }

  .col-lg-pull-5 {
    right: 41.66667%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-7 {
    right: 58.33333%;
  }

  .col-lg-pull-8 {
    right: 66.66667%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-10 {
    right: 83.33333%;
  }

  .col-lg-pull-11 {
    right: 91.66667%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: 0%;
  }

  .col-lg-push-1 {
    left: 8.33333%;
  }

  .col-lg-push-2 {
    left: 16.66667%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-4 {
    left: 33.33333%;
  }

  .col-lg-push-5 {
    left: 41.66667%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-7 {
    left: 58.33333%;
  }

  .col-lg-push-8 {
    left: 66.66667%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-10 {
    left: 83.33333%;
  }

  .col-lg-push-11 {
    left: 91.66667%;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
table {
  max-width: 100%;
  background-color: transparent;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  margin-bottom: 22px;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.6;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

@media (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 16.5px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 22px;
  font-size: 21px;
  line-height: inherit;
  color: #2f2f2f;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;
}

input[type="file"] {
  display: block;
}

input[type="range"] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.form-control, .forum .forum-form .ginput_container input[type=text], .forum .forum-form .ginput_container .large, .forum .forum-form .ginput_container .textarea {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus, .forum .forum-form .ginput_container input[type=text]:focus, .forum .forum-form .ginput_container .large:focus, .forum .forum-form .ginput_container .textarea:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control:-moz-placeholder, .forum .forum-form .ginput_container input[type=text]:-moz-placeholder, .forum .forum-form .ginput_container .large:-moz-placeholder, .forum .forum-form .ginput_container .textarea:-moz-placeholder {
  color: #999999;
}
.form-control::-moz-placeholder, .forum .forum-form .ginput_container input[type=text]::-moz-placeholder, .forum .forum-form .ginput_container .large::-moz-placeholder, .forum .forum-form .ginput_container .textarea::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .forum .forum-form .ginput_container input[type=text]:-ms-input-placeholder, .forum .forum-form .ginput_container .large:-ms-input-placeholder, .forum .forum-form .ginput_container .textarea:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder, .forum .forum-form .ginput_container input[type=text]::-webkit-input-placeholder, .forum .forum-form .ginput_container .large::-webkit-input-placeholder, .forum .forum-form .ginput_container .textarea::-webkit-input-placeholder {
  color: #999999;
}
.form-control[disabled], .forum .forum-form .ginput_container input[disabled][type=text], .forum .forum-form .ginput_container [disabled].large, .forum .forum-form .ginput_container [disabled].textarea, .form-control[readonly], .forum .forum-form .ginput_container input[readonly][type=text], .forum .forum-form .ginput_container [readonly].large, .forum .forum-form .ginput_container [readonly].textarea, fieldset[disabled] .form-control, fieldset[disabled] .forum .forum-form .ginput_container input[type=text], .forum .forum-form .ginput_container fieldset[disabled] input[type=text], fieldset[disabled] .forum .forum-form .ginput_container .large, .forum .forum-form .ginput_container fieldset[disabled] .large, fieldset[disabled] .forum .forum-form .ginput_container .textarea, .forum .forum-form .ginput_container fieldset[disabled] .textarea {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

textarea.form-control, .forum .forum-form .ginput_container textarea.large, .forum .forum-form .ginput_container textarea.textarea {
  height: auto;
}

input[type="date"] {
  line-height: 36px;
}

.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  display: block;
  min-height: 22px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}
.radio label,
.checkbox label {
  display: inline;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type="radio"][disabled], fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled], fieldset[disabled]
input[type="checkbox"],
.radio[disabled], fieldset[disabled]
.radio,
.radio-inline[disabled], fieldset[disabled]
.radio-inline,
.checkbox[disabled], fieldset[disabled]
.checkbox,
.checkbox-inline[disabled], fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed;
}

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

select.input-lg {
  height: 46px;
  line-height: 46px;
}

textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}

.has-feedback {
  position: relative;
}
.has-feedback .form-control, .has-feedback .forum .forum-form .ginput_container input[type=text], .forum .forum-form .ginput_container .has-feedback input[type=text], .has-feedback .forum .forum-form .ginput_container .large, .forum .forum-form .ginput_container .has-feedback .large, .has-feedback .forum .forum-form .ginput_container .textarea, .forum .forum-form .ginput_container .has-feedback .textarea {
  padding-right: 45px;
}
.has-feedback .form-control-feedback {
  position: absolute;
  top: 27px;
  right: 0;
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d;
}
.has-success .form-control, .has-success .forum .forum-form .ginput_container input[type=text], .forum .forum-form .ginput_container .has-success input[type=text], .has-success .forum .forum-form .ginput_container .large, .forum .forum-form .ginput_container .has-success .large, .has-success .forum .forum-form .ginput_container .textarea, .forum .forum-form .ginput_container .has-success .textarea {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus, .has-success .forum .forum-form .ginput_container input[type=text]:focus, .forum .forum-form .ginput_container .has-success input[type=text]:focus, .has-success .forum .forum-form .ginput_container .large:focus, .forum .forum-form .ginput_container .has-success .large:focus, .has-success .forum .forum-form .ginput_container .textarea:focus, .forum .forum-form .ginput_container .has-success .textarea:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b;
}
.has-warning .form-control, .has-warning .forum .forum-form .ginput_container input[type=text], .forum .forum-form .ginput_container .has-warning input[type=text], .has-warning .forum .forum-form .ginput_container .large, .forum .forum-form .ginput_container .has-warning .large, .has-warning .forum .forum-form .ginput_container .textarea, .forum .forum-form .ginput_container .has-warning .textarea {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus, .has-warning .forum .forum-form .ginput_container input[type=text]:focus, .forum .forum-form .ginput_container .has-warning input[type=text]:focus, .has-warning .forum .forum-form .ginput_container .large:focus, .forum .forum-form .ginput_container .has-warning .large:focus, .has-warning .forum .forum-form .ginput_container .textarea:focus, .forum .forum-form .ginput_container .has-warning .textarea:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #a94442;
}
.has-error .form-control, .has-error .forum .forum-form .ginput_container input[type=text], .forum .forum-form .ginput_container .has-error input[type=text], .has-error .forum .forum-form .ginput_container .large, .forum .forum-form .ginput_container .has-error .large, .has-error .forum .forum-form .ginput_container .textarea, .forum .forum-form .ginput_container .has-error .textarea {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus, .has-error .forum .forum-form .ginput_container input[type=text]:focus, .forum .forum-form .ginput_container .has-error input[type=text]:focus, .has-error .forum .forum-form .ginput_container .large:focus, .forum .forum-form .ginput_container .has-error .large:focus, .has-error .forum .forum-form .ginput_container .textarea:focus, .forum .forum-form .ginput_container .has-error .textarea:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}

.form-control-static {
  margin-bottom: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control, .form-inline .forum .forum-form .ginput_container input[type=text], .forum .forum-form .ginput_container .form-inline input[type=text], .form-inline .forum .forum-form .ginput_container .large, .forum .forum-form .ginput_container .form-inline .large, .form-inline .forum .forum-form .ginput_container .textarea, .forum .forum-form .ginput_container .form-inline .textarea {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    vertical-align: middle;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    float: none;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .control-label,
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 29px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
.form-horizontal .form-control-static {
  padding-top: 7px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 15px;
}

.btn, .btn-main, .pagination-numbers > li > .prev, .pagination-numbers > li > .next {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.btn:focus, .btn-main:focus, .pagination-numbers > li > .prev:focus, .pagination-numbers > li > .next:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover, .btn-main:hover, .pagination-numbers > li > .prev:hover, .pagination-numbers > li > .next:hover, .btn:focus, .btn-main:focus, .pagination-numbers > li > .prev:focus, .pagination-numbers > li > .next:focus {
  color: #2f2f2f;
  text-decoration: none;
}
.btn:active, .btn-main:active, .pagination-numbers > li > .prev:active, .pagination-numbers > li > .next:active, .btn.active, .active.btn-main, .pagination-numbers > li > .active.prev, .pagination-numbers > li > .active.next {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled, .disabled.btn-main, .pagination-numbers > li > .disabled.prev, .pagination-numbers > li > .disabled.next, .btn[disabled], [disabled].btn-main, .pagination-numbers > li > [disabled].prev, .pagination-numbers > li > [disabled].next, fieldset[disabled] .btn, fieldset[disabled] .btn-main, fieldset[disabled] .pagination-numbers > li > .prev, fieldset[disabled] .pagination-numbers > li > .next {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-default {
  color: #2f2f2f;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active {
  color: #2f2f2f;
  background-color: #ebebeb;
  border-color: #adadad;
}
.open .btn-default.dropdown-toggle {
  color: #2f2f2f;
  background-color: #ebebeb;
  border-color: #adadad;
}
.btn-default:active, .btn-default.active {
  background-image: none;
}
.open .btn-default.dropdown-toggle {
  background-image: none;
}
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #2f2f2f;
}

.btn-primary, .btn-main, .pagination-numbers > li > .prev, .pagination-numbers > li > .next {
  color: #fff;
  background-color: #141414;
  border-color: #070707;
}
.btn-primary:hover, .btn-main:hover, .pagination-numbers > li > .prev:hover, .pagination-numbers > li > .next:hover, .btn-primary:focus, .btn-main:focus, .pagination-numbers > li > .prev:focus, .pagination-numbers > li > .next:focus, .btn-primary:active, .btn-main:active, .pagination-numbers > li > .prev:active, .pagination-numbers > li > .next:active, .btn-primary.active, .active.btn-main, .pagination-numbers > li > .active.prev, .pagination-numbers > li > .active.next {
  color: #fff;
  background-color: black;
  border-color: black;
}
.open .btn-primary.dropdown-toggle, .open .dropdown-toggle.btn-main, .open .pagination-numbers > li > .dropdown-toggle.prev, .open .pagination-numbers > li > .dropdown-toggle.next {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-primary:active, .btn-main:active, .pagination-numbers > li > .prev:active, .pagination-numbers > li > .next:active, .btn-primary.active, .active.btn-main, .pagination-numbers > li > .active.prev, .pagination-numbers > li > .active.next {
  background-image: none;
}
.open .btn-primary.dropdown-toggle, .open .dropdown-toggle.btn-main, .open .pagination-numbers > li > .dropdown-toggle.prev, .open .pagination-numbers > li > .dropdown-toggle.next {
  background-image: none;
}
.btn-primary.disabled, .disabled.btn-main, .pagination-numbers > li > .disabled.prev, .pagination-numbers > li > .disabled.next, .btn-primary.disabled:hover, .disabled.btn-main:hover, .pagination-numbers > li > .disabled.prev:hover, .pagination-numbers > li > .disabled.next:hover, .btn-primary.disabled:focus, .disabled.btn-main:focus, .pagination-numbers > li > .disabled.prev:focus, .pagination-numbers > li > .disabled.next:focus, .btn-primary.disabled:active, .disabled.btn-main:active, .pagination-numbers > li > .disabled.prev:active, .pagination-numbers > li > .disabled.next:active, .btn-primary.disabled.active, .disabled.active.btn-main, .pagination-numbers > li > .disabled.active.prev, .pagination-numbers > li > .disabled.active.next, .btn-primary[disabled], [disabled].btn-main, .pagination-numbers > li > [disabled].prev, .pagination-numbers > li > [disabled].next, .btn-primary[disabled]:hover, [disabled].btn-main:hover, .pagination-numbers > li > [disabled].prev:hover, .pagination-numbers > li > [disabled].next:hover, .btn-primary[disabled]:focus, [disabled].btn-main:focus, .pagination-numbers > li > [disabled].prev:focus, .pagination-numbers > li > [disabled].next:focus, .btn-primary[disabled]:active, [disabled].btn-main:active, .pagination-numbers > li > [disabled].prev:active, .pagination-numbers > li > [disabled].next:active, .btn-primary[disabled].active, [disabled].active.btn-main, .pagination-numbers > li > [disabled].active.prev, .pagination-numbers > li > [disabled].active.next, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-main, fieldset[disabled] .pagination-numbers > li > .prev, fieldset[disabled] .pagination-numbers > li > .next, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-main:hover, fieldset[disabled] .pagination-numbers > li > .prev:hover, fieldset[disabled] .pagination-numbers > li > .next:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-main:focus, fieldset[disabled] .pagination-numbers > li > .prev:focus, fieldset[disabled] .pagination-numbers > li > .next:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-main:active, fieldset[disabled] .pagination-numbers > li > .prev:active, fieldset[disabled] .pagination-numbers > li > .next:active, fieldset[disabled] .btn-primary.active, fieldset[disabled] .active.btn-main, fieldset[disabled] .pagination-numbers > li > .active.prev, fieldset[disabled] .pagination-numbers > li > .active.next {
  background-color: #141414;
  border-color: #070707;
}
.btn-primary .badge, .btn-main .badge, .pagination-numbers > li > .prev .badge, .pagination-numbers > li > .next .badge {
  color: #141414;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
  color: #fff;
  background-color: #47a447;
  border-color: #398439;
}
.open .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #47a447;
  border-color: #398439;
}
.btn-success:active, .btn-success.active {
  background-image: none;
}
.open .btn-success.dropdown-toggle {
  background-image: none;
}
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active {
  color: #fff;
  background-color: #39b3d7;
  border-color: #269abc;
}
.open .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #39b3d7;
  border-color: #269abc;
}
.btn-info:active, .btn-info.active {
  background-image: none;
}
.open .btn-info.dropdown-toggle {
  background-image: none;
}
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active {
  color: #fff;
  background-color: #ed9c28;
  border-color: #d58512;
}
.open .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ed9c28;
  border-color: #d58512;
}
.btn-warning:active, .btn-warning.active {
  background-image: none;
}
.open .btn-warning.dropdown-toggle {
  background-image: none;
}
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
  color: #fff;
  background-color: #d2322d;
  border-color: #ac2925;
}
.open .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #d2322d;
  border-color: #ac2925;
}
.btn-danger:active, .btn-danger.active {
  background-image: none;
}
.open .btn-danger.dropdown-toggle {
  background-image: none;
}
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  color: #141414;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  color: black;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #999999;
  text-decoration: none;
}

.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 22px;
  list-style: none;
  background-color: transparent;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "› ";
  padding: 0 5px;
  color: #fff;
}
.breadcrumb > .active {
  color: #fff;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  white-space: nowrap;
  text-align: center;
  background-color: #999999;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge, .btn-main .badge, .pagination-numbers > li > .prev .badge, .pagination-numbers > li > .next .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge {
  top: 0;
  padding: 1px 5px;
}

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #141414;
  background-color: #fff;
}

.nav-pills > li > a > .badge {
  margin-left: 3px;
}

.alert {
  padding: 15px;
  margin-bottom: 22px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable {
  padding-right: 35px;
}
.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

.media,
.media .media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media-object {
  display: block;
}

.media-heading {
  margin: 0 0 5px;
}

.media > .pull-left {
  margin-right: 10px;
}
.media > .pull-right {
  margin-left: 10px;
}

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

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.6px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.6;
}

.modal-body {
  position: relative;
  padding: 20px;
}

.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn, .modal-footer .btn-main + .btn, .modal-footer .pagination-numbers > li > .prev + .btn, .modal-footer .pagination-numbers > li > .next + .btn, .modal-footer .btn + .btn-main, .modal-footer .btn-main + .btn-main, .modal-footer .pagination-numbers > li > .prev + .btn-main, .modal-footer .pagination-numbers > li > .next + .btn-main, .modal-footer .pagination-numbers > li > .btn + .prev, .modal-footer .pagination-numbers > li > .btn-main + .prev, .modal-footer .pagination-numbers > li > .prev + .prev, .modal-footer .pagination-numbers > li > .next + .prev, .modal-footer .pagination-numbers > li > .btn + .next, .modal-footer .pagination-numbers > li > .btn-main + .next, .modal-footer .pagination-numbers > li > .prev + .next, .modal-footer .pagination-numbers > li > .next + .next {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn, .modal-footer .btn-group .btn-main + .btn, .modal-footer .btn-group .pagination-numbers > li > .prev + .btn, .modal-footer .btn-group .pagination-numbers > li > .next + .btn, .modal-footer .btn-group .btn + .btn-main, .modal-footer .btn-group .btn-main + .btn-main, .modal-footer .btn-group .pagination-numbers > li > .prev + .btn-main, .modal-footer .btn-group .pagination-numbers > li > .next + .btn-main, .modal-footer .btn-group .pagination-numbers > li > .btn + .prev, .modal-footer .btn-group .pagination-numbers > li > .btn-main + .prev, .modal-footer .btn-group .pagination-numbers > li > .prev + .prev, .modal-footer .btn-group .pagination-numbers > li > .next + .prev, .modal-footer .btn-group .pagination-numbers > li > .btn + .next, .modal-footer .btn-group .pagination-numbers > li > .btn-main + .next, .modal-footer .btn-group .pagination-numbers > li > .prev + .next, .modal-footer .btn-group .pagination-numbers > li > .next + .next {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }

  .modal-lg {
    width: 900px;
  }
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs,
tr.visible-xs,
th.visible-xs,
td.visible-xs {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
.visible-sm,
tr.visible-sm,
th.visible-sm,
td.visible-sm {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
.visible-md,
tr.visible-md,
th.visible-md,
td.visible-md {
  display: none !important;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
.visible-lg,
tr.visible-lg,
th.visible-lg,
td.visible-lg {
  display: none !important;
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs,
  tr.hidden-xs,
  th.hidden-xs,
  td.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm,
  tr.hidden-sm,
  th.hidden-sm,
  td.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md,
  tr.hidden-md,
  th.hidden-md,
  td.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg,
  tr.hidden-lg,
  th.hidden-lg,
  td.hidden-lg {
    display: none !important;
  }
}
.visible-print,
tr.visible-print,
th.visible-print,
td.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
@media print {
  .hidden-print,
  tr.hidden-print,
  th.hidden-print,
  td.hidden-print {
    display: none !important;
  }
}
/* === GLOBAL === */
html {
  background: #202020;
}

body {
  padding-left: 75px;
  direction: ltr;
}
@media (max-width: 479px) {
  body {
    padding-left: 50px;
  }
}
body.comments-enabled {
  overflow: hidden;
}
body a {
  color: inherit;
}
body a:hover {
  text-decoration: none !important;
}

._vm {
  position: relative;
}

.overlay-dark, .article-full .head:after {
  display: block !important;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC41NSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.55)));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.pagination-numbers > li > .prev, .pagination-numbers > li > .next {
  position: relative;
  text-transform: uppercase;
  font-family: "gothambook";
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  /* btn-animated */
  overflow: hidden;
  background: transparent !important;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  border: 2px solid #fff !important;
  color: #fff;
}
.btn-main, .pagination-numbers > li > .prev, .pagination-numbers > li > .next, .btn-main span, .pagination-numbers > li > .prev span, .pagination-numbers > li > .next span {
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
}
.btn-main span, .pagination-numbers > li > .prev span, .pagination-numbers > li > .next span {
  z-index: 2;
  font-size: inherit;
  font-weight: bold;
  position: relative;
  padding: 2px 2px 0;
  display: block;
}
.btn-main:after, .pagination-numbers > li > .prev:after, .pagination-numbers > li > .next:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
}
.btn-main:hover:after, .pagination-numbers > li > .prev:hover:after, .pagination-numbers > li > .next:hover:after {
  width: 100%;
}
.btn-main span, .pagination-numbers > li > .prev span, .pagination-numbers > li > .next span {
  color: #fff;
}
.btn-main:after, .pagination-numbers > li > .prev:after, .pagination-numbers > li > .next:after {
  background: #fff;
}
.btn-main:hover, .pagination-numbers > li > .prev:hover, .pagination-numbers > li > .next:hover {
  color: #000 !important;
}
.btn-main:hover span, .pagination-numbers > li > .prev:hover span, .pagination-numbers > li > .next:hover span {
  color: #000 !important;
}

span.btn-main, .pagination-numbers > li > span.prev, .pagination-numbers > li > span.next {
  cursor: default;
}


.btn-main {
  position: relative;
  text-transform: uppercase;
  font-family: "gothambook";
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  /* btn-animated */
  overflow: hidden;
  background: transparent !important;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  border: 0px solid #fff !important;
  color: #c0c0c0;
}

.btn-main {
	width:250px;
}
.btn-main svg {
	display:block;
	fill:#c0c0c0;
}


.btn-next {
  display: block;
  height: 30px;
  width: 30px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  bottom: -15px;
  background: url(images/icon/arrow.png);
  background-image: url(images/svg/arrow.svg), none;
  background-color: #ff7500;
  background-position: 10px;
  background-repeat: no-repeat;
  -moz-background-size: 9px auto;
  -o-background-size: 9px auto;
  -webkit-background-size: 9px auto;
  background-size: 9px auto;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  z-index: 98;
}
.btn-next:hover {
  background-color: #b35200;
}
.scrollLast .btn-next {
  display: none !important;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 75px;
  background: #202020;
  padding-top: 20px;
  padding-bottom: 30px;
  border-top: 4px solid #ff7500;
  font-size: 10px;
  z-index: 99;
  overflow: visible;
}
@media (max-width: 479px) {
  .nav {
    width: 50px;
    font-size: 9px;
    padding-top: 10px;
  }
}
.nav h1 {
  margin: 0;
  padding: 0;
}
.nav .title {
  width: 39px;
  margin: 0 auto;
  display: block;
}
.nav .language {
  list-style: none;
  padding: 0 4px;
  margin: 0;
  position: absolute;
  left: 50%;
  margin-left: -33.33333%;
  right: 0;
  bottom: 0;
  width: 66.66667%;
}
@media (max-width: 767px) {
  .nav .language {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
}
.nav .language.static {
  position: static;
  margin-top: 22px;
}
.nav .language li {
  width: 50%;
  float: left;
  display: inline;
  padding: 0 1px;
}
.nav .language li a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 0 0 10px;
  font-weight: bold;
  font-family: "gothambook";
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav .language li a.current_language, .nav .language li a:hover {
  background-color: #ff7500;
}
.nav .primary {
  margin-top: -5px;
  padding: 5px 3px;
  margin: 2em 0 0;
  list-style: none;
  position: relative;
}
.nav .primary > li {
  padding: 0;
  margin-bottom: 2em;
  text-align: center;
  position: relative;
}
@media (max-height: 550px) {
  .nav .primary > li {
    margin-bottom: 2.5em;
  }
}
.nav .primary > li > a {
  text-transform: uppercase;
  color: #fff;
  opacity: 0.7;
  filter: alpha(opacity=70);
  line-height: 1.25;
  display: block;
  -webkit-transition: opacity 250ms ease-in;
  transition: opacity 250ms ease-in;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.nav .primary > li > a:hover {
  opacity: 0.85;
  filter: alpha(opacity=85);
  text-decoration: none;
}
.nav .primary > li > a i {
  height: 24px;
  width: 24px;
  display: block;
  margin: 0 auto .75em;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-height: 550px) {
  .nav .primary > li > a {
    height: 24px;
    overflow: hidden;
  }
}
.nav .primary > li.active > a, .nav .primary > li.current-menu-item > a, .nav .primary > li a.currently-active {
  opacity: 1;
  filter: alpha(opacity=100);
}
.nav .primary > li .badge {
  background: #ff7500;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  position: absolute;
  top: -8px;
  right: 10px;
  font-size: 10px;
  padding: 3px;
}
@media (max-height: 550px) {
  .nav .primary > li .badge {
    top: -3px;
    right: 0;
  }
}
.nav .icon-dziennik > a > i {
  background: url(images/icon/dziennik.png);
  background-image: url(images/svg/dziennik.svg), none;
}
.nav .icon-kraje > a > i {
  background: url(images/icon/kraje.png);
  background-image: url(images/svg/kraje.svg), none;
}
.nav .icon-historie > a > i {
  background: url(images/icon/historie.png);
  background-image: url(images/svg/historie.svg), none;
}
.nav .icon-galerie > a > i {
  background: url(images/icon/galerie.png);
  background-image: url(images/svg/galerie.svg), none;
}
.nav .icon-video > a > i {
  background: url(images/icon/video.png);
  background-image: url(images/svg/video.svg), none;
}
.nav .icon-oblogu > a > i {
  background: url(images/icon/oblogu.png);
  background-image: url(images/svg/oblogu.svg), none;
}
.nav .icon-pomoc > a > i {
  background: url(images/icon/pomoc.png);
  background-image: url(images/svg/pomoc.svg), none;
}
.nav .icon-wachlarz > a > i {
  background: url(images/icon/wachlarz.png);
  background-image: url(images/svg/wachlarz.svg), none;
}
.nav .icon-tech > a > i {
  background: url(images/icon/tech.png);
  background-image: url(images/svg/tech.svg), none;
}
.nav .icon-dron > a > i {
  background: url(images/icon/dron.png);
  background-image: url(images/svg/dron.svg), none;
}
.nav .icon-foto > a > i {
  background: url(images/icon/foto.png);
  background-image: url(images/svg/foto.svg), none;
}
.nav .icon-internet > a > i {
  background: url(images/icon/internet.png);
  background-image: url(images/svg/internet.svg), none;
}
.nav .icon-makingof > a > i {
  background: url(images/icon/makingof.png);
  background-image: url(images/svg/makingof.svg), none;
}
.nav .icon-outdoor > a > i {
  background: url(images/icon/outdoor.png);
  background-image: url(images/svg/outdoor.svg), none;
}
.nav .icon-porady > a > i {
  background: url(images/icon/porady.png);
  background-image: url(images/svg/porady.svg), none;
}
.nav .icon-reportaze > a > i {
  background: url(images/icon/reportaze.png);
  background-image: url(images/svg/reportaze.svg), none;
}
.nav .icon-prezentacje > a > i {
  background: url(images/icon/prezentacje.png);
  background-image: url(images/svg/prezentacje.svg), none;
}
.nav .icon-video2 > a > i {
  background: url(images/icon/video2.png);
  background-image: url(images/svg/video2.svg), none;
}
.nav .icon-prezentacje {
  font-size: 8.5px;
}
.nav .sub-menu {
  position: fixed;
  left: 75px;
  top: 0;
  bottom: 0;
  z-index: 100;
  background: #363636;
  margin: 0;
  width: 225px;
  padding: 0;
  text-align: left;
  overflow: auto;
  display: none;
}
@media (max-width: 479px) {
  .nav .sub-menu {
    left: 50px;
  }
}
.nav .sub-menu h4 {
  text-transform: uppercase;
  line-height: 1.1;
  font-weight: bold;
  font-size: 24px;
  color: #ff7500;
  margin: 0 0 20px;
}
.nav .sub-menu li {
  font-size: 18px;
}
.nav .sub-menu li.menu-top {
  padding: 20px;
  background: #2b2b2b;
}
.nav .sub-menu li a {
  color: #fff;
  display: block;
  line-height: 1.15;
  text-transform: uppercase;
  padding: 12px 20px 10px;
  -webkit-transition: background-color 0.25s ease-in;
  transition: background-color 0.25s ease-in;
}
.nav .sub-menu li a:hover {
  background: #222;
  text-decoration: none;
}
.nav .sub-menu li .btn-main, .nav .sub-menu .pagination-numbers > li > .prev, .nav .sub-menu .pagination-numbers > li > .next {
  font-size: 12px;
}

/* ===== PAGINATION ===== */
.pagination {
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  line-height: 22px !important;
  padding: 22px 0;
}
.pagination-pages {
  display: none;
}
.pagination-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.pagination-numbers > li {
  margin: 0 10px;
  display: inline-block;
}
.pagination-numbers > li > .current {
  color: #ff7500;
  font-size: 1.25em;
  position: relative;
  top: 1px;
}
.pagination-numbers > li > .prev, .pagination-numbers > li > .next {
  border: 2px solid #ff7500 !important;
  color: #ff7500;
}
.pagination-numbers > li > .prev span, .pagination-numbers > li > .next span {
  color: #ff7500;
}
.pagination-numbers > li > .prev:after, .pagination-numbers > li > .next:after {
  background: #ff7500;
}
.pagination-numbers > li > .prev:hover, .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.pagination-numbers > li > .prev:hover span, .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}
.pagination-numbers > li > .next {
  margin-left: 22px;
}
.pagination-numbers > li > .prev {
  margin-right: 22px;
}

/* ===== FOOTER ===== */
.pre-footer {
  /*background:url(images/footer-gradient.png) repeat-x top 40px left;*/
	background:#1E2126;
  padding: 22px;
  text-align: center;
  font-family: "gothambook";
  font-weight: bold;
	height:200px;
	border-top:2px solid #ff7500;
	position:relative;
	z-index:3;
}
.pre-footer .title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 22px;
}
.pre-footer .links {
  padding: 0;
  margin: 0;
  list-style: none;
	position:relative;
	top:-39px;
	color:#fff;
}
.pre-footer .links li {
  padding: 0 15px;
  display: inline-block;
	font-size:14px;
	font-family:'gothammedium';
	font-weight:normal;
}
.pre-footer .links img {
  margin-bottom:5px;
	transition:0.3s all;
}
.pre-footer a:hover img {
  /*-webkit-transform:translateY(-3px);
  transform:translateY(-3px);*/
}

.pre-footer a {
  display:block;
}


.pre-footer .links li i {
  display: inline-block;
  vertical-align: middle;
  height: 35px;
  width: 35px;
  line-height: 35px;
  margin-right: 10px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.pre-footer .icon-newsletter {
  background-image: url(images/icon/newsletter.png);
}
.pre-footer .icon-facebook {
  background-image: url(images/icon/facebook2.png);
}
.pre-footer .icon-youtube {
  background-image: url(images/icon/youtube.png);
}

/* ===== HOME ===== */
/* GLOBAL > Intro */
.intro {
  background-color: #464646;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  border-bottom: 4px solid #fff;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
}
.intro:before, .intro:after {
  content: " ";
  display: table;
}
.intro:after {
  clear: both;
}
.intro .middle {
  color: #fff;
  text-align: center;
  padding: 50px 0;
  max-width: 855px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.intro .middle h1 {
  font-size: 60px;
  margin-top: 0;
  text-transform: uppercase;
  font-weight: bold;
}
.intro .middle h1 a {
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.intro .middle h1 a:hover {
  color: #ff7500;
}
.intro .middle .lead {
  font-family: "gothambold";
  font-size: 16px;
  margin: 30px 0;
}
@media (max-width: 479px) {
  .intro .middle .lead {
    font-size: 14px;
  }
}
.intro .middle .btn-main, .intro .middle .pagination-numbers > li > .prev, .intro .middle .pagination-numbers > li > .next {
  font-size: 18px;
}

/* HOME > Intro */
.home-intro {
  background: #464646;
}
@media (max-width: 991px) {
  .home-intro .middle {
    padding: 50px 0 20px;
  }
}
.home-intro .categories-bottom {
  margin-left: -15px;
  margin-right: -15px;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}
.home-intro .categories-bottom:before, .home-intro .categories-bottom:after {
  content: " ";
  display: table;
}
.home-intro .categories-bottom:after {
  clear: both;
}
@media (max-width: 767px) {
  .home-intro .categories-bottom {
    padding: 0 0 20px;
  }
  .home-intro .categories-bottom .col {
    margin-top: 20px;
  }
}
.home-intro .categories-bottom .col {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .home-intro .categories-bottom .col {
    float: left;
    width: 25%;
  }
}
@media (max-width: 479px) {
  .home-intro .categories-bottom .col {
    float: none;
    width: 100%;
  }
}
.home-intro .categories-bottom .col > a {
  display: table;
  height: 150px;
  width: 100%;
  border: 2px solid #fff;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.home-intro .categories-bottom .col > a:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 17px;
  top: 2px;
  right: 17px;
  bottom: 2px;
  background: #000;
  z-index: 1;
  opacity: 0.4;
  filter: alpha(opacity=40);
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.home-intro .categories-bottom .col > a:hover {
  color: #ff7500;
  text-decoration: none;
}
.home-intro .categories-bottom .col > a:hover:after {
  opacity: 0.1;
  filter: alpha(opacity=10);
}
.home-intro .categories-bottom .col > a span {
  display: table-cell;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  color: #fff;
}
.home-intro .categories-animated .col > a {
  -moz-background-size: 110% auto;
  -o-background-size: 110% auto;
  -webkit-background-size: 110% auto;
  background-size: 110% auto;
  -webkit-transition: background-size 0.25s ease-in;
  transition: background-size 0.25s ease-in;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.home-intro .categories-animated .col > a:hover {
  -moz-background-size: 120% auto;
  -o-background-size: 120% auto;
  -webkit-background-size: 120% auto;
  background-size: 120% auto;
}

/* HOME > Secondary */
.home-secondary {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #fff;
  border-top: 6px solid #fff;
  border-bottom: 10px solid #fff;
}
.home-secondary:before, .home-secondary:after {
  content: " ";
  display: table;
}
.home-secondary:after {
  clear: both;
}
.home-secondary .col {
  float: left;
  display: block;
  padding: 0 5px;
}
@media (max-width: 991px) {
  .home-secondary .col {
    width: 50%;
  }
  .home-secondary .col:nth-child(1), .home-secondary .col:nth-child(2) {
    border-bottom: 10px solid #fff;
  }
  .home-secondary .col:nth-child(2n) {
    padding: 0 0 0 5px;
  }
  .home-secondary .col:nth-child(2n+1) {
    padding: 0 5px 0 0;
  }
}
@media (min-width: 992px) {
  .home-secondary .col {
    width: 25%;
  }
  .home-secondary .col:first-child {
    padding: 0 5px 0 0;
  }
  .home-secondary .col:last-child {
    padding: 0 0 0 5px;
  }
}
.home-secondary .col .in {
  background-color: #000;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
  display: block;
}
.home-secondary .col .in .ov {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.25;
  filter: alpha(opacity=25);
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 2;
}
.home-secondary .col .in:hover h3 {
  color: #ff7500;
}
.home-secondary .col .in:hover .ov {
  opacity: 0;
  filter: alpha(opacity=0);
}
.home-secondary .col .in h3 {
  position: absolute;
  color: #fff;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  line-height: 1;
  margin: 0;
  font-weight: bold;
  font-size: 24px;
  font-family: "gothambook";
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzEwMTAwZiIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, rgba(16, 16, 15, 0.65)), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, rgba(16, 16, 15, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(bottom, rgba(16, 16, 15, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to top, rgba(16, 16, 15, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 3;
}
.home-secondary .col .in h3 a {
  color: #fff;
}
.home-secondary .col .in h3 a:hover {
  color: #ff7500;
}

/* HOME > Stories */
.home-stories {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.home-stories:before, .home-stories:after {
  content: " ";
  display: table;
}
.home-stories:after {
  clear: both;
}
.home-stories .stories {
  margin-left: -15px;
  margin-right: -15px;
}
.home-stories .stories:before, .home-stories .stories:after {
  content: " ";
  display: table;
}
.home-stories .stories:after {
  clear: both;
}
.home-stories .stories .col {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  border-bottom: 10px solid #fff;
  text-align: center;
  display: table;
  color: #fff;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 290px;
	overflow:hidden;
}
@media (min-width: 768px) {
  .home-stories .stories .col {
    float: left;
    width: 50%;
  }
	
  .home-stories .stories .col:nth-of-type(1),
	.home-stories .stories .col:nth-of-type(4),
	.home-stories .stories .col:nth-of-type(5) {
    width: calc(100% * 2 / 3);
  }
  .home-stories .stories .col:nth-of-type(2),
	.home-stories .stories .col:nth-of-type(3),
	.home-stories .stories .col:nth-of-type(6) {
    width: calc(100% * 1 / 3);
  }
}
.home-stories .stories .col:nth-child(2n+1) {
  border-right: 5px solid #fff;
}
.home-stories .stories .col:nth-child(2n+2) {
  border-left: 5px solid #fff;
}
@media (max-width: 991px) {
  .home-stories .stories .col {
    width: 100%;
    border-left: none !important;
    border-right: none !important;
    padding: 20px;
  }
}
.home-stories .stories .col:after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #ff7500;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.home-stories .stories .col:hover:after {
  opacity: 0.9;
}
.home-stories .stories .col .in {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}
.home-stories .stories .section-category, .home-stories .stories .title {
  text-transform: uppercase;
}
.home-stories .stories .section-category {
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
  background: #ff7500;
	color:#fff;
	padding:0 10px;
}
.home-stories .stories .title {
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin-top: 0;
}
.home-stories .stories .title a {
  color: #fff;
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.home-stories .stories .title a:hover {
  text-decoration: none;
}
.home-stories .below {
  background: #fff;
  height: 70px;
  padding-top: 10px;
  text-align: center;
  margin-left: -15px;
  margin-right: -15px;
}
.home-stories .below:before, .home-stories .below:after {
  content: " ";
  display: table;
}
.home-stories .below:after {
  clear: both;
}
.home-stories .below .btn-main, .home-stories .below .pagination-numbers > li > .prev, .home-stories .below .pagination-numbers > li > .next {
  border: 2px solid #000 !important;
  color: #000;
}
.home-stories .below .btn-main span, .home-stories .below .pagination-numbers > li > .prev span, .home-stories .below .pagination-numbers > li > .next span {
  color: #000;
}
.home-stories .below .btn-main:after, .home-stories .below .pagination-numbers > li > .prev:after, .home-stories .below .pagination-numbers > li > .next:after {
  background: #000;
}
.home-stories .below .btn-main:hover, .home-stories .below .pagination-numbers > li > .prev:hover, .home-stories .below .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.home-stories .below .btn-main:hover span, .home-stories .below .pagination-numbers > li > .prev:hover span, .home-stories .below .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}

/* Animate the stripes */
@-webkit-keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}
@-moz-keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}
@-ms-keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}
@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}
.load-more {
  text-align: center;
  padding: 0;
}
.load-more .in {
  display: block;
  overflow: hidden;
  padding: 20px 15px;
}
.load-more .in .btn-main, .load-more .in .pagination-numbers > li > .prev, .load-more .in .pagination-numbers > li > .next {
  background-color: #fff;
  border: 2px solid #000 !important;
  color: #000;
}
.load-more .in .btn-main span, .load-more .in .pagination-numbers > li > .prev span, .load-more .in .pagination-numbers > li > .next span {
  color: #000;
}
.load-more .in .btn-main:after, .load-more .in .pagination-numbers > li > .prev:after, .load-more .in .pagination-numbers > li > .next:after {
  background: #000;
}
.load-more .in .btn-main:hover, .load-more .in .pagination-numbers > li > .prev:hover, .load-more .in .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.load-more .in .btn-main:hover span, .load-more .in .pagination-numbers > li > .prev:hover span, .load-more .in .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.loading .in a:before {
	-webkit-animation:spin 1s linear infinite;
	-moz-animation:spin 1s linear infinite;
	animation:spin 1s linear infinite;
}

/* GLOBAL > article */
.article .author {
  height: 75px;
  width: 75px !important;
  display: block;
  margin: 0 0 11px;
  overflow: hidden;
  border: 3px solid #ff7500;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.article .author img {
  display: block;
  width: 100%;
  height: auto;
}
.article .category {
  text-transform: uppercase;
  display: block;
  margin-bottom: .5em;
  color: #ff7500;
  font-weight: bold;
}
.article .category a {
  color: #ff7500;
}
.article .cat-date {
  margin-bottom: .5em;
  font-weight: normal;
}
.article .cat-date .category {
  display: inline;
  margin: 0;
  padding-right: 5px;
}
.article .cat-date time {
  padding-left: 5px;
}
.article .title {
  font-size: 48px;
  margin: 0 0 .5em;
  line-height: 1;
  font-weight: bold;
}
.article .title a {
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.article .title a:hover {
  color: #ff7500;
}
.article .lead {
  font-size: 16px;
  font-family: "gothambold";
}
@media (max-width: 479px) {
  .article .lead {
    font-size: 14px;
  }
}
.article .btn-centered {
  text-align: center;
}

/* HOME > Article */
.article-container {
  position: relative;
  /*background-color: #464646;*/
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-bottom: 4px solid #fff;
}
.article-container:before, .article-container:after {
  content: " ";
  display: table;
}
.article-container:after {
  clear: both;
}
.article-container article {
  position: relative;
  color: #2f2f2f;
  z-index: 2;
}
.article-container article .lead p {
  color: #2f2f2f;
	font-family:'gothammedium'
}
@media (max-width: 767px) {
  .article-container article {
    background: none !important;
  }
  .article-container article .author {
    display: none;
  }
  .article-container article .cat-date {
    line-height: 1.1;
  }
  .article-container article .cat-date .category {
    display: block;
  }
  .article-container article .inside {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .article-container article.aligned-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
@media (max-width: 1199px) {
  .article-container article .author {
    width: 45px !important;
    height: 45px;
    float: left;
    margin-right: 22px;
  }
  .article-container article .title {
    overflow: hidden;
    padding-bottom: 15px;
    margin-bottom: 0;
  }
  .article-container article .lead {
    clear: left;
  }
}
@media (min-width: 1200px) {
  .article-container article .author {

  }
}
.article-container .inside {
  position: relative;
  padding: 75px 15px;
  margin: 0 100px;
}

@media (max-width:1024px) {
	
.article-container .inside {
  margin: 0 10px;
}
}

.post-list .article-container .inside {
	max-width:none;
  margin: 0 30px;
	
}

/* FULL > Article */
.breadcrumb {
  position: absolute;
  width: 100%;
  top: 5px;
  margin-bottom: 0;
  left: 0;
  padding: 8px 15px;
  font-size: 10px;
  color: #fff;
  z-index: 7;
}
.breadcrumb > li:before, .breadcrumb > li.active {
  color: inherit !important;
}
.breadcrumb > li > a {
  color: #fff;
  -webkit-transition: color 250ms ease-in;
  transition: color 250ms ease-in;
  display: inline-block;
  padding: 2px;
}
.breadcrumb > li > a:hover {
  color: #ff7500;
}
@media (min-width: 992px) {
  .breadcrumb {
    width: 845px;
    left: 50%;
    margin-left: -422.5px;
  }
}

.article-full {
  background: #FFF;
  position: relative;
  /* format */
  /* Font Reduction */
}
.article-full .head {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 450px;
  padding-top: 35px;
  margin-bottom: 20px;
  display: table;
  position: relative;
  width: 100%;
}
.article-full .head:before, .article-full .head:after {
  content: " ";
  display: table;
}
.article-full .head:after {
  clear: both;
}
.article-full .head .in {
  display: table-cell;
  position: relative;
  z-index: 2;
  vertical-align: bottom;
  padding: 30px 0;
}
.article-full .head .cat-date {
  color: #fff;
}
.article-full .head .center {
  max-width: 845px;
  position: relative;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 3;
}
.article-full .head .center:after {
  content: ' ';
  display: block;
  height: 4px;
  background: #ff7500;
  width: 80px;
  position: absolute;
  left: 15px;
  bottom: -34px;
}
.article-full .head .title {
  color: #fff;
  margin: 0;
}
.article-full .jquery-typographer {
  text-align: justify;
}
.article-full .body {
  width: 100%;
  max-width: 845px;
  margin: 0 auto;
  font-family: "gothambook";
  font-size: 18px;
  padding: 20px 15px 20px 70px;
}

@media all and (max-width:1190px) {
	.article-full .body {
		padding: 20px 15px;
	}
}

.article-full .body p,
.article-full .body ol,
.article-full .body ul {
  font-size: 18px;
}
.article-full .body > img, .article-full .body p img, .article-full .body figure > img, .article-full .body .wp-caption > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.article-full .body .wp-smiley, .article-full .body img[src$="trans.gif"] {
  display: none !important;
}
.article-full .body > img {
  margin-bottom: 22px;
}
.article-full .body p > img {
  margin-top: 22px;
}
.article-full .body p > img:first-child {
  margin-top: 0;
}
.article-full .body a {
  color: inherit;
  text-decoration: underline;
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
}
.article-full .body a:hover {
  color: #ff7500;
  text-decoration: underline !important;
}
.article-full .lead, .article-full .lead p {
  font-weight: bold;
  line-height: 135%;
  font-size: 20px;
}
.article-full .lead, .article-full .table {
  margin-bottom: 22px;
}
.article-full figure, .article-full .wp-caption {
  margin-bottom: 22px;
}
@media (max-width: 991px) {
  .article-full figure, .article-full .wp-capartion {
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  .article-full figure, .article-full .wp-caption {
    margin-left: 60px;
    margin-right: 0;
    width: 640px !important;
  }
}
.article-full figure > br, .article-full figure > p, .article-full .wp-caption > br, .article-full .wp-caption > p {
  display: none;
}
.article-full figure figcaption, .article-full figure .wp-caption-text, .article-full .wp-caption figcaption, .article-full .wp-caption .wp-caption-text {
  display: block;
  background: #202020;
  padding: 8px 15px;
  position: relative;
  color: #fff;
}
@media (max-width: 991px) {
  .article-full figure figcaption, .article-full figure .wp-caption-text, .article-full .wp-caption figcaption, .article-full .wp-caption .wp-caption-text {
    padding: 5px 10px;
    font-size: 12px;
  }
}
.article-full figure figcaption:before, .article-full figure .wp-caption-text:before, .article-full .wp-caption figcaption:before, .article-full .wp-caption .wp-caption-text:before {
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #202020;
  position: absolute;
  top: -5px;
  left: 20px;
}
.article-full blockquote {
  border: none;
  padding-left: 30px;
  position: relative;
  font-weight: bold;
}
@media (max-width: 991px) {
  .article-full blockquote {
    margin-left: 10px;
  }
}
.article-full blockquote:before {
  content: '\201C';
  font-size: 80px;
  color: #ff7500;
  position: absolute;
  top: 0;
  left: -15px;
  line-height: 1;
  display: block;
}
.article-full .table td, .article-full .table th {
  line-height: 1.15;
}
.article-full .table thead tr th, .article-full .table thead tr td {
  background: #ff7500;
  color: #fff;
}
.article-full .table-responsive .table {
  margin: 0;
}
.article-full ul {
  list-style: none;
}
.article-full ul li {
  position: relative;
}
.article-full ul li:before {
  content: ' ';
  display: block;
  width: 5px;
  height: 5px;
  background: #ff7500;
  position: absolute;
  left: -15px;
  top: 8px;
}
@media (max-width: 991px) {
  .article-full .body {
    font-size: 14px;
  }
  .article-full .lead, .article-full .lead p, .article-full blockquote {
    font-size: 16px;
  }
  .article-full .table {
    font-size: 12px;
  }
}

/* ARTICLE - type TEXT */
.article-type-text .breadcrumb {
  color: #2f2f2f;
}
.article-type-text .head {
  height: auto;
}
.article-type-text .head .center {
  padding: 0 15px;
}
.article-type-text .head .title {
  color: #ff7500;
}

/* ARTICLE - type VIDEO */
.article-type-video .head {
  padding-bottom: 85px;
}
.article-type-video .head .center:after {
  display: none;
}
.article-type-video .body {
  overflow: visible;
}
.article-type-video .video-container {
  width: 100%;
  margin-top: -115px;
  margin-bottom: 22px;
  background: #fff;
  border: 4px solid #fff;
  z-index: 3;
  /* elastic */
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .article-type-video .video-container {
    width: 875px;
    margin-left: -30px;
    margin-right: -30px;
  }
}
.article-type-video .video-container iframe, .article-type-video .video-container object, .article-type-video .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ARTICLE - type AUDIO */
.article-type-audio .body {
  overflow: visible;
}
.article-type-audio .audio-container {
  width: 100%;
  margin-bottom: 22px;
  background: #fff;
  position: relative;
  z-index: 3;
}
@media (min-width: 992px) {
  .article-type-audio .audio-container {
    width: 875px;
    margin-left: -30px;
    margin-right: -30px;
  }
}

/* ARTICLE > Talking Heads */
.talking-heads {
  display: block;
  position: fixed;
  top: 97px;
  right: 10px;
  z-index: 100;
}
.comments-enabled .talking-heads {
  opacity: 0;
  filter: alpha(opacity=0);
  right: 715px;
}
@media (max-width: 767px) {
  .talking-heads {
    display: none;
  }
}
.talking-heads > img {
  height: 56px;
  width: 56px;
  border-radius: 56px;
  display: block;
  border: 2px solid #ff7500;
  margin-top: -10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 6px;
}


/* ARTICLE > Playlist */
.playlist {
  width: 100%;
  max-width: 845px;
  margin: 0 auto;
  position: relative;
  padding: 30px;
  /*border-top: 2px dashed #e5e5e5;
  border-bottom: 2px dashed #e5e5e5;*/
}
.playlist .btn-main, .playlist .pagination-numbers > li > .prev, .playlist .pagination-numbers > li > .next {
  position: absolute !important;
  top: 30px;
  border: 2px solid #ff7500 !important;
  color: #ff7500;
}
.playlist .btn-main span, .playlist .pagination-numbers > li > .prev span, .playlist .pagination-numbers > li > .next span {
  color: #ff7500;
}
.playlist .btn-main:after, .playlist .pagination-numbers > li > .prev:after, .playlist .pagination-numbers > li > .next:after {
  background: #ff7500;
}
.playlist .btn-main:hover, .playlist .pagination-numbers > li > .prev:hover, .playlist .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.playlist .btn-main:hover span, .playlist .pagination-numbers > li > .prev:hover span, .playlist .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}
.playlist .btn-main.prev, .playlist .pagination-numbers > li > .prev {
  left: 15px;
}
.playlist .btn-main.next, .playlist .pagination-numbers > li > .next {
  right: 15px;
}
@media (min-width: 992px) {
  .playlist .btn-main, .playlist .pagination-numbers > li > .prev, .playlist .pagination-numbers > li > .next {
    top: 50%;
    margin-top: -20px;
  }
  .playlist .btn-main.prev, .playlist .pagination-numbers > li > .prev {
    left: 0;
  }
  .playlist .btn-main.next, .playlist .pagination-numbers > li > .next {
    right: 0;
  }
}
@media (max-width: 479px) {
  .playlist .btn-main, .playlist .pagination-numbers > li > .prev, .playlist .pagination-numbers > li > .next {
    position: static !important;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    text-align: center;
  }
}
.playlist .list {
  width: 375px;
  max-width: 100%;
  margin: 60px auto 0;
}
@media (min-width: 992px) {
  .playlist .list {
    margin: 0 auto;
  }
}
@media (max-width: 479px) {
  .playlist .list {
    margin-top: 20px;
  }
}
.playlist .list h4 {
  margin-top: 0;
  font-weight: bold;
}
.playlist .list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.playlist .list ul li {
  background: url(images/icon/artykul.png) no-repeat 0 1px;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.playlist .list ul li a {
  color: #141414;
}
.playlist .list ul li.read {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.playlist .list ul li.read:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.playlist .list ul li.current {
  background-image: url(images/icon/artykul-active.png);
  font-weight: bold;
  color: #ff7500;
}

/* ARTICLE > Categories & Tags */
.cats-and-tags {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 845px;
  padding: 15px;
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 2px dashed #e5e5e5;
  color: #777;
  font-size: 12px;
}
.cats-and-tags:before, .cats-and-tags:after {
  content: " ";
  display: table;
}
.cats-and-tags:after {
  clear: both;
}
.cats-and-tags .title {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  color: #2f2f2f;
  padding-right: 1em;
}

/* ARTICLE > Readmore */
.readmore {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  max-width: 90%;
  padding: 30px 15px 80px 15px;
  margin: 0 auto;
  overflow: hidden;
}
.readmore:before, .readmore:after {
  content: " ";
  display: table;
}
.readmore:after {
  clear: both;
}
.readmore h4 {
  text-align: center;
  margin-bottom: 36px;
	font-family:'gothamlight';
	font-size:37px;
	color:#7e7e7e;
	text-transform: uppercase;
}
.readmore .col {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.readmore .category {
  text-transform: uppercase;
  display: inline-block;
  margin-bottom:0;
  background: #ff7500;
	color:#fff;
	padding:0px 3px;
}
.readmore .category a {
  color: #fff;
	font-size:10px;
	font-family:'gothammedium';
	font-weight:normal;
}
.readmore .rm-meta {
  position:absolute;
	top:84px;
	left:25px;
	right:25px;
}

@media (min-width: 768px) {
  .readmore .col {
    float: left;
    width: 25%;
  }
}
@media (max-width: 767px) {
  .readmore .col {
    margin-bottom: 30px;
  }
}
.readmore .col figure {
  margin-bottom: 22px;
  overflow: hidden;
}
.readmore .col figure img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.75;
  filter: alpha(opacity=75);
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.readmore .col figure a {
  display: block;
  background: #464646;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.readmore .col figure a:hover img {
  opacity: 1;
  filter: alpha(opacity=100);
}
.readmore .col h2 {
  margin-top: 0;
  font-size: 24px;
	font-family:'gothamlight';
	margin-top:-3px;
}

/* GALLERY LIST */
.gallery-list {
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top -250px;
  position: relative;
  z-index: 1;
	padding-top:180px;
}
.gallery-list:before, .gallery-list:after {
  content: " ";
  display: table;
}
.gallery-list:after {
  clear: both;
}
@media (min-width: 1281px) {
  .gallery-list {
    background-image: url(images/gallery-1600.jpg);
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .gallery-list {
    background-image: url(images/gallery-1280.jpg);
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .gallery-list {
    background-image: url(images/gallery-960.jpg);
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .gallery-list {
    background-image: url(images/gallery-640.jpg);
  }
}
@media (max-width: 480px) {
  .gallery-list {
    background-image: url(images/gallery-480.jpg);
  }
}
.gallery-list .section-title {
  color: #fff;
}
.gallery-list .head {
  padding-bottom: 22px;
}
.gallery-list .galleries {
  margin-right: auto;
  margin-left: auto;
  padding-left:0;
  padding-right:0;
  position: relative;
  z-index: 2;
}
.gallery-list .galleries:before, .gallery-list .galleries:after {
  content: " ";
  display: table;
}
.gallery-list .galleries:after {
  clear: both;
}
.gallery-list .galleries .row {
  margin-bottom: 30px;
}
.gallery-list .galleries figure {
  overflow: hidden;
}
.gallery-list .galleries figure img {
  display: block;
  width: 100%;
  height: auto;
}
.gallery-list .galleries .title {
  display: block;
  padding: 15px;
  font-weight: bold;
  line-height: 1.15;
  font-size: 30px;
  color: #2f2f2f;
  background: #fff;
}
@media (max-width: 767px) {
  .gallery-list .galleries .row {
    margin-bottom: 0;
  }
  .gallery-list .galleries .gallery {
    margin-bottom: 44px;
  }
}
.gallery-list .galleries2 .in {
  height: 300px;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  font-family: "gothammedium";
}
.gallery-list .galleries2 .in:after {
  display: block;
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjE1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjM1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, rgba(0, 0, 0, 0.5)), color-stop(15%, rgba(0, 0, 0, 0.35)), color-stop(100%, rgba(0, 0, 0, 0)));
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 15%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 15%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 15%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.gallery-list .galleries2 .in p {
  line-height: 1.35;
}
.gallery-list .galleries2 .in p:last-child {
  margin-bottom: 0;
}
.gallery-list .galleries2 .in .desc {
  position: absolute;
  padding: 10px 15px;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.gallery-list .galleries2 .in h3 {
  color: #fff;
  font-family: "gothammedium";
}
.gallery-list .galleries2 .in h3 a {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}
.gallery-list .galleries2 .in h3 a:hover {
  color: #ff7500;
}
.gallery-list .galleries2 .in > .full-height-link {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.gallery-list .galleries2 .load-more .in {
  height: auto;
  border-bottom: none;
}

/* GALLERY */
.category-grid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
.category-grid:before, .category-grid:after {
  content: " ";
  display: table;
}
.category-grid:after {
  clear: both;
}
.category-grid .row {
  border-bottom: 2px solid #fff;
  overflow: hidden;
}
.category-grid .small-category {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .category-grid .small-category {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .category-grid .small-category {
    float: left;
    width: 25%;
  }
}
.category-grid h3 {
  position: absolute;
  color: #fff;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  line-height: 1;
  margin: 0;
  font-weight: bold;
  font-size: 24px;
  font-family: "gothammedium";
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzEwMTAwZiIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, rgba(16, 16, 15, 0.65)), color-stop(100%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(bottom, rgba(16, 16, 15, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(bottom, rgba(16, 16, 15, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to top, rgba(16, 16, 15, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}
.category-grid h3 a {
  color: #fff;
}
.category-grid h3 a:hover {
  color: #ff7500;
}

/* GALLERY */
.image-container {
  position: relative;
  background-color: #464646;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 !important;
  border-bottom: 4px solid #fff;
}
.image-container:before, .image-container:after {
  content: " ";
  display: table;
}
.image-container:after {
  clear: both;
}
@media (max-width: 479px) {
  .image-container {
    border-bottom-color: #ddd;
  }
}
.image-container .figure {
  padding: 0;
  position: relative;
  -webkit-transition: opacity 250ms ease-in;
  transition: opacity 250ms ease-in;
}
.image-container .figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.image-container .figure .popover {
  background: #fff;
  padding: 12px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  width: 300px;
  position: absolute;
  left: 30px;
  font-family: "gothambold";
  bottom: 30px;
  text-align: justify;
  font-size: 12px;
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
}
@media (min-width: 768px) {
  .image-container .figure .popover {
    left: 100px;
    font-size: 14px;
    padding: 15px;
    bottom: 50px;
  }
}
@media (max-width: 479px) {
  .image-container .figure .popover {
    position: static;
    width: 100%;
  }
}
.image-container .figure .popover .toggle {
  text-align: right;
  display: block;
  height: 15px;
}
.image-container .figure .popover .toggle i {
  width: 15px;
  height: 15px;
  background: url(images/icon/toggler.gif) no-repeat 0 0;
  display: inline-block;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.image-container .figure .popover .details {
  margin-top: 11px;
}
.image-container .figure .popover.popover-closed {
  width: 39px;
}
@media (min-width: 768px) {
  .image-container .figure .popover.popover-closed {
    width: 45px;
    padding: 15px;
    bottom: 50px;
  }
}
@media (max-width: 479px) {
  .image-container .figure .popover.popover-closed {
    position: static;
    width: 100%;
  }
}
.image-container .figure .popover.popover-closed .toggle i {
  background-position: 0 -15px;
}
.image-container .figure .popover.popover-closed .details {
  display: none;
}
.image-container .figure .popover p:last-child {
  margin-bottom: 0;
}

/* OUR STORIES */

.section-description {
  padding: 0 40px;
  margin: -22px 70px 22px;
  color: #fff;
  line-height: 1.35;
  font-size: 16px;
  text-align: center;
}

.our-stories .story, .story-wachlarz .story {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 44px;
}
.our-stories .story:before, .our-stories .story:after, .story-wachlarz .story:before, .story-wachlarz .story:after {
  content: " ";
  display: table;
}
.our-stories .story:after, .story-wachlarz .story:after {
  clear: both;
}
.our-stories .story figure, .story-wachlarz .story figure {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0;
  position: relative;
  overflow: hidden;
  /* IMG */
}
@media (min-width: 768px) {
  .our-stories .story figure, .story-wachlarz .story figure {
    float: left;
    width: 58.33333%;
  }
}
.our-stories .story figure:after, .our-stories .story figure:before, .story-wachlarz .story figure:after, .story-wachlarz .story figure:before {
  content: ' ';
  display: block;
  height: 0;
  width: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .our-stories .story figure:after, .our-stories .story figure:before, .story-wachlarz .story figure:after, .story-wachlarz .story figure:before {
    border-bottom: 25px solid #fff;
    bottom: 0;
  }
  .our-stories .story figure:before, .story-wachlarz .story figure:before {
    left: 0;
    width: 10%;
    border-right: 25px solid transparent;
  }
  .our-stories .story figure:after, .story-wachlarz .story figure:after {
    right: 0;
    width: 90%;
    border-left: 25px solid transparent;
  }
}
@media (max-width: 479px) {
  .our-stories .story figure:after, .our-stories .story figure:before, .story-wachlarz .story figure:after, .story-wachlarz .story figure:before {
    border-bottom-width: 15px;
  }
  .our-stories .story figure:before, .story-wachlarz .story figure:before {
    border-right-width: 15px;
  }
  .our-stories .story figure:after, .story-wachlarz .story figure:after {
    border-left-width: 15px;
  }
}
@media (min-width: 768px) {
  .our-stories .story figure:after, .our-stories .story figure:before, .story-wachlarz .story figure:after, .story-wachlarz .story figure:before {
    border-right: 25px solid #fff;
    right: 0;
  }
  .our-stories .story figure:before, .story-wachlarz .story figure:before {
    top: 0;
    height: 14%;
    border-bottom: 25px solid transparent;
  }
  .our-stories .story figure:after, .story-wachlarz .story figure:after {
    bottom: 0;
    height: 86%;
    border-top: 25px solid transparent;
  }
}
.our-stories .story figure img, .story-wachlarz .story figure img {
  width: 100%;
  height: auto;
}
.our-stories .story .article, .story-wachlarz .story .article {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 40px 30px 0;
}
@media (min-width: 768px) {
  .our-stories .story .article, .story-wachlarz .story .article {
    float: left;
    width: 41.66667%;
  }
}
@media (max-width: 991px) {
  .our-stories .story .article, .story-wachlarz .story .article {
    padding: 30px 20px 0;
  }
  .our-stories .story .article .lead, .story-wachlarz .story .article .lead {
    font-size: 14px;
  }
}
.our-stories .story .article .category, .our-stories .story .article .category a, .story-wachlarz .story .article .category, .story-wachlarz .story .article .category a {
  color: #2f2f2f;
}
.our-stories .story .article .title, .story-wachlarz .story .article .title {
  margin: 0 0 44px;
  text-transform: uppercase;
  color: #ff7500;
  font-size: 44px;
  position: relative;
}
.our-stories .story .article .title a, .story-wachlarz .story .article .title a {
  display: block;
  color: #ff7500;
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.our-stories .story .article .title a:hover, .story-wachlarz .story .article .title a:hover {
  color: #000;
}
.our-stories .story .article .title:after, .story-wachlarz .story .article .title:after {
  content: ' ';
  display: block;
  height: 4px;
  background: #ff7500;
  width: 50px;
  position: absolute;
  left: 0;
  bottom: -22px;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.our-stories .story .article .title:hover:after, .story-wachlarz .story .article .title:hover:after {
  width: 150px;
  background: #000;
}
.our-stories .story .article .lead, .story-wachlarz .story .article .lead {
  line-height: 1.6;
}
.our-stories .story .article .btn-main, .our-stories .story .article .pagination-numbers > li > .prev, .our-stories .story .article .pagination-numbers > li > .next, .story-wachlarz .story .article .btn-main, .story-wachlarz .story .article .pagination-numbers > li > .prev, .story-wachlarz .story .article .pagination-numbers > li > .next {
  border: 2px solid #ff7500 !important;
  color: #ff7500;
}
.our-stories .story .article .btn-main span, .our-stories .story .article .pagination-numbers > li > .prev span, .our-stories .story .article .pagination-numbers > li > .next span, .story-wachlarz .story .article .btn-main span, .story-wachlarz .story .article .pagination-numbers > li > .prev span, .story-wachlarz .story .article .pagination-numbers > li > .next span {
  color: #ff7500;
}
.our-stories .story .article .btn-main:after, .our-stories .story .article .pagination-numbers > li > .prev:after, .our-stories .story .article .pagination-numbers > li > .next:after, .story-wachlarz .story .article .btn-main:after, .story-wachlarz .story .article .pagination-numbers > li > .prev:after, .story-wachlarz .story .article .pagination-numbers > li > .next:after {
  background: #ff7500;
}
.our-stories .story .article .btn-main:hover, .our-stories .story .article .pagination-numbers > li > .prev:hover, .our-stories .story .article .pagination-numbers > li > .next:hover, .story-wachlarz .story .article .btn-main:hover, .story-wachlarz .story .article .pagination-numbers > li > .prev:hover, .story-wachlarz .story .article .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.our-stories .story .article .btn-main:hover span, .our-stories .story .article .pagination-numbers > li > .prev:hover span, .our-stories .story .article .pagination-numbers > li > .next:hover span, .story-wachlarz .story .article .btn-main:hover span, .story-wachlarz .story .article .pagination-numbers > li > .prev:hover span, .story-wachlarz .story .article .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}
@media (min-width: 768px) {
  .our-stories .story.article-right figure, .story-wachlarz .story.article-right figure {
    float: right;
  }
  .our-stories .story.article-right figure:before, .our-stories .story.article-right figure:after, .story-wachlarz .story.article-right figure:before, .story-wachlarz .story.article-right figure:after {
    left: 0;
    right: auto;
    border-left: 25px solid #fff;
    border-right: none;
  }
  .our-stories .story.article-right .article, .story-wachlarz .story.article-right .article {
    text-align: right;
  }
  .our-stories .story.article-right .article .title:after, .story-wachlarz .story.article-right .article .title:after {
    left: auto;
    right: 0;
  }
}

.our-stories2 {
  background-repeat: no-repeat;
  background-position: center top -250px;
	background-size:100% auto;
  padding-bottom: 50px;
}
.our-stories2 .section-title {
  color: #fff;
}
.our-stories2 .row {
  overflow: hidden;
}
.our-stories2 .story {
  background-color: #fff;
}
.our-stories2 .story figure {
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.our-stories2 .story figure:after, .our-stories2 .story figure:before {
  display: none !important;
}
.our-stories2 .story figure img {
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
}
.our-stories2 .story .article .title a {
  color: #000;
}
.our-stories2 .story .article .title a:hover {
  color: #ff7500;
}
.our-stories2 .story .article .title:after {
  background: #000;
}
.our-stories2 .story .article .title:hover:after {
  background: #ff7500;
}

.story-wachlarz {
  margin-top: 44px;
  padding-bottom: 22px;
  border-bottom: 2px dashed #e5e5e5;
}
.story-wachlarz:first-child {
  margin-top: 0;
}
.story-wachlarz .story {
  margin-bottom: 22px;
}
.story-wachlarz .story figure {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0;
}
@media (min-width: 768px) {
  .story-wachlarz .story figure {
    float: left;
    width: 50%;
  }
}
.story-wachlarz .story .article {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .story-wachlarz .story .article {
    float: left;
    width: 41.66667%;
  }
}
.story-wachlarz .story .article .lead, .story-wachlarz .story .article .lead > p {
  font-weight: normal;
}
.story-wachlarz .recordings {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.story-wachlarz .recordings:before, .story-wachlarz .recordings:after {
  content: " ";
  display: table;
}
.story-wachlarz .recordings:after {
  clear: both;
}
.story-wachlarz .recordings .videos .video {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 44px;
}
@media (min-width: 768px) {
  .story-wachlarz .recordings .videos .video {
    width: 20% !important;
  }
  .story-wachlarz .recordings .videos .video:nth-child(5n+1) {
    clear: left;
  }
}
@media (max-width: 767px) {
  .story-wachlarz .recordings .videos .video:nth-child(2n+1) {
    clear: left;
  }
}
.story-wachlarz .recordings .title {
  font-weight: bold;
}
.story-wachlarz .recordings .title a {
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.story-wachlarz .recordings .title a:hover {
  color: #ff7500;
}
.story-wachlarz .recordings figure {
  overflow: hidden;
  max-height: 174px;
}
.story-wachlarz .recordings figure img {
  width: 100%;
  height: auto;
  display: block;
}
.story-wachlarz .recordings .text {
  font-family: "gothambold";
}
.story-wachlarz .recordings .foot:before, .story-wachlarz .recordings .foot:after {
  content: " ";
  display: table;
}
.story-wachlarz .recordings .foot:after {
  clear: both;
}
.story-wachlarz .recordings .foot .comments-link {
  display: inline-block;
  font-size: 12px;
  line-height: 32px;
  font-weight: bold;
}
.story-wachlarz .recordings .foot .comments-link i {
  background: url(images/icon/komentarz2.png);
  background-image: url(images/svg/komentarz2.svg), none;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.story-wachlarz .recordings .foot .btn-main, .story-wachlarz .recordings .foot .pagination-numbers > li > .prev, .story-wachlarz .recordings .foot .pagination-numbers > li > .next {
  border: 2px solid #ff7500 !important;
  color: #ff7500;
  float: right;
  padding: 1px 6px 3px;
}
.story-wachlarz .recordings .foot .btn-main span, .story-wachlarz .recordings .foot .pagination-numbers > li > .prev span, .story-wachlarz .recordings .foot .pagination-numbers > li > .next span {
  color: #ff7500;
}
.story-wachlarz .recordings .foot .btn-main:after, .story-wachlarz .recordings .foot .pagination-numbers > li > .prev:after, .story-wachlarz .recordings .foot .pagination-numbers > li > .next:after {
  background: #ff7500;
}
.story-wachlarz .recordings .foot .btn-main:hover, .story-wachlarz .recordings .foot .pagination-numbers > li > .prev:hover, .story-wachlarz .recordings .foot .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.story-wachlarz .recordings .foot .btn-main:hover span, .story-wachlarz .recordings .foot .pagination-numbers > li > .prev:hover span, .story-wachlarz .recordings .foot .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}

/* DAIRY */
.daily-container {
  background: #fff;
  padding: 0 0 10px;
	background-size:100% auto;
  background-repeat: no-repeat;
  background-position: center top -200px;
  position: relative;
  z-index: 1;
	overflow:hidden;
	padding-top:180px;
}
@media (min-width: 1281px) {
  .daily-container {
    background-image: url(images/dziennik-1600.jpg);
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .daily-container {
    background-image: url(images/dziennik-1280.jpg);
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .daily-container {
    background-image: url(images/dziennik-960.jpg);
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .daily-container {
    background-image: url(images/dziennik-640.jpg);
  }
}
@media (max-width: 480px) {
  .daily-container {
    background-image: url(images/dziennik-480.jpg);
  }
}
.daily-container .section-title {
  color: #fff;
}
.daily-container .daily-list {
  list-style: none;
  margin: 0 auto;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}
.daily-container .daily-list:before, .daily-container .daily-list:after {
  content: " ";
  display: table;
}
.daily-container .daily-list:after {
  clear: both;
}
.daily-container .daily {
  position: relative;
  min-height: 1px;
  position: relative;
  float: left;
  width: 50%;
	margin-bottom:10px;
	overflow:hidden;
}
@media (min-width: 768px) {
  .daily-container .daily {
    float: left;
    width: calc( 25% - 10px );
  }
}
@media (max-width: 479px) {
  .daily-container .daily {
    float: none;
    width: 100%;
    display: block;
  }
}
.daily-container .daily .in {
  background: #fff;
  overflow: hidden;
}
.daily-container .daily time {
  display: block;
  font-weight: bold;
  margin-bottom: 11px;
}
.daily-container .daily figure {
  margin: 0 -10px 15px;
  overflow: hidden;
}
.daily-container .daily figure img {
  display: block;
  width: 100%;
  height: auto;
}
.daily-container .daily .title {
  margin-top: 11px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: bold;
}
.daily-container .daily .title a {
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.daily-container .daily .title a:hover {
  color: #ff7500;
}
.daily-container .daily .lead {
  font-size: 16px;
}
.daily-container .daily .foot:before, .daily-container .daily .foot:after {
  content: " ";
  display: table;
}
.daily-container .daily .foot:after {
  clear: both;
}
.daily-container .daily .foot .comments-link {
  display: inline-block;
  font-size: 12px;
  line-height: 32px;
  font-weight: bold;
}
.daily-container .daily .foot .comments-link i {
  background: url(images/icon/komentarz2.png);
  background-image: url(images/svg/komentarz2.svg), none;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.daily-container .daily .foot .btn-main, .daily-container .daily .foot .pagination-numbers > li > .prev, .daily-container .daily .foot .pagination-numbers > li > .next {
  border: 2px solid #ff7500 !important;
  color: #ff7500;
  float: right;
  padding: 1px 6px 3px;
}
.daily-container .daily .foot .btn-main span, .daily-container .daily .foot .pagination-numbers > li > .prev span, .daily-container .daily .foot .pagination-numbers > li > .next span {
  color: #ff7500;
}
.daily-container .daily .foot .btn-main:after, .daily-container .daily .foot .pagination-numbers > li > .prev:after, .daily-container .daily .foot .pagination-numbers > li > .next:after {
  background: #ff7500;
}
.daily-container .daily .foot .btn-main:hover, .daily-container .daily .foot .pagination-numbers > li > .prev:hover, .daily-container .daily .foot .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.daily-container .daily .foot .btn-main:hover span, .daily-container .daily .foot .pagination-numbers > li > .prev:hover span, .daily-container .daily .foot .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}
.daily-container .daily-single, .daily-container .daily-actions {
  max-width: 640px;
  width: 100%;
  float: none;
  display: block;
  margin: 0 auto;
}
.daily-container .daily-single:before, .daily-container .daily-single:after, .daily-container .daily-actions:before, .daily-container .daily-actions:after {
  content: " ";
  display: table;
}
.daily-container .daily-single:after, .daily-container .daily-actions:after {
  clear: both;
}
.daily-container .daily-actions {
  padding: 15px;
}
.daily-container .daily-actions .btn-main, .daily-container .daily-actions .pagination-numbers > li > .prev, .daily-container .daily-actions .pagination-numbers > li > .next {
  padding: 2px 6px;
}
.daily-container .daily-actions .next {
  float: right;
}

.wrap .daily-container .daily-single .title, .wrap .daily-container .daily-single .lead {
  padding: 0 10px;
}
.wrap .daily-container .daily-single .lead {
  margin-bottom: 0;
}

/* ===== CYKLE I KRAJE ===== */
.cykle-kraje {
  position: relative;
  z-index: 1;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top -200px;
  padding-bottom: 50px;
	padding-top:180px;
}
@media (min-width: 1281px) {
  .cykle-kraje {
    background-image: url(images/forest-1600.jpg);
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .cykle-kraje {
    background-image: url(images/forest-1280.jpg);
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .cykle-kraje {
    background-image: url(images/forest-960.jpg);
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cykle-kraje {
    background-image: url(images/forest-640.jpg);
  }
}
@media (max-width: 480px) {
  .cykle-kraje {
    background-image: url(images/forest-480.jpg);
  }
}
.cykle-kraje .cykle-kraje-wrap {
}
.cykle-kraje .cykle-kraje-wrap:before, .cykle-kraje .cykle-kraje-wrap:after {
  content: " ";
  display: table;
}
.cykle-kraje .cykle-kraje-wrap:after {
  clear: both;
}
.cykle-kraje .kraje {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .cykle-kraje .kraje {
    float: left;
    width: 33.33333%;
  }
}
@media (min-width: 768px) {
  .cykle-kraje .kraje {
    position: fixed;
  }
}
.cykle-kraje .kraje ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cykle-kraje .kraje ul li {
  padding: 0;
  margin-bottom: 11px;
  line-height: 1;
  font-size: 28px;
}
@media (max-width: 767px) {
  .cykle-kraje .kraje ul li {
    display: inline-block;
    margin-left: 22px;
  }
  .cykle-kraje .kraje ul li a:before {
    content: '\203A';
    font-size: 85%;
    position: relative;
    top: -.12em;
    margin-right: 5px;
  }
}
.cykle-kraje .kraje ul li a {
  color: #000;
  font-weight: bold;
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.cykle-kraje .kraje ul li a:hover {
  color: #ff7500;
}
.cykle-kraje .cykle {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .cykle-kraje .cykle {
    margin-left: 33.33333%;
  }
}
@media (min-width: 768px) {
  .cykle-kraje .cykle {
    float: left;
    width: 66.66667%;
  }
}
.cykle-kraje .cykle .cycle {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 22px;
}
.cykle-kraje .cykle .cycle:nth-child(2n+1) {
  clear: left;
}
@media (max-width: 479px) {
  .cykle-kraje .cykle .cycle {
    width: 100%;
    float: none;
    display: block;
  }
}
.cykle-kraje .cykle .cycle .in {
  background: #fff;
  padding: 10px;
}
.cykle-kraje .cykle .cycle figure {
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 1;
  margin: -10px -10px 11px;
  background: #464646;
}
.cykle-kraje .cykle .cycle figure img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.75;
  filter: alpha(opacity=75);
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cykle-kraje .cykle .cycle figure a {
  display: block;
  background: #464646;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cykle-kraje .cykle .cycle:hover figure img {
  opacity: 1;
  filter: alpha(opacity=100);
}
.cykle-kraje .cykle .cycle .ended {
  margin: -21px 0 11px;
  height: 20px;
  line-height: 20px;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 3;
}
.cykle-kraje .cykle .cycle .ended span {
  padding: 0 10px;
  display: inline-block;
  font-size: 13px;
  background: #ff7500;
}
.cykle-kraje .cykle .cycle .title {
  margin-top: 11px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: bold;
}
.cykle-kraje .cykle .cycle .title a {
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.cykle-kraje .cykle .cycle .title a:hover {
  color: #ff7500;
}
.cykle-kraje .cykle .cycle .text {
  font-family: "gothambold";
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  z-index: 1;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-attachment: fixed;
  padding-bottom: 50px;
}
@media (min-width: 1281px) {
  .about {
    background-image: url(images/about-1600.jpg);
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .about {
    background-image: url(images/about-1280.jpg);
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .about {
    background-image: url(images/about-960.jpg);
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .about {
    background-image: url(images/about-640.jpg);
  }
}
@media (max-width: 480px) {
  .about {
    background-image: url(images/about-480.jpg);
  }
}
.about .about-middle {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 960px;
  margin: 0 auto 22px;
  position: relative;
  z-index: 3;
}
.about .about-middle:before, .about .about-middle:after {
  content: " ";
  display: table;
}
.about .about-middle:after {
  clear: both;
}
.about .about-middle .section-title {
  text-align: center;
  color: #fff;
  margin: 0 0 22px;
  padding: 0;
}
@media (max-width: 991px) {
  .about .about-middle .section-title {
    padding-top: 22px;
  }
}
.about .about-middle article {
  float: left;
  width: 19%;
  margin: 0 0.5%;
  background: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about .about-middle article {
    width: 48%;
    margin: 0 1% 11px;
  }
  .about .about-middle article:nth-child(2n+1) {
    clear: left;
  }
}
@media (max-width: 767px) {
  .about .about-middle article {
    width: 96%;
    display: block;
    float: none;
    margin: 0 2% 11px;
  }
}
.about .about-middle article figure {
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0;
  background: #464646;
}
.about .about-middle article figure img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.75;
  filter: alpha(opacity=75);
  -webkit-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.about .about-middle article figure a {
  display: block;
  background: #464646;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.about .about-middle article:hover figure img {
  opacity: 1;
  filter: alpha(opacity=100);
}
.about .about-middle .title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 11px 0;
}
.about .about-middle .title a {
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.about .about-middle .title a:hover {
  color: #ff7500;
}
.about .social {
  color: #fff;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  margin: 22px 0 0;
}
.about .social a {
  color: #fff;
  padding: 0 5px;
  display: inline-block;
  -webkit-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}
.about .social a:hover {
  color: #ff7500;
}

/* ===== INSTA PETERSBURG ===== */
.insta-container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-bottom: 4px solid #fff;
  padding: 100px 15px;
}
.insta-container:before, .insta-container:after {
  content: " ";
  display: table;
}
.insta-container:after {
  clear: both;
}
.insta-container .insta {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
  z-index: 2;
}
.insta-container .insta:before, .insta-container .insta:after {
  content: " ";
  display: table;
}
.insta-container .insta:after {
  clear: both;
}
.insta-container .right, .insta-container .insta-wrap {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .insta-container .right, .insta-container .insta-wrap {
    float: left;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .insta-container .insta-wrap {
    float: left;
  }
}
@media (max-width: 767px) {
  .insta-container .insta-wrap .insta-elastic {
    margin: 0 auto;
  }
}
@media (max-width: 479px), (min-width: 768px) and (max-width: 991px) {
  .insta-container .insta-wrap .insta-elastic {
    width: 300px;
  }
  .insta-container .insta-wrap .insta-elastic iframe, .insta-container .insta-wrap .insta-elastic object, .insta-container .insta-wrap .insta-elastic embed {
    width: 300px !important;
    height: 398px !important;
  }
}
@media (min-width: 480px) and (max-width: 767px), (min-width: 1200px) {
  .insta-container .insta-wrap .insta-elastic {
    width: 475px;
  }
  .insta-container .insta-wrap .insta-elastic iframe, .insta-container .insta-wrap .insta-elastic object, .insta-container .insta-wrap .insta-elastic embed {
    width: 475px !important;
    height: 573px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .insta-container .insta-wrap .insta-elastic {
    width: 400px;
  }
  .insta-container .insta-wrap .insta-elastic iframe, .insta-container .insta-wrap .insta-elastic object, .insta-container .insta-wrap .insta-elastic embed {
    width: 400px !important;
    height: 498px !important;
  }
}
.insta-container .right {
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .insta-container .right {
    text-align: right;
  }
  .insta-container .right .in {
    float: right;
    max-width: 350px;
  }
}
.insta-container .right .lead, .insta-container .right .lead p:last-child {
  margin-bottom: 0;
}
.insta-container .right .title {
  text-transform: uppercase;
}

/* ===== FORUM ===== */
.forum {
  position: relative;
  z-index: 1;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-attachment: fixed;
  padding: 0 15px 50px;
}
@media (min-width: 1281px) {
  .forum {
    background-image: url(images/forum-1600.jpg);
  }
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .forum {
    background-image: url(images/forum-1280.jpg);
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .forum {
    background-image: url(images/forum-960.jpg);
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .forum {
    background-image: url(images/forum-640.jpg);
  }
}
@media (max-width: 480px) {
  .forum {
    background-image: url(images/forum-480.jpg);
  }
}
.forum .section-title {
  color: #fff;
}
.forum .thread, .forum .forum-actions, .forum .all {
  max-width: 960px;
  margin: 0 auto 22px;
}
.forum .thread {
  background: #fff;
}
.forum .ask-question {
  float: right;
}
.forum .bar {
  height: 44px;
  line-height: 45px;
  background-color: #e9e9e9;
  color: #202020;
  text-transform: uppercase;
  padding: 0 22px 0 94px;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: visible;
  position: relative;
}
.forum .bar strong {
  font-weight: bolder;
}
.forum .bar:after {
  content: ' ';
  display: block;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #e9e9e9;
  position: absolute;
  bottom: -5px;
  left: 94px;
}
@media (max-width: 767px) {
  .forum .bar {
    padding: 0 22px;
    text-align: center;
  }
  .forum .bar:after {
    left: 50%;
    margin-left: -5px;
  }
  .forum .bar span {
    display: none;
  }
}
.forum .answer {
  border-top: 1px solid #e9e9e9;
}
.forum .question, .forum .answer {
  padding: 33px 22px 22px;
  font-family: "gothambold";
}
.forum .question:before, .forum .question:after, .forum .answer:before, .forum .answer:after {
  content: " ";
  display: table;
}
.forum .question:after, .forum .answer:after {
  clear: both;
}
@media (max-width: 767px) {
  .forum .question, .forum .answer {
    font-size: 13px;
  }
}
.forum .question figure, .forum .answer figure {
  float: left;
  width: 50px;
  margin-right: 22px;
}
.forum .question figure img, .forum .answer figure img {
  width: 100%;
  height: auto;
  display: block;
}
.forum .question .in, .forum .answer .in {
  overflow: hidden;
}
@media (max-width: 767px) {
  .forum .question .in, .forum .answer .in {
    overflow: visible;
  }
}
.forum .question .in .btn-main, .forum .question .in .pagination-numbers > li > .prev, .forum .question .in .pagination-numbers > li > .next, .forum .answer .in .btn-main, .forum .answer .in .pagination-numbers > li > .prev, .forum .answer .in .pagination-numbers > li > .next {
  border: 2px solid #ff7500 !important;
  color: #ff7500;
  margin: 11px 0;
}
.forum .question .in .btn-main span, .forum .question .in .pagination-numbers > li > .prev span, .forum .question .in .pagination-numbers > li > .next span, .forum .answer .in .btn-main span, .forum .answer .in .pagination-numbers > li > .prev span, .forum .answer .in .pagination-numbers > li > .next span {
  color: #ff7500;
}
.forum .question .in .btn-main:after, .forum .question .in .pagination-numbers > li > .prev:after, .forum .question .in .pagination-numbers > li > .next:after, .forum .answer .in .btn-main:after, .forum .answer .in .pagination-numbers > li > .prev:after, .forum .answer .in .pagination-numbers > li > .next:after {
  background: #ff7500;
}
.forum .question .in .btn-main:hover, .forum .question .in .pagination-numbers > li > .prev:hover, .forum .question .in .pagination-numbers > li > .next:hover, .forum .answer .in .btn-main:hover, .forum .answer .in .pagination-numbers > li > .prev:hover, .forum .answer .in .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.forum .question .in .btn-main:hover span, .forum .question .in .pagination-numbers > li > .prev:hover span, .forum .question .in .pagination-numbers > li > .next:hover span, .forum .answer .in .btn-main:hover span, .forum .answer .in .pagination-numbers > li > .prev:hover span, .forum .answer .in .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}
@media (max-width: 767px) {
  .forum .question .in .btn-main, .forum .question .in .pagination-numbers > li > .prev, .forum .question .in .pagination-numbers > li > .next, .forum .answer .in .btn-main, .forum .answer .in .pagination-numbers > li > .prev, .forum .answer .in .pagination-numbers > li > .next {
    margin: 11px auto 0;
    max-width: 200px;
    display: block;
  }
}
.forum .question .title, .forum .answer .title {
  font-size: 36px;
  font-family: "gothammedium";
  font-weight: bold;
  line-height: 1.15;
  margin-top: 0;
  clear: left;
}
.forum .question .meta, .forum .answer .meta {
  color: #a5a5a5;
  display: block;
  margin-bottom: 11px;
}
.forum .question .meta a, .forum .answer .meta a {
  font-weight: bold;
  color: #202020;
}
@media (max-width: 767px) {
  .forum .question .meta, .forum .answer .meta {
    padding-top: 15px;
  }
  .forum .question .meta time, .forum .answer .meta time {
    display: block;
  }
}
.forum .give-a-question {
  padding: 33px;
}
.forum .give-a-question .title {
  font-size: 36px;
  font-family: "gothammedium";
  font-weight: bold;
  line-height: 1.15;
  margin-top: 0;
  clear: left;
}
.forum .give-a-question p {
  color: #8f8f8f;
}
.forum .give-a-question form {
  margin-top: 22px;
}
.forum .gform_fields {
  margin: 25px 0 0;
  padding: 0;
}
.forum .give-an-answer {
  border-top: 1px solid #e9e9e9;
  padding: 33px 94px 33px 94px;
}
.forum .forum-form .form-group, .forum .forum-form .gfield {
  margin: 0 0 11px;
  display: block;
}
.forum .forum-form .form-group:before, .forum .forum-form .form-group:after, .forum .forum-form .gfield:before, .forum .forum-form .gfield:after {
  content: " ";
  display: table;
}
.forum .forum-form .form-group:after, .forum .forum-form .gfield:after {
  clear: both;
}
.forum .forum-form label, .forum .forum-form .gfield_label {
  display: block;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
  line-height: 1.6;
  padding: 0;
}
@media (min-width: 768px) {
  .forum .forum-form label, .forum .forum-form .gfield_label {
    float: left;
    width: 25%;
  }
}
.forum .forum-form #input_1_10 {
  overflow: hidden;
}
.forum .forum-form .recaptcha_only_if_privacy {
  display: none;
}
.forum .forum-form .ginput_complex .ginput_full input[type=file] {
  line-height: 1;
  font-size: 13px;
  vertical-align: middle;
  display: inline-block;
}
.forum .forum-form .form-control, .forum .forum-form .ginput_container input[type=text], .forum .forum-form .ginput_container .large, .forum .forum-form .ginput_container .textarea {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.01);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.01);
  border: 1px solid #ff7500;
}
@media (min-width: 768px) {
  .forum .forum-form .form-control, .forum .forum-form .ginput_container input[type=text], .forum .forum-form .ginput_container .large, .forum .forum-form .ginput_container .textarea {
    float: left;
    width: 75%;
  }
}
.forum .forum-form .form-control:focus, .forum .forum-form .ginput_container input[type=text]:focus, .forum .forum-form .ginput_container .large:focus, .forum .forum-form .ginput_container .textarea:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.forum .forum-form textarea.form-control, .forum .forum-form .ginput_container textarea.large, .forum .forum-form .ginput_container textarea.textarea, .forum .forum-form .ginput_container .textarea {
  height: 150px;
}
.forum .forum-form .btn-main, .forum .forum-form .pagination-numbers > li > .prev, .forum .forum-form .pagination-numbers > li > .next {
  border: 2px solid #ff7500 !important;
  color: #ff7500;
  margin-top: 11px;
}
.forum .forum-form .btn-main span, .forum .forum-form .pagination-numbers > li > .prev span, .forum .forum-form .pagination-numbers > li > .next span {
  color: #ff7500;
}
.forum .forum-form .btn-main:after, .forum .forum-form .pagination-numbers > li > .prev:after, .forum .forum-form .pagination-numbers > li > .next:after {
  background: #ff7500;
}
.forum .forum-form .btn-main:hover, .forum .forum-form .pagination-numbers > li > .prev:hover, .forum .forum-form .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.forum .forum-form .btn-main:hover span, .forum .forum-form .pagination-numbers > li > .prev:hover span, .forum .forum-form .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}
@media (min-width: 768px) {
  .forum .forum-form .btn-main, .forum .forum-form .pagination-numbers > li > .prev, .forum .forum-form .pagination-numbers > li > .next {
    margin-left: 25%;
  }
}
.forum .actions {
  text-align: center;
  margin: 22px auto;
}
.forum .actions .btn-main, .forum .actions .pagination-numbers > li > .prev, .forum .actions .pagination-numbers > li > .next {
  background: #fff !important;
  border: 2px solid #fff !important;
  color: #ff7500;
}
.forum .actions .btn-main span, .forum .actions .pagination-numbers > li > .prev span, .forum .actions .pagination-numbers > li > .next span {
  color: #ff7500;
}
.forum .actions .btn-main:after, .forum .actions .pagination-numbers > li > .prev:after, .forum .actions .pagination-numbers > li > .next:after {
  background: #ff7500;
}
.forum .actions .btn-main:hover, .forum .actions .pagination-numbers > li > .prev:hover, .forum .actions .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.forum .actions .btn-main:hover span, .forum .actions .pagination-numbers > li > .prev:hover span, .forum .actions .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}
.forum .welcome {
  margin-left: -15px;
  margin-right: -15px;
}
.forum .welcome:before, .forum .welcome:after {
  content: " ";
  display: table;
}
.forum .welcome:after {
  clear: both;
}
.forum .welcome .title {
  font-family: "gothammedium";
  font-size: 24px;
  margin: 0 0 22px;
  font-weight: bold;
}
.forum .welcome .text {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .forum .welcome .text {
    float: left;
    width: 33.33333%;
  }
}
@media (max-width: 991px) {
  .forum .welcome .text {
    margin-bottom: 22px;
  }
}
.forum .welcome .text .in {
  background-color: #fff;
  padding: 15px;
  font-family: "gothambold";
  -webkit-transition: color 250ms ease-in;
  transition: color 250ms ease-in;
}
.forum .welcome .text .in a:hover {
  color: #ff7500;
}
.forum .welcome .youtube {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  /* elastic */
}
@media (min-width: 992px) {
  .forum .welcome .youtube {
    float: left;
    width: 66.66667%;
  }
}
.forum .welcome .youtube .video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.forum .welcome .youtube .video iframe, .forum .welcome .youtube .video object, .forum .welcome .youtube .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.forum .questions {
  padding-bottom: 22px;
  margin-left: -15px;
  margin-right: -15px;
}
.forum .questions:before, .forum .questions:after {
  content: " ";
  display: table;
}
.forum .questions:after {
  clear: both;
}
.forum .questions .question {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 15px 22px;
}
@media (min-width: 768px) {
  .forum .questions .question {
    float: left;
    width: 33.33333%;
  }
}
.forum .questions .question:nth-child(3n+1) {
  clear: left;
}
.forum .questions .question .in {
  padding: 15px;
  background: #fff;
}
.forum .questions .question .title {
  font-family: "gothammedium";
  font-size: 24px;
  margin: 0 0 22px;
  -webkit-transition: color 250ms ease-in;
  transition: color 250ms ease-in;
}
.forum .questions .question .title a:hover {
  color: #ff7500;
}
.forum .questions .question .foot {
  margin-top: 22px;
  line-height: 32px;
}
.forum .questions .question .foot:before, .forum .questions .question .foot:after {
  content: " ";
  display: table;
}
.forum .questions .question .foot:after {
  clear: both;
}
.forum .questions .question .foot .comments-link {
  display: inline-block;
  font-size: 12px;
  line-height: 32px;
  font-weight: bold;
}
.forum .questions .question .foot .comments-link i {
  background: url(images/icon/komentarz2.png);
  background-image: url(images/svg/komentarz2.svg), none;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.forum .questions .question .foot .btn-main, .forum .questions .question .foot .pagination-numbers > li > .prev, .forum .questions .question .foot .pagination-numbers > li > .next {
  border: 2px solid #ff7500 !important;
  color: #ff7500;
  float: right;
  padding: 1px 6px 3px;
  margin: 0;
}
.forum .questions .question .foot .btn-main span, .forum .questions .question .foot .pagination-numbers > li > .prev span, .forum .questions .question .foot .pagination-numbers > li > .next span {
  color: #ff7500;
}
.forum .questions .question .foot .btn-main:after, .forum .questions .question .foot .pagination-numbers > li > .prev:after, .forum .questions .question .foot .pagination-numbers > li > .next:after {
  background: #ff7500;
}
.forum .questions .question .foot .btn-main:hover, .forum .questions .question .foot .pagination-numbers > li > .prev:hover, .forum .questions .question .foot .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.forum .questions .question .foot .btn-main:hover span, .forum .questions .question .foot .pagination-numbers > li > .prev:hover span, .forum .questions .question .foot .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}

/* ===== DRONE ===== */
.intro-drone {
  background-attachment: fixed;
}
.intro-drone h3 {
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 28px;
}
@media (max-width: 767px) {
  .intro-drone h3 {
    font-size: 20px;
  }
}
.intro-drone .drones-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.intro-drone .drones-list li {
  padding: 0;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: left;
}
@media (min-width: 768px) {
  .intro-drone .drones-list li {
    float: left;
    width: 50%;
  }
}
.intro-drone .drones-list a {
  display: inline-block;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-size: 14px;
  padding: 5px 10px;
  line-height: 1.25;
  color: #fff;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}
.intro-drone .drones-list a:hover {
  border-color: #fff;
}

.drone-categories {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 3px solid #fff;
}
.drone-categories:after, .drone-categories:before {
  content: ' ';
  position: absolute;
  display: block;
  width: 3px;
  background-color: #fff;
  top: 14px;
  bottom: 0;
}
.drone-categories:before {
  left: 0;
}
.drone-categories:after {
  right: 0;
}
.drone-categories h3 {
  position: relative;
  margin-top: 0;
}
.drone-categories h3 span {
  position: relative;
}
.drone-categories h3 span:after, .drone-categories h3 span:before {
  content: ' ';
  position: absolute;
  display: block;
  height: 3px;
  background-color: #fff;
  width: 400px;
  top: 14px;
}
.drone-categories h3 span:before {
  right: 105%;
}
.drone-categories h3 span:after {
  left: 105%;
}
.drone-categories .cats {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  line-height: 1.35;
}
.drone-categories .cats li {
  padding: 0 10px;
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
}
.drone-categories .cats li.active a {
  color: #ff7500;
}
.drone-categories .cats li a:hover {
  color: #ff7500;
}

.drone-videos {
  margin-left: -15px;
  margin-right: -15px;
  list-style: none;
  padding: 0 0 1px;
  margin-top: 60px;
}
.drone-videos:before, .drone-videos:after {
  content: " ";
  display: table;
}
.drone-videos:after {
  clear: both;
}
.drone-videos li {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  height: 180px;
}
@media (min-width: 768px) {
  .drone-videos li {
    float: left;
    width: 33.33333%;
  }
}
.drone-videos li figure {
  margin: 15px 0;
  height: 150px;
  display: block;
  position: relative;
  overflow: hidden;
}
.drone-videos li figure .min, .drone-videos li figure .flv {
  display: block;
  max-width: 100%;
  height: auto;
}
.drone-videos li figure .min {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  opacity: 1;
  filter: alpha(opacity=100);
}
.drone-videos li figure a:hover img {
  opacity: 0;
  filter: alpha(opacity=0);
}
.drone-videos li figure .flv {
  position: absolute;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-box-shadow: inset #000 0 0 1px;
  box-shadow: inset #000 0 0 1px;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.drone-videos li figure figcaption {
  position: absolute;
  bottom: 0;
  left: 1px;
  right: 1px;
  display: block;
  z-index: 3;
  text-align: left;
  padding: 5px 15px;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

/* ===== ERROR ===== */
.page-error {
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding-left: 75px;
  text-align: center;
  color: #fff;
}
.page-error h1 {
  font-size: 40px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 22px;
}
.page-error .lead {
  font-family: "gothambold";
}

/* ===== WACHLARZ ===== */
.wachlarz .intro {
  text-align: center;
  color: #fff;
  border-bottom: none;
  background-image: url(images/wachlarz-1280.jpg);
}
.wachlarz .intro h1 {
  font-size: 90px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 22px;
}
.wachlarz .intro h1 small {
  display: block;
  font-size: 30px;
  color: #fff;
}
.wachlarz .intro .lead {
  font-size: 18px;
  font-family: "gothambold";
  margin-bottom: 22px;
  font-weight: normal !important;
}
.wachlarz .intro .lead p {
  margin-bottom: 0;
}
.wachlarz .intro .elastic {
  width: 620px;
  margin: 0 auto 22px;
  /* elastic
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  
  iframe, object, embed{
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  }
  */
}
.wachlarz .intro .details {
  font-size: 24px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.wachlarz .intro .details p {
  margin: 0;
}
.wachlarz .intro .details .day {
  font-size: 24px;
  font-family:'gothammedium';
	font-weight:400;
}
.wachlarz .intro .details .time {
  font-size: 24px;
  font-family:'gothammedium';
	font-weight:400;
}
.wachlarz .intro .details .place {
  font-size: 24px;
  font-family:'gothammedium';
	font-weight:400;
}
.wachlarz .intro .more {
  margin-bottom: 0;
}
.wachlarz .intro .btn-main, .wachlarz .intro .pagination-numbers > li > .prev, .wachlarz .intro .pagination-numbers > li > .next {
  font-size: 30px;
}
.wachlarz .news-title, .wachlarz .tab-title, .wachlarz .person h3 {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 22px;
}
.wachlarz .tab-title {
  text-transform: uppercase;
}
.wachlarz .wachlarz-nav {
  text-align: center;
}
.wachlarz .wachlarz-nav .container {
	margin:0 70px;
}

@media all and (max-width:1024px) {
	.wachlarz .wachlarz-nav .container {
		margin:0px;
	}
}

.wachlarz .wachlarz-nav .navigation {
  width: 100%;
	height: 300px;
	overflow:hidden;
  list-style: none;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.wachlarz .wachlarz-nav .navigation, .wachlarz .wachlarz-nav .navigation li, .wachlarz .wachlarz-nav .navigation a {
  height:270px !important;
	display:block;
}
.wachlarz .wachlarz-nav .navigation li {
  height:270px;
	width:calc(25% - 10px);
	background:#ff7500;
	margin:0 5px;
	display:block;
	float:left;
}
.wachlarz .wachlarz-nav .navigation li.active a {
  background-color: #202020;
}
.wachlarz .wachlarz-nav .navigation a {
  color: #fff;
  display: block;
  font-weight: bold;
}
.wachlarz .wachlarz-nav .navigation a:hover {
  background-color: #202020;
}
.wachlarz .wachlarz-news {
  padding-bottom: 11px;
  margin-bottom: 22px;
}
.wachlarz .wachlarz-news .item {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .wachlarz .wachlarz-news .item {
    float: left;
    width: 50%;
  }
}
.wachlarz .wachlarz-news figure {
  overflow: hidden;
	height:150px;
}
.wachlarz .wachlarz-news figure img {
  max-width: 100%;
  height: auto;
}
.wachlarz .wachlarz-news .title {
  font-size: 24px;
}
.wachlarz .wachlarz-news .archive {
  text-align: center;
}
.wachlarz .wachlarz-news .archive .btn-main, .wachlarz .wachlarz-news .archive .pagination-numbers > li > .prev, .wachlarz .wachlarz-news .archive .pagination-numbers > li > .next {
  border: 2px solid #ff7500 !important;
  color: #ff7500;
}
.wachlarz .wachlarz-news .archive .btn-main span, .wachlarz .wachlarz-news .archive .pagination-numbers > li > .prev span, .wachlarz .wachlarz-news .archive .pagination-numbers > li > .next span {
  color: #ff7500;
}
.wachlarz .wachlarz-news .archive .btn-main:after, .wachlarz .wachlarz-news .archive .pagination-numbers > li > .prev:after, .wachlarz .wachlarz-news .archive .pagination-numbers > li > .next:after {
  background: #ff7500;
}
.wachlarz .wachlarz-news .archive .btn-main:hover, .wachlarz .wachlarz-news .archive .pagination-numbers > li > .prev:hover, .wachlarz .wachlarz-news .archive .pagination-numbers > li > .next:hover {
  color: #fff !important;
}
.wachlarz .wachlarz-news .archive .btn-main:hover span, .wachlarz .wachlarz-news .archive .pagination-numbers > li > .prev:hover span, .wachlarz .wachlarz-news .archive .pagination-numbers > li > .next:hover span {
  color: #fff !important;
}
.wachlarz .wachlarz-about .speakers {
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 44px 70px;
  text-align: center;
}

@media all and (max-width:800px) {
	.wachlarz .wachlarz-about .speakers {
		margin:20px 0;
	}
}


.wachlarz .wachlarz-about .speakers li {
  float: left;
  width: 12.5%;
  padding: 0 10px;
  margin-bottom: 22px;
	height:200px;
}
.wachlarz .wachlarz-about .speakers li .name {
  font-weight: bold;
  font-size: 13px;
}
.wachlarz .wachlarz-about .speakers figure {
  width: 105px;
  height: 105px;
  background-color: #ddd;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
}
.wachlarz .wachlarz-about .speakers figure img {
  display: block;
  max-width: 100%;
  height: auto;
}
.wachlarz .wachlarz-about .sponsors {
  margin: 44px 0;
}
.wachlarz .wachlarz-about .sponsors .col {
  position: relative;
  float: left;
  width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: left;
}
.wachlarz .tab-content {
  padding-bottom: 11px;
  margin-bottom: 22px;
}
.wachlarz .tab-content .text, .wachlarz .tab-content .item {
  font-size: 16px;
  font-family: "gothammedium";
}
.wachlarz .tab-content .text div {
  margin-left:195px;
	margin-right:195px;
}

@media all and (max-width:1024px) {
	.wachlarz .tab-content .text div {
		margin-left:0;
		margin-right:0;
	}
}
.wachlarz .tab-content .text figure, .wachlarz .tab-content .item figure {
  margin-bottom: 22px;
}
.wachlarz .tab-content .text figure img, .wachlarz .tab-content .item figure img {
  width: 100%;
  height: auto;
}
.wachlarz .tab-pane {
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  opacity: 0;
  filter: alpha(opacity=0);
  height: 0;
  overflow: hidden;
}
.wachlarz .tab-pane.active {
  opacity: 1;
  filter: alpha(opacity=100);
  height: auto;
  overflow: visible;
}
.wachlarz .program {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wachlarz .program li {
  padding-left: 25%;
  position: relative;
  margin-bottom: 22px;
}
.wachlarz .program li time {
  font-size: 36px;
  color: #ff7500;
  text-align: right;
  width: 25%;
  padding-right: 20px;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}
.wachlarz .program li h3 {
  font-size: 24px;
  color: #202020;
  padding-top: 6px;
  margin-bottom: 22px;
  font-family: "gothammedium";
}
.wachlarz .gmap-embed {
  background-color: #ddd;
  height: 200px;
  width: 100%;
  margin: 22px 0;
}
.wachlarz .person {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0 50px;
  text-align: center;
  margin-bottom: 33px;
}
@media (min-width: 768px) {
  .wachlarz .person {
    float: left;
    width: 50%;
  }
}
.wachlarz .person figure {
  width: 180px;
  height: 180px;
  background-color: #ddd;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 44px;
}
.wachlarz .person figure img {
  display: block;
  max-width: 100%;
  height: auto;
}

article .body p,
article .body h2,
article .body h3,
article .body h4,
article .body h5,
article .body ul,
article .body ol {
	margin-left:60px;
	margin-right:60px;
}

@media all and (max-width:991px) {
	article .body p,
	article .body h2,
	article .body h3,
	article .body h4,
	article .body h5,
	article .body ul,
	article .body ol {
		margin-left:25px;
		margin-right:25px;
	}
}

article .body p.wp-caption-text {
	margin-left:0;
	margin-right:0;
}


article .body h2,
article .body h3 {
	font-size:30px;
	font-family:'gothammedium', sans-serif;
	font-weight:700;
}
