html {
	width:100%;
	height:100%;
}
body {
	width:100%;
	height:100%;
}
#loading{
    height:100%;
    width:100%;
    background-image: url(../images/24turtle_splash.svg);
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center 10%;
    background-color:#4D64CF;
	position: absolute;
	z-index: 100000;
}
#loadingDiv{
    color: white;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    top:70%;
    text-align:center;
}
#loadingBar{
    background-color: #3047B6;
    border:1px solid transparent;
    border-radius: 20px;
    width:80%;
    height:50px;
    margin:20px auto;
}
#gage{
    width:0%;
    height:100%;
    background-color: #FFCA42;
    border-radius: 20px;
    animation-duration: 0.3s;
    animation-name: gage;
    animation-fill-mode: forwards;
}
@keyframes gage{
    from{
        width:5%;
    }
    to{
        width:100%;
    }
}