@import url("sub_page.css");

#gameContainer {
    clear: right;
    height: 420px;
    width: 800px;
    background-color: #7895A3;
}
#gamePlay {
    height: 400px;
    width: 200px;
    float: right;
    margin: 10px;
    background-color: #FFFFFF;
}
#gameOver{
    position: absolute;
    height: 0px;
    width: 200px;
    overflow: hidden;
    background-color: #0b3543;
    color: #FFFFFF;
    font-size: 16px;
    /* to center on page first set the left to 50% set the margin-left to negative half the width */
    left: 50%;
    margin-left: -100px;
}
#instructions{
    position: absolute;
    height: 0px;
    width: 600px;
    padding: 0px;
    overflow: hidden;
    background-color: #0b3543;
    color: #FFFFFF;
    font-size: 16px;
    text-align:left;
    /* to center on page first set the left to 50% set the margin-left to negative half the width */
    left: 50%;
    margin-left: -300px;
}
#informationPanel {
    height: 300px;
    width: 100px;
    float: right;
    margin: 10px;
    text-align: right;
}
#startButton{ 
    height: 18px;
    width: 82px;
    background-image: url(images/startGameButton.png);
    float: right;
    clear: right;
}
#startButton:hover{ 
    background-image: url(images/startGameButton_hover.png);
}
#instructionsButton{
    height: 18px;
    width: 100px;
    background-image: url(images/instructions.png);
    float: right;
    clear: right;
}
#instructionsButton:hover{
    background-image: url(images/instructions_hover.png);
}
#nextDisplay {
    height: 80px;
    width: 40px;
    padding: 10px;
    background-color: #FFFFFF;
    float: right;
    clear: right;
}
#statistics {
    height: 400px;
    width: 400px;
    float: right;
}
.okButton{
    height: 14px;
    width: 21px;
    background-image: url(images/okButton.png);
    margin-left: auto;
    margin-right: auto;
}
.okButton:hover{
    background-image: url(images/okButton_hover.png);
}
.piece {
    height: 80px;
    width: 100px;
    float: left;
}
.pieceImage { 
    float: left;
}
.cell {
    background-image: url(images/background.png);
    height: 20px;
    width: 20px;
    float: left;
}
.invisibleCell {
    background-image: url(images/background.png);
    display:none;
}
body {
    background-image: url(images/pageBackground.png);
    font-family: sans-serif;
    text-align: center;
    font-size: 20px;
    padding: 5px;
}
