* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    cursor: default;
}

body
{
    background-color: black;
    font-size: 1em;
    margin: 2px 0px 0px 0px;
}
/*overflow: hidden;*/

.page
{
    display: none;
    height: 100%;
    max-height: 780px;
    max-width: 480px;
    position: relative;
    margin: 0px auto;
}

#company
{
    position: absolute;
    width: 26%;
    max-width: 200px;
    top: 4px;
    right: 4px;
    text-align: center;
    color: White;
    font-family: verdana;
    font-size: 0.6em;
    font-weight: bold;
}

#epLink
{
    width: 100%;
}

#gameCanvas, #titlePage, #overlay
{
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    -o-user-select: none;
    user-select: none;
}

#overlay, #gameCanvas
{
    width: 100%;
    height: 100%;
    /*max-width: 640px;*/
    /*max-height: 640px;*/
    position: absolute;
}

#canvasWrapper{
    position: relative;
}

#gameStage .active
{
    display: block;
}

#buffer
{
    height: 3em;
    padding-top: 1em;
    font-family: Arial;
    font-weight: bold;
}

#titlePage
{
    /*    background-image: url("../images/others/title.png");
        background-repeat: no-repeat;
        background-color: #2120BD;*/
    text-align: center;
    text-shadow: 2px 2px 3px #000000;
    filter: dropshadow(color=#000000, offx=2, offy=2);
    color: white;
    font-family:  fantasy, verdana;
    text-transform: uppercase;
}

#titleHeader
{
    margin-top: 60px;
    font-size: 48px;
    font-weight: bold;
}

#loadingScreen
{
    font-size: 24px;
    margin: 3em auto 0px auto;
    width: 210px;
    height: 32px;
    border: 2px solid white;
    border-radius: 12px;
}

#loadingMessage
{
    width: 200px;
    height: 24px;
    display: inline-block;
    /*background-image: url("../images/others/loadingProgress.png");*/
    /*background-repeat: no-repeat;*/
}

#startRow
{
    margin-top: 1%;
    font-size: 1.5em;
    display: none;
}

.startRowButton {
    display: inline-block;
    width: 20%;
}

.startRowCell {
    display: inline-block;
}

.startRowButton:hover {
    color: red;
}

/*#startRow #btnStart{*/
    /*font-size: 1.3em;*/
    /*width: inherit;*/
/*}*/

#levelSelect
{
    display: none;
    padding: 1em;
    border: 2px solid #fff;
    margin: 0em 1em;
    border-radius: 1em;
    /*background-color: #aaf;*/
}

.levelIndicator
{
    display: inline-block;
    font-size: 2em;
    width: 1.2em;
    padding: 2px 2px 0.2em 2px;
    border: 2px solid #fff;
    border-radius: 4px;
    text-align: center;
    cursor: default;
    color: #888;
}

.levelSelectImage
{
    width: 100%;
    /*display: none;*/
}

/*#level1
{
    background-image: url("../images/others/level1.png");
}
#level2
{
    background-image: url("../images/others/level2.png");
}
#level3
{
    background-image: url("../images/others/level3.png");
}
#level4
{
    background-image: url("../images/others/level4.png");
}
#level5
{
    background-image: url("../images/others/level5.png");
}
*/

.rainbow1 {
    background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) );
    color: transparent;
    -webkit-background-clip: text;
}

.rainbow2 {
    background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) );
    color: transparent;
    -webkit-background-clip: text;
}

#pnlMessage
{
    text-align: center;
}

#pnlScore
{
    height: 32px;
    font-weight: bold;
}

#pnlRequired
{
    background-color:#00C0C0;
    width: 400px;
    height: 320px;
    margin: auto;
}

.requiredHeader
{
    text-shadow: 2px 2px 3px #000000;
    filter: dropshadow(color=#000000, offx=2, offy=2);
    color: white;
}

.requiredIndicator
{
    padding-left: 40px;
    border: 1px solid black;
    margin: 4px 0px;
    height: 20px;
}

#helpContent
{
    z-index: 1;
    max-height: 30em;
    margin: auto;
    margin-top: -200px;
    background-color: #222;
    border-radius: 12px;
    padding: 8px;
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none;
    position: relative;
    display: none;
}

#helpContent.helpActive
{
    display: block;
}

#helpContent h2
{
    margin-top: 0em;
}

#helpExit
{
    float: right;
}

.helpSection
{
    margin: 7px;
    margin-top: 50px;
    margin-bottom: 3em;
    border-radius: 6px;
    display: none;
    font-weight: bold;
    text-transform: none;
}

#pnlHelp
{
    width: 8%;
    height: 8%;
    position: absolute;
    top: 12px;
    left: 12px;
}
#pnlHelp img
{
    width: 100%;
}

#imgTitle
{
    margin-top: 80px;
    width: 100%;
}

.starsHolder
{
    height: 16px;
    margin-top: 2px;
    background-repeat: no-repeat;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    width: 47px;
}

.stars{
    width: 1.4em;
    float: left;
}

.stars0{
    background-image: url("../images/others/stars0.png");
}
.stars1{
    background-image: url("../images/others/stars1.png");
}
.stars2{
    background-image: url("../images/others/stars2.png");
}
.stars3{
    background-image: url("../images/others/stars3.png");
}

#helpPrev{
    position: absolute;
    left: 6px;
    bottom: 6px;
}

#helpNext {
    position: absolute;
    right: 6px;
    bottom: 6px;
}

.levelRow1{
    margin-bottom: 0.2em;
}

.levelUnplayed{
    opacity: 0.5;
}