#grid {
    background: #fff;
    margin-top:20px;
}

#grid_container {
    border-left: 1px solid #0064cc;
    border-right: 1px solid #0064cc;
}

#grid h2.grid_header {
    background: #0065cc;
    padding: 10px;
    color: #FFCC00 !important;
    text-align: center;
    border-radius: 5px 5px 0 0;
    font-family:'Arial, Helvetica, sans-serif';
    margin:0;
    border-bottom:1px solid #CCC;
}

#grid p {
    padding:10px;
}

#grid_filter select {
    display: inline-block;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    width:100%;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

#grid_filter {
    margin-bottom: 0;
    padding: 10px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    display:none;
}

#grid_filter .filter_group {
    display: inline-block;
    text-align: center;
    max-width:49%;
}

#grid_filter .filter_group label {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    padding-top:10px;
}

button#filter_grid {
    padding: 10px;
    background: seagreen;
    border: 0;
    margin: 0;
    width: 100%;
    margin-top: 10px;
    display: block;
    cursor: pointer;
    color: gold;
    font-size: 12px;
    border-radius: 5px;
    outline: none;
}

button#filter_grid:hover {
    background: #1a8b42;
}

table.rounded {
    border-collapse: collapse;
    text-align: center;
    margin: 0 auto;
    font-size:14px;
    table-layout:fixed;
}

table.rounded thead {
    background-color: #0066CC;
    color: #eee;
    border: none;
}

table.rounded thead th {
    font-weight:bold;
    vertical-align:middle;
    border-right:1px solid #CCC;
    padding: 10px 0;
}

table.rounded thead th:last-child {
    border-right:none;
}

table.rounded tr td {
    vertical-align: middle;
    padding:10px;
    border-right:1px solid #CCC;
}

table.rounded tr td:last-child {
    border-right:none;
}

table.rounded tr:nth-child(2n) {
    background-color:#EEE;
}

.grid_footer {
    background: #0066CC;
    color: #EEE;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 12px;
}