/*************************** Calendar Top Navigation **************************/
#calendar {
	padding: 0px;
	width: 100%;
}
#calendar .calendar_box {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 50px;
	background-color: #1e448a;
}
#calendar .calendar_header {
	line-height: 50px;  
	vertical-align: middle;
	position: absolute;
	top: 0px;
	width: 95%;
	height: 50px;
	text-align: center;
	left: 50%;
	-wekit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
#calendar .calendar_header .calendar_prev, #calendar .calendar_header .calendar_next {
	position: absolute;
	top: 3px;
	height: 17px;
	display: block;
	cursor: pointer;
	text-decoration: none;
	color: #FFF;
}
#calendar .calendar_header .calendar_title {
	color: #FFF;
	font-size: 18px;
}
#calendar .calendar_header .calendar_prev {
	left: 0px;
}
#calendar .calendar_header .calendar_next {
	right: 0px;
}
#calendar .calendar_header .calendar_prev i, #calendar .calendar_header .calendar_next i {
	font-size: 2em;
	padding: 0 10px;
}
/*************************** Calendar Content Cells ***************************/
#calendar .calendar_label {
	margin: 0px;
	padding: 0px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
#calendar .calendar_label .calendar_names {
	width: 14.22%;
	margin: 0px;
	padding: 0px;
	float: left;
	list-style-type: none;
	height: 40px;
	line-height: 40px;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	background-color: #00a8f1;
	font-size: 15px;
}
#calendar .calendar_dates {
	margin: 0px;
	padding: 0px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border-bottom: 1px solid #e5e5e5;
}
#calendar .calendar_dates .calendar_days{
	border-right: 1px solid #e5e5e5;
}
#calendar .calendar_dates .calendar_days:first-child, #calendar .calendar_dates .calendar_days:nth-child(15), #calendar .calendar_dates .calendar_days:nth-child(29){
	border-left: 1px solid #e5e5e5;
}
#calendar .calendar_dates .calendar_days_2{
	background-color: white;
	border-right: 1px solid #e5e5e5;
}
#calendar .calendar_dates .calendar_days_2:first-child, #calendar .calendar_dates .calendar_days_2:nth-child(8), #calendar .calendar_dates .calendar_days_2:nth-child(22){
	border-left: 1px solid #e5e5e5;
}
#calendar .calendar_dates .calendar_names, #calendar .calendar_dates .calendar_days, #calendar .calendar_dates .calendar_days_2, #calendar .calendar_dates .calendar_today {
	padding: 0px;
	line-height: 80px;
	vertical-align: middle;
	float: left;
	list-style-type: none;
	height: 80px;
	font-size: 25px;
	width: 14.25%;
	background-color: white;
	color: #1e448a;
	text-align: center;
	position: relative;
}
.eventos{
	position: absolute;
	bottom: 18px;
	height: 8px;
	padding: 0;
	width: 100%;
}
.eventos li{
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #dc3545;
	font-size: 0px;
	margin: 0 2px;
}
#calendar .calendar_dates .calendar_today {
	background-color: #ffbd0a;
	color: white;
}
:focus {
	outline: none;
}
.calendar_clear {
	clear: both;
}
#calendar .calendar_dates a:hover {
	background-color: #eee;
}