﻿@charset "utf-8";

/**************************************************************/
/* 공통 */
/**************************************************************/
html {
    font-family: 'Nanum Gothic', 'Malgun Gothic', Dotum, Gulim;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
}

a, a:active, a:visited, a:hover {
    color: inherit;
    text-decoration: none;
}

    a.download, a.download:active, a.download:visited, a.download:hover {
        color: blue;
    }

div.clear {
    clear: both;
    float: none;
}

td {
    vertical-align: middle;
}

.center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.blueHover:hover {
    background-color: #ccf;
    cursor: pointer;
}

.button {
    background-color: #f9b9b9;
    border: 1px solid #ccc;
    border-radius: 10px;
    color: #ef3e58;
    cursor: pointer;
    padding: 10px 20px;
}

.greenHover:hover {
    background-color: #cfc;
    cursor: pointer;
}

.redHover:hover {
    background-color: #fcc;
    cursor: pointer;
}
