#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: #1c5463;*/
		}
		
		.calendarTable td.inactive {
			visibility: collapse;
		}
		
		.calendarTable td.today {
		}
			.calendarTable td.today a {
				background: #9e0b0f;
				color: #fff;
				display: block;
				-webkit-border-radius: 2px;
				-moz-border-radius: 2px;
				border-radius: 2px;
			}

.monthHeader {
	color: #9e0b0f;
	font-size: 1.3em;
	font-family: 'lora-regular', georgia, times, serif;
}