<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">div.calendarMonthOuter{
	display: inline-block;
	margin: 4px;
	border: 1px solid #444;
	border-radius: 3px;
	font-size: 24px;
	color: #fff;
}

@media(max-width:380px){
	div.calendarMonthOuter{
		font-size: 20px;
	}
}
@media(max-width:330px){
	div.calendarMonthOuter{
		font-size: 18px;
	}
}

table.calendar{
	margin: auto;
}

table.calendar th{
	font-weight: normal;
	text-align: center;
	font-size: 80%;
}

table.calendar th{
	/*border: 1px solid #900;*/
	color: rgba(68,68,68,1);
}

div.calendarMonthHeader{
	padding: 5px 0px;
	background-color: #444;
	background: -moz-linear-gradient(top,  rgba(90,90,90,1) 0%, rgba(68,68,68,1) 87%, rgba(68,68,68,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(90,90,90,1) 0%,rgba(68,68,68,1) 87%,rgba(68,68,68,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(90,90,90,1) 0%,rgba(68,68,68,1) 87%,rgba(68,68,68,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

div.dayPicker{
	width: 36px;
	padding: 4px;
	cursor: pointer;
	border-radius: 2px;
	background-color: #444;
	background: -moz-linear-gradient(top,  rgba(90,90,90,1) 0%, rgba(68,68,68,1) 87%, rgba(68,68,68,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(90,90,90,1) 0%,rgba(68,68,68,1) 87%,rgba(68,68,68,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(90,90,90,1) 0%,rgba(68,68,68,1) 87%,rgba(68,68,68,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

@media(max-width:380px){
	div.dayPicker{
		width: 30px;
	}
}

@media(max-width:330px){
	div.dayPicker{
		width: 28px;
	}
}

div.calendarNavigatePrev, div.calendarNavigateNext{
	display: inline-block;
	width: 32px;
}

div.calendarNavigatePrev{
	float: left;
	cursor: pointer;
}

div.calendarNavigateNext{
	float: right;
	cursor: pointer;
}

div.dayPickerDisabled{
	opacity: .4;
	color: #666;
	cursor: auto;
}</pre></body></html>