.diashow-frozen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
}


/* diashow */
div#diashow {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 99999999;
    background: black;
    background: url(images/overlay.png) repeat 0 0 transparent;
    display: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px;
    *padding: 0; /* IE7 fix */
}

    div#diashow div.diashow-items {
        position: relative;
        width: 200%;
        height: 100%;
        display: block;
        z-index: 0;
        overflow: hidden;
    }
    
        div#diashow div.diashow-items div.diashow-item {
            position: absolute;
            width: 50%;
            height: 100%;
            overflow: hidden;
            text-align: center;
        }
            
            div#diashow div.diashow-items div.diashow-item a {
                position: absolute;
                top: 50%;
                left: 50%;
                margin-top: 50px;
                margin-left: -16px;
                width: 32px;
                height: 32px;
                display: block;
                overflow: hidden;
                background: url(images/ajax-loader.gif) no-repeat 0 0 transparent;
            }
            
            div#diashow div.diashow-items div.diashow-item img {
                position: relative;
                top: -1px;
                display: inline;
                width: auto;
                height: auto;
                max-width: 100%;
                max-height: 100%;
                vertical-align: middle;
            }
            
    
    div#diashow span.diashow-close {
        position: absolute;
        top:20px;
        right:20px;
        width: 25px;
        height: 25px;
        background: url(images/close.png) no-repeat 0 0 transparent;
        overflow: hidden;
        cursor: pointer;
    }
    
    div#diashow span.diashow-next {
        position: absolute;
        bottom:10%;
        right:20px;
        width: 79px;
        height: 75px;
        background: url(images/next.png) no-repeat right center transparent;
        overflow: hidden;
        cursor: pointer;
    }
    
    div#diashow span.diashow-prev {
        position: absolute;
        top:10%;
        left: 20px;
        width: 79px;
        height: 75px;
        background: url(images/prev.png) no-repeat left center transparent;
        cursor: pointer;
    }
    
    div#diashow span.diashow-counter {
        position: absolute;
        top:50%;
        right:20px;
        margin-top: -25px;
        font-size: 40px;
        line-height: 50px;
        font-weight: 300;
        color: #000;
        text-shadow: 0 1px 0 rgba(225,225,225,0.5);
    }
    
    div#diashow span.diashow-logo {
        position: absolute;
        top:50%;
        left:50%;
        margin-top: -25px;
        margin-left: -199px;
        width: 398px;
        height: 51px;
        background: url(images/logo.png) no-repeat center center transparent;
        overflow: hidden;
    }
    
    
    
/* mobile */
@media all and (max-width: 1000px) {
    
    div#diashow span.diashow-logo {
        -moz-background-size: 250px 36px;
		-o-background-size: 250px 36px;
		-webkit-background-size: 250px 36px;
		background-size: 250px 36px;
    }
   
}