html {
    background-color: #ddd;
    font-family: Arial, Helvetica, sans-serif;
}

html, body {
	overflow: hidden;
}

table {
    width: 100%;
    border-spacing: 0px;
    border-collapse: separate;
}

tr:nth-child(even) {
    background: #EEE
}

tr:nth-child(odd) {
    background: #CCC
}

tr:nth-child(even):hover {
    background-color: #AAA;
}

tr:nth-child(odd):hover {
    background-color: #AAA;
}

th {
    text-align: left;
}

th, td {
    padding: 3px;
}

.button {
    cursor: pointer;
    background-color: lightgray;
    padding: 3px 10px;
    /* disable text marking */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button:hover {
    background-color: gray;
}

.button:active {
    background-color: transparent;
}