@charset "euc-jp";

/*-----------------------------------

cal.css
カレンダー中身

カレンダー外側　テキスト　top.css

-----------------------------------*/


div.cal_wrapper {
	padding: 10px 0px;
}
div.cal_wrapper table{
        width: 100%;
        table-layout: fixed;
        text-align: center;
}
div.cal_wrapper table.cal tr th{
            padding: 5px 0;
            border: 1px solid #fff;
            background: #f3f3f3;
            font-size: 10px;
            font-weight: bold;
}

div.cal_wrapper table.cal tr th div.cal_ui input {
	border: none;
	background-color: #333;
	color: #fff;
	font-size: 12px;
	margin: 5px 1px 3px;
	padding: 1px 5px;
}

div.cal_wrapper table.cal tr td {
	border: 1px solid #fff;
	font-size: 10px;
	text-align: center;
	padding: 1px;
	font-weight: bold;
}
div.cal_wrapper table.cal tr.headline td {
	padding: 5px 0px;
	color: #666;
}
div.cal_wrapper table.cal tr.headline {
	background-color: #EEE;
}
div.cal_wrapper table.cal tr td div {
	position: relative;
	padding: 5px;
	font-size: 10px;
	text-align: center;
	background-color: #FFF;
}
div.cal_wrapper table.cal tr td div span {
	display: none;
	position: absolute;
	top: 20px;
	left: 0px;
	width: 180px;
	border: solid 1px #EEE;
	background-color: #FFF;
	text-align: left;
	padding: 5px;
	z-index: 10;
	color: #000;
	font-weight: normal;
	line-height: 1.5em;
	box-shadow: 1px 1px 3px #666;
}

/* 以下、クラス指定するときのアレ */

div.cal_wrapper table.cal tr td div.Sat {
	background: #cce7f5;
}
div.cal_wrapper table.cal tr td div.Sun {
	background: #f8d3d3;
}
div.cal_wrapper table.cal tr td div.Today {
	background: #333;
	color: #fff;
}
div.cal_wrapper table.cal tr td div.Deli {
	background: #cce7f5;
}
div.cal_wrapper table.cal tr td div.Holyday {
	background: #f8d3d3;
}

div.cal_wrapper table.cal tr td div.backward {
	color: #CCC;
	font-weight: normal;
	background-color: #FFF;
	border-radius: 3px;
}
div.cal_wrapper table.cal tr td div.pointer {
	cursor: pointer;
}
div.cal_wrapper table.cal tr td div.pointer:hover {
	background-color: #EEE;
}
