@font-face {
    font-family: 'Merriweather';
    src: url('fonts/merriweather/merriweather-regular-webfont.woff') format('woff'),
    url('fonts/merriweather/merriweather-regular-webfont.woff2') format('woff2'),
    url('fonts/merriweather/Merriweather-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Merriweather';
    src: url('fonts/merriweather/merriweather-italic-webfont.woff') format('woff'),
    url('fonts/merriweather/merriweather-italic-webfont.woff2') format('woff2'),
    url('fonts/merriweather/Merriweather-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Merriweather';
    src: url('fonts/merriweather/merriweather-bold-webfont.woff') format('woff'),
    url('fonts/merriweather/merriweather-bold-webfont.woff2') format('woff2'),
    url('fonts/merriweather/Merriweather-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Merriweather';
    src: url('fonts/merriweather/merriweather-boldit-webfont.woff') format('woff'),
    url('fonts/merriweather/merriweather-boldit-webfont.woff2') format('woff2'),
    url('fonts/merriweather/Merriweather-BoldIt.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url("fonts/open-sans-condensed/opensans-condlight-webfont.woff") format("woff"),
    url("fonts/open-sans-condensed/opensans-condlight-webfont.woff2") format("woff"),
    url("fonts/open-sans-condensed/OpenSans-CondLight.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url("fonts/open-sans-condensed/opensans-condbold-webfont.woff") format("woff"),
    url("fonts/open-sans-condensed/opensans-condbold-webfont.woff2") format("woff"),
    url("fonts/open-sans-condensed/OpenSans-CondBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url("fonts/open-sans-condensed/opensans-condlightitalic-webfont.woff") format("woff"),
    url("fonts/open-sans-condensed/opensans-condlightitalic-webfont.woff2") format("woff"),
    url("fonts/open-sans-condensed/OpenSans-CondLightItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Stint Ultra Condensed';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/stint-ultra-condensed/stintultracondensed-regular-webfont.woff') format('woff2'),
    url('fonts/stint-ultra-condensed/stintultracondensed-regular-webfont.woff2') format('woff'),
    url('fonts/stint-ultra-condensed/StintUltraCondensed-Regular.ttf') format('truetype');
}

/* Body and structure
-------------------------------------------------- */
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    font-family: 'Merriweather', serif;
    font-weight: normal;
    background-color: #FFFFFF;
    overflow: hidden;
    zoom: 1; /* IE */
    -moz-transform: scale(1); /* Firefox */
    -moz-transform-origin: 0 0;
    -o-transform: scale(1); /* Opera */
    -o-transform-origin: 0 0;
    -webkit-transform: scale(1); /* Safari And Chrome */
    -webkit-transform-origin: 0 0;
    transform: scale(1); /* Standard Property */
    transform-origin: 0 0; /* Standard Property */
}

h1, h2, h3, h4, h5, h6 {
    /*    color: #111; */
}

a {
    color: #015249;
}

hr.light1 {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.loading {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
}

.loading img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    margin-left: -75px;
    height: 150px;
    margin-top: -75px;
}

#waitSpinner {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    background-color: #FFFFFF;
}

#waitSpinner img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#loadSpinner {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 1em;
    width: 100%;
    height: 4em;
    z-index: 498;
    background-color: rgba(221, 221, 221, 0.85);
}

#loadSpinner img {
    position: absolute;
    height: 100%;
    width: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#pagecontainer {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    font-size: 1em;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #FFFFFF;
}

#content-main {
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    background-color: #EEEEEE;
    overflow: hidden;
}

/* Special grid styles
-------------------------------------------------- */
.l-box {
    padding: 0 5em;
}

.l-boxSmall {
    padding: 0 1em;
}

.l-boxXSmall {
    padding: 0 0.5em;
}

.l-boxSmallm {
    margin: 0 1em;
}

/* iframe
-------------------------------------------------- */
#iframe-popup {
    display: none;
    position: fixed;
    z-index: 50;
    border-radius: 10px;
    border: solid 1px rgba(0, 0, 0, 0.25);
    width: 95%;
    height: 91%;
    left: 1%;
    top: 1%;
    padding: 3.5em 1em 1em 1em;
    background: #F8F8F8 url(../img/spinner.gif) no-repeat center center;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}

.iframe-close {
    position: absolute;
    right: 0.25em;
    top: 0.25em;
    cursor: pointer;
    outline: none;
    opacity: 0.75;
    filter: alpha(opacity=75);
    z-index: 100;
    width: 3em;
    height: 3em;
    max-width: 44px;
    max-height: 44px;
    background-image: url("../img/nav_close_white.png");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

/* panel
-------------------------------------------------- */
.panelLine {
    border: none;
    height: 1px;
    background-color: rgba(0, 53, 104, 0.5);
    margin: 0 0 1em 0;
    width: 100%;
}

.panel {
    float: left;
    margin: 0;
    padding: 0;
    background-color: #EEEEEE;
}

#panel-content {
    position: relative;
    margin: 0;
    padding: 0;
    top: 0;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#panel-content .pure-g {
    font-family: 'Merriweather', serif;
    color: #333333;
    font-size: 1em;
}

#panel-content h2 {
    color: #015249;
    font-size: 2em;
    font-style: italic;
    font-weight: bold;
    text-align: left;
    margin: 0 auto;
}

#panel-content h3 {
    color: #777777;
    font-size: 1.5em;
    font-style: italic;
    text-align: right;
    padding-right: 0.5em;
}

#panel-content p {
    margin: 0;
}

#panel-content img {
    /*   display: block;
       height: auto;
       width: 85%;
       margin: 0 auto 0 auto;
       padding: 1em 1em 0 0;*/
}

#panel-content .col2 {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    -webkit-column-gap: 2em; /* Chrome, Safari, Opera */
    -moz-column-gap: 2em; /* Firefox */
    column-gap: 2em;
}

.panelToolbox {
    float: right;
    margin: 0.75em 1em 0 0;
}

#panel-content ul.tab, #panel-content ul.tab2, #panel-content ul.tab3 {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

#panel-content ul.tab li {
    float: left;
    background-color: #EEEEEE;
    border-right: 1px;
}

#panel-content ul.tab li {
    border-right: 1px solid #EEEEEE;
}

#panel-content ul.tab li:last-child {
    border-right: none;
}

#panel-content ul.tab2 li {
    text-align: center;
}

#panel-content ul.tab3 li {
    text-align: center;
    padding: 1em 0;
}

#panel-content ul.tab li a {
    display: inline-block;
    text-align: center;
    padding: 1em 0.5em;
    text-decoration: none;
}

#panel-content ul.tab2 li a {
    display: inline-block;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 400;
    color: #015249;
    padding: 0.5em 0.5em;
    text-decoration: none;
    outline: none;
}

#panel-content ul.tab li a:hover {
    color: #EEEEEE;
    background-color: #258278;
}

#panel-content ul.tab2 li a:hover {
    color: #258278;
}

#panel-content ul.tab li a.active {
    color: #FFFFFF;
    background-color: #015249;
}

#panel-content ul.tab2 li a.active2 {
    color: #00312C;
    font-weight: bold;
}

#panel-content ul.tab3 li a.active3 {
    font-style: italic;
    font-weight: 700;
}

#panel-content .tabcontent, #panel-content .tabcontent2, #panel-content .tabcontent3 {
    display: none;
    padding-bottom: 1em;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

#panel-content .tabcontent {
    border-top: 1px solid #ccc;
}

#panel-content h4 {
    font-size: 1.25em;
    color: #015249;
    font-weight: 700;
    font-style: italic;
}

/* pagination
-------------------------------------------------- */
.page-navigation a {
    margin: 0 2px;
    display: inline-block;
    padding: 3px 5px;
    color: #ffffff;
    background-color: #70b7ec;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.page-navigation a[data-selected] {
    background-color: #3d9be0;
}

/* buttons
-------------------------------------------------- */
.return-top {
    display: none;
    position: fixed;
    bottom: 15px;
    left: 5px;
    cursor: pointer;
    outline: none;
    opacity: 0.75;
    filter: alpha(opacity=75);
    z-index: 83;
    width: 4em;
    height: 4em;
    max-width: 44px;
    max-height: 44px;
    background-image: url("../img/return_top.png");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.return-top:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

.pure-button-small {
    font-size: 0.8em;
}

/* Footer
-------------------------------------------------- */
#footer {
    background-color: #015249;
    color: #FFFEFD;
    font-size: 0.85em;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.signature {
    text-align: right;
    padding: 1em 1em 1em 0;
}

.signature a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75em;
    font-style: italic;
    color: #ffffff;
    background-color: #015249;
    text-decoration: none;
}

#baseline {
    padding: 1em 0 1em 0;
}

#baseline div {
    text-align: center;
    font-size: 0.75em;
}

#sponsors img {
    display: inline;
    max-width: 15%;
    max-height: 4em;
    padding: 1em 1em;
}

/* PureCSS trick
-------------------------------------------------- */
.button-success {
    background: rgba(61, 119, 1, 1); /* this is a green */
}

.button-xlarge {
    font-size: 125%;
}

.button-large {
    font-size: 110%;
}

.button-green {
    color: white;
    background-color: #015249;
}

/* Misc
-------------------------------------------------- */
.text065 {
    font-size: 0.65em;
}

.text075 {
    font-size: 0.75em;
}

.text085 {
    font-size: 0.85em;
}

.text125 {
    font-size: 1.25em;
}

.text150 {
    font-size: 1.5em;
}

.text200 {
    font-size: 2em;
}

.textBold {
    font-weight: bold;
}

.textItalic {
    font-style: italic;
}

.textU {
    text-decoration: underline;
}

.flexCenterXY {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flexCenterY {
    display: flex;
    align-items: center;
}

.flexCenterX {
    display: flex;
    justify-content: center;
}

.floatLeft {
    float: left;
    margin-right: 1em;
}

.floatRight {
    float: right;
    margin-left: 1em;
}

.padding_leftpanel {
    padding-left: 21%;
}

.padding_l_r {
    padding: 0 2% 0 2%;
}

.padding_l_r_sm {
    padding: 0 0.25em;
}

.paddingTop100 {
    padding-top: 1em;
}

.lineSoftG {
    border-style: solid;
    border-width: 1px;
    border-color: #E5E4E2;
}

.lineSoftG_space5 {
    border-style: solid;
    border-width: 1px;
    border-color: #EEEEEE;
    margin: 0.5em 0;
}

.lineSoftB_space5 {
    border-style: solid;
    border-width: 1px;
    border-color: #999999;
    margin: 0.5em 0;
}

.lineSoftGreen {
    border: 1px solid rgba(89, 173, 165, 0.5);
}

.spacerPanel {
    margin-top: 1em;
}

.spacer45 {
    padding-top: 4.5em;
}

.spacer30 {
    margin-top: 3em;
}

.spacer20 {
    margin-top: 2em;
}

.spacer10 {
    margin-top: 1em;
}

.alignleft {
    float: left;
}

.alignleft2 {
    text-align: left;
}

.alignright {
    float: right;
}

.alignright2 {
    text-align: right;
}

.aligncenter {
    text-align: center;
    margin: 0 auto;
}

/* Clearfix
***********************/
.clear {
    clear: both;
}

.clearfix:after {
    content: " ";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

/* Icons
------------------------- */

/* =============================================================
                         HOME
 ============================================================= */
/* Header
-------------------------------------------------- */
#header {
    /*    background: url("../img/bkg.jpg") no-repeat;*/
    top: 0;
    margin: 0;
    padding: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background-color: #EEEEEE;
}

#headerBkg {
    position: absolute;
    background-image: url(../img/bkg_gradient.svg);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    margin: 0;
    padding: 0;
    left: 0;
}

#headerTicker {
    font-family: 'Stint Ultra Condensed', serif;
    font-size: 1.25em;
    color: #B2EA78;
    text-align: center;
    position: absolute;
    display: table;
    left: 50%;
    top: 0;
    height: 2em;
    padding: 0 0.5em;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background-color: rgba(1, 82, 73, 0.1);
    border-radius: 0 0 0.5em 0.5em;
    -moz-border-radius: 0 0 0.5em 0.5em;
    -webkit-border-radius: 0 0 0.5em 0.5em;
}

#ticker1 {
    text-transform: uppercase;
    display: table-cell;
    vertical-align: middle;
}

.blinkTicker {
    color: red;
    font-size: 1.5em;
    font-weight: 700;
}

.blinkTicker2 {
    color: #D27B3B;
    font-size: 1.5em;
    font-weight: 700;
}

#ticker2 {
    font-size: 0.85em;
    text-transform: lowercase;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.img_logo_big {
    position: absolute;
    z-index: 1;
}

.img_logo_big img {
    position: absolute;
    width: 100%;
    height: 100%;
}

#wcamHeader {
    position: absolute;
    margin: 0;
    overflow: hidden;
    cursor: pointer;
    border-radius: 1em 1em 1em 1em;
    -moz-border-radius: 1em 1em 1em 1em;
    -webkit-border-radius: 1em 1em 1em 1em;
    border: 1px solid rgba(85, 85, 85, 0.15);
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
    z-index: 5;
}

#wcamHeader img {
    max-width: 100%;
    max-height: 100%;
    margin: 0;
}

#imheader {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 50%;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

#imheader .imh {
    display: none;
    position: absolute;
    margin: 0;
    padding: 0;
    left: 0;
    top: -1px;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    z-index: 1;
}

#imheader .imh:first-child {
    display: block;
}

#shareHeader {
    z-index: 5;
    position: absolute;
    width: 100%;
    bottom: -4em;
    margin: 0;
    text-align: right;
    font-size: 0.85em;
}

#sponsorsDiv {
    z-index: 5;
    position: absolute;
    left: 1%;
    bottom: 0.25em;
    margin: 0;
    font-size: 0.85em;
}

#sponsorsDiv table {
}

#sponsorsDiv td {
    vertical-align: middle;
    text-align: center;
    padding-right: 0.25em;
}

#sponsorsDiv a {
}

#sponsorsDiv img {
    width: auto;
    height: 3em;
}

/* Header bkgPhone
-------------------------------------------------- */
#bkgPhone {
    z-index: 5;
    position: absolute;
    border-radius: 1.5em 1.5em 1.5em 1.5em;
    -moz-border-radius: 1.5em 1.5em 1.5em 1.5em;
    -webkit-border-radius: 1.5em 1.5em 1.5em 1.5em;
    border: 0 solid #333333;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
}

#bkgPhone .bkgPart1 {
    position: relative;
    width: 100%;
    height: 30%;
    top: 0;
    left: 0;
    overflow: hidden;
}

#bkgPhone .bkgPart2 {
    position: relative;
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    overflow: hidden;
}

#bkgPhone .bkgPart3 {
    position: relative;
    width: 100%;
    height: 20%;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: rgba(119, 193, 254, 0.5);
    border-radius: 0 0 1.5em 1.5em;
    -moz-border-radius: 0 0 1.5em 1.5em;
    -webkit-border-radius: 0 0 1.5em 1.5em;
    border: 0 solid #FFFFFF;
    border-bottom: 1px solid #E5E4E2;
}

#bkgPhone .bkgPart1 .wcamHeader {
    width: 100%;
    height: 100%;
    padding: 0;
    cursor: pointer;
    border-bottom: 1px solid #E5E4E2;
}

#wcam {
    width: 100%;
    height: 100%;
    border-radius: 1.5em 1.5em 0 0;
    -moz-border-radius: 1.5em 1.5em 0 0;
    -webkit-border-radius: 1.5em 1.5em 0 0;
    border: 0 solid #FFFFFF;
}

#labelWcam {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-family: "Open Sans Condensed", sans-serif;
    color: #FFFFFF;
}

#bkgPhone .newsHeader {
    width: 96%;
    height: 92%;
    margin: 5% 2% 2% 2%;
    overflow: hidden;
    cursor: pointer;
}

#newsHeader, #newsHeader li {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    overflow: hidden;
}

#newsHeader .image-content {
    width: 100%;
    text-align: center;
}

#newsHeader .image-content img {
    margin: 0;
    padding: 0;
    display: inline;
    max-height: 50%;
    max-width: 50%;
}

#newsHeader .text-content {
    font-size: 0.85em;
    max-height: 50%;
    overflow: hidden;
}

#newsHeader .text-content p {
    margin: 0;
}

#newsHeader .text-content p:first-child {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 1.5em;
    margin: 0;
    font-weight: bold;
    white-space: nowrap;
}

#newsHeader .text-content p:nth-child(2) {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 0.5em;
    text-align: right;
}

#bkgPhone .meteoHeader {
    font-family: "Open Sans Condensed", sans-serif !important;
    width: 96%;
    height: 90%;
    margin: 2%;
    overflow: hidden;
    cursor: pointer;
}

#bkgPhone .meteoHeader table {
    font-size: 1em;
    padding: 0;
    margin: 0 auto;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    height: 98%;
    max-width: 100%;
    max-height: 98%;
    overflow: hidden;
}

#bkgPhone .meteoHeader p {
    margin-block-start: 0;
    margin-block-end: 0;
}

#bkgPhone .meteoHeader td {
    margin: 0;
    padding: 0;
}

@media (orientation: landscape) {
    .meteoHeader > div {
        height: 100% !important;
    }

    .weather-icon {
        height: 8em;
    }

    #bkgPhone .meteoHeader .ico-temp {
        height: 3.5em;
    }
}

@media (orientation: portrait) {
    .weather-icon {
        height: 3.5em;
    }

    .meteoHeader > div {
    }

    #bkgPhone .meteoHeader .ico-temp {
        height: 2em;
    }
}

#compInfo {
    position: absolute;
    font-size: 1em;
    padding: 0.5em;
    right: 0.25em;
    top: 61%;
    -webkit-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
    transform: translateY(-60%);
    z-index: 10;
    background-color: #FFFFFF;
    border-radius: 0.5em 0.5em 0.5em 0.5em;
    -moz-border-radius: 0.5em 0.5em 0.5em 0.5em;
    -webkit-border-radius: 0.5em 0.5em 0.5em 0.5em;
    border: 0 solid #333333;
    -webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

#compInfo div div:first-child, #pdj div div:first-child {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: normal;
    font-style: italic;
    color: #555555;
}

#compLast1, #compNext1 {
    text-align: center;
    font-weight: bold;
}

#compLast2, #compNext2 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: normal;
    text-align: right;
}

#pdj {
    position: absolute;
    font-size: 1em;
    padding: 0.5em;
    right: 0.25em;
    top: 44%;
    -webkit-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    transform: translateY(-45%);
    z-index: 10;
    background-color: #FFFFFF;
    border-radius: 0.5em 0.5em 0.5em 0.5em;
    -moz-border-radius: 0.5em 0.5em 0.5em 0.5em;
    -webkit-border-radius: 0.5em 0.5em 0.5em 0.5em;
    border: 0 solid #333333;
    -webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

#pdj div div:last-child {
    text-align: center;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}


