body {
    background-color: #666;
    background-image: url(images/background.png);
    font-family: sans-serif;
}

input {
    display:none;
}

label {
    display: inline-block;
    background-color: #555;
    cursor: pointer;
    transition: background-color ease 0.25s;
}
label.tradable {
    padding: 6px;
    margin: 4px;
    line-height: 15px;
    border-radius: 3px;
}
label.faction{
    width: 32px;
    height: 32px;
    margin: 4px;
    padding: 6px;
    border-radius: 64px;
}
label.option {
    padding: 6px;
    margin: 4px;
    border-radius: 3px;
    font-size: 70%;
    font-weight: bold;
}
input:checked+label {
    background-color: #888;
    transition: background-color ease 0.25s;
}


div#progress {
    position: absolute;
    background-color: #555;
    padding: 1em;
    border-radius: 0.5em;
    left: 50%;
    top: 6em;
    width: 20em;
    margin-left:-11em;
}

div#progress p.new {
    color: rgba(255,255,255,0.0);
}

div#progress p {
    color: white;
    transition: color linear 0.25s;
}


div#content {
    margin: 0 auto;
    width: 512px;
    text-align: center;
    min-width: 512px;
}

div#content.large {
    width: 800px;
    min-width: 800px;
}

canvas {
    margin-top: 2em;
}

.note {
    margin-top: 2em;
    color: #333;
    font-weight: bold;
}
