@charset "UTF-8";
/* CSS resets */

.button {
    float: left;
    height: 32px;
    width: 150px;
    border-radius: 4px;
    border: solid 1px black;
    padding: 5px 6px 6px 6px;
    margin: 4px;
    text-align: center;
    font-size: 16px;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    /*font-weight:lighter;*/
    color: black;
    letter-spacing: 1px;
    z-index: 999;
    position: relative;
}

.button:hover {
    color: white;
    background-color: black;
    cursor: pointer;
}
