body {
	font-family: Tahoma;
}

header {
	text-align: center;
}

#calendar {
	width: 100%;	
}

#calendar a {
	color: #8e352e;
	text-decoration: none;
}

#calendar ul {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

#calendar li {
	display: block;
	float: left;
	width:14.342%;
	box-sizing:border-box;
	border: 1px solid rgb(0, 0, 0);
	margin-right: -1px;
	margin-bottom: -1px;
}

#calendar ul.weekdays {
	height: 40px;
	background: #328a20;
}

#calendar ul.weekdays li {
	text-align: center;
	text-transform: uppercase;
	line-height: 20px;
	border: none !important;
	padding: 10px 6px;
	color: #fff;
	font-size: 13px;
}

#calendar .days li {
	height: 180px;
	position: relative;
}

#calendar .days li:hover {
	background: #c5f0bd;
}

#calendar .BDay{
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 100px;
	color: #328a20;
}

#calendar .date {
	position: absolute;
	text-align: center;
	margin-bottom: 5px;
	background: rgb(18, 85, 1);
	color: #fff;
	border-radius: 50%;
	top: 0;
	right: 0;
	width: 25px;
	height: 25px;
}

#calendar .eventRep {
	clear: both;
	display: block;
	font-size: 13px;
	border-radius: 4px;
	padding: 5px;
	width: 100%;
	height: fit-content;
	line-height: 14px;
	background: #4bb954;
	border: 1px solid #146127;
	color: #009aaf;
	text-decoration: none;
}

.eventRep {
	clear: both;
	display: block;
	font-size: 13px;
	padding: 5px;
	width: 100%;
	height: fit-content;
	line-height: 14px;
	background: #1c7724;
	color: #ffffff;
	text-decoration: none;
}

#calendar .eventFam {
	clear: both;
	display: block;
	font-size: 13px;
	border-radius: 4px;
	padding: 5px;
	width: 100%;
	height: fit-content;
	line-height: 14px;
	background: #72e77a;
	border: 1px solid #146127;
	color: #009aaf;
	text-decoration: none;
}

.eventFam {
	clear: both;
	display: block;
	font-size: 13px;
	padding: 5px;
	width: 100%;
	height: fit-content;
	line-height: 14px;
	background: #72e77a;
	color: #ffffff;
	text-decoration: none;
}

#calendar .event-desc {
	color: rgb(255, 255, 255);
	margin: 3px 0 7px 0;
	text-decoration: none;	
}

#calendar .other-month {
	background: #c3dbc8;
	color: #666;
}

/* ============================
				Mobile Responsiveness
   ============================*/


@media(max-width: 768px) {

	#calendar .weekdays, #calendar .other-month {
		display: none;
	}

	#calendar li {
		height: auto !important;
		border: 1px solid #ededed;
		width: 100%;
		padding: 10px;
		margin-bottom: -1px;
	}

	#calendar .date {
		float: none;
	}
}

#container > div
{
	display: inline-block;
	cursor: default;
}
#container > div.arr
{
	cursor: pointer;
}
#container
{
    text-align: center;
    margin: 0px auto;
	width: 40%;
}   