.characterBuilder {
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    border: none;
    overflow: hidden;
    background-image: url(bg.jpg);
}
.characterBuilder .dummyHead{
    width: 156px;
    height: 156px;
    position: absolute;
    top: 32px;
    left: 290px;
    background-size: 100% 100%;
}
.characterBuilder .dummyLayer{
    position: absolute;
    left: 80px;
    top: 60px;
    height: 400px;
    width: 250px;
    display: block;
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
}
.characterBuilder .dummyHeadLayer{
    width: 156px;
    height: 156px;
    position: absolute;
    top: 32px;
    left: 290px;
    background-position: -115px -30px;
    background-size: 250%;
    background-repeat: no-repeat;
}

.characterBuilder .selectorBase{
    top: 36px;
    right: 43px;
    width: 265px;
    height: 377px;
    position: absolute;
    overflow: hidden;
    overflow-y: auto;
}
.characterBuilder .selectorGroup{
    position: relative;
}

.characterBuilder .selectorGroupItem {
    background-size: 70%;
    background-position: top center;
    background-repeat: no-repeat;
    cursor: pointer;
    width: 70px;
    height: 70px;
    float: left;
    margin: 2px;
}

.characterBuilder .readyButton{
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.characterBuilder .window{
    position: absolute;
    top: 80px;
    left: 220px;
    right: 220px;
    border: 1px solid #808080;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.8);
    display: block;
    cursor: pointer;
    text-align: center;
    -webkit-box-shadow: 3px 3px 13px 0px rgba(50, 50, 50, 0.33);
    -moz-box-shadow:    3px 3px 13px 0px rgba(50, 50, 50, 0.33);
    box-shadow:         3px 3px 13px 0px rgba(50, 50, 50, 0.33);
    font-family: Arial;
    z-index: 999999;
}
.characterBuilder .question{
    padding: 20px 25px 20px 25px;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 1);
}

.characterBuilder .choiceButton {
    -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
    -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
    box-shadow:inset 0px 1px 0px 0px #ffffff;
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9) );
    background:-moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
    background-color:#f9f9f9;
    -webkit-border-top-left-radius:6px;
    -moz-border-radius-topleft:6px;
    border-top-left-radius:6px;
    -webkit-border-top-right-radius:6px;
    -moz-border-radius-topright:6px;
    border-top-right-radius:6px;
    -webkit-border-bottom-right-radius:6px;
    -moz-border-radius-bottomright:6px;
    border-bottom-right-radius:6px;
    -webkit-border-bottom-left-radius:6px;
    -moz-border-radius-bottomleft:6px;
    border-bottom-left-radius:6px;
    text-indent:0;
    border:1px solid #dcdcdc;
    display:inline-block;
    color:#666666;
    font-family:Arial;
    font-size:15px;
    font-weight:bold;
    font-style:normal;
    height:50px;
    line-height:50px;
    min-width:100px;
    text-decoration:none;
    text-align:center;
    text-shadow:1px 1px 0px #ffffff;
    margin-bottom: 20px;
    margin-right: 20px;
    whitespace: no-wrap;
    padding: 0px 10px 0px 10px;
}
.characterBuilder .choiceButton:hover {
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9) );
    background:-moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
    background-color:#e9e9e9;
}
.characterBuilder .choiceButton:active {
     position:relative;
     top:1px;
 }