body {
	background-color: rgb(62,134,205);
	font-family: 'Lato', sans-serif;
	color: #FFF;
	text-align: center;
}

h1 {    
	margin: 25px 0;
	font-size: 24px;
}

.content {
    margin: 50px 50px 60px 50px;
    font-size: 15px;
    text-align: justify;
    display: block;
    border: solid transparent 1px;
}

#calendar {
	display: block;
	width: 600px;	
	margin: 0 auto;
}

.calendar-header {
	text-align: center;
	font-size: 24px;
	margin: 15px 0;
}

.day-wrapper {
	background-color: rgba(255,255,255,0.04);
	border-radius: 50%;
	width: 70px;
	height: 70px;

	margin: 0px 0px;
	padding: 5px;
	display: block;

	text-align: center;
	color: #FFF;
	line-height: 1em;

	vertical-align: bottom;
}

.day-wrapper.current {
	background: rgba(255,255,255,0.25);
    color: #244E78;
}

.day-wrapper:hover {
	cursor: pointer;
	background-color: rgba(255,255,255,0.15);
}

.day-index {
	font-size: 18px;
	line-height: 20px;
	height: 20px;
	font-weight: 700;
}

.day-label {
	font-size: 16px;
	line-height: 30px;
	height: 30px;
	font-weight: 500;
}

.day-date {
	font-size: 14px;
	line-height: 20px;
	height: 20px;
	font-weight: 500;
	color: #CCC;
}