/*
Author: ADM Interactive
Author URI: http://www.adm.ee
Description: BEREC
*/

/* =Reset default browser CSS.
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    font-weight: normal;
}
:focus {
    outline: 0;
}
ol, ul {
    list-style: none;
}
table {
    border-collapse: separate;
    border-spacing: 0;
}
caption, th, td {
    font-weight: normal;
    text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
}
blockquote, q {
    quotes: "" "";
}
a img {
    border: 0;
	position: relative;
    bottom: 10px;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
html * {
    outline: none;
}

/* = Page
----------------------------------------------- */
html {
	background: #ffffff;
}
html * {
	outline: none;

}
body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #111;
    line-height: 1.47;
}
a {
    color: #21409a;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
input, button, textarea {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.clr {
    clear: both;
}
.error {
    color: red;
}
.success {
    color: green;
}

.container {
    width: 960px;
    margin: 0 auto;
}

/* = Icons
----------------------------------------------- */
@font-face {
    font-family: 'icomoon';
    src:url('../fonts/icomoon.eot?4creb7');
    src:url('../fonts/icomoon.eot?#iefix4creb7') format('embedded-opentype'),
        url('../fonts/icomoon.woff?4creb7') format('woff'),
        url('../fonts/icomoon.ttf?4creb7') format('truetype'),
        url('../fonts/icomoon.svg?4creb7#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}
.doc-nav ul .hitarea:before, 
.file-list a:before, 
[class^="icon-"], 
[class*=" icon-"] {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-file-o:before {
    content: "\f016";
}
.icon-info-circle:before {
    content: "\f05a";
}
.icon-plus-square:before {
    content: "\f0fe";
}
.icon-minus-square:before {
    content: "\f146";
}
.icon-file-pdf-o:before {
    content: "\f1c1";
}
.icon-file-word-o:before {
    content: "\f1c2";
}
.icon-file-excel-o:before {
    content: "\f1c3";
}
.icon-file-powerpoint-o:before {
    content: "\f1c4";
}
.icon-file-photo-o:before {
    content: "\f1c5";
}

/* = Button & links
----------------------------------------------- */
.link-more {
    line-height: 1;
}
.link-more a {
    display: inline-block;
    color: #8e235a;
    position: relative;
    top: -5px;
}
.link-more a:after {
    content: "\00BB";
    display: inline-block;
    margin-left: 6px;
    font-size: 26px;
    position: relative;
    top: 2px;
}

/* = Tooltip
----------------------------------------------- */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-size: 12px;
  line-height: 1.4;
  visibility: visible;
  filter: alpha(opacity=0);
  opacity: 0;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 300px;
  padding: 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  background-color: #000;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  right: 5px;
  bottom: 0;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* = Header
----------------------------------------------- */
.header {
    overflow: hidden;
    height: 100px;
    /*background: url('../img/header-bg.jpg') repeat-x 50% 0;*/
	background-color: #21409A;
}

/* Logo */
.header .logo {
    float: left;
    margin-top: 20px;
}

/* Attributes */
.header .attr {
    float: right;
    margin-top: 15px;
    margin-bottom: -12px;
    margin-left: 0px;
    margin-right: 0px;
    font-size: 14px;
    line-height: 1;
}
.header .attr a, 
.header .attr .links, 
.header .attr .links li {
    display: inline-block;
    vertical-align: top;
    line-height: 24px;
	color: #fff;
}
.header .attr .links li {
    float: left;
}
.header .attr .links li a {
    float: left;
}
/*.header .attr .links li:after {
    display: inline-block;
    content: "\00b7";
    margin: 0 18px;
}*/
.header .attr .links {
    float: left;
}
#fontsize {
    vertical-align: top;
    float: left;
}
#fontsize a {
    margin: 0 5px;
    vertical-align: baseline;
}
#fontsize a:first-child {
    margin-left: 0;
    margin-right: 2px;
}
#fontsize a:last-child {
    margin-right: 0;
}
#fontsize .minus {
    font-size: 13px;
}
#fontsize .plus {
    font-size: 15px;
}

/* Search */
.search-box {

}
.search-box input {
    float: left;
    border: 0;
}
.search-box input {
    width: 360px;
    padding: 5px 10px;
}

/* = Main nav
----------------------------------------------- */
.main-nav {
    height: 40px;
    overflow: hidden;
    background-color: #8E235A;
}
.main-nav ul {
    overflow: hidden;
}
.main-nav li {
    float: left;
}
.main-nav a {
    display: block;
    padding: 13px 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    line-height: 1;
}
.main-nav .active a {
    margin-top: 5px;
    padding-top: 8px;
    color: #8e235a;
    background-color: #fff;
}

/* = Sub nav
----------------------------------------------- */
.sub-nav {
    border-bottom: 1px #c6c9d0 solid;
}
.sub-nav .container:before, 
.sub-nav .container:after {
    clear: both;
    display: table;
    content: " ";
}
.sub-nav li {
    float: left;
}
.sub-nav a {
    display: block;
    padding: 10px;
    font-size: 14px;
    position: relative;
}
.sub-nav .active a {
    color: #8e235a;
}
.sub-nav .active a:before {
    content: "";
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #c6c9d0;
    position: absolute;
    bottom: -8px;
    left: 50%;
    margin-left: -8px;
}
.sub-nav .active a:after {
    content: "";
    width: 0; 
    height: 0; 
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #fff;
    position: absolute;
    bottom: -7px;
    left: 50%;
    margin-left: -7px;
}

/* = Content
----------------------------------------------- */
/* Block */
.block {
    overflow: hidden;
}
.block > .title {
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 3px #111 solid;
}

.video_title {
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 3px #111 solid;
}
.block .bottom {
    overflow: hidden;
}
.block .bottom .prev, 
.block .bottom .next, 
.block .bottom .count {
    float: left;
    margin-top: 5px;
}
.block .bottom .prev, 
.block .bottom .next {
    width: 14px;
    height: 15px;
    overflow: hidden;
    text-indent: -9999px;
    border: 0;
    cursor: pointer;
}
.block .bottom .prev {
    background: url('../img/icon-next-prev.png') no-repeat 0 0;
} 
.block .bottom .next {
    background: url('../img/icon-next-prev.png') no-repeat 0 -15px;
}
.block .bottom .count {
    margin: 5px 7px 0 7px;
    font-size: 14px;
    line-height: 15px;
}

/* Post list */
.block .post-list .item {
    overflow: hidden;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px #111 solid;
}
.block .post-list .title {
    font-size: 16px;
}
.block .post-list .date {
    font-size: 14px;
    color: #666;
}

/* = Front page
----------------------------------------------- */
.front-page {
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}
.front-page .col-left {
    float: left;
    width: 530px;
}
.front-page .col-right {
    float: right;
    width: 390px;
}
.front-page .col-right .block:first-child {
    margin-bottom: 30px;
}
.front-page .col-right .link-more {
    float: right;
}
.first-news-photo {
    float: left;
    width: 160px;
    margin-right: 10px;
}
.first-news-photo img {
    width: 100%;
    height: auto;
}
.first-news-photo + h3, 
.first-news-photo + p {
    overflow: hidden;
}

/* Slider */
.slick-slider { position: relative; display: block; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; }

.slick-list { position: relative; overflow: hidden; display: block; margin: 0; padding: 0; }
.slick-list:focus { outline: none; }
.slick-loading .slick-list { background: #fff url("/images/ajax-loader.gif") center center no-repeat; }
.slick-list.dragging { cursor: pointer; cursor: hand; }

.slick-slider .slick-track { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }

.slick-track { position: relative; left: 0; top: 0; display: block; }
.slick-track:before, .slick-track:after { content: ""; display: table; }
.slick-track:after { clear: both; }
.slick-loading .slick-track { visibility: hidden; }

.slick-slide { float: left; height: 100%; min-height: 1px; display: none; }
[dir="rtl"] .slick-slide { float: right; }
.slick-slide img { display: block; }
.slick-slide.slick-loading img { display: none; }
.slick-slide.dragging img { pointer-events: none; }
.slick-initialized .slick-slide { display: block; }
.slick-loading .slick-slide { visibility: hidden; }
.slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; }

/* = Article
----------------------------------------------- */
.article {
    overflow: hidden;
    padding: 35px 0 70px 0;
}
.article-content {
    overflow: hidden;
}
.article h1, 
.article h2, 
.article h3, 
.article h4 {
    font-weight: 700;
}
.article h1 {
    margin-bottom: 25px;
    padding-bottom: 5px;
    font-size: 24px;
    border-bottom: 3px #111 solid;
}
.article h2 {
    margin: 35px 0 20px 0;
    font-size: 20px;
}
.article h3, 
.article h4 {
    margin-bottom: 15px;
    font-size: 16px;
}
.article .meta,
.article table, 
.article ul, 
.article ol, 
.article p {
    margin-bottom: 20px;
}
.article .meta,
.article table, 
.article ul, 
.article ol {
    margin-bottom: 30px;
}
.article ul, 
.article ol {
    margin-left: 40px;
}
.article ul {
    list-style: disc;
}
.article ol {
    list-style: decimal;
}
.article a {
    text-decoration: underline;
}
.article a:hover {
    text-decoration: none;
}
.article .meta .title {
    margin: 0 0 5px 0;
    font-size: 20px;
    color: #8e235a;
}
.article .meta .date {
    margin: 0;
}

/* Table list */
.article table, 
.table-list {
    width: 100%;
}
.article table thead th,
.table-list thead th {
    padding: 12px 20px;
    font-weight: 700;
    background-color: #d4d7de;
    border-bottom: 2px #c6c9d0 solid;
}
.article table tbody td, 
.table-list tbody td {
    padding: 12px 20px;
    border-bottom: 1px #c6c9d0 solid;
}
.article table tbody tr:last-child td, 
.table-list tbody tr:last-child td {
    border-bottom-width: 2px;
}
.table-list .date span {
    white-space: nowrap;
}
.article .contact-block td {
    padding: 20px;
    vertical-align: top;
    background-color: #f1f3f5;
}
.article .contact-block tr td:first-child {
    width: 1%;
    padding-right: 0;
}
.article .contact-block img {
    border: 1px #fff solid;
}

/* Site map */
.article .sitemap, 
.article .sitemap ul {
    margin-bottom: 0;
}
.article .sitemap ul {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* News list */
.article .post-list {
    margin: 0;
    list-style: none;
}
.article .post-list .item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px #111 solid;
}
.article .post-list .title {
    margin: 0 0 5px 0;
}
.article .post-list .date {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
}
.article .post-list a {
    text-decoration: none;
}
.article .post-list a:hover {
    text-decoration: underline;
}

/* = Sidebar
----------------------------------------------- */
.sidebar {
    float: right;
    width: 260px;
    margin-left: 40px;
}

/* File list */
.sidebar .file-list, 
.sidebar p {
    margin-bottom: 40px;
}
.sidebar .file-list {
    padding-left: 18px;
    border-left: 1px #8e235a solid;
}
.sidebar .file-list > .title, 
.sidebar .file-list > h2 {
    margin: 0 0 15px 0;
    padding: 5px 0 0 0;
    border: 0;
    font-size: 20px;
}
.file-list ul, 
.sidebar .file-list ul {
    margin: 0;
    list-style: none;
}
.sidebar .file-list li, 
.file-list li {
    margin: 12px 0;
    position: relative;
}
.sidebar .file-list a, 
.file-list a {
    display: block;
    padding-left: 18px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar .file-list .file-size, 
.file-list .file-size {
    display: block;
    padding-left: 18px;
    font-size: 14px;
    color: #666;
}
.sidebar .file-list a:before,
.file-list a:before {
    font-size: 14px;
    color: #8e235a;
    position: absolute;
    left: 0;
    top: 5px;
}
.file-list a[href$=".txt"]:before, 
.file-list a[href$=".zip"]:before, 
.file-list a[href$=".7z"]:before, 
.file-list a[href$=".rar"]:before {
    content: "\f016";
}
.file-list a[href$=".pdf"]:before {
    content: "\f1c1";
}
.file-list a[href$=".doc"]:before, 
.file-list a[href$=".docx"]:before {
    content: "\f1c2";
}
.file-list a[href$=".png"]:before, 
.file-list a[href$=".jpg"]:before, 
.file-list a[href$=".jpeg"]:before, 
.file-list a[href$=".gif"]:before, 
.file-list a[href$=".bmp"]:before {
    content: "\f1c5";
}
 .file-list a[href$=".ppt"]:before, 
 .file-list a[href$=".pptx"]:before {
    content: "\f1c4";
}
.file-list a[href$=".xls"]:before, 
.file-list a[href$=".xlsx"]:before {
    content: "\f1c3";
}

/* = Events
----------------------------------------------- */
.event .article-content > table > tbody > tr > td {
    display: block;
    padding: 0;
    width: 100% !important;
}

/* = Document nav
----------------------------------------------- */
.doc-nav-filter {
    overflow: hidden;
    margin-bottom: 15px;
}
.doc-nav-filter a {
    float: left;
    margin-right: 20px;
    text-decoration: none;
}
.doc-nav-filter span {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
}
.doc-nav-filter a:before {
    margin-right: 5px;
    font-size: 14px;
}
.article .doc-nav {
    overflow: hidden;
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}
.doc-nav a {
    display: block;
}
.doc-nav ul {
    margin: 0;
    list-style: none;
}
.doc-nav li {
    font-size: 14px;
}
.doc-nav > li {
    float: left;
    width: 285px;
    margin-right: 20px;
    padding: 10px 0 20px 20px;
    border-left: 1px #8e235a solid;
    border-bottom: 1px #c6c9d0 solid;
}
.doc-nav > li:nth-of-type(3n) {
    margin-right: 0px;
}
.doc-nav > li:nth-of-type(3n+1) {
    clear: left;
}
.doc-nav > li:last-child {
    margin-right: 0;
}
.doc-nav > li > a {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #111;
    font-weight: 700;
    text-decoration: none;
}
.doc-nav > li > ul {
    display: block !important;
}
.doc-nav ul li {
    margin: 5px 0;
    padding-left: 18px;
    position: relative;
    background: url('../img/dot.png') no-repeat 3px 8px;
}
.doc-nav ul li.active {
    background: url('../img/dot-active.png') no-repeat 3px 8px;
}
.doc-nav ul li.active > a {
    color: #8e235a;
    text-decoration: none;
}
.doc-nav ul li.expandable, 
.doc-nav ul li.collapsable {
    background: none;
}
.doc-nav ul .hitarea:before {
    font-size: 12px;
    color: #21409a;
    position: absolute;
    left: 0;
    top: 4px;
    cursor: pointer;
}
.doc-nav ul .expandable-hitarea:before {
    content: "\f0fe";
}
.doc-nav ul .collapsable-hitarea:before {
    content: "\f146";
}

/* = Form layout
----------------------------------------------- */
.form-layout h2 {
    margin-bottom: 0;
    padding-bottom: 5px;
    border-bottom: 2px #c6c9d0 solid;
}
.form-layout h3 {
    margin: 20px 0 0 0;
    padding-bottom: 5px;
    border-bottom: 1px #c6c9d0 solid;
}
.form-layout table tbody td {
    padding: 20px;
    vertical-align: top;
}
.form-layout table td.no-border {
    border: 0;
}
.form-layout .label {
    width: 170px;
}
.form-layout .label label {
    font-weight: 700;
}
.form-layout .input input, 
.form-layout .input select, 
.form-layout .input textarea {
    float: left;
    width: 438px;
    padding: 6px 10px;
    border: 1px #afb1b8 solid;
    background-color: #f5f5f5;
    box-shadow: inset 0 1px 0 #e3e3e3;
}
.form-layout .input select {
    width: 460px;
}
.form-layout .input select.smallselect {
    width: 220px;
    margin-right:20px;
}
.form-layout .input textarea {
    height: 110px;
}
.form-layout .input #date_from, 
.form-layout .input #date_to {
    width: 198px;
}
.form-layout .input .desc {
    clear: both;
    margin: 0;
    padding: 5px 0;
    font-size: 14px;
    color: #666;
}
.form-layout .info {
    font-size: 14px;
    color: #666;
}
.form-layout .tip {
    float: left;
    margin: 4px 0 0 15px;
    font-size: 18px;
    color: #21409a;
    cursor: pointer;
}
.form-layout .buttons td {
    border-bottom: 0;
    border-top: 1px #c6c9d0 solid;
}
.form-layout .buttons button {
    float: left;
    margin-right: 20px;
    padding: 9px 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: 0;
    background-color: #21409a;
    cursor: pointer;
}
.form-layout .buttons button:hover, 
.form-layout .buttons button:focus {
    background-color: #3f65d2;
}
.form-layout .buttons button.cancel {
    color: #fff;
    background-color: #afb1b8;
}
.form-layout .msg-error, 
.form-layout .errorMessage {
    clear: both;
    display: block;
    padding-top: 5px;
    font-size: 14px;
    color: #ff0000;
}

/* Type 2 */
.form-layout.type-2 .buttons td {
    border: 0;
}
.form-layout.type-2 .input input, 
.form-layout.type-2 .input textarea {
    width: 518px;
}
.form-layout.type-2 .input.wide input, 
.form-layout.type-2 .input.wide textarea {
    width: 738px;
}
.form-layout.type-2 .input.wide textarea {
    height: 230px;
}

.article .gsc-control-cse {
    padding: 0;
    border: 0;
}
.article .gsc-control-cse table {
    margin-bottom: 0;
}
.article .gsc-control-cse td {
    padding: 0;
    border: 0;
}
.article .gsc-results {
    width: 100%;
    padding: 10px 0;
}

/* = Pagination
----------------------------------------------- */
.pagination, 
.article .gsc-results .gsc-cursor {
    display: block;
    margin-top: 40px;
    overflow: hidden;
}
.article .gsc-results .gsc-cursor {
    margin: 30px 0;
}
.pagination a, 
.article .gsc-results .gsc-cursor-box .gsc-cursor-page {
    float: left;
    margin-right: 2px;
    padding: 8px 12px;
    color: #111;
    text-decoration: none;
    line-height: 1;
    background-color: #d4d7de;
}
.pagination a:hover, 
.pagination .active, 
.article .gsc-results .gsc-cursor-box .gsc-cursor-page:hover, 
.article .gsc-results .gsc-cursor-box .gsc-cursor-current-page {
    color: #fff;
    background-color: #21409a;
}
.pagination .prev, 
.pagination .next, 
.pagination .prev:hover, 
.pagination .next:hover {
    color: #111;
    background-color: transparent;
}

/* = Page bottom
----------------------------------------------- */
.page-bottom {
    padding: 40px 0;
    background-color: #f1f3f5;
}
.page-bottom .row {
    overflow: hidden;
    margin-left: -10px;
    margin-right: -10px;
}
.page-bottom .block {
    float: left;
    width: 310px;
    padding: 0 8px;
}
.page-bottom .block > .title {
    font-size: 20px;
}
.page-bottom ul {
    margin-bottom: 10px;
    border-bottom: 1px #111 solid;
}
.page-bottom li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}
.page-bottom li:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background-color: #8e235a;
    border-radius: 50%;
    position: absolute;
    top: 9px;
    left: 8px;
}

/* = Footer
----------------------------------------------- */
.footer {
    overflow: hidden;
    padding: 25px 0 40px;
    font-size: 14px;
    color: #fff;
    background-color: #8E235A;
}
.footer a {
    color: #fff;
}
.footer .links {
    overflow: hidden;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px #71747d solid;
}
.footer .links li {
    float: left;
    margin: 0 3px;
}
.footer .links li:after {
    content: "";
    margin: 0 3px;
}
.footer .links li:last-child:after {
    display: none;
}
.footer .copy {
    float: left;
}
.footer .subscribe {
    float: right;
}
.footer .subscribe label, 
.footer .subscribe input, 
.footer .subscribe button {
    float: left;
    border: 0;
}
.footer .subscribe label {
    margin-right: 10px;
    line-height: 30px;
}
.footer .subscribe input {
    padding: 5px 10px;
}
.footer .subscribe button {
    padding: 5px 12px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #21409A;
    cursor: pointer;
}
.footer .subscribe button:hover {
    background-color: #21409a;
	color: #8E235A;
}
.cf:before, .cf:after {
  content: " ";
  display: table;
}
.cf:after {
  clear: both;
}
.print {
    background-image: url("images/icon-print.png");
    background-repeat: no-repeat;
    background-position: center center;
    width: 24px;
    height: 24px;
    margin-left: 30px;
}
.print:hover {
    background-image: url("images/icon-print-purple.png");
}
.search-box > div,
.search-box > iframe,
.search-box > span,
.search-box > form {
    float: left !important;
    margin-left: 10px !important;
}
.search-box > form {
    float: right !important;
    clear: right;
}
.head-socials {
    float: left;
}
.social-twitter {
    display: inline-block;
    margin-left: 0px;
    width: 24px;
    height: 24px;
    background-image: url("images/icon-twitter-blue.png");
    background-repeat: no-repeat;
    background-position: center center;
}
.social-twitter:hover {
    background-image: url("images/icon-twitter-purple.png");
}
.social-linkedin {
    display: inline-block;
    margin-left: 4px;
    width: 24px;
    height: 24px;
    background-image: url("images/icon-linkedin-blue.png");
    background-repeat: no-repeat;
    background-position: center top;
}
.social-linkedin:hover {
    background-image: url("images/icon-linkedin-purple.png");
}
.social-youtube {
    display: inline-block;
    margin-left: 4px;
    width: 24px;
    height: 24px;
    background-image: url("images/icon-youtube-blue.png");
    background-repeat: no-repeat;
    background-position: center center;
}
.social-youtube:hover {
    background-image: url("images/icon-youtube-purple.png");
}
.search-box button {
    background-color: #FFFFFF;
    color: #21409A;
    cursor: pointer;
    font-weight: 700;
    padding: 5px 12px;
    text-transform: uppercase;
    border: 0px;
    float: left;
}
/*@-moz-document url-prefix() {
    .search-box button {
        line-height: 18px;
        padding-bottom: 2px;
    }
}*/
.search-box button:hover {
    background-color: #8E235A;
	color: #fff
}
.share-wrapper {
    width: 100%;
}
.share {
    float: right;
}
.share iframe {
    vertical-align: top;
}
.seperator {
    display: inline-block;
    float: left;
    line-height: 24px;
    margin-left: 18px;
    margin-right: 18px;
}
/*.seperator:after {
    content: "·";
    display: inline-block;
    margin: 0 18px;
}*/
.date-style {
    float: left;
}
.filter-style {
    margin-bottom: 30px;
}
.filter-style .left {
    float: left;
    margin-right: 20px;
}
.filter-style ul {
    float: left;
    margin: 0px;
    list-style: none;
}
.filter-style ul li {
    float: left;
    margin-right: 20px;
}
.filter-style ul li a {
    text-decoration: none;
}
.filter-style ul li a:hover {
    text-decoration: underline;
}
.filter-style ul li.active a {
    color: #8e235a;
    font-weight: 700;
    text-decoration: underline;
}

.poll-question {
    margin-bottom: 30px;
}
.poll-question h2 {
    margin-bottom: 10px;
}

.poll-answer {
    margin-bottom: 10px;
}

.poll-answer .bar {
    height: 20px;
}

.vote-box h2 {
    border-bottom: 2px solid #c6c9d0;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.vote-box .poll-answer .text {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
}

.poll-barrage {
    border-left: 2px solid #21409A;
    padding-top: 10px;
    padding-bottom: 10px;
}

.poll-barrage .bar {
    height: 20px;
    margin-bottom: 5px;
}

.poll-barrage .bar:last-child {
    margin-bottom: 0px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 10px;
}
.input-wrapper input {
    position: absolute;
    top: 1px;
    left: 0px;
    margin: 0px;
}
.input-wrapper label {
    display: block;
    padding-left: 20px;
    font-size: 14px;
    line-height: 16px;
}
.default-button-style {
    color: #FFFFFF;
    background-color: #3f65d2;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 12px;
    padding-right: 12px;
    border: 0px;
}
.default-button-style:hover {
    background-color: #21409A;
}
.success_big {
    font-weight: 700;
    font-size: 20px;
    color: #000000;
}
.success_big a {
    font-weight: 700;
    font-size: 20px;
}

.video-wrapper-full {
    margin-top: 20px;
    margin-bottom: 20px;
}

.margin-fix {
    display: block;
}

#print{
    display: none;
}

.cookieinfo{
  position:fixed !important;
  bottom: 0;
  top:unset !important;
}
