/*
puzzles.css - style for all the content of puzzles.html
Copyright 2012 Jonas Bardino
*/
body
{
    background: silver;
}
span.jPuzzle-box
{
    background: silver;
}
#results
{
    font-size: 22px;
    text-align: center;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
    background-color: rgba(255,255,255,0.7);
    padding: 5px;
    font-weight: bold;
    position: absolute;
    width: 100%;
    top: 38%;
}

p, h2
{
    text-align: center;
}
#intro, #games, #outro {
    border: 1px solid darkblue;
    border-radius: 4px;
    -moz-border-radius: 4px;
    /* top right bottom left */
    //margin: 2px 2% 2px 2%;
    margin: 0px;
    //padding: 0px 4% 0px 4%;
    padding: 0px;
    text-align: center;
    font-weight: bold;
    color: darkblue;
}
#titleimageleft img {
    vertical-align: middle;
    height: 40px;
}
#gametitle {
    font-size: 32px;
    font-weight: bold;
    color: silver;
    background: darkblue;
    line-height: 40px;
    vertical-align: middle;
}
#titleimageright img {
    vertical-align: middle;
    height: 40px;
    /* flip right copy for mirror image effect */
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}
#intro {
}
#intro ul {
    list-style-type: none;
    color: silver;
    background: darkblue;
    margin: 4px 0px 4px 0px;
}
#intro ul li {
    display: inline;
    padding: 0px 16px 0px 16px;
    margin: 0;
}
/* 
   Forms are hard to style properly!
   background changes ruins rounding, etc.
*/
input, select {
    color: darkblue;
    //background: silver;
    //border-color: darkblue;
    //border: 1px solid;
}
#userinfo {
    text-align: left;
}
#seriesinfo {
    text-align: center;
}
#changeseries {
    text-align: right;
}
#gameintro {
    margin: 4px 0px 4px 0px;
    padding: 0px 4% 0px 4%;
}
#games {
}
#outro {
    valign: middle;
}
#outro ul {
    list-style-type: none;
    color: silver;
    background: darkblue;
    margin: 4px 0px 4px 0px;
}
#outro ul li {
    display: inline;
    padding: 0px 16px 0px 16px;
    margin: 0;
}
#winimageleft img {
    vertical-align: middle;
    height: 80px;
}
#wininfo {
    font-size: 32px;
    font-weight: bold;
    color: silver;
    background: darkblue;
    line-height: 80px;
    vertical-align: middle;
}
#winimageright img {
    vertical-align: middle;
    height: 80px;
    /* flip right copy for mirror image effect */
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}
