a:link, a:visited {
    text-decoration: none;
}

td.number {
    text-align: right;
}

button.sort {
    border: none;
    padding: 0px 2px;
    text-align: center;
    background-color: white;
}

button:disabled {
    border: hidden;
    background: white;
}

/* Highlight row on mouseover */
tr:hover td {
	background-color: #66CCFF;
}

/* Remove gap between elements so the highlighting is solid between but pad for readability */
table {
   border-collapse: collapse;
}
table th, table td{
    padding: 2px 5px;
}

/* Zebra stripe table */
#table tr:nth-child(2n){
#    background: #f2f2f2;
#}
