DIV.calendar {
	background: #f0f0f0;
	position: relative;
	box-sizing: border-box;
	text-align: left;
	/* margin: 10px; */
}
DIV.calendar DIV.day {
	display: inline-block;
	background: white;
	width: 14%;
	margin: 0.14%;
	text-align: right;
	padding: 2px 4px;
   	color: black;
	vertical-align: top;
   	box-sizing: border-box;
    border: solid 3px transparent;
}
DIV.calendar DIV.day.holiday {
	background: #ffe0e0;
}
DIV.calendar DIV.day.past {
	background: #f5f5f5;
	color: silver;
}
DIV.calendar DIV.day.past.holiday {
	background: #fff5f5;
}
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.past 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.past SPAN.title {
	background: white;
	color: gray;
}
DIV.calendar DIV.day:not(.past) 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.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;
}