div.cal_wrapper {
	padding: 0;
	font-size: 15px;
	margin-bottom: 30px;
}
div.cal_wrapper table{
	width: 100%
}
div.cal_wrapper table.cal tr th {
	text-align: center;
	height: 35px;
	position: relative;
}
div.cal_wrapper table.cal tr th .data {
	font-size: 15px;
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	padding: 25px 0;
}
div.cal_wrapper table.cal tr th .data span{
	display: block;
	font-size: 30px;
}
div.cal_wrapper table.cal tr th div.cal_ui {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
div.cal_wrapper table.cal tr th div.cal_ui:before, div.cal_wrapper table.cal tr th div.cal_ui:after {
	position: absolute;
	width: 15px;
	height: 29px;
	margin-top: -15px;
	top: 50%;
	content: '';
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	pointer-events: none;
}
div.cal_wrapper table.cal tr th div.cal_ui:before {
	left: 0;
	background-image: url(../img/index/prev.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center;
}
div.cal_wrapper table.cal tr th div.cal_ui:after {
	right: 0;
	background-image: url(../img/index/next.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center;
}
div.cal_wrapper table.cal tr th div.cal_ui input {
	border: none;
	overflow: hidden;
	width: 15px;
	height: 29px;
	margin-top: -15px;
	top: 50%;
	opacity: 0;
	left: 0;
	position: absolute;
	cursor: pointer;
}
div.cal_wrapper table.cal tr th div.cal_ui input:nth-of-type(2) {
	display: none;
}
div.cal_wrapper table.cal tr th div.cal_ui input:last-child {
	left: auto;
	right: 0;
}

div.cal_wrapper table.cal tr th .prev,
div.cal_wrapper table.cal tr th .next{
	border: none;
	overflow: hidden;
	height: 35px;
	width: 35px;
	margin: 0;
	opacity: 0;
	left: 0;
	top: 0;
	position: absolute;
	cursor: pointer;
}
div.cal_wrapper table.cal tr th .prev{
	left: 0;
	background-image: url("../img/index/prev.png");
	background-repeat: no-repeat;
	background-position: center;
}
div.cal_wrapper table.cal tr th .next{
	right: 0;
	background-image: url(../img/index/next.png);
	background-repeat: no-repeat;
	background-position: center;
}
div.cal_wrapper table.cal tr td {
	text-align: center;
	height: 30px;
	font-family: 'Manrope', sans-serif;
}
div.cal_wrapper table.cal tr.headline td {
	height: 41px;
	background: transparent;
}
div.cal_wrapper table.cal tr.headline {
}
div.cal_wrapper table.cal tr td div {
	height: 41px;
	width: 100%;
	line-height: 41px;
}
div.cal_wrapper table.cal tr td div span {
	display: none;
	position: absolute;
	top: 20px;
	left: 0px;
	width: 180px;
	/* border: solid 1px #EEE; */
	/* background-color: #FFF; */
	text-align: left;
	padding: 5px;
	z-index: 10;
	color: #000;
	font-weight: normal;
	line-height: 1.5em;
	box-shadow: 1px 1px 3px #666;
}
div.cal_wrapper table.cal tr td div.event {
	background: #000;
	color: #FFF;
	text-align: center;
	border-radius: 50px;
}