/* C#/XAML fot HTML5 */
/* Copyright 2017 Userware/CSHTML5 */
/* http://www.cshtml5.com */



* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-backface-visibility: hidden;
}

html {
    height: 100%;
    width: 100%;
    margin: 0px;
}

body {
    -webkit-touch-callout: none; /* prevents callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none; /* prevents webkit from resizing text to fit */
    -webkit-user-select: text; /* 'none' prevents copy paste. 'text' allows it. */
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
    font-size: 1em;
    overflow-x: hidden;
    overflow-y: hidden;
    cursor: default;
    font-family: 'Segoe UI', 'DejaVu Sans', Verdana, Lucida, 'MS Sans Serif', sans-serif;
}

#log {
    position: fixed;
    left: 0;
    bottom: 0;
    pointer-events: none;
    color: #808080;
    word-wrap: break-word;
    max-width: 100%; /* for better word-wrap */
}

#loadingProgress {
    background-color: #DDDDDD;
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 3px;
    margin-top: -1px; /* set to a negative number 1/2 of your height */
    margin-left: -100px; /* set to a negative number 1/2 of your width */
}

#progressBar {
    background-color: #333333;
    margin: 0px;
    padding: 0px;
    height: 3px;
}

#progressText {
    display: none;
}
