#calendar {
}

.calendarTable {
	width: 100%;
	margin-bottom: 15px;
}
	
	.calendarTable thead {
	}
	
	.calendarTable th {
		text-align: center;
		font-weight: normal;
	}
		
		.calendarTable th.previousMonth, .calendarTable th.nextMonth {
			cursor: pointer;
			color: #000000;
		}
		
		
		.calendarTable tr.week {
			color: #000;
		}
		
		.calendarTable th.weekend {
		
		}
	
	.calendarTable td {
		text-align: center;
	}
		
		.calendarTable td a {
			/*color: #000000;*/
			padding: 3px 4px;
		}
		
		.calendarTable td.weekend a {
			color: #2B6774;
		}
		
		.calendarTable td.inactive {
			visibility: collapse;
		}
		
		.calendarTable td.today {
		}
			.calendarTable td.today a {
				background: #244d73;
				color: #fff;
				display: block;
				-webkit-border-radius: 2px;
				-moz-border-radius: 2px;
				border-radius: 2px;
			}

.monthHeader {
	color: #244d73;
	font-size: 1.5em;
	font-family: 'calluna-regular', times, georgia, serif;
	text-transform: uppercase;
}