@CHARSET "UTF-8";
.bcal-container{
	background-color: #fff;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	float: left;
	padding: 5px;
	border: solid 1px #ccc;
	box-shadow: 0 0 3px #C0C0C0;
	/*height:100%;*/
	width:auto;
	margin-left: -32px;
	
}
.bcal-table{
	border-collapse: separate;
	border-spacing: 0;
	border: solid 1px #A4BED4;
	font-family: Tahoma, sans-serif;
	font-size: 11px;
	font-weight: normal;
	float: left;
	margin: 1px;
	padding: 0;
	width: 354px;
	height:100%;
}
.bcal-table,
.bcal-table th,
.bcal-table td {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.bcal-table thead tr{
	background-color: #D7E9FE;
	border: 1px solid #A4BED4;
	background-image: linear-gradient(bottom, rgb(205,227,254) 23%, rgb(231,241,255) 62%);
	background-image: -o-linear-gradient(bottom, rgb(205,227,254) 23%, rgb(231,241,255) 62%);
	background-image: -moz-linear-gradient(bottom, rgb(205,227,254) 23%, rgb(231,241,255) 62%);
	background-image: -webkit-linear-gradient(bottom, rgb(205,227,254) 23%, rgb(231,241,255) 62%);
	background-image: -ms-linear-gradient(bottom, rgb(205,227,254) 23%, rgb(231,241,255) 62%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.23, rgb(205,227,254)),
		color-stop(0.62, rgb(231,241,255))
	);
}
.bcal-table thead tr:first-child{
	line-height: 23px;
}
.bcal-table thead th{
	font-weight: bold;
	color: #212121;
	height: 20px;
	text-align: center;
}
.bcal-table tbody td{
	color: #000;
	cursor: pointer;
	font-weight: normal;
	height: 25px;
	padding: 0 0 1px 1px;
	width: 25px;
	text-align: center;
}
.bcal-table tbody tr:first-child td{
	border-top: solid 1px #fff;
}
.bcal-table tbody td:first-child{
	border-left: solid 1px #fff;
	padding: 0 0 1px;
}
.bcal-table .bcal-wday,
.bcal-table .bcal-wnum{
	font-weight: normal;
	border-right: 1px solid #A4BED4;
	border-top: 1px solid #A4BED4;
	border-bottom: 1px solid #A4BED4;
	padding: 1px 1px 2px 2px;
}
.bcal-table .bcal-wnum{
	border-right: 1px solid #A4BED4;
	border-bottom: 1px solid #A4BED4;
	color: #CC6600;
	background-image: linear-gradient(bottom, rgb(255,225,159) 23%, rgb(255,250,234) 62%);
	background-image: -o-linear-gradient(bottom, rgb(255,225,159) 23%, rgb(255,250,234) 62%);
	background-image: -moz-linear-gradient(bottom, rgb(255,225,159) 23%, rgb(255,250,234) 62%);
	background-image: -webkit-linear-gradient(bottom, rgb(255,225,159) 23%, rgb(255,250,234) 62%);
	background-image: -ms-linear-gradient(bottom, rgb(255,225,159) 23%, rgb(255,250,234) 62%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.23, rgb(255,225,159)),
		color-stop(0.62, rgb(255,250,234))
	);
}
.bcal-table .bcal-wday:last-child{
	border-right: none;
}
.bcal-table .bcal-empty{
	background-color: #fff;
	border-right: solid 1px #fff;
	border-bottom: solid 1px #fff;
	color: #999;
	cursor: default;
}
.bcal-table .bcal-date{
	background-color: #EDF4FE;
	border-right: solid 1px #fff;
	border-bottom: solid 1px #fff;
}
.bcal-table .bcal-past{
	background-color: #f1f1f1;
	color: #999;
	cursor: default;
}
.bcal-table .bcal-today{
	background-color: #9BC7FE;
	color: #fff;
}
.bcal-table .bcal-week{
	background-color: #FEF3DA;
	border-right: solid 1px #fff;
	border-bottom: solid 1px #fff;
	color: #CC6600;
	cursor: default;
}
.bcal-table .bcal-selected{
	background-color: #BDD6FC;
	color: #fff;
}
.bcal-table .bcal-over,
.bcal-table .bcal-date:hover{
	background-color: #719ABC;
	color: #fff;
}
.bcal-table .bcal-past:hover{
	background-color: #e0e0e0;
	color: #666;
}
.bcal-table .bcal-month,
.bcal-table .bcal-navi,
.bcal-table .bcal-wnum,
.bcal-table .bcal-wday,
.bcal-table .bcal-week{
	cursor: text;
}