#calendar {
	background: #d6d2bf;
}

.calendarTable {
	width: 100%;
	margin-bottom: 15px;
}
	
	.calendarTable thead {
	}

	.calendarTable tr.month {
		background: #cac6b4;
		color: #3f4b12;
	}
	
	.calendarTable tr.month th {
		padding: 10px 0;
	}

	.calendarTable tr.week th {
		font-size: .8em;
	}

	.calendarTable th {
		text-align: center;
		font-weight: normal;
	}
		
		.calendarTable th.monthHeader {
			color: #3f4b12;
			font-size: 1.2em;
			text-transform: uppercase;
			font-weight: 900;
		}

		.calendarTable th.previousMonth, .calendarTable th.nextMonth {
			cursor: pointer;
			color: #3f4b12;
		}
		
		.calendarTable th.previousMonth:hover, .calendarTable th.nextMonth:hover {
			cursor: pointer;
			color: #3f4b12;
		}

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

