body{
	display:none;
}
#jpreOverlay {
	background-color: rgba(255,255,255,0.9);
	overflow: hidden
}

#jpreSlide {
	display: flex;
	justify-content: center;
	align-items: center
}

#jpreLoader {
    height: 100px;
    width: 100px;
    -webkit-border-radius: 90%;
    -moz-border-radius: 90%;
    border-radius: 90%;
    border-top:    2px solid rgba(0,0,0,0.1);
    border-right:  2px solid rgba(0,0,0,0.5);
    border-bottom: 2px solid rgba(0,0,0,0.5);
    border-left:   2px solid rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-animation:load 1s linear infinite;
    -moz-animation:load 1s linear infinite;
    animation:load 1s linear infinite;
}

#jpreBar { display: none }
#jprePercentage { display: none }

#jpreButton { }


@-webkit-keyframes load {
  from { -webkit-transform:rotate(0deg); }
  to   { -webkit-transform:rotate(360deg); }
}

@-moz-keyframes load {
  from { -moz-transform:rotate(0deg); }
  to   { -moz-transform:rotate(360deg); }
}

@keyframes load {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}