/** General CSS Properties for Hangman WebGUI **/

html {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

#container {
    text-align: center;
    vertical-align: middle;
    padding-top: 50px;
    width: 600px;
    margin: auto;
}
#footer {
    font-size: 10px;
    color: #888;
    margin-top: 15px;
}
form {
    text-align: left;
}
.desc {
    margin-top: 16px;
    margin-bottom: 16px;
}
.createGameImageDivs {
    border: 1px solid #EEE;
    text-align: center;
    width: 100%;
}
.createGameImageDivs:hover {
    background-color: #EFEFEF;
}
.centerForm {
    text-align: center;
}
.armybadge {
    height: 120px;
}
.choiceImages {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=55)";
    filter: alpha(opacity=55);
    -moz-opacity:0.55;
    -khtml-opacity: 0.55;
    opacity: 0.55;
}
.choiceImages:hover {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity:1;
    -khtml-opacity: 1;
    opacity: 1;
}
.chosenImages {
    border: 2px solid #BBF;
}
#languageChoice {
    position: fixed;
    border: 2px solid #CCC;
    top: 0px;
    right: 0px;
    margin: 0px;
    padding: 0px;
}
.langFlag {
    width: 30px;
    height: 20px;
    cursor: pointer;
    border: 1px solid black;
}
.anospec:visited {
    text-decoration: none;
    color: #000;
}
.anospec:active {
    text-decoration: none;
    color: #000;
}
.anospec:hover {
    text-decoration: none;
    color: #000;
}
.anospec {
    text-decoration: none;
    color: #000;
    display: table-cell;
}