body {
	background: #000000;
	margin: 0px 0px 0px 0px; /*上右下左の余白*/
}
h1,h2,h3 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
#links {
	width: 100%; /*-- 幅 --*/
	height: 150px; /*-- 高さ --*/
	float: center;
	background: #000000;/*-- カレンダーの背景色 --*/
	border-color: #000000;/*-- カレンダーの枠線の色 ---*/
	border-style: solid; /*-- 枠線の種類 (solid は実践で、dotted だと点線) --*/
	border-width: 0px 0px 0px 0px; /*-- 枠線の幅 --*/
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 9px 0px; /*-- 枠の内側の余白 --*/
}
#links A {
	color: #0fffff; /*-- 書き込みがある日の文字色 --*/
	text-decoration: none;
}
#links A:hover {
	color: #ff0000; /*-- マウスを乗せたときの文字色 --*/
	text-decoration: none;
}
.calendar {
	font-family: verdana, arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff; /*-- 書き込みがない日の日付の文字色 --*/
	font-weight: normal;
	line-height: normal;
	letter-spacing: normal;
	text-decoration: none;
	background: #000000; /*-- 日付の背景色 (=カレンダー背景色でOK) --*/
}
.calendarhead {
	font-family: verdana, arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #ffffff; /*-- 月の文字色 --*/
	font-weight: bold; /*-- bold (太字) , normal (標準) --*/
	line-height: 145%;
	letter-spacing: normal;
	text-decoration: none;
}

