@media screen {
	#calendar {
		float: right;
		width: 48%;
	}
	
	#bodyHome .cwList {
		float: left;
		width: 49%;
	}
	
	.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: #2D4C59;
					color: #fff;
					display: block;
					-webkit-border-radius: 2px;
					-moz-border-radius: 2px;
					border-radius: 2px;
				}
	
	.calendarTable .monthHeader {
		color: #2D4C59;
		font-size: 1.5em;
		font-weight: bold;
	}

}

/********************************************************************************
* Service Link Break
********************************************************************************/
@media screen and (max-width: 550px) {

	#calendar {
		float: none;
		width: 100%;
	}

	#bodyHome .cwList {
		float: none;
		width: 100%;
	}

}