﻿@charset "utf-8";

/* カレンダー描画領域 */
#myCal {
	height:240px;
}
/* カレンダー１か月分 */
.jCalMo {
	padding: 5px;
	border: 2px solid orange;
}
/* 年月表示 */
.jCal .month, .jCal .monthSelect, .jCal .monthName, .jCal .monthYear {
	font-weight: bold;
	font-size: 12px;
}
/* 曜日表示行 */
.jCalMo .dow {
	background-image:none!important;
	background: #fff!important;
	border: 1px solid #fff!important;
}
/* 日付 */
.day {
	background-color: #fff !important;
	font-size: 15px!important;
	line-height: 2;
	border: 1px solid #fff!important;
	background: url(../images/bg.png) no-repeat 3px 3px !important;
}
/* 当月以前の日、当月以降の日 */
.pday, .aday {
	color: #fff !important;
	background: url(../images/bg.png) no-repeat 3px 3px !important;
	font-size: 15px!important;
	border: 1px solid #fff!important;
	line-height: 2;
}
/* 選択した日 */
.selectedDay {
	color: #fff !important;
	background: url(../images/bg_selected.png) no-repeat 3px 3px !important;
	font-size: 15px!important;
	border: 1px solid #fff!important;
	line-height: 2;
}
/* マウスオーバーした日 */
.overDay {
	color: #fff !important;
	background: url(../images/bg_on.png) no-repeat 3px 3px !important;
}

