html{
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    line-height:1;
    /*
    overflow:hidden;
    height: 100%;
    max-height: 100%;
    */
}
body {
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #FFF;
    width: 100%;
    max-width: 100%;
    /*
    -ms-overflow-style: none;
    height: 100%;
    max-height: 100%;
    overflow:hidden;
    */
}
.Launcher {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding:30px;
}

.LauncherIcon {
    width:24px;
    height:24px;
    margin:auto;
	border: 2px rgba(0,0,0,0.25) solid;
	border-top: 2px rgba(0,0,0,1) solid;
	border-radius: 50%;
	-webkit-animation: LauncherAnimate .6s infinite linear;
	animation: LauncherAnimate .6s infinite linear;
}
@-webkit-keyframes LauncherAnimate {
	from { -webkit-transform: rotate(0deg); }
	to { -webkit-transform: rotate(359deg); }
}
@keyframes LauncherAnimate {
	from { transform: rotate(0deg); }
	to { transform: rotate(359deg); }
}
