#puzzle,
#result {
    position: relative;
    top: 15px;
    width: 800px;
    height: 720px;
}

#puzzle {
    background-image: url(back.png);
    background-repeat: no-repeat;
}

.score {
    text-align: right;
    position: absolute;
    right: 0;
    top: 142px;
    color: #888;
    font-weight: bold;
}

.dragdrop {
    position: absolute;
    width: 84px;
    height: 120px;
}

.form {
    position: absolute;
    left: 0;
    top: 500px;
    width: 420px;
    height: 30px;
    text-align: right;
}

.formResult {
    width: 320px;
    height: 30px;
    text-align: right;
    border-top: 1px solid #888;
    padding-top: 10px;
}

.instructions {
    position: absolute;
    left: 0;
    top: 480px;
    width: 260px;
    height: 30px;
    color: #888;
    font-size: 90%;
}

.resultInfo {
    position: absolute;
    left: 0;
    top: 0;
    width: 320px;
    height: 400px;
}

.resultCover {
    position: absolute;
    left: 440px;
    top: -10px;
    width: 420px;
    height: 600px;
}

.resultCover p {
    margin-top: 0;
    padding-top: 0;
}

.isCorrect,
.isFalse {
    width: 320px;
    font-weight: bold;
    margin-top: 10px;
}

.isCorrect {
    color: rgb(69,140,34);
}

.isFalse {
    font-style: italic;
    color: rgb(136,57,38);
}

