@charset "UTF-8";

/*カレンダー部分*/


div.cal {
	float: left;
	margin-left: 20px;/*左端からの余白*/

}
div.cal * {
	text-align: center;
	font-size: 9pt;/*文字の大きさ*/
	background-color: #ccccff;/*背景色*/
}

/*表（カレンダー）全体の設定*/
div.cal table {
	border: solid 1px #00aacc;
	width: 160px;
	height: 180px;
}
/*月表示部分*/
div.cal caption {
	border: solid 1px #00aacc;
	border-bottom: none;
	color: #ffffff;
	background-color: #66cc00;
}
/*日にち表示部分*/
div.cal td.today {
	background-color: #66cc00;
}
