﻿.button:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.announcement:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.button {
    background-color: orange;
    color: black;
    border: 2px solid #4CAF50; /* Green */
    border-radius: 30px;
    text-align: center;
    padding: 5px;
}




/* The Modal (background) */
.modal {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 3002; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: darkorange;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 2px solid #000;
    height: 35%;
    width: 35%; /* Could be more or less, depending on screen size */
    opacity: 1;
}

/* The Close Button */
.close {
    color: #000;
    float: right;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}




.ui-menu {
    width: 150px;
}

#myh1 {
    color: white;
}


#bottomdiv {
    background-color: grey;
    pointer-events: none;
    height: 95px;
    width: 2000px;
    position: fixed;
    /*z-index: 3000;*/
    left: 0%;
    top: 93%;
    margin: -10px 0 0 -10px;
}

#topdiv {
    background-color: grey;
    pointer-events: none;
    height: 45px;
    width: 2000px;
    position: fixed;
    z-index: 3000;
    left: 0%;
    top: 0%;
    margin: -10px 0 0 -10px;
}




#arrow-ie {
    z-index: 3001;
    position: absolute;
    float: left;
    bottom: 10px;
    display: none;
    left: 800px;
    height: 309px;
    width: 186px;
    opacity: 0;
    background-color: #CCC;
    background: url(https://sharepoint.mcoe.org/_layouts/15/absent/image/animated-arrow-ie.gif) center no-repeat;
}


#arrow-chrome {
    z-index: 3001;
    position: absolute;
    float: left;
    bottom: 10px;
    display: none;
    left: 20px;
    height: 500px;
    width: 186px;
    opacity: 0;
    background-color: #CCC;
    background: url(https://sharepoint.mcoe.org/_layouts/15/absent/image/redarrow.jpg) center no-repeat;
}




#center {
    font-family: helvetica;
    height: 350px;
    width: 25%;
    position: absolute;
    z-index: 3000;
    left: 34%;
    top: 10%;
    margin: -25px 0 0 -25px;
}

#bottom {
    background-color: orange;
    pointer-events: none;
    height: 50px;
    width: 2000px;
    position: fixed;
    z-index: 3000;
    left: 5%;
    top: 85%;
    margin: -10px 0 0 -10px;
}

#dvLoading {
    /*Any GIF Loader Image*/
    /*background-image: url('image/ajax-loader.gif');*/
    height: 350px;
    width: 350px;
    position: fixed;
    z-index: 3000;
    left: 37%;
    top: 30%;
    margin-left: -25px;
    margin-right: 0;
    margin-top: -25px;
}




.blink {
    animation: blinker 0.6s linear infinite;
    color: red;
    font-size: 20px;
    font-weight: bold;
    font-family: sans-serif;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.blink-one {
    animation: blinker-one 1s linear infinite;
}

@keyframes blinker-one {
    0% {
        opacity: 0;
    }
}

.blink-two {
    animation: blinker-two 1.4s linear infinite;
}

@keyframes blinker-two {
    100% {
        opacity: 0;
    }
}