.calendar{
	height:100%;
	display:flex;
	flex-direction:column;
	min-height:1px;
	//background-color:green;
	}
.calendar_header{

	}

.calendar_body{
	flex:1;
	min-height: 1px;
	}

.calendar_footer{

	}
.calendar_record{
	display:inline-block;
	cursor:pointer;
	}
.calendar_record[type=fill]{
	width:100%;
	height:100%;
	}
.calendar_year{
	overflow: auto;
    white-space: pre;
    min-height: 1px;
    height: 100%;
	}
.calendar_year_month{
	display: inline-flex;
    flex-direction: column;
    width: 100px;
	}
.calendar_year_month_label{
	color:#444444;
	font-weight:bold;
	text-align:center;
	}
.calendar_year_month_container{
	
	}
.calendar_year_day{
	display:flex;
	color:#999999;
	border:solid 1px #cccccc;
    height: 20px;
	}
.calendar_year_day[isInPeriod=true], .calendar_month_day[isInPeriod=true], .calendar_week_hour[isInPeriod=true]{
	color:black;
	}
.calendar_year_day[isWeekend=true], .calendar_month_day[isWeekend=true], .calendar_week_hour[isWeekend=true]{
	font-weight:bold;
	background-color:#aaaaaa;
	}
.calendar_month{
	overflow:auto;
	}
.calendar_month_week{
	white-space:pre;
	}
.calendar_month_day{
	display:inline-flex;
	color:#999999;
	border:solid 1px #cccccc;
	width:100px;
	height: 70px;
	}
.calendar_month_day[isInCurrentMonth=false]{
	color:#dddddd;
	}
.calendar_week_hour, .calendar_year_day, .calendar_month_day{
	flex-direction:row;
	align-items: center;
	//position:relative;
	overflow: hidden;
	}
.calendar_month_dayLabels{
	white-space:pre;
	}
.calendar_month_dayLabel{
	display:inline-block;
	border:solid 1px #cccccc;
	width:100px;
	min-height: 15px;
	font-weight:bold;
	}
.calendar_week{
	height:100%;
	overflow:auto;
	}
.calendar_week_dayLabels{
	white-space:pre;
	}
.calendar_week_dayLabel{
	display:inline-block;
	border:solid 1px #cccccc;
	width:100px;
	min-height: 15px;
	font-weight:bold;
	}
.calendar_week_day{
	display:inline-block;
	color:#999999;
	border:solid 1px #cccccc;
	width:100px;
	}
.calendar_week_hour{
	display:flex;
	height:50px;
	border:solid 1px;
	}
.calendar_week_content{
	white-space:pre;
	}
.calendar_month_dayLabels{
	white-space:pre;
	}
.calendar_divRecord_fill{
	//position:absolute;
	width:100%;
	height:100%;
	background:red;
	left:0px;
	top:0px;
	opacity:0.3;
	}
.calendar_header{
	display:flex;
	flex-direction:row;
	justify-content: space-between;
	}
.calendar_year_day[selected=true], .calendar_month_day[selected=true], .calendar_week_hour[selected=true]{
	background-color:#8ca8ea;
	}