#datepicker_wrapper {
	clear: both;
	float: left;
	min-height: 228px;
	width: 263px;
}

#datepicker_start_date {
	clear: both;
	float: left;
}

.ui-datepicker {
	font-size: 15px;
	width: 255px;
}

.ui-datepicker-week-end,
.ui-datepicker-week-end a.ui-state-default {
	color: #BB6666;
}

td.datepicker_available.ui-datepicker-current-day a.ui-state-default {
	background: #33CC00;
	color: #FFFFFF;
}

#timeslots_container {
	background-color: #FFFFFF;
	border: 1px solid #A6C9E2;
	border-radius: 5px;
	float: left;
	margin-top: 10px;
	padding: 3px;
	width: 255px;
}

.timeslot_wrapper {
	float: left;
	margin-right: 1px;
	margin-left: 1px;
	width: 247px;
}

.timeslot {
	background-color: #DFEFFC;
	border: 1px solid #C5DBEC;
	color: #2E6E9E;
	cursor: pointer;
	display: block;
	font-family: "Lucida Grande", "Lucida Sans", "Arial", sans-serif;
	font-size: 12px;
	margin-top: 2px;
	margin-bottom: 2px;
	padding-top: 5px;
	padding-bottom: 5px;
	position: relative;
	text-align: center;
	width: 245px;
	
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* Internet Explorer/Edge */
	user-select: none;
}

.timeslot:hover {
	background-color: #CCFFCC;
}

.ts_reserved,
.ts_reserved:hover {
	background-color: #DFEFFC;
	color: #2E6E9E;
	cursor: default;
	opacity: .35;
	filter: Alpha(Opacity=35);
}

.ts_selected,
.ts_selected:hover {
	background-color: #33CC00;
	border: 1px solid #79B7E7;
	color: #FFFFFF;
}

#date_list_wrapper {
	float: left;
	margin-left: 20px;
	padding-top: 0px;
	width: 200px;
}

p#date_list_title {
	color: #2498AF;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}

/* Tablet Screen Sizes */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	
	#date_list_wrapper {
		clear: both;
		margin: 10px 0px 10px 0px;
	}
	
}

/* Mobile Landscape Screen Sizes */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	#date_list_wrapper {
		clear: both;
		margin: 10px 0px 10px 0px;
	}
	
}

/* Mobile Portrait Screen Sizes */
@media only screen and (max-width: 479px) {
	
	#date_list_wrapper {
		clear: both;
		margin: 10px 0px 10px 0px;
	}
	
}