/**
 * User: Martin Fünning (JAKOTA Design Group GmbH)
 * Date: 29.06.16
 * Time: 14:57
 */

div.shrink {
    position:relative;
    padding-top: 1px;
    margin-top: -1px;
    padding-bottom: 1px;
    margin-bottom: -1px;
}

div.shrink div.fader {
    position: absolute;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 85%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 85%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 85%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
    bottom: 0px;
    width: 100%;
    height: 60px;
}

div.shrink div.fader div.expander {
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    border-top: 2px solid #185BA7;
    cursor: pointer;
    color: #185BA7;
    opacity:0.7;
}

div.shrink div.fader div.expander:hover {
    opacity:1;
}