/* Common */
#coin_brief, #coin_btns, #coin_status {
    display: none;
}
#coin_brief.on, #coin_btns.on, #coin_status.on {
    display: block;
}
input.show_trigger {
    float: right;
    cursor: pointer;
}

/* Brief one line */
#coin_brief {
    border: 1px solid #CCC;
    padding: 0 5px;
}
#coin_brief > span {
    float: left;
    margin: 9px 5px;
}
#coin_brief > span:first-child {
    font-weight: bold;
}
#coin_brief > span.icon {
    margin: 4px 2px;
}
#coin_brief > span.icon img {
    width: 28px;
}
#coin_brief > span.krw::after {
    content: 'KRW';
    color: #888;
    padding-left: 3px;
    font-size: 11px;
}
#coin_brief > input {
    margin: 5px 0;
}

/* Buttons for controling main table */
#coin_btns li {
    float: left;
    padding: 6px 10px;
    cursor: pointer;
}
#coin_btns li.on {
    font-weight: bold;
    border-top: 1px solid #CCC;
    border-left: 1px solid #CCC;
    border-right: 1px solid #CCC;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Main table for coin status */
#coin_status > div {
    display: none;
}
#coin_status > div.on {
    display: block;
}
#coin_status table {
    border: 1px solid #CCC;
}
#coin_status table th:nth-child(1) { width: 13%; }
#coin_status table th:nth-child(2) { width: 21%; }
#coin_status table th:nth-child(3) { width: 25%; }
#coin_status table th:nth-child(4) { width: 21%; }
#coin_status table th:nth-child(5) { width: 20%; }
#coin_status table th, #coin_status table td {
    padding: 5px 0;
}
#coin_status table tbody tr {
    border-top: 1px solid #f1f2f4;
}
#coin_status table tbody tr td:first-child {
    text-align: center;
}
#coin_status table tbody tr td.currency,
#coin_status table tbody tr td.coin {
    text-align: right;
    padding-right: 4%;
}
#coin_status table tbody tr td.currency:after {
    color: #888;
    padding-left: 3px;
    font-size: 11px;
}
#coin_status table tbody tr.KRW td.currency:after {
    content: 'KRW';
}
#coin_status table tbody tr.USD td.currency:after {
    content: 'USD';
}
#coin_status .up, #coin_brief .up {
    color: #F00;
}
#coin_status .dn, #coin_brief .dn {
    color: #00F;
}
#coin_status table tbody tr td.plus {
    color: #2A2;
}
#coin_status table tbody tr td.minus {
    color: #E55;
}
#coin_status table tbody tr td:last-child span {
    float: right;
    margin-top: 2px;
    color: #888;
    padding-left: 3px;
    font-size: 11px;
}