﻿.STtable { /* Hele tabellen */
    border: solid #999999 1px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5) inset, 0 1px 1px #DDD;
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.5) inset, 0 1px 1px #DDD;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5) inset, 0 1px 1px #DDD;
    border-spacing: 0;
    font-size: 12px;
    text-align: center;
}

.STtable tr {/* Normale rækker */
    background-color: #eaeaea;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#eaeaea), to(#cdcdcd));
    background-image: -webkit-linear-gradient(top, #eaeaea, #cdcdcd);
    background-image:    -moz-linear-gradient(top, #eaeaea, #cdcdcd);
    background-image:     -ms-linear-gradient(top, #eaeaea, #cdcdcd);
    background-image:      -o-linear-gradient(top, #eaeaea, #cdcdcd);
    background-image:         linear-gradient(top, #eaeaea, #cdcdcd);
    font-family:Helvetica, Arial;
     font-size:12px;
}


.STtable td, .STtable th {
    border-left: 1px solid #999999;
    border-top: 1px solid #999999;
    padding: 5px;
    height: 20px;
}

.STtable th { /* Overskrift række*/
    color: white;
    background-color: #209fe0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#209fe0), to(#1c6b9d));
    background-image: -webkit-linear-gradient(top, #209fe0, #1c6b9d);
    background-image:    -moz-linear-gradient(top, #209fe0, #1c6b9d);
    background-image:     -ms-linear-gradient(top, #209fe0, #1c6b9d);
    background-image:      -o-linear-gradient(top, #209fe0, #1c6b9d);
    background-image:         linear-gradient(top, #209fe0, #1c6b9d);
    border-top: none;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5) inset, 0 1px 1px #DDD;
     font-family:'Trebuchet MS';
    font-size:14px;
}

.STtable tr:hover {/* Mus over*/
    background: #8cb3d5; 
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;     
}    


.STtable td:first-child, .STtable th:first-child {
    border-left: none;
}

.STtable th:first-child {
    -moz-border-radius: 4px 0 0 0;
    -webkit-border-radius: 4px 0 0 0;
    border-radius: 4px 0 0 0;
}

.STtable th:last-child {
    -moz-border-radius: 0 4px 0 0;
    -webkit-border-radius: 0 4px 0 0;
    border-radius: 0 4px 0 0;
}

.STtable th:only-child{
    -moz-border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
}

.STtable tr:last-child td:first-child {
    -moz-border-radius: 0 0 0 4px;
    -webkit-border-radius: 0 0 0 4px;
    border-radius: 0 0 0 4px;
}

.STtable tr:last-child td:last-child {
    -moz-border-radius: 0 0 4px 0;
    -webkit-border-radius: 0 0 4px 0;
    border-radius: 0 0 4px 0;
}
