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