.wrapper {
    width: 920px;
    height: 640px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

#titleBar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    -moz-box-shadow: 0 0 5px #000000;
    -webkit-box-shadow: 0 0 5px #000000;
    box-shadow: 0 0 5px #000000;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
.wrapper h1 {
    font-weight: 700;
    font-size: 1em;
}
#titleBar h1 {
    float: left;
    line-height: 2;
    margin: 0 0 0 10px;
}
#titleBar .score {
    float: right;
    margin: 5px 0 0 0;
}
#titleBar .score span {
    padding: 2px 10px;
    color: #fff;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    margin-right: 10px;
}
#titleBar .score #stopwatch {
    width: 65px;
}

#dropArea1,
#dropArea2,
#pairsArea,
#hostArea {
    position: absolute;
}

.wrapper #dropArea1,
.wrapper #dropArea2 {
    background-repeat: no-repeat;
    background-position: center 40%;
    background-color: transparent;
}

.ui-droppable.ui-state-hover.ui-state-disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: transparent;
}

#hostArea .host {
    position: absolute;
    top: 0;
    left: 0;
}

#pairsArea .pair {
    display: inline-block;
    float: left;
    text-align: center;
    cursor: move;
}
#pairsArea .pair.ui-draggable-disabled.ui-state-disabled {
    cursor: default;
}


#resultMessage {
    border: 3px solid #adff2f;
    height: 5em;
    left: 50%;
    margin-left: -170px;
    margin-top: -3em;
    padding: 1em;
    position: absolute;
    z-index: 7;
    text-align: center;
    top: 50%;
    width: 340px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 5px #000000;
    -webkit-box-shadow: 0 0 5px #000000;
    box-shadow: 0 0 5px #000000;
}

#resultMessage h1 {
    margin-bottom: 1em;
}
#resultMessage p a {
    margin-bottom: 1em;
    text-shadow: 0 -1px #999999, 1px 0 #999999, 0 1px #999999, -1px 0 #999999;
}
#resultMessage p a:hover {
    text-decoration: none;
}
