table {
    /*border: 1px solid #dfdfdf;*/
    /*background-color: #f9f9f9;*/
    width: 100%;
    /*table-layout: fixed;*/
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
}

table td, table th {
    border-top-color: white;
    border-bottom: 1px solid #dfdfdf;
    color: #555;
}

table th.blue {
    font-weight: bold;
    padding: 7px 5px 8px;
    /*text-align: left;*/
    line-height: 1.3em;
    font-size: 14px;
    background-color: #37474F;
    color: #fff;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

table th.grey {
    font-weight: bold;
    padding: 7px 5px 8px;
    /*text-align: left;*/
    line-height: 1.3em;
    font-size: 14px;
    background-color: rgba(69,90,100 ,1);
    color: #ffffff;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
table th.blue:hover {
    color: #CCCCCC;
}


table td {
    font-size: 15px;
    padding: 4px 5px 2px;
    /*vertical-align: top;*/
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
}

table td.surveyQuestion {
    font-size: 14pt;

}

/* Subtle Fading Animation */

#table_body tr {
    animation: fade 0.5s;
}

@keyframes fade {
    0% {opacity: 0.0;}
    100% {opacity: 1.0;}
}