/*
 * Small calendar style. Large calendar is in plugin directory
 */
#calendar table {
	width: 100%;
	border-spacing: 8px;
}
#calendar td {
	vertical-align: top;
	background: white;
	border: solid 1px #c1c1c1;
	width: 20%;
	height: 180px;
}
#calendar td.today {
	background: #f4f4f4;
}
#calendar .cal-header {
	background: #c1c1c1;
	text-align: center;
	height: 31px;
	color: #f4f4f4;
	font: 400 16px/31px "proxima-nova"; 
	text-transform: uppercase;
}
#calendar .cal-date {
	color: #4f4f4f;
	font-size: 16px;
	line-height: 32px;
	text-align: right;
	padding-right: 12px;
	font-weight: 600;
}
#calendar ul {
	list-style: none;
	padding: 0 10px;
}
#calendar li {
	padding-bottom: 7px;
	line-height: 17px;	
	word-break: break-word;
}
#calendar li a {
	font-size: 15px;
	color: #54aa7e;
	text-decoration: none;
}
#calendar li a:hover {
	color: #4f4f4f;
}