	div.nd-expires {
		display: none;
	}

    /* Annytab lightbox*/
    .annytab-lightbox-container {
        display: none;
        z-index: 100;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        background-color: #000000;
        background-color: rgba(0, 0, 0, 0.7);
    }
    .annytab-lightbox-margin {
        display: block;
        margin: 40px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .annytab-lightbox-wrapper {
        display: inline-block;
        position: relative;
        max-width: 100%;
        background-color: #ffffff;
        border-radius: 8px;
        top: calc(50vh - 50px); /* adjust for margin */
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .annytab-lightbox-padding {
        display: block;
        padding: 10px;
    }
    .annytab-lightbox-image {
        display: inline-block;
        max-width: 100%;
        max-height: calc(100vh - 100px); /* margin + padding */
        padding: 0;
        margin: 0; 
    }
    .annytab-lightbox-left-arrow {
        display: block;
        z-index: inherit;
        position: absolute;
        left: -40px;
        top: 50%;
        margin-top: -16px;
        cursor: pointer;
        width: 32px;
        height: 32px;
        border-radius: 4px;
        background-color: #58a39b;
        opacity: 0.9;
        filter: alpha(opacity=90);
        font-size: 30px;
        line-height: 32px;
        color: #000000;
    }
    .annytab-lightbox-right-arrow {
        display: block;
        z-index: inherit;
        position: absolute;
        right: -40px;
        top: 50%;
        margin-top: -16px;
        cursor: pointer;
        width: 32px;
        height: 32px;
        border-radius: 4px;
        background-color: #58a39b;
        opacity: 0.9;
        filter: alpha(opacity=90);
        font-size: 30px;
        line-height: 32px;
        color: #000000;
    }
	@media only screen and (max-width: 899px) {
		/*
		div.annytab-lightbox-left-arrow::before {
			display: block;
			z-index: inherit;
			position: absolute;
			content: "Prev";
			left: 2px;
			top: -20px;
			background-color: #58a39b;
			color: black;
			visibility: visible;
		}
		*/
		.annytab-lightbox-left-arrow {
			left: 2px;
			opacity: 0.5;
			border-color: black;
			color: black;
			border-width: 1px;
			border-style: solid;
		}
		.annytab-lightbox-right-arrow {
			right: 2px;
			opacity: 0.5;
			border-color: black;
			border-width: 1px;
			border-style: solid;
		}
	}
    .annytab-lightbox-caption {
        display: none;
        position: absolute;
        bottom: 15px;
        left: 10px;
        right: 10px;
        max-height: 100px;
        overflow-y: auto;
        background-color: #000000;
        opacity: 0.6;
        filter: alpha(opacity=60);
        padding: 10px;
        color: #ffffff;
        text-align: left;
    }
    .annytab-lightbox-close {
        position: absolute;
        width: 24px;
        height: 24px;
        top: 8px;
        right: 8px;
        cursor: pointer;
        opacity: 0.6;
        filter: alpha(opacity=60);
    }
    .annytab-lightbox-close:hover {
        opacity: 1;
        filter: alpha(opacity=100);
    }
    .annytab-lightbox-close:before, .annytab-lightbox-close:after {
        position: absolute;
        right: 12px;
        content: ' ';
        height: 24px;
        width: 2px;
        background-color: #ffffff;
    }
    .annytab-lightbox-close:before {
        transform: rotate(45deg);
    }
    .annytab-lightbox-close:after {
        transform: rotate(-45deg);
    }