/*
//********************************************************************
//
// プログラム名	:	calendar_mainte.css
//
// 内容			:	カレンダーメンテ用
//
// 作成者		:	川村 寿志
//
// 作成日		:	2010/12/31
//
// 修正履歴		:	201_/__/__  -00.01
//
//********************************************************************
//--------------------------------------------------------------------
// Rev.No	| 追加・修正内容
//--------------------------------------------------------------------
//		-00	| 01.
//--------------------------------------------------------------------
*/

/*全体*/
body
{
	text-align:center;
}

/*カレンダー年月文字列*/
.target_month_str
{
	font-size:14pt;
	font-weight:bold;
}

/*日付文字列*/
.date_str
{
	font-weight:bold;
}

/*テーブル*/
table.anchor_table
{
	width:65%;

}
table.calendar_table
{
	border-collapse:collapse;
	border-style:solid;
	border-color:black;
	border-width:2px;
}

/*テーブルセル*/
td.anchor_cell
{
	width:25%;
	text-align:center;
}
td.calendar_cell
{
	width:100px;
	height:100px;
	border-style:dashed;
	border-color:black;
	border-width:1px;
	vertical-align:top;
	text-align:left;
}

td.calendar_date_cell
{

}
td.holiday_cell
{
	/*背景色のみ異なります。*/
	background-color:#FFB6C1;
}

/*ボタン*/
.button1
{
	width:70px;
	height:35px;
	font-size:11pt;
}
.button2
{
	width:50px;
	height:25px;
	font-size:10pt;
}

