DIV.calendar {
	background: #e4e7ef;
	position: relative;
	box-sizing: border-box;
	text-align: left;
	/* margin: 10px; */
	border: solid 1px #e4e7ef;
	/* box-shadow: 1px 1px 3px #00000080; */
}
DIV.calendar DIV.day {
	display: inline-block;
	background: white;
	width: 14%;
	margin: 0.14%;
	text-align: left;
	padding: 2px 4px;
	color: black;
	vertical-align: top;
	box-sizing: border-box;
	border: solid 3px transparent;
	min-height: 118px;
}
DIV.calendar DIV.day.gray {
	/* background: #f5f5f5; */
	color: silver;
	opacity: .5;
}
DIV.calendar DIV.day.holiday SPAN.date {
	color: red;
}
DIV.calendar DIV.day.gray.holiday SPAN.date {
	color: #ff8d8d;
}
DIV.calendar DIV.day.today {
	border: solid 3px #eaac5f;
	border-radius: 5px;
}
DIV.calendar DIV.week:first-child {
	text-align: right;
}
DIV.calendar DIV.h {
	text-align: left;
	border-top: solid 1px #f0f0f0;
	height: 15px;
	position: relative;
	padding: 0 0 0 32px;
	font-size: 12px;
	color: black;
	cursor: pointer;
}
DIV.calendar DIV.h I {
	display: inline-block;
	width: 25px;
	position: absolute;
	left: 0;
	top: 0;
	padding-right: 5px;
	font-size: 9px;
	text-align: right;
	color: silver;
}
DIV.calendar DIV.day DIV.h:hover I {
	background: #ffff00;
	color: black;
}
DIV.calendar DIV.day.gray DIV.h:hover I {
	background: #fff;
	color: gray;
}
DIV.calendar DIV.container SPAN.title {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	background: #ffffa3;
	border-radius: 3px;
	margin-left: -2px;
	padding: 1px 3px;
	box-sizing: border-box;
	height: 15px;
	font-size: 10px;
}
DIV.calendar DIV.day.gray SPAN.title {
	background: white;
	color: gray;
}
DIV.calendar DIV.day:not(.gray) DIV.container:hover SPAN.title {
	background: yellow;
}

DIV.calendar DIV.container DIV.list {
	display: none;
}
DIV.calendar DIV.container DIV.list SPAN {
	display: block;
	padding: 10px;
	white-space: nowrap;
}
DIV.calendar DIV.container DIV.list SPAN:hover {
	background: #d9fffd;
}

DIV.calendar DIV.orario {
	font: bold 12px arial;
	border-bottom: dashed 1px silver;
	text-align: left;
}

DIV.calendar  DIV.container:hover DIV.list,
DIV.calendar  DIV.container.open DIV.list {
	display: block;
	position: absolute;
	z-index: 5;
	background: #d9edff;
	box-shadow: 2px 2px 3px #0008;
	padding: 2px;
	box-sizing: border-box;
	border-radius: 2px;
	margin-top: -1px;
	margin-left: 10px;
	min-width: 150px;
}

DIV.calendar DIV.h DIV.list SPAN.annullato {
    background: url('../img/white_cross.svg') #ffe4e4 no-repeat center center;
    background-size: contain;
    opacity: .5;
}