@charset "utf-8";

body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, sans-serif;
    background-color: #456687;
}

.calendar {
    color: #eeeeee;
    text-align: center;
}

.calendarhead {
    font-size: 9px;
    color: #eeeeee;
    letter-spacing: .2em;
}

.calendar table {
    padding: 0;
    border-collapse: collapse;
}
.calendar th {
    padding-top: 5px;
    font-size:8px;
    width : 20px ;
}

.calendar td {
    padding: 2px 0;
    font-size:10px;
    line-height: 120%;
}

.today {
    display: block;
    border: 1px solid #444444;
}

.holiday {
    color: #e50003;
}

.saturday {
    color: #0000ff;
}
/* リンク */
a,
a:link {
    color: #ffff99;
    text-decoration: none;
}
a:visited {
    color: #b8dcfe;
    text-decoration: none;
}
a:hover {
    color: #b8dcfe;
    text-decoration: underline;
}
a:active {
    color: #cc0000;
    text-decoration: none;
}


