* {
    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;
    line-height: 1.6;
}

a, a:visited {
    color: #0000ee;
}
a:hover {
    color: #ff0033;
}
hr {
    margin: 14px 0;
    border: 0;
    border-bottom: 1px solid #eee;
}
img {
    vertical-align: middle;
}
.button {
    width: 88px;
    height: 31px;
}

/* TopMenu */
.topMenu {
    margin: 20px 0;
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 10px;
}
.topMenu .logo {
    width: 100%;
}
.topMenu .links {
    padding-top: 4px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ccc;
    text-align: right;
}

/* main */
h1, h2 {
    margin-bottom: 20px;
}
h3, h4, h5 {
    margin-bottom: 8px;
}
p {
    margin-bottom: 10px;
}
ul, ol {
    padding-left: 1rem;
}
img {
    width: 100%;
}

form div:not(:last-child) {
    margin-bottom: 10px;
}
label {
    display: inline-block;
    min-width: 5rem;
    vertical-align: top;
    font-weight: bold;
}
input, textarea {
    padding: 6px 8px;
    border: 1px solid #bbb;
    border-radius: 0;
}
textarea {
    font-family: Arial, Helvetica, sans-serif;
    min-width: 20rem;
    min-height: 3rem;
}
input[type="submit"] {
    cursor: pointer;
}
.msg {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #bbb;
}
.msg:last-child {
    margin-bottom: 0;
}
.msg .name {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}
.msg p {
    margin-bottom: 0;
}
.msg .admin {
    margin-top: 10px;
    margin-left: 20px;
    padding-top: 10px;
    padding-left: 10px;
    border-top: 1px solid #bbb;
}
.pagination {
    text-align: center;
}

/* footer */
.disclaimer {
    margin-bottom: 4px;
    font-size: 12px;
    color: #aaaaaa;
}
footer {
    margin-top: 20px;
    margin-bottom: 30px;
    padding-top: 10px;
    text-align: center;
    border-top: 2px solid #ccc;
    color: #666666;
}