/** {
margin: 0;
padding: 0;
}*/
/*body {
font: 71%/1.5 Verdana, Sans-Serif;
}*/
#keyboard-container {
margin: 10px auto;  /*I added this*/
width: 640px;   /*I modified this*/
height: 256px;  /*I added this*/
overflow: auto; /*Fixes layout problem where element after doesn't go to new line properly*/
}
#write {
margin: 0 0 5px;
padding: 5px;
width: 671px;
height: 200px;
font: 1em/1.5 Verdana, Sans-Serif;
background: #fff;
border: 1px solid #f9f9f9;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
#keyboard {
margin: 0;
padding: 0;
list-style: none;
}
    #keyboard li {
    float: left;
    margin: 3px;
    width: 58px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    user-select: none;
    }
        .capslock, .tab, .left-shift {
        clear: left;
        }
        /*The buttons that need to start on new line*/
        .first-item {
        clear: left;
        }
            #keyboard .delete, #keyboard .clear {
            width: 90px;
            }
            #keyboard .tab {
            width: 70px;
            }
            #keyboard .capslock {
            width: 80px;
            }
            #keyboard .return {
            width: 77px;
            }
            #keyboard .left-shift {
            width: 95px;
            }
            #keyboard .right-shift {
            width: 109px;
            }
        .lastitem {
        margin-right: 0;
        }
        .uppercase {
        text-transform: uppercase;
        }
        #keyboard .space {
        clear: left;
        width: 681px;
        }
        .on {
        display: none;
        }
        #keyboard li:hover {
        /*position: relative;
        top: 1px;
        left: 1px;*/
        border-color: #BDB76B;
        cursor: pointer;
        }