* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0;
    outline: 0;
}
body {
    margin: 0 auto;
    max-width: 760px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

a, a:visited {
    color: #0000ee;
}
a:hover {
    color: #ff0033;
}
a.new {
    /* color: #ff0032; */
}
a.new:before {
    display: inline-block;
    content: "NEW";
    margin-right: 4px;
    color: #f29d00;
    font-weight: bold;
    font-size: 8px;
    vertical-align: text-top;
}
hr {
    margin: 4px 0;
    border: 0;
    border-bottom: 1px solid #eee;
}
img {
    vertical-align: middle;
}

/* top-menu */
.top-menu {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 70px;
}
.top-menu .logo {
    width: 240px;
}
.top-menu a:first-child {
    margin-left: 10px;
}
.top-menu a:last-child {
    margin-right: 10px;
}
.top-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 12px;
}
.top-menu a img {
    width: 50px;
    height: 50px;
}

/* search */
.search {
    margin: 10px 0;
    padding: 14px 0;
    /* background: #eee;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ccc; */
    background: #e5effe;
    border-top: 1px solid #bfd8fa;
    border-bottom: 1px solid #b0cbef;
    text-align: center;
    box-shadow: 0 1px 2px -1px #00000030;
}
form#searchForm {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
}
select#engine {
    padding: 6px 8px;
    border: 1px solid #bfd8fa;
    border-radius: 4px;
    background: #fff;
    color: #000000;
}
input[type="text"] {
    padding: 6px 8px;
    border: 1px solid #bfd8fa;
    border-radius: 4px;
    background: #fff;
    color: #000000;
}
input[type="text"]:focus {
    border-color: #8d9cbe;
}
input[type="submit"] {
    padding: 6px 14px;
    background: linear-gradient(to bottom, #eff3fc, #d0d9ef);
    box-shadow: 0 1px #ffffff inset;
    color: #000000;
    text-shadow: 0 1px #ffffff;
    border: 1px solid #a8b4cf;
    background: linear-gradient(to bottom, #fff0c9, #ffce48);
    box-shadow: 0 1px #ffffff inset;
    text-shadow: 0 1px #ffffff;
    border: 1px solid #eb9317;
    border-radius: 4px;
    cursor: pointer;
}
input[type="submit"]:hover {
    box-shadow: 0 0 2px 2px #ffffff50 inset, 0 1px #ffffff inset;
    border: 1px solid #f9a228;
}
input[type="submit"]:active {
    padding-top: 7px;
    padding-bottom: 5px;
    background: linear-gradient(to top, #e0e7fa, #d0d9ef);
    box-shadow: 0 1px 1px #a8b4cf inset;
    background: linear-gradient(to top, #ffdb77, #ffc169);
    box-shadow: 0 1px 1px #eb9317 inset;
    text-shadow: 0 -1px #ffde85;
}

/* main */
main {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.left {
    width: 450px;
}
.right {
    width: 300px;
}

/* left */
.left h3 {
    margin: 8px 0;
    padding: 4px 6px;
    background: #ffe8ba;
    border-bottom: 1px solid #e6c686;
    font-weight: normal;
    font-size: 14px;
}
.left .box .in-box {
    display: grid;
    grid-template-columns: 62px 1fr;
    line-height: 1.5;
}
.left .box .in-box b a {
    color: #000000;
}
.left .box .in-box:not(:last-child) {
    margin-bottom: 2px;
}
.left .box.mid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}
.left .box.mid .in-box {
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #d2e4fc;
}
.left .box.mid b {
    padding: 0 6px;
    display: block;
    width: 100%;
    background: #d2e4fc;
}
.left .box.mid b img {
    width: 20px;
}
.left .box.mid .in-box div {
    padding: 6px 8px;
}
.left .box.mid .in-box div a {
    line-height: 1.4;
}

/* right */
.right h4 {
    padding: 3px 8px;
    padding-bottom: 0px;
    background: linear-gradient(45deg, #9b72cf, #9b72cf 60%, #f1f1fd 60.1%);
    border-right: 1px solid #9b72cf;
    color: #fff;
    font-size: 12px;
}
.right .content {
    padding: 8px;
    border: 1px solid #9b72cf;
    border-top: 3px solid #9b72cf;;
    background: #f1f1fd;
    line-height: 1.5;
}
.right h4.first {
    background: linear-gradient(45deg, #9b72cf, #9b72cf 60%, transparent 60.1%);
    border-right: 0;
}
.right .content.notyet {
    border-bottom: 0;
}
.right .content img.icon {
    width: 50px;
    height: 50px;
    border: 1px solid #bbbbbb;
    position: relative;
}
.right .grid {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 10px;
}
.right .grid li {
    list-style: none;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 10px;
}
.right .grid-list {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
}

/* pr */
#pr {
    margin: 10px 0;
    border: 1px solid #888888;
}
#pr img {
    width: 100%;
}

/* footer */
.links {
    margin-bottom: 10px;
}
.links .button {
    margin-bottom: 10px;
}
.disclaimer {
    margin-bottom: 4px;
    font-size: 12px;
    color: #aaaaaa;
}
footer {
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
    color: #666666;
}