#calendar {
}

.calendarTable {
	width: 100%;
	margin-bottom: 15px;
	background-color: #F3F3F3;
}
	
	.calendarTable thead {
	}

	.calendarTable tr.month {
		/*background: #364a5f;*/
		color: #0b6464;
	}
	
	.calendarTable tr.month th {
		padding: 15px 0;
	}

	.calendarTable tr.week th {
		padding: 8px 4px;
		width: 2.8em;
	}

	.calendarTable th {
		text-align: center;
		font-weight: normal;
	}
		
		.calendarTable th.monthHeader {
			background-color: #aF5C18;
			color: #fff;
			font-size: 1.4em;
			text-transform: uppercase;
		}

		.calendarTable th.previousMonth, .calendarTable th.nextMonth {
			background-color: #aF5C18;
			cursor: pointer;
			color: #fff;
		}
		
		.calendarTable th.previousMonth:hover, .calendarTable th.nextMonth:hover {
			cursor: pointer;
			color: #fff;
		}

		.calendarTable th.previousMonth, .calendarTable th.nextMonth {
			font-family: 'Font Awesome 5 Pro';
		}
		
		.calendarTable tr.week {
			color: #000;
		}
		
		.calendarTable th.weekend {
		
		}
	
	.calendarTable td {
		text-align: center;
	}
		
		.calendarTable td a {
			/*color: #000000;*/
			display: block;
			padding: 8px 4px;
		}
		
		.calendarTable td.weekend a {
			/*color: #605d3b;*/
		}
		
		.calendarTable td.inactive {
			visibility: collapse;
		}
		
		.calendarTable td.today {
		}
			.calendarTable td.today a {
				background: #aF5C18;
				color: #fff;
				display: block;
				-webkit-border-radius: 2px;
				-moz-border-radius: 2px;
				border-radius: 2px;
			}

