﻿@font-face{
    font-family: 'open_sansregular';
    src: url('../fonts/OpenSans-Regular-webfont.eot');
    src: url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
        url('../fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
        url('../fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
body {
    width: 1000px;
    margin: auto;
    font-family: open_sansregular;
    font-size: 14px;
}
body > header {
    padding: 10px;
    border: 1px solid rgb(190, 190, 190);
    border-top-width: 0px;
    background: rgb(240, 240, 240);
    border-radius: 0px 0px 4px 4px;
}
header > img {
    display: block;
    float: left;
}
header > h1 {
    display: block;
    font-size: 38px;
    margin: 0px;
    margin-top: 40px;
    margin-left: 200px;
    box-sizing: border-box;
    height: 88px;
}
body > footer {
    font-size: 11px;
    padding: 4px;
    border: 0px solid rgb(190, 190, 190);
    color: rgb(190, 190, 190);
    border-top-width: 1px;
    text-align: right;
}
.hint {
    margin: 10px;
    padding: 4px 8px 4px 8px;
    border-radius: 12px;
    background: rgb(0,120,0);
    color: white;
    text-shadow: 0px -1px 0px rgba(0,0,0,0.25);
}
ul {
    list-style: none;
    border: 1px solid rgb(190, 190, 190);
    padding: 0px;
    border-radius: 4px;
}
li {
    padding: 10px;
}
li:first-of-type {
    border-radius: 4px 4px 0px 0px;
}
li:last-of-type {
    border-radius: 0px 0px 4px 4px;
}
li:nth-child(2n+1) {
    background: rgb(240, 240, 240)
}
li:not(:last-of-type) {
    border: 0px solid rgb(190, 190, 190);
    border-bottom-width: 1px;
}
li > span {
    color: gray;
    margin-left: 20px;
}
table {
    margin: 20px;
    border-spacing: 0px;
    border: 1px solid rgb(190, 190, 190);
    border-radius: 4px;
}
th {
    padding: 10px;
    font-weight: bold;
}
td {
    padding: 10px;
    border-top: 1px solid rgb(190, 190, 190);
}
.recommended {
    background: rgb(100,255,100);
}
th:not(:first-of-type),
td:not(:first-of-type) {
    border-left: 1px solid rgb(190, 190, 190);
}
tr {
    border: 0px solid rgb(190, 190, 190);
    border-top-width: 1px;
}
tbody > tr:nth-of-type(2n+1) {
    background: rgb(240, 240, 240)
}
thead > tr {
    border-radius: 4px 4px 0px 0px;
}
tbody > tr:last-of-type {
    border-radius: 0px 0px 4px 4px;
}
a {
    text-decoration: inherit;
    color: inherit;
}
a:hover {
    color: rgb(0,120,0);
    text-decoration: underline;
}