@charset 'UTF-8';
/***************************************************************
    SYSTEM   : 富山競輪
    TITLE    : カレンダーページスタイルシートの定義
    SHEET    : calendar.css
    VERSION  : Ver1.0.2
    LANGUAGE : CSS level2
    CODESET  : UTF-8
    EXPLAIN  : カレンダーページの色や形状を定義する。
    AUTHOR   : yap
    CREATED  : 2009/02/20 as Ver1.0.1
    UPDATED  : 2009/03/28 as Ver1.0.2
***************************************************************/

/***************************************************************
    ページ全体の定義
***************************************************************/

/* 背景色の定義 (Override) */
body {
    margin: 0px;
    padding: 0px;
    background: #A3CCB8;
}

/***************************************************************
    クラスの定義
***************************************************************/

/* 左段組みの定義 */
.calen {
    float: left;
    padding: 4px 3px;
}

/* カレンダー表の定義 */
.calen table {
    width: 162px;
    height: 172px;
    background-color: #E5E5E5;
}

/* カレンダー見出しの定義 */
.calen th {
    font-weight: normal;
    border: solid 1px #666666;
}

/* カレンダー明細の定義 */
.calen td {
    font-size: 9pt;
    text-align: center;
    border: solid 1px #666666;
}

/* 月名の定義 */
.month {
    color: #FFFFFF;
    background-color: #7A7ACC;
}

/* 日曜日の定義 */
.sun {
    color: #FFFFFF;
    font-size: 9pt;
    background-color: #E53333;
}

/* 土曜日の定義 */
.sat {
    color: #FFFFFF;
    font-size: 9pt;
    background-color: #0099CC;
}

/* 平日の定義 */
.wee {
    font-size: 9pt;
    background-color: #CCCCFF;
}
