﻿@charset "utf-8";
/* CSS Document */

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    background-color: #ebebdf;
    border: 0px;
    margin: 0px;
    padding: 0px;
    min-width: 1024px;
}

#outerWrapper {
    display: block;
    min-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: #000000;
    text-decoration: none;
}

.clearInput {
    display: block;
    position: relative;
    z-index: 10;
    border: none;
}

.placeholder {
    color: #aaa;
}

.clearButton {
    display: block;
    position: relative;
    z-index: 10;
    color: transparent;
    background-color: transparent;
    border-color: transparent;
    cursor: pointer;
    outline: 0;
}

.fullwidth {
    width: 100%;
    display: inline-block;
}

.errorMessage {
    color: red;
}

.blueButton,
.greyButton,
.waitButton {
    font-size: 12px;
    line-height: 15px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    /*  Change Blue Buttons Red to match Leverage CSS
	background-color: #0099d5;
    border:1px solid #15627e;
*/
    background-color: #da1b2c;
    border: 1px solid #a0121f;

    border-image-source: none;
    border-image-slice: 100% 100% 100% 100%;
    border-image-width: 1 1 1 1;
    border-image-outset: 0 0 0 0;
    border-image-repeat: stretch stretch;
    color: #ffffff;
    text-shadow: 0px 1px #a9a9a9;
    border-radius: 6px;
    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
    cursor: pointer;
    box-shadow: 0px 1px rgba(255, 255, 255, 0.8), 0px 1px rgba(255, 255, 255, 0.35) inset;
}

.blink {
    animation: blink 1s steps(5, start) infinite;
    -webkit-animation: blink 1s steps(5, start) infinite;
}

@keyframes blink {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink {
    to {
        visibility: hidden;
    }
}

.blueButton:hover,
.greyButton:hover {
    /*  Change Blue Buttons Red to match Leverage CSS
	background-color: #1291c4;
    border:1px solid #15627e;
*/
    background-color: #f7041a;
    border: 1px solid #a0121f;

    color: #ffffff;
    text-shadow: #a9a9a9;
    box-shadow: 0px 1px rgba(255, 255, 255, 0.8), 0px 1px rgba(255, 255, 255, 0.35) inset, 0px 0px 10px rgba(232, 230, 230, 0.75);
}

.greyButton {
    background-color: #f0eded;
    border: 1px solid #c3c3c3;
    color: #524d4d;
    text-shadow: 0px 1px rgba(255, 255, 255, 0.9);
}

.greyButton:hover {
    background-color: #f2f0f0;
    border: 1px solid #c3c3c3;
    color: #666060;
    text-shadow: 0px 1px rgba(255, 255, 255, 0.9);
}

/* Delete button specific styling - slightly more distinct */
#detailsDeleteBtn {
    background-color: #f5e6e6;
    border: 1px solid #d4a5a5;
    color: #8b4545;
}

#detailsDeleteBtn:hover {
    background-color: #f2e0e0;
    border: 1px solid #d4a5a5;
    color: #a04040;
}

#scrollToTop {
    transition-property: bottom;
    transition-duration: 250ms;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    bottom: -20px;
    padding-top: 15px;
    padding-right: 2px;
    padding-bottom: 20px;
    padding-left: 2px;
    right: 15px;
    width: 70px;
    background-color: #f0eded;
    border: 1px solid #808080;
    border-top-left-radius: 0.3em;
    border-top-right-radius: 0.3em;
    border-bottom-right-radius: 0.3em;
    border-bottom-left-radius: 0.3em;
    display: block;
    position: fixed;
    text-align: center;
    z-index: 300;
    -moz-box-shadow: 2px 2px 1px #888;
    -webkit-box-shadow: 2px 2px 1px #888;
    box-shadow: 2px 2px 1px #888;
}

#scrollToTop a {
    color: #524d4d;
    font-weight: bold;
    text-shadow: 0px 1px rgba(255, 255, 255, 0.9);
}

#loadingDialog {
    transition-property: bottom;
    transition-duration: 250ms;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    bottom: -20px;
    padding-top: 15px;
    padding-right: 2px;
    padding-bottom: 20px;
    padding-left: 2px;
    left: 15px;
    width: 250px;
    background-color: #f0eded;
    border: 1px solid #808080;
    border-top-left-radius: 0.3em;
    border-top-right-radius: 0.3em;
    border-bottom-right-radius: 0.3em;
    border-bottom-left-radius: 0.3em;
    display: block;
    position: fixed;
    text-align: center;
    color: #524d4d;
    font-weight: bold;
    text-shadow: 0px 1px rgba(255, 255, 255, 0.9);
    z-index: 300;
    -moz-box-shadow: 2px 2px 1px #888;
    -webkit-box-shadow: 2px 2px 1px #888;
    box-shadow: 2px 2px 1px #888;
}

.box {
    position: relative;
    background-color: #ffffff;
    width: 222px;
    margin-top: 15px;
    box-shadow: 0px 1px 3px rgba(34, 25, 25, 0.4);
}

/* Header */
#header {
    display: block;
    min-width: 1024px;
    width: 100%;
    height: 115px;
    background-color: #ffffff;
    position: fixed;
    z-index: 300;
    top: 0px;
    box-shadow: 0px 4px 2px -2px rgba(34, 25, 25, 0.4);
    text-align: center;
}

#headerLogo {
    cursor: pointer;
    padding-left: 296px;
    z-index: 100;
}

#searchLink {
    cursor: pointer;
}

#headerTop {
    height: 81px;
    border-bottom: 1px solid #808080;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#headerTopLeft {
    float: left;
    margin-left: 10px;
    width: 220px;
    display: inline-block;
}

#headerTopRight {
    float: right;
    margin-right: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

#headerTopRight span {
    display: inline-block;
    padding: 10px;
    height: 36px;
    line-height: 36px;
    vertical-align: middle;
}

#headerTopRight span:hover,
#headerTopRight span:active {
    text-decoration: underline;
    cursor: pointer;
    background-color: #f0eded;
}

.headerTopRightSelected {
    background-color: #f0eded;
}

#headerBottom {
    text-align: center;
}

#headerBottom span {
    display: inline-block;
    padding: 6px;
    padding-left: 10px;
    padding-right: 10px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
}

#headerBottom span:hover,
#headerBottom span:active {
    text-decoration: underline;
    cursor: pointer;
}


/* Header Menu Bar */
#categoriesMenu {
    position: absolute;
    display: none;
    width: 440px;
    border: 1px solid #808080;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    -moz-box-shadow: 2px 2px 1px #888;
    -webkit-box-shadow: 2px 2px 1px #888;
    box-shadow: 2px 2px 1px #888;
    background-color: white;
    z-index: 399;
}

#categoriesMenu ul {
    display: block;
    width: 210px;
    margin: 0px;
    padding: 0px;
}

#categoriesMenu ul li {
    font-size: 12px;
    display: block;
    margin: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 4px;
    text-align: left;
}

#categoriesMenu ul li:hover {
    background-color: #f0eded;
}

#categoriesMenuLeft {
    float: left
}

#categoriesMenuRight {
    float: right;
}

#tbQuickSearch {
    border: 1px solid #808080;
    width: 180px;
}

#imgQuickSearch {
    padding-left: 0px;
    margin-left: 0px;
    border: 1px solid #808080;
    border-left: none;
    margin-top: -1px;
}

#divKeywordResults {
    border: 1px solid #808080;
    border-bottom: 0px;
    font-size: 11px;
    padding: 0px;
    display: none;
    z-index: 301;
    color: #808080;
    text-transform: lowercase;
}

#divKeywordResults div {
    border-bottom: 1px solid #808080;
    padding: 3px;
    text-align: left;
    padding-left: 5px;
}

#divKeywordResults .selected {
    background-color: #808080;
    color: #fff;
}

#divKeywordResults .unselected {
    background-color: #fff;
    color: #808080
}

/* Header Collections Bar */
#headerMCMenu,
#headerASMenu {
    display: block;
    position: absolute;
    top: 55px;
    min-width: 106px;
    border: 1px solid #808080;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    -moz-box-shadow: 1px 1px 1px #888;
    -webkit-box-shadow: 1px 1px 1px #888;
    box-shadow: 1px 1px 1px #888;
    background-color: white;
    z-index: 399;
}

#headerASMenu {
    right: 72px;
}

#headerMCMenu span,
#headerASMenu span {
    font-size: 12px;
    display: block;
    height: 18px;
    line-height: 18px;
    margin: 2px;
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 4px;
    text-align: left;
    vertical-align: middle;
    text-decoration: none;
    max-width: 200px;
    overflow: hidden;
}

#headerMCMenu span.headerMCMenuItem {
    font-size: 12px;
    display: block;
    height: 12px;
    line-height: 14px;
    margin: 2px;
    padding: 2px;
    text-align: left;
    vertical-align: middle;
    text-decoration: none;
    padding-left: 10px;
}

#headerASMenu span a,
#headerTutorial a {
    color: #000000
}


/* Footer */
/*#footer {
    font-size: 10px;
    margin-top: 40px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    height: 40px;
    position: fixed;
    bottom: 0;
}

#footerCopyright {
    display: block;
    float: left;
    padding-left: 100px;
    padding-top: 30px
}

.footer-link-new {
    display: block;
    float: left;
    padding-left: 20px;
    padding-top: 30px;
}*/

#footer {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    display: flex;
    bottom: 0px;
    position: fixed;
    width: 100%;
    font-size: 14px;
}

#footer .footer-links {
    justify-content: space-between;
}

#footerCopyright {
    margin-left: 300px;
    float: left;
}

#footer .footer-link-new {
    margin: 0 10px;
    float: left;
}

#footer a {
    color: #333;
    text-decoration: none;
}

#footer a:hover {
    text-decoration: underline;
}

/* index.tpl */
#searchCategory,
#collectionItemsHeader {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 18px;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #a9a9a9;
    margin-top: 5px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-weight: bold;
}

#searchCategory {
    display: none;
}

#searchDialog {
    margin: 10px;
}

#searchDialog hr {
    margin: 0px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.sortSelect {
    width: 88px;
    float: left;
    font-size: 11px;
}

.searchSmallText {
    font-size: 11px;
    line-height: 14px;
    vertical-align: top;
}

.greyText {
    color: #d3d3d3;
}

#resetFilters {
    float: right;
    margin-right: 2px;
}

#excludeKeywords {
    width: 180px;
    font-size: 11px;
}


/* Search Results */

#indexBody {
    margin-top: 135px;
}

#searchResults,
#collectionItemsList {
    list-style-type: none;
    position: relative;
    margin: 0;
    margin-left: 5px;
}

#searchResults {
    overflow-y: hidden;
    overflow-x: hidden;
}

#collectionItemsList {
    display: inline-block;
    margin-top: 56px;
    height: auto;
    min-height: 800px;
}

#searchResults li,
#collectionItemsList li {
    width: 222px;
    background-color: #ffffff;
    border: 1px solid #dedede;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: none;
    /** Hide items initially to avoid a flicker effect **/
    cursor: pointer;
    padding: 0px;
    margin: 0px;
    box-shadow: 0px 1px 3px rgba(34, 25, 25, 0.4);
}

#searchResults li.SearchDialog {
    z-index: 299;
}

#searchResults li img,
#collectionItemsList li img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

#searchResults li p,
#collectionItemsList li p {
    margin: 7px 6px 6px 7px;
}

.itemHoverButton {
    z-index: 150;
    display: inline-block;
    position: absolute;
    margin: 0px;
    margin-top: 5px;
    margin-left: 5px;
}

.itemHoverDetails {}

.itemHoverCart {
    left: 65px;
}

.itemHoverDelete {
    left: 120px;
    background-color: #d9534f !important;
    border: 1px solid #d43f3a !important;
}

.itemHoverCilRemove {
    left: 55px;
}

.itemHoverCilDetails {
    left: 128px;
}

/**
 * Some extra styles to randomize heights of grid items.
 */
#searchResults ali:nth-child(3n),
#collectionItemsList ali:nth-child(3n) {
    height: 175px;
}

#searchResults ali:nth-child(4n-3),
#collectionItemsList ali:nth-child(4n-3) {
    padding-bottom: 30px;
}

#searchResults ali:nth-child(5n),
#collectionItemsList ali:nth-child(5n) {
    height: 250px;
}

#searchResults li.inactive,
#collectionItemsList li.inactive {
    opacity: 0;
}

/*
.srThumbWrapper{display:inline-block; width:100%; height:150px; line-height:150px; vertical-align:bottom; text-align:center;}
.srThumb{vertical-align:bottom;}
.srText{display:inline-block; width:100%;padding-top:5px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
.searchResultsFiller{cursor:auto;}
*/

#imageRequest {
    text-align: center;
    display: none;
    cursor: pointer;
    position: absolute;
    height: 30px;
    z-index: 200;
}

#imageRequest a {
    font-size: 22px;
    margin-bottom: 20px;
    color: #3E4395 !important;
    font-weight: bold;
    text-shadow: 0px 1px rgba(255, 255, 255, 0.9) !important;
}

.ssSep {
    color: #00703c;
    margin-left: 4px;
    margin-right: 4px;
    font-weight: bold;
}

.paginationPage {
    width: 35px;
    border: 1px solid #000;
    text-align: center
}

.paginationPrevious,
.paginationNext {
    font-size: 16px;
    color: #00703c;
    font-weight: bold;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}

#tooltip {
    position: absolute;
    z-index: 3000;
    border: 1px solid #111;
    background-color: #eee;
    padding: 5px;
}

#tooltip h3,
#tooltip div {
    margin: 0;
}

#tooltip.resultspreview {
    position: absolute;
    width: 270px;
    z-index: 3000;
    border: 1px solid #111;
    background-color: #eee;
    padding: 5px;
}


/* View Collections  */
#collectionHeader,
#collectionItemsHeader {
    display: block;
    position: absolute;
    z-index: 100;
    top: 115px;
    left: 0px;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid #a9a9a9;
    margin: 0px;
    padding: 0px;
    height: 46px;
    line-height: 46px;
    vertical-align: middle;
    min-width: 1024px;
}

#collectionItemsHeader {
    text-align: center;
}

#collectionItemsHeaderText {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 18px;
    text-align: center;
    height: 36px;
    line-height: 46px;
    display: inline-block;
    width: 33%;
    vertical-align: top;
}

#chLeft,
#chRight {
    width: 33%;
    display: inline-block;
    text-align: left;
}

#chRight {
    text-align: right;
    float: right;
}

.cHeader {
    margin: 0px;
    padding: 0px;
    border: none;
}

#collectionCount,
#collectionItemCount {
    position: absolute;
    margin: 0px;
    padding: 0px;
    height: 46px;
    line-height: 46px;
    left: 0px;
    top: 0px;
    cursor: pointer;
}

#collectionItemCount {
    left: 95px;
    top: 0px;
}

.collectionCountSelected {
    background-color: rgba(34, 25, 25, 0.1);
    font-weight: bold;
    border-right: 1px solid #a9a9a9;
    border-left: 1px solid #a9a9a9;
}

#arrangeCollections,
#printCollection {
    float: right;
    margin-right: 10px;
    margin-top: 10px;
}

#collectionList {
    text-align: center;
    list-style: none;
    text-align: left;
    margin-top: 36px;
    vertical-align: top;
    display: inline-block;
    width: 98%;
    padding: 10px;
    margin-left: 5px;
    height: auto;
    min-height: 600px;
}

#collectionList li {
    display: block;
    float: left;
    padding-left: 15px;
    text-align: center;
    margin: 0px;
    border: 0px;
    width: 222px;
    height: 275px;
    padding-top: 0px;
}

#collectionList li h3 {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 14px;
    height: 16px;
}

.cliMainImg {
    display: block;
    width: 223px;
    height: 150px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.cliLowerImg {
    display: block;
    float: left;
    width: 54px;
    height: 55px;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
    border: 0px;
    margin-right: 2px;
    margin-top: 1px;
    margin-bottom: 1px;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.cliLowerImgLast {
    margin-right: 0px;
    clear: right;
}

.cliButton,
.cliView {
    display: block;
    float: left;
    width: 110px;
    height: 24px;
    padding: 0px;
    margin: 0px;
    background-color: #f0eded;
    color: #524d4d;
    line-height: 24px;
    vertical-align: middle;
    text-align: center;
}

.cliRename {
    border-right: 2px solid #a9a9a9;
}

.cliView {
    width: 222px;
}

.cliButton:hover,
.cliView:hover {
    background-color: #f2f0f0;
    color: #666060;
    text-shadow: 0px 1px rgba(255, 255, 255, 0.9);
    font-weight: bold;
    text-decoration: underline;
}

.cliWrapper {
    text-align: left;
    display: inline-block;
    height: 230px;
    width: 100%;
    border: 1px solid #dedede;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 0px 1px 3px rgba(34, 25, 25, 0.4);
}

.cilName {
    word-wrap: break-word;
    padding-bottom: 7px;
}

.cilNotes,
.cilCollections {
    word-wrap: break-word;
    padding: 7px;
    width: 208px;
    height: auto;
    border-top: 1px solid #a9a9a9;
    margin: 0px;
    background-color: #f2f2f0;
}

.cilRecord a {
    color: #15627e;
}

#divSort {
    display: inline-block;
    text-align: left;
    height: 14px;
    line-height: 14px;
    vertical-align: middle;
    margin: 0px;
    padding: 0px;
}

#txtSort {
    display: inline-block;
    line-height: 14px;
    vertical-align: middle;
    height: 14px;
    margin: 0px;
    padding: 0px;
    margin-left: 10px;
}

#imgSort {
    display: block;
    float: left;
    margin: 0px;
    padding: 0px;
    position: relative;
    top: -10px;
    left: 5px;
}


#adminFooter {
    width: 100%;
    border-top: 1px solid #a9a9a9;
    margin: 0px;
    padding: 0px;
    vertical-align: middle;
    min-width: 1024px;
}


/* Modal Dialog - KEEP AT END OF FILE*/
.modalDialog {
    z-index: 4001;
}

.modalOverlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    z-index: 40001;
}

.modalOffset {
    position: fixed;
    top: 5%;
    width: 100%;
    z-index: 40002;
}

.modalContentWrapper {
    width: auto;
    height: auto;
    position: absolute;
    left: 100px;
    margin: auto;
    background-color: white;
    padding: 0px;
    border: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 0px 1px 2px rgba(34, 25, 25, 0.4);
}

.modalHeader {
    background: #cfcfcf;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', endColorStr='#cfcfcf');
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cfcfcf));
    background: -moz-linear-gradient(top, #fff, #cfcfcf);
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    border-bottom: 1px solid #a9a9a9;
    padding-left: 20px;
    font-weight: bold;
    font-size: 14px;
    color: #454545;
}

.modalClose {
    display: block;
    width: 25px;
    height: 30px;
    color: #a9a9a9;
    float: right;
    font-size: 20px;
    font-weight: lighter;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
    transform: scale(1.5, 1);
    -webkit-transform: scale(1.5, 1);
    -moz-transform: scale(1.5, 1);
    -ms-transform: scale(1.5, 1);
    -o-transform: scale(1.5, 1);
    border-left: 1px solid #a9a9a9;
    padding-right: 5px;
}

.modalContent {
    padding: 40px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.modalThumbWrapper {
    display: inline-block;
    width: 120px;
    float: left;
    text-align: left;
    padding-left: 5px;
}

#modalCollInputsWrapper {
    width: 300px;
    float: right;
}

.modalFormLine {
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 12px;
    height: auto;
}

.mflInput {
    width: 100%;
}

.modalResultMessage {
    text-align: center;
    color: red;
}

/*
.mflInput{width:100%; border:1px solid #454545;-moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; height:24px;}
textarea.mflInput{height:auto;}
*/
.mflInputError {
    border: 1px solid red;
}

.mflInputValidationError {
    word-wrap: break-word;
    font-weight: normal;
}

#mflSimpleText {
    width: 100%;
    word-wrap: break-word;
}

.modalLongText {
    display: block;
    width: 84px;
    height: 70px;
    float: left;
}

.mflSpinner {
    display: none;
}

#reqDate {
    width: 200px;
}

/* Details Dialog */
#detailsDialog.modalDialog {
    z-index: 3001;
}

#detailsDialog div.modalOverlay {
    z-index: 30001;
}

#detailsDialog div.modalOffset {
    z-index: 30002;
}

#detailsNav {
    text-align: center;
    padding: 0px;
    border-bottom: 1px solid #a9a9a9;
    min-width: 550px;
}

#detailsButtons {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

#detailsResults {
    display: inline-block;
    float: left;
    height: 55px;
    line-height: 55px;
    vertical-align: middle;
    padding-left: 10px;
}

#detailsCollections {
    display: inline-block;
    float: right;
    height: 55px;
    line-height: 55px;
    vertical-align: middle;
    padding-right: 10px;
    min-width: 150px;
}

#detailsNavLinksWrapper {
    display: inline-block;
    min-width: 300px;
    height: 56px;
}

#detailsNavLinks {
    position: relative;
    left: 20px;
}

.detailsNavLink {
    cursor: pointer;
}

.detailsPadded {
    padding: 10px;
}

#detailsName {
    border-bottom: 1px solid #a9a9a9;
}

#detailsThumbWrapper {
    display: inline-block;
    min-width: 530px;
    min-height: 200px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#detailsBottomButtons {
    border-top: 1px solid #a9a9a9;
}

#detailsThumbInnerWrapper {
    display: inline-block;
    width: 100%;
    min-height: 200px;
    text-align: center;
    margin-top: 10px;
}

#detailsRelatedKeywordsArrow {
    cursor: pointer;
}

#detailsSelectCollection {
    max-width: 150px;
    margin-top: 20px;
}

#detailsRelatedKeywordsKeywords {
    min-height: 40px;
    max-width: 500px;
    word-wrap: break-word;
    text-transform: lowercase;
}

#detailsRelatedKeywords a {
    color: #1291c4;
}

#detailsRelatedImages {
    width: 530px;
}

#detailsRelatedImagesWrapper {
    height: 110px;
}

#magnifier {
    width: 300px;
    height: 200px;
    border: 1px solid #000;
}

#dio-lens {
    border: 1px solid #000;
    z-index: 50000;
}

#dio-sensor {
    z-index: 51000;
    cursor: crosshair;
}

#dio-loader {
    background: #fff url('../images/preloader.gif') no-repeat center 40px;
    text-indent: -30000px;
}

#cidData {
    display: none;
}

/* Enable Scrolling on Proof Pages - per Margalit 12/4/17 */
#detailsContentWrapper .detailsContent {
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: calc(100vh - 110px);
}