/* Standard Items */
@viewport {
    width: device-width ;
    zoom: 1.0 ;
}
body {
    background-color: #006eb0;
    overflow: hidden;
}
/* -----------------------------------
//      App Buttons
---------------------------------------*/
.linkbutton {
    padding: 0;
    border-style: none;
    color: #90CCF4;
    cursor: pointer;
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    outline: none;
    background-color: #FFFFFF00;
    }
.linkbutton:hover {color:  #F78888;}
.linkbutton:active {transform: translateY(2px);}
.carouselbutton {
    background-color: transparent;
    padding: 2px;
    border-style: none;
    border-radius: 8px;
    color: #00529c;
    cursor: pointer;
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    background-size: 24px 24px;
    outline: none;
}
.carouselbutton:hover {
    background-color: #00000010;
}
.carouselbutton:active {
    transform: translateY(2px);
}
.externalbutton {
    padding: 0;
    border-style: solid;
    border-color: #FFFFFF;
    border-radius: 8px;
    color: #FFFFFF;
    cursor: pointer;
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    outline: none;
    background-color: #FFFFFF00;
}
.externalbutton:hover {background-color:  #FFFFFF40;}
.externalbutton:active {transform: translateY(2px);}
/* -----------------------------------
//      Loading Items
---------------------------------------*/
#LoadingDiv {
    padding: 0;
    top: 0;
    margin: 0 auto 0 auto;
    width: 600px;
    height: 200px;
    background-color: #006eb0;
    z-index: 100;
}
.bar {
    position: relative;
    top: 60px;
    height: 18px;
    width: 500px;
    margin: 0 auto 0 auto;
    background: #00a6dc;
    overflow-x: hidden;
    overflow-y: hidden;
}
.circle {
    position: absolute;
    top: -30px;
    margin-left: -30px;
    height: 60px;
    width: 10px;
    left: 0;
    background: #fff;
    -webkit-animation: move 2s infinite
}
#pLoad {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0px;
    width: 500px;
    text-align: center;
    text-transform: uppercase;
    color: #00a6dc;
    font-family: arial, sans-serif;
    font-weight: bold;
}
#pOutdated {
    position: relative;
    top: 85px;
    width: 500px;
    margin: 0 auto 0 auto;
    text-transform: uppercase;
    color: #ffffff;
    font-family: arial, sans-serif;
    font-weight: bold;
}
@-webkit-keyframes move {
    0% {
        left: 0;
        width: 10px;
    }
    50% {
        left: 45%;
        width: 110px;
    }
    100% {
        left: 110%;
        width: 10px;
    }
}
/* -----------------------------------
//      hidden text items on page (for SEO purposes)
---------------------------------------*/
#siteText {
    display: none;
}