/*leaderboard positioning*/

@media all and (orientation: portrait) {
    /*intentionally left blank*/
}

@media all and (orientation: landscape) {
    #setting {
        float: left;
        width: 40%;
    }

    #result {
        float: left;
        width: 60%;
    }
}

/*Canvas positioning*/

#canDiv {
    position: relative;
    width: 100%;
    height: 60%;
    /*background-color: yellow;*/
}

#cannonCanvas {
    position: absolute;
    /*left: 0;*/

    width: 100%;
    height: 100%;
    /*background-color: blue;*/

    display: block;
    z-index: 3;
}

#myCanvas {
    position: absolute;
    /*left: 0;*/

    width: 100%;
    height: 100%;
    /*background-color: green;*/

    display: block;
    z-index: 1;
}

#liveCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    /*background-color: green;*/
    display: block;
    z-index: 4;
}

/*text alignment is not working*/

th {
    text-align: center;
}

td {
    text-align: right;
}

body {
    display: none;
/ / overriden by jQuery Mobile
}

/*hide the column toggle btn*/

.ui-table-columntoggle-btn {
    display: none !important;
}

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
    text-align: center;
}

#loading-image {
    position: absolute;
    top: 100px;
    left: 240px;
    z-index: 100;
}
