@charset "utf-8";
.----- {
}
#calendar {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 2px;
	font-size: 0.6em;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	margin-bottom: 5em;
}
#calendar .month {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	padding: 2px;
	width: 140px;
	margin: 1px;
	height: 160px;
	align-content: flex-start;
}

#calendar .month .week {
	display: flex;
	flex-direction: row;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 100%;
	box-sizing: border-box;
	padding: 0px;
	box-shadow: -1px -1px #C5DED7, inset -1px -1px 0 0 #C5DED7;
	height: 20px;
}


#calendar .month  .day {
	background-color: #ECF0F0;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 14.28571%;
	box-shadow: -1px -1px #C5DED7, inset -1px -1px 0 0 #B5D5CD;
	padding: 0px;
	box-sizing: border-box;
	text-align: center;
}
#calendar .month .day.weekdayHeader {
	background-color: #E0EDEA;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 14.28571%;
	box-shadow: -1px -1px #C5DED7, inset -1px -1px 0 0 #C5DED7;
	padding: 0px;
	box-sizing: border-box;
	text-align: center;
}

#seasonCalLegend {
	display: flex;
	margin-bottom: .5em;
}
#seasonCalLegend #onSeason {
	background-color: #D0F89A;
	width: 20px;
	border: 1px solid #000;
	height: 15px;
	margin-left: 20px;
}

#seasonCalLegend #midSeason {
	background-color: #F7F3A2;
	width: 20px;
	border: 1px solid #000;
	height: 15px;
	margin-left: 20px;
}

#seasonCalLegend #longSeason {
	background-color: #EAD1FB;
	width: 20px;
	border: 1px solid #000;
	height: 15px;
	margin-left: 20px;
}
/*
#calendar .month .week .day {
	background-color: #FCC;
	padding: 4px;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 20;
	box-shadow: -1px -1px #F9A440, inset -1px -1px 0 0 #F9A440;
	height: 40px;
}

*/
#seasonCalLegend #offSeason {
	background-color: beige;
	width: 20px;
	border: 1px solid #000;
	height: 15px;
}
#seasonCalLegend .label {
	/*width: 120px;*/
	font-size: 0.8em;
	margin-left: 0.5em;
}
