/* 
#################################################################
月送りカレンダー用スタイルシート
#################################################################
*/
body {
	background: #CCCBC7;
	margin: 0px 0px 0px 0px; /*上右下左の余白*/
}
h1,h2,h3 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
#links {
	width: 163px; /*-- 幅 --*/
	height: 148px; /*-- 高さ --*/
	float: center;
	background: #F6F5F3;/*-- カレンダーの背景色 --*/
	border-color: #999791;/*-- カレンダーの枠線の色 ---*/
	border-style: solid; /*-- 枠線の種類 (solid は実践で、dotted だと点線) --*/
	border-width: 1px 1px 1px 1px; /*-- 枠線の幅 --*/
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px; /*-- 枠の内側の余白 --*/
}
#links A {
	color: #000000; /*-- 書き込みがある日の文字色 --*/
	text-decoration: none;
}
#links A:hover {
	color: #666358; /*-- マウスを乗せたときの文字色 --*/
	text-decoration: none;
}
.calendar {
	font-family: verdana, arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #999999; /*-- 書き込みがない日の日付の文字色 --*/
	font-weight: normal;
	line-height: normal;
	letter-spacing: normal;
	text-decoration: none;
	background: #F6F5F3; /*-- 日付の背景色 (=カレンダー背景色でOK) --*/
}
.calendarhead {
	font-family: verdana, arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666563; /*-- 月の文字色 --*/
	font-weight: bold; /*-- bold (太字) , normal (標準) --*/
	line-height: 145%;
	letter-spacing: normal;
	text-decoration: none;
}
.today {
    background : #F6F5F3; /* 背景色をつける設定 */
    border : 1px solid #000000; /* 枠線をつける設定 */
}

