/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 03-Feb-2014, 15:46:11
    Author     : Chris
*/
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url('images/bg-black.png');
    background-repeat: repeat;
    
    /*
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 672px !important;
    */
}

img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#pages {
    filter: none; -webkit-filter: blur(0px); -moz-filter: blur(0px); -ms-filter: blur(0px); filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');
    -webkit-font-smoothing: none;
    position: absolute;
    top: 50%;
    left: 50%;
    
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
}

#digiMenuBarCenterDiv {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    padding-top: 10px;
}

.digiBtn {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
}

.digiBtn:hover {
    background-color: rgba(205, 205, 205, 0.9);
}

.groupItem {
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
    cursor: pointer;
    font-family: Roboto, sans-serif;
    font-size: 12px;
}

.groupItem img {
    vertical-align: middle;
}

.groupItem span {
    padding-top: 2px;
}

.groupItem:hover {
    background: rgba(205, 205, 205, 0.9);
    opacity: 1;
}

#mainPanel
{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    /* width: 100%; */
    /* height: 100%; */
    bottom: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0 0 0 0;

    transition: 0.5s all ease-in-out 0s !important;
    -moz-transition: 0.5s all ease-in-out 0s !important;
    -webkit-transition: 0.5s all ease-in-out 0s !important;
    -o-transition: 0.5s all ease-in-out 0s !important;
    -ms-transition: 0.5s all ease-in-out 0s !important;
}

.mainPanelShift
{
    right: 260px !important;
}

#sidePanel
{
    position: absolute;
    top: 0px;
    left: 100%;
    width: 260px;
    bottom: 0px;
    visibility: hidden;
    overflow: hidden;
    border-left: 4px solid rgba(255,255,255,0.9);
    
    transition: 0.5s all ease-in-out 0s !important;
    -moz-transition: 0.5s all ease-in-out 0s !important;
    -webkit-transition: 0.5s all ease-in-out 0s !important;
    -o-transition: 0.5s all ease-in-out 0s !important;
    -ms-transition: 0.5s all ease-in-out 0s !important;
}

.sidePanelShift {
    margin-left: -265px !important;
    visibility: visible !important;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
}

.sideButtons-hidden {
    left: 100%;
    margin-left: 5px;
    /* top: 50px;
    margin-top: -100px; */
    border: 0px;
    padding: 0 0 0 0;
    border-radius: 0px;
    background-color: rgba(0,0,0,0);
}

.sideButtons-visible {
    left: 100%;
    margin-left: -38px;
    /* top: 50px;
    margin-top: -100px; */
    border: 0px;
    padding: 0 0 0 0;
    border-radius: 0px;
    background-color: rgba(0,0,0,0);
}

.sideButtons-open {
    left: 100%;
    margin-left: -297px;
    /* top: 50px;
    margin-top: -100px; */
    border: 0px;
    padding: 0 0 0 0;
    border-radius: 0px;
    background-color: rgba(0,0,0,0);
}

.sideButtons-open .digiBtn {
    border-radius: 3px 0px 0px 3px !important;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.6);
}


html[data-platform='iPad'] #sidePanel {
    -webkit-overflow-scrolling: touch !important;
    overflow: auto !important;
    bottom: 10px !important;
}

html[data-platform='iPhone'] #sidePanel {
    -webkit-overflow-scrolling: touch !important;
    overflow: auto !important;
    bottom: 20px !important;
}

html[data-platform='phonegap'] #sidePanel {
    -webkit-overflow-scrolling: touch !important;
    overflow: auto !important;
}

html[data-platform='iPad'] #mainPanel {
    bottom: 20px !important;
}

html[data-platform='iPhone'] #mainPanel {
    bottom: 20px !important;
}

html[data-useragent*='OS 8'] #mainPanel {
    bottom: 0px !important;
}

#viewport
{
    filter: none; -webkit-filter: blur(0px); -moz-filter: blur(0px); -ms-filter: blur(0px); filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0 0 0 0;
    visibility: hidden;
    opacity: 0;
    
    transition: 0.5s opacity ease-in-out 0s;
    -moz-transition: 0.5s opacity ease-in-out 0s;
    -webkit-transition: 0.5s opacity ease-in-out 0s;
    -o-transition: 0.5s opacity ease-in-out 0s;
    -ms-transition: 0.5s opacity ease-in-out 0s;
    
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
}

.viewportAnimate {
    transition: 0.5s all ease-in-out 0s !important;
    -moz-transition: 0.5s all ease-in-out 0s !important;
    -webkit-transition: 0.5s all ease-in-out 0s !important;
    -o-transition: 0.5s all ease-in-out 0s !important;
    -ms-transition: 0.5s all ease-in-out 0s !important;
}

.viewportMove
{
    opacity: 0.4 !important;
    visibility: visible !important;
    top: 0% !important;
    /*-transform-origin: 0% 0%;*/
    -transform: scale(0.9, 0.9);
    -webkit-transform: scale(0.9, 0.9);
    /*-webkit-transform-origin: 0% 0%*/
    /* width: 120% !important; */
    /* left: -10% !important; */
}

#digiContentsContainer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    
    overflow: hidden;
    
    transition: 0.5s all ease-in-out 0s;
    -moz-transition: 0.5s all ease-in-out 0s;
    -webkit-transition: 0.5s all ease-in-out 0s;
    -o-transition: 0.5s all ease-in-out 0s;
    -ms-transition: 0.5s all ease-in-out 0s;
    
    background-color: rgba(0,0,0,0);
}
#digiContents {
    position: absolute;
    left: 50%;
    top: 46px;
    
    /*
    transition: 0.5s all ease-in-out 0s;
    -moz-transition: 0.5s all ease-in-out 0s;
    -webkit-transition: 0.5s all ease-in-out 0s;
    -o-transition: 0.5s all ease-in-out 0s;
    -ms-transition: 0.5s all ease-in-out 0s;
    */
    
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;

    font-family: Arial, sans-serif;
    font-size: 12px;
}

.digiContentsClosed {
    top: -100%;
    visibility: hidden;
    opacity: 0;
}

#digiOverlayBg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    
    overflow: hidden;

    transition: 0.5s opacity ease-in-out 0s;
    -moz-transition: 0.5s opacity ease-in-out 0s;
    -webkit-transition: 0.5s opacity ease-in-out 0s;
    -o-transition: 0.5s opacity ease-in-out 0s;
    -ms-transition: 0.5s opacity ease-in-out 0s;

    background-color: rgba(0,0,0,0.4);
    
    z-index: 9999;
}

#digiOverlayContainer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    
    overflow: hidden;
    
    transition: 0.5s all ease-in-out 0s;
    -moz-transition: 0.5s all ease-in-out 0s;
    -webkit-transition: 0.5s all ease-in-out 0s;
    -o-transition: 0.5s all ease-in-out 0s;
    -ms-transition: 0.5s all ease-in-out 0s;
    
    background-color: rgba(0,0,0,0);
    
    pointer-events: none;
    
    z-index: 10000;
}

#digiOverlay {
    position: absolute;
    left: 0px;
    top: 0px;

    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    
    transition: 0.5s all ease-in-out 0s;
    -moz-transition: 0.5s all ease-in-out 0s;
    -webkit-transition: 0.5s all ease-in-out 0s;
    -o-transition: 0.5s all ease-in-out 0s;
    -ms-transition: 0.5s all ease-in-out 0s;

    font-family: Arial, sans-serif;
    font-size: 12px;
}

html[data-platform="Win32"] .arrowRightBackground, html[data-platform="MacIntel"] .arrowRightBackground {
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -30px;
    border-radius: 35px 0px 0px 35px;
    width: 48px;
    height: 70px;
    background: #ffffff;
    opacity: 0.7;
    box-shadow: 0px 0px 6px 0px #000000;
    box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,0.2);
    transition: 0.5s all ease-in-out 0s !important;
}

html[data-platform="Win32"] .arrowRightBackgroundVisible, html[data-platform="MacIntel"] .arrowRightBackgroundVisible {
    margin-left: -48px;
    visibility: visible;
}

html[data-platform="Win32"] .arrowRightBackgroundHidden, html[data-platform="MacIntel"] .arrowRightBackgroundHidden {
    margin-left: 0px;
    visibility: hidden;
}

html[data-platform="Win32"] .arrowLeftBackground, html[data-platform="MacIntel"] .arrowLeftBackground {
    position: absolute;
    top: 50%;
    left: 0px;
    margin-top: -30px;
    border-radius: 0px 35px 35px 0px;
    width: 48px;
    height: 70px;
    background-color: #ffffff;
    opacity: 0.7;
    box-shadow: 0px 0px 6px 0px #000000;
    box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,0.2);
    transition: 0.5s all ease-in-out 0s !important;
}

html[data-platform="Win32"] .arrowLeftBackgroundVisible, html[data-platform="MacIntel"] .arrowLeftBackgroundVisible {
    margin-left: 0px;
    visibility: visible;
}

html[data-platform="Win32"] .arrowLeftBackgroundHidden, html[data-platform="MacIntel"] .arrowLeftBackgroundHidden {
    margin-left: -48px;
    visibility: hidden;
}

html[data-platform="Win32"] .arrowRight, html[data-platform="MacIntel"] .arrowRight {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 24px;
    border-color: transparent transparent transparent #ffffff;
    line-height: 0px;
    _border-color: #000000 #000000 #000000 #ffffff;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

html[data-platform="Win32"] .arrowRightBorder, html[data-platform="MacIntel"] .arrowRightBorder {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 22px 0 22px 26px;
    border-color: transparent transparent transparent #000000;
    line-height: 0px;
    _border-color: #000000 #000000 #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

html[data-platform="Win32"] .arrowLeft, html[data-platform="MacIntel"] .arrowLeft {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 24px 20px 0;
    border-color: transparent #ffffff transparent transparent;
    line-height: 0px;
    _border-color: #000000 #ffffff #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

html[data-platform="Win32"] .arrowLeftBorder, html[data-platform="MacIntel"] .arrowLeftBorder {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 22px 26px 22px 0;
    border-color: transparent #000000 transparent transparent;
    line-height: 0px;
    _border-color: #000000 #000000 #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

.digiOverlayClosed {
    left: -20% !important;
    top: -20% !important;
    
    pointer-events: none;
    
    visibility: hidden;
    opacity: 0;
    -transform: scale(1.4, 1.4);
    -webkit-transform: scale(1.4, 1.4);
}

.digiOverlayOpen {
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;

    pointer-events: all;

    -transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
}

.digiOverlayContents {
    position: absolute;
    top: 0%;
}

#digiGallery, #digiVideo {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    
    overflow: hidden;
    
    transition: 0.5s all ease-in-out 0s;
    -moz-transition: 0.5s all ease-in-out 0s;
    -webkit-transition: 0.5s all ease-in-out 0s;
    -o-transition: 0.5s all ease-in-out 0s;
    -ms-transition: 0.5s all ease-in-out 0s;
}

#digiGalleryHolder, #digiVideoHolder {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.digiGalleryDot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background-color: #878787;
    box-shadow: 0px 0px 2px 1px #000000;
    
    transition: 0.5s all ease-in-out 0s;
    -moz-transition: 0.5s all ease-in-out 0s;
    -webkit-transition: 0.5s all ease-in-out 0s;
    -o-transition: 0.5s all ease-in-out 0s;
    -ms-transition: 0.5s all ease-in-out 0s;
}

.digiGalleryDotHighlight {
    background-color: #ffffff;
}

.digiGalleryClosed {
    visibility: hidden;
    opacity: 0;
}

.digiGalleryOpen {
    visibility: visible;
    opacity: 1;
}

.digiGalleryItem {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    /* pointer-events: none; */
    
    /*
    transition: 0.5s all ease-in-out 0s;
    -moz-transition: 0.5s all ease-in-out 0s;
    -webkit-transition: 0.5s all ease-in-out 0s;
    -o-transition: 0.5s all ease-in-out 0s;
    -ms-transition: 0.5s all ease-in-out 0s;
    */
}

.digiGalleryItemHidden {
    -transform: scale(0.9, 0.9);
    -webkit-transform: scale(0.9, 0.9);
    opacity: 0;
    
    /*
    transition: 0.5s all ease-in-out 0s;
    -moz-transition: 0.5s all ease-in-out 0s;
    -webkit-transition: 0.5s all ease-in-out 0s;
    -o-transition: 0.5s all ease-in-out 0s;
    -ms-transition: 0.5s all ease-in-out 0s;
    */
}

.digiContentsOpen {
    top: 0%;
    visibility: visible;
    opacity: 1;
}

.digiContentsThumbnail {
    box-shadow: 0px 0px 1px 0px #000000;
}

.digiContentsThumbnailSelected {
    box-shadow: 0px 0px 2px 0px #7799ff;
}

.hidden {
    opacity: 0 !important;
}

.visible {
    visibility: visible !important;
    opacity: 1 !important;
}

.noclick {
    pointer-events: none !important;
}

.standardTransition {
    transition: 0.5s opacity ease-in-out 0s !important;
    -moz-transition: 0.5s opacity ease-in-out 0s !important;
    -webkit-transition: 0.5s opacity ease-in-out 0s !important;
    -o-transition: 0.5s opacity ease-in-out 0s !important;
    -ms-transition: 0.5s opacity ease-in-out 0s !important;
}

.pageDot {
    border-radius: 2px;
    position: absolute;
    left: 0px;
    width: 4px;
    height: 4px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: rgba(0, 0, 0, 0.2);
}

.pageDot-lit {
    border-radius: 2px;
    position: absolute;
    width: 4px;
    height: 4px;
    border: 1px solid #ffffff;
    background-color: rgba(255, 255, 255, 1);
}

.animationTransition {
    transition: 0.5s all ease-in-out 0s !important;
    -moz-transition: 0.5s all ease-in-out 0s !important;
    -webkit-transition: 0.5s all ease-in-out 0s !important;
    -o-transition: 0.5s all ease-in-out 0s !important;
    -ms-transition: 0.5s all ease-in-out 0s !important;
}

img.pageimg {
    transform-origin: 0% 0% 0px;
    -moz-transform-origin: 0% 0% 0px;
    -webkit-transform-origin: 0% 0% 0px;
    -ms-transform-origin: 0% 0% 0px;
    -o-transform-origin: 0% 0% 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    pointer-events: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    z-index: 2;
}

#zoomdiv {
    position: absolute;
    top: 0px;
    left: 0px;
    pointer-events: none;
    z-index: 3;
    -webkit-transform-origin: 0% 0%;
    -webkit-transform: scale(0.25, 0.25);
}

#zoomimg {
    position: absolute;
    top: 0px;
    left: 0px;
    pointer-events: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    z-index: 3;
    visibility: hidden;
    
    
    -webkit-transform-origin: 0% 0%;
    -webkit-transform: scale(2, 2);
}

div.selectedPage {
    outline: 2px dashed #ff0000;
}

div.zoompage {
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: none;
    -ms-transition: none;

    transform-origin: 0% 0% 0px;
    -moz-transform-origin: 0% 0% 0px;
    -webkit-transform-origin: 0% 0% 0px;
    -ms-transform-origin: 0% 0% 0px;
    -o-transform-origin: 0% 0% 0px;
    
    z-index: 5;
    
    pointer-events: none;
}

div.digipageLink {
    position: absolute;
    cursor: pointer;
    background: #000000;
    filter: alpha(opacity=20, style=0);
    opacity: .2;
    pointer-events: anything;
    
    transform-origin: 0% 0% 0px;
    -moz-transform-origin: 0% 0% 0px;
    -webkit-transform-origin: 0% 0% 0px;
    -ms-transform-origin: 0% 0% 0px;
    -o-transform-origin: 0% 0% 0px;
    
    border-radius: 2px;
}


.digipage-lightbox {

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0, 0, 0, .8);

}



.digipage-lightbox_table {

    width:100%;

    height:100%;

}



.digipage-lightbox_table_cell {

    vertical-align:middle;

}

.digipage-grey {
    background-color: #646464;
    
   -webkit-transition:all 0.5s ease-in !important;
   -moz-transition:all 0.5s ease-in !important;
   -o-transition:all 0.5s ease-in !important;
   transition:all 0.5s ease-in !important;
}

.digipage-green {
    background-color: #55ff11;
    box-shadow: 0px 0px 1px 1px #000000;
    border-radius: 2px;
    
   -webkit-transition:all 0.5s ease-in !important;
   -moz-transition:all 0.5s ease-in !important;
   -o-transition:all 0.5s ease-in !important;
   transition:all 0.5s ease-in !important;
}

.loader {
  margin-left: -3em;
  margin-top: -3em;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.55em solid rgba(255, 255, 255, 0.2);
  border-right: 0.55em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.55em solid rgba(255, 255, 255, 0.2);
  border-left: 0.55em solid #ffffff;
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  box-shadow: 0px 0px 1px 2px rgba(0,0,0,0.5), inset 0px 0px 1px 2px rgba(0,0,0,0.5);
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.window-modal {
    border-radius: 4px;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
    background: #e1e1e1;
    opacity: 1;
    visibility: visible;
    transform-origin: 50% 100%;
    transition: ease-in-out all 0.25s;
}

.window-modal-hidden {
    border-radius: 4px;
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) rotateX(50deg) scale(0.9, 0.9) !important;
    opacity: 0;
    visibility: hidden;
    background: #e1e1e1;
    transform-origin: 50% 100%;
    transition: ease-in-out all 0.25s;
}

button {
    overflow: hidden;
    border-radius: 1px;
    font-family: 'Roboto', sans-serif;
    height: 25px;
    outline: none;
    border-width: 0;
    /* transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1); */
    transition-delay: 0.2s;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    transition: background .4s ease-out, box-shadow .4s ease-out;
    background: #efefef;
}

button:hover {
    background-color: #f5f5f5;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.28);
}

button:active {
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.30);
}

button:focus {
    box-shadow: 0 0 5px rgba(81, 203, 238, 1), 0 4px 7px 0 rgba(0, 0, 0, 0.30);
    border: 1px solid rgba(81, 203, 238, 1);
}

button:before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  display: block;
  width: 0;
  padding-top: 0;

  border-radius: 100%;

  background-color: rgba(0, 0, 0, .1);

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

button:active:before {
  width: 120%;
  padding-top: 120%;

  transition: width .2s ease-out, padding-top .2s ease-out;
}

.digi-search-input {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background-color: white;
    border: 0px;
    width: 280px;
    padding: 8px 10px 8px 10px;
}

.digi-search-button {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    background-color: #7F965A;
    border: 0px;
    padding-top: 2px;
    padding-bottom: 2px;
    width: 38px;
    height: 36px;
    position: relative;
    top: -1px;
    outline: 0px;
    box-shadow: none;
    cursor: pointer;
}

.digi-search-close {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 38px;
    color: #B7CA99;
    opacity: 1;
    float: right;
    background-color: rgba(0, 0, 0, 0);
    border: 0px;
    width: 46px;
    height: 44px;
    cursor: pointer;
    margin-top: -8px;
}

.digi-search-button:hover {
    background-color: #6ba847;
    box-shadow: none;
}

.digi-search-button:focus {
    outline: 0px;
    box-shadow: none /*0px 0px 2px 2px #6ba847;*/
}

.digi-search-results {
    /*
    position: absolute;
    -webkit-overflow-scrolling: touch;
    
    top: 0px;
    left: 0px;
    width: 500px;
    height: 500px;
    
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    */
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 110px;
    text-align: center;
    left: 0px;
}

.digi-search-result {
    transition: all 0.2s;
    border: 1px solid #0E0E0E;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    width: 46%;
    height: 142px;
    max-width: 46% !important;
    max-height: 142px !important;
    background-color: #7F965A;
    box-sizing: border-box;
    overflow: hidden;
    color: #ffffff;
    cursor: pointer;
    padding: 4px 4px 4px 4px;
}

.digi-search-result:hover {
    background-color: #5B7D77;
}

.digi-search-pageindex {
    margin: 4px 8px 4px 4px;
    font-weight: 500;
    font-size: 1.3em;  
    padding: 10px 10px 0;
    display: table;
}

.digi-search-content {
    margin: 6px 8px 4px 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
    box-sizing: border-box;
    max-height: 70px;
}

.digi-search-pageimage {
    padding: 10px;
    box-sizing: border-box;
    max-height: 100%;
}

.digi-search-input-box {
}

.digi-search-content-match {
    color: #ffffff;
    font-weight: 500;
    background-color: #454545;
    padding: 1px 5px 1px 5px;
    border-radius: 10px;
}

.digi-search-object {
    border: 0px;
}

.digi-search-wait svg path, svg rect {
    fill: #ffffff;
}

.digi-search-no-results {
    font-family: 'Roboto', sans-serif;
}

.zoomed .abs {
    -webkit-backface-visibility: hidden; /* Safari & Chrome */
    -moz-backface-visibility: hidden; /* Firefox */
    -ms-backface-visibility: hidden; /* Internet Explorer */
    -o-backface-visibility: hidden; /* Opera */
    backface-visibility: hidden;  /* W3C */
}