@charset "UTF-8";

.calendar {
	border: 1px solid #d6dff7;
	padding: 2px;
	background-color: white;
}

.calendar table.month {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 85%;
}

.calendar table.month caption {
	margin-bottom: 1px;
	padding: .4em 1em;
	background-color: #6d89dd;
	color: white;
}

.calendar table.month th,
.calendar table.month td {
	padding: 1px;
}

.calendar table.month tbody td {
	text-align: right;
}

.calendar table.month tr.daynames .weekend {
	color: red;
}

.calendar table.month a,
.calendar table.month span {
	display: block;
	padding: 2px 3px;
}

.calendar table.month td a {
	text-decoration: none !important;
}

.calendar table.month a:hover {
	background-color: #004e92;
	color: white;
}

.calendar table.month .selected {
	background-color: #d5ccbb;
}

.calendar table.month .current {
	font-weight: bold;
}

.calendar table.month .foreign {
	color: silver;
}

