@charset "UTF-8";
/* CSS Document */

btn a:link {
    text-decoration: none;
    color: #ffffff;
    /* font-weight: bold; */
    font-size: 12px;
}

btn a:visited {
    text-decoration: none;
    color: #ffffff;
    /* font-weight: bold; */
    font-size: 12px;
}

btn a:hover {
    text-decoration: underline overline;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
}

html {
    height: 100%;
}

body {
    padding-top: 12px;

    /* IE10 Consumer Preview */
    background-image: -ms-linear-gradient(top, #000066 0%, #000000 100%);

    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(top, #000066 0%, #000000 100%);

    /* Opera */
    background-image: -o-linear-gradient(top, #000066 0%, #000000 100%);

    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000066), color-stop(1, #000000));

    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(top, #000066 0%, #000000 100%);

    /* W3C Markup, IE10 Release Preview */
    background-image: linear-gradient(to bottom, #000066 0%, #000000 100%);

    background-attachment: fixed;
    background-size: cover;

    /*For IE7-8-9*/
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#000066', endColorstr='#000000');
}

hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
}

img {
    margin: 0px 5px 0px 15px;
    vertical-align: middle;
}

td {
    color: #ffffff;
    font-family: verdana;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none;
    text-align: justify;
}

.border {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    background: #9999ff;
    border: 1px solid #ffffff;
    border-radius: 12px;
    box-shadow: 3px 3px 3px #888888;
    padding: 2px 5px 2px 5px;
}

/* Container holding the image and the text */
.titlebox {
    position: relative;
    text-align: center;
    color: white;
}

/* Bottom left text */
.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

/* Top left text */
.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

/* Top right text */
.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

/* Bottom right text */
.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

/* Centered text */
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vertical-align {
    display: flex;
    align-items: center;
}

.text-3d {
    font-size: 4.5vw;
    color: #0099FF;
    font-family: Arial Black, Gadget, sans-serif;
    text-shadow: 0px 0px 0 rgb(-19, 134, 236),
    1px 1px 0 rgb(-27, 126, 228),
    2px 2px 0 rgb(-36, 117, 219),
    3px 3px 0 rgb(-45, 108, 210),
    4px 4px 0 rgb(-53, 100, 202),
    5px 5px 0 rgb(-62, 91, 193),
    6px 6px 0 rgb(-71, 82, 184),
    7px 7px 0 rgb(-80, 73, 175),
    8px 8px 0 rgb(-88, 65, 167),
    9px 9px 0 rgb(-97, 56, 158),
    10px 10px 0 rgb(-106, 47, 149),
    11px 11px 10px rgba(0, 0, 0, 0.6),
    11px 11px 1px rgba(0, 0, 0, 0.5),
    0px 0px 10px rgba(0, 0, 0, .2)
}

/**THE SAME CSS IS USED IN ALL 3 DEMOS**/
/**gallery margins**/
ul.gallery {
    margin-left: 3vw;
    margin-right: 3vw;
}

.zoom {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.zoom:hover,
.zoom:active,
.zoom:focus {
    /**adjust scale to desired size,
    add browser prefixes**/
    -ms-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -webkit-transform: scale(2.5);
    -o-transform: scale(2.5);
    transform: scale(2.5);
    position: relative;
    z-index: 100;
}

.wave {
    background-image: url('../../images/header_background_wave.svg');
    width: 100%;
}

/**To keep upscaled images visible on mobile, 
increase left & right margins a bit**/
@media only screen and (max-width: 768px) {
    ul.gallery {
        margin-left: 15vw;
        margin-right: 15vw;
    }

    /**TIP: Easy escape for touch screens,
    give gallery's parent container a cursor: pointer.**/
    .DivName {
        cursor: pointer
    }
}