.char {
    position: relative;
    display: inline-block;
    border: 1px solid #aaa;
    padding: 3px;
    margin: 3px;
    background: #ccc;
    font-size: 40px;
    min-width: 40px;
}

.charInner {
    text-align: center;
}

.dec {
    text-align: center;
    font-size: 10px;
    color:#555;
}

.btnRemove {
    position:absolute;
    display:block;
    background: #333;
    color: #aaa;
    font-size: 11px;
    font-family: arial, helvetica, sans-serif;
    cursor: pointer;
    top: 3px;
    right: 3px;
    height: 15px;
    width: 15px;
    text-align: center;
}
.btnRemove:hover {
    background: rgb(243, 43, 43);
    color: rgb(71, 0, 0);
}
.btnSel {
    background: #333;
    color: #aaa;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    cursor: pointer;
    margin-top: 3px;
    height: 20px;
    text-align: center;
}

.btnSel:hover {
    background: #888;
    color: #ccc;
}