/* Overall wrapper */
.monthly {
	background: #F3F3F5;
	color:#545454;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
}

/* Contains title & nav */
.monthly-header {
	position: relative;
	text-align:center;
	padding:10px;
	background: #fff;
	height: 40px;
	box-sizing: border-box;
}
.monthly-header-title {
	font-size:.8em;
	text-transform: uppercase;
}
/* wrapper for left button to make the clickable area bigger */
.monthly-prev {
	position: absolute;
	top:0;
	left:0;
	width:50px;
	height:100%;
	opacity: .5;
}
.monthly-prev:hover {
	opacity: 1;
}
/* Left Arrow */
.monthly-prev:after{
	content:'';
	position: absolute;
	top:50%;
	left:50%;
	border-left:2px solid #222;
	border-bottom:2px solid #222;
	width:5px;
	height:5px;
	margin:-3px 0 0 -5px;
	-webkit-transform:rotate(45deg) ;
		-ms-transform:rotate(45deg) ;
	        transform:rotate(45deg) ;
}
/* wrapper for right button to make the clickable area bigger */
.monthly-next {
	position: absolute;
	top:0;
	right:0;
	width:50px;
	height:100%;
	opacity: .5;
}
.monthly-next:hover {
	opacity: 1;
}
/* Right Arrow */
.monthly-next:after{
	content:'';
	position: absolute;
	top:50%;
	left:50%;
	border-right:2px solid #222;
	border-top:2px solid #222;
	width:5px;
	height:5px;
	margin:-3px 0 0 -5px;
	-webkit-transform:rotate(45deg) ;
		-ms-transform:rotate(45deg) ;
	        transform:rotate(45deg) ;
}

/* Day of the week headings */
.monthly-day-title-wrap {
	display:table;
	table-layout:fixed;
	width:100%;
	background: #fff;
	border-bottom: 1px solid #EBEBEB;
}
.monthly-day-title-wrap div {
	width: 14.28%!important;
	display:table-cell;
	box-sizing:border-box;
	position: relative;
	font-weight: bold;
	text-align:center;
	text-transform: uppercase;
	font-size:11px;
}

/* Calendar days wrapper */
.monthly-day-wrap {
	display:table;
	table-layout:fixed;
	width:100%;
	overflow: hidden;
}
.monthly-week {
	display:table-row;
	width:100%;
}
/* Calendar Days */
.monthly-day, .monthly-day-blank {
	width: 14.28%!important;
	display:table-cell;
	vertical-align: top;
	box-sizing:border-box;
	position: relative;
	font-weight: bold;
	color:inherit;
	background: #fff;
	box-shadow: 0 0 0 1px #EBEBEB;
	-webkit-transition: .25s;
	transition:.25s;
	padding:0;
	text-decoration: none;
}

/* Trick to make the days' width equal their height */
.monthly-day:before {
	content: "";
	display: block;
	padding-top: 100%;
	float: left;
}

/* Hover effect for non event calendar days */
.monthly-day-wrap > a:hover {
	background: #A1C2E3;
}

/* Days that are part of previous or next month */
.monthly-day-blank {
	background:#F3F3F5;
}

/* Event calendar day number styles */
.monthly-day-event > .monthly-day-number {
	position: absolute;
	line-height: 1em;
	top:2px;
	left:2px;
	font-size:11px;
}

/* Non-Event calendar day number styles */
.monthly-day-pick {
}
.monthly-day-pick > .monthly-day-number {
	line-height: 1em;
	font-size:11px;
	padding-top:35%;
}

.monthly-day-pick > .monthly-indicator-wrap {
	margin:0;
}

/* Days in the past in "picker" mode */
.monthly-past-day:after{
	content: '';
	width: 150%;
	height: 2px;
	-webkit-transform-origin: left top;
		-ms-transform-origin: left top;
	        transform-origin: left top;
	-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	left: 0;
	top: 0;
}
.monthly-past-day:hover {
	background: #fff!important;
}
/* Current day style */
.monthly-today .monthly-day-number {
	color: #FFF;
	background: #EA6565;
	border-radius: 20px;
	top: 1px;
	left: 1px;
	font-size: 10px;
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
}
.monthly-day-pick.monthly-today .monthly-day-number {
	padding:0;
	margin:22% 22% 0 22%;
}

/* Button to reset to current month */
.monthly-reset {
	display: inline-block;
	width: 9px;
	height: 9px;
	border: 2px solid #222;
	border-radius: 9px;
	position: relative;
	opacity: .5;
	margin-left: 5px;
	vertical-align: middle;
}
.monthly-reset:hover {
	opacity: 1;
}
/* Makes the little arrow on the reset button */
.monthly-reset:before {
	content: '';
	border: 3px solid transparent;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	position: absolute;
	left: 2px;
	top: 6px;
}
.monthly-reset:after {
	content: '';
	border: 3px solid transparent;
	border-left: 3px solid #222;
	border-bottom: 3px solid #222;
	position: absolute;
	left: 5px;
	top: 5px;
}
/* Button to return to month view */
.monthly-cal {
	display: inline-block;
	height:11px;
	width:13px;
	background:#222;
	position: relative;
	top:1px;
	margin-right:5px;
	opacity: .5;
}
.monthly-cal:hover {
	cursor: pointer;
	opacity: 1;
}
.monthly-cal:before {
	content:'';
	position: absolute;
	width:2px;
	height: 3px;
	border:1px solid #fff;
	background:#222;
	top:-2px;
	left:2px;
}
.monthly-cal:after {
	content:'';
	position: absolute;
	width:2px;
	height: 3px;
	border:1px solid #fff;
	background:#222;
	top:-2px;
	right:2px;
}
.monthly-cal div {
	background: #fff;
	height:6px;
	width:11px;
	position: absolute;
	top:4px;
	left:1px;
}


/* Wrapper around events */
.monthly-indicator-wrap {
	position: relative;
	text-align: center;
	line-height: 0;
	max-width: 20px;
	margin:0 auto;
	padding-top:40%;
}

/* Event indicator dots */
.monthly-day .monthly-event-indicator {
	display: inline-block;
	margin: 1px;
	width: 8px;
	height: 8px;
	border-radius: 6px;
	vertical-align: middle;
	border-radius: 6px;
	background:#7BA7CE;
	font-size:0;
	color:transparent;
}

.monthly-day .monthly-event-indicator:hover {
	cursor: pointer;
}
/* Listing of events under calendar */
.monthly-event-list {
	background: rgba(233, 235, 236, 0.9);
	overflow: auto;
	position: absolute;
	top: 42px;
	width: 100%;
	height: calc(100% - 42px);
	display: none;
	-webkit-transition: .25s;
	transition:.25s;
	-webkit-transform:scale(0);
		-ms-transform:scale(0);
	        transform:scale(0);
}

/* Days in Events List */
.monthly-list-item {
	position: relative;
	padding:10px 10px 5px 50px;
	display: none;
	border-top: 1px solid #D6D6D6;
	text-align: left;
}

.monthly-list-item:after{
    content:'No Events';
    padding:4px 10px;
    display:block;
    margin-bottom:5px;
 }

.monthly-event-list .monthly-today .monthly-event-list-date {
	color: #EA6565;
}

/* Events in Events List */
.monthly-event-list .listed-event {
	display: block;
	color:#fff;
	padding:4px 10px;
	border-radius:2px;
	margin-bottom: 5px;
}

.monthly-list-item a:link, .monthly-list-item a:visited {
	text-decoration: none;
}

.item-has-event {
	display: block;
}

.item-has-event:after{
    display:none!important;
}

.monthly-event-list-date {
	width:50px;
	position: absolute;
	left:0;
	top:13px;
	text-align: center;
	font-size: 12px;
    font-weight: bold;
    line-height: 1.2em;
}

.monthly-list-time-start,
.monthly-list-time-end {
	font-size:.8em;
	display: inline-block;
}
.monthly-list-time-end:not(:empty):before {
	content:'-';
	padding:0 2px;
}

/* Events List custom webkit scrollbar */

.monthly-event-list::-webkit-scrollbar {width: 9px;}

/* Track */
.monthly-event-list::-webkit-scrollbar-track {background: none;}

/* Handle */
.monthly-event-list::-webkit-scrollbar-thumb {
	background:#ccc;
	border:1px solid #E9EBEC;
	border-radius: 10px;
}
.monthly-event-list::-webkit-scrollbar-thumb:hover {background:#555;}

/* Increase font & spacing over larger size */
@media (min-width: 400px) {
	.monthly-day-number {
		top: 5px;
		left: 5px;
		font-size: 13px;
	}
}
/* Styles for large mode where text is revealed within events */
@media (min-width: 600px) {
	.monthly-day-event {
		padding-top: 20px;
	}
	.monthly-day-event:before {
		padding-top: 77%;
	}
	.monthly-day-event > .monthly-indicator-wrap {
		width:auto;
		max-width: none;
	}
	.monthly-indicator-wrap {
		padding:0;
	}
	.monthly-day .monthly-event-indicator {
		display: block;
		margin: 0 0 1px 0;
		width: auto;
		height:20px;
		font-size: 10px;
		padding: 4px;
		border-radius:0;
		overflow: hidden;
		text-overflow: ellipsis;
		color:#fff;
		text-shadow:0 0 2px rgba(0,0,0,.2);
		text-decoration: none;
		line-height: 1em;
		white-space: nowrap;
		box-sizing: border-box;
	}
}


/***/
.sk {padding:0px 0px 0px 0px; margin:10px auto 50px 0px; width:auto; height:auto;}
.sk ul {padding:0px 0px 0px 0px; margin:0px auto; width:auto; height:auto; list-style-type:none;}
.sk ul li {
	padding:0px 0px 0px 0px; 
	margin:0px auto; 
	width:100%; 
	height:auto; 
	list-style-type:none;
	font-size:15px;
	font-weight: normal;
	color:#000;
	text-decoration: none;
	text-align: left;
	line-height: 30px;
	display: inline-block;
	vertical-align:top;
}
.sk ul li::before {font-family: 'FontAwesome'; content: "\f0a4"; margin: 0px 15px; float:left; color:#000; font-size:18px;}
.sk ul li a {color:#000;}
/***/

.div-1 {padding:0px; margin:0px auto; width:95%; height:auto;}

.price {padding:0px; margin:0px auto; width:95%; height:auto;}
.price table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  margin-top:0px;
}

.price table caption {
  font-size: 1.5em;
  margin: .25em 0 .75em;
}

.price table tr {
  background: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

.price table th, table td {
  padding: .625em;
  text-align: left;
}

.price table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price table td img { text-align: center; }
@media screen and (max-width: 600px) {

.price table { border: 0; }

.price table caption { font-size: 1.3em; }

.price table thead { display: none; }

.price table tr {
  border-bottom: 3px solid #ddd;
  display: block;
  margin-bottom: .625em;
}

.price table td {
  border-bottom: 1px solid #ddd;
  display: block;
  font-size: .8em;
  text-align: right;
}

.price table td:before {
  content: attr(data-label);
  float: left;
  font-weight: bold;
  text-transform: uppercase;
}

.price table td:last-child { border-bottom: 0; }
}




.banner-1{padding:0px; margin:0px auto; width:100%; height:auto; text-align:center; position: absolute; top:20%; left:0px}
.banner-1a{padding:0px; margin:0px auto; width:48%; height:auto; display:inline-block; vertical-align:top; text-align:left;}
.banner-1a img{padding:0px; margin:0px auto; width:65%; height:auto;}
.banner-1 h2 {
	color: #000;
	font-size:50px;
	font-weight: normal;
	line-height: 80px;
	margin:10% auto 1% auto;
	padding: 1% 0;
	text-decoration: none;
}
.banner-1 h2 span {color:#0c93d8; display:block; font-weight:bold;}
/*.banner-1 p {
  color: #313131;
  font-size:15px;
  font-weight: normal;
  line-height:26px;
  margin: 0;
  padding:0.5% 0;
  text-align:justify;
}
*/
.nusg{padding:0px; margin:0px auto; width:100%; height:auto; text-align:center;}

.nusg-1 {padding:0px; margin:0px auto; width:100%; height:auto; text-align:center;}
.nusg-1 h3 {
  color: #189fc0;
  font-size:20px;
  font-weight: 600;
  line-height:30px;
  margin: 0;
  padding:1% 0;
  text-align:left;
}
.nusg-1 p {text-align:left;}
.nusg-1 ul {padding:0px 5% 5% 5%; margin:0px auto; width:auto; height:auto; list-style-type:none;}
.nusg-1 ul li {
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
width: auto;
height: auto;
font-weight: normal;
color: #6f6f6f;
font-size: 14px;
text-decoration: none;
text-align: left;
line-height: 26px;
outline: none;
display: block !important;
}

.nusg-1 ul li:hover {color:#313131; transition: all 1s ease-in-out; }
.nusg-1 ul li::before {font-family: 'FontAwesome'; content: "\f0a4"; font-size: 17px; color:#189fc0; margin:0px 15px 0px 0px;}

.nusg-1a{padding:0px; margin:0px auto; width:48%; height:auto; display:inline-block; vertical-align:top; text-align:left;}
.nusg-1a img{padding:2%; margin:0px auto; width:30%; height:auto; border: dashed 1px #078dd1;}

.nusgbut {
	padding: 15px 30px;
	margin: 10px;
	width: auto;
	display: inline-block;
	background-color: inherit;
	font-size: 20px;
	font-weight: normal;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	line-height: 22px;
	border: dashed 1px #FFF;
	border-radius: 5px;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
}
.nusgbut:hover {
	color: #FFF; 
	border: dashed 1px #078dd1;
	background-color:#078dd1;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
}

a {
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
}

a:hover {
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
}

.modal-dialog {width: 60%; margin: 7% auto;}

@media only screen and (min-width:150px) and (max-width:480px) {
.banner-1a{width:90%; text-align:center;}
.banner-1a img{padding:0px; margin:0px auto; width:45%; height:auto;}
.banner-1 h2 {font-size:25px; line-height:40px; margin:10% auto 1% auto; padding: 1% 0;}
.modal-dialog {width: 85%; margin: 7% auto;}
}


@media only screen and (min-width:481px) and (max-width:767px) {
.banner-1a{width:80%; text-align:center;}
.banner-1a img{padding:0px; margin:0px auto; width:45%; height:auto;}
.banner-1 h2 {font-size:25px; line-height:40px; margin:10% auto 1% auto; padding: 1% 0;}
.modal-dialog {width: 80%; margin: 7% auto;}
}

 
@media only screen and (min-width:768px) and (max-width:991px) {
.banner-1 h2 {font-size:40px; line-height:60px; margin:15% auto 1% auto; padding: 1% 0;}
.modal-dialog {width: 75%; margin: 7% auto;}
}



@media only screen and (min-width:992px) and (max-width: 1365px) {
.banner-1 h2 {font-size:40px; line-height:60px; margin:10% auto 1% auto; padding: 1% 0;}
.modal-dialog {width: 75%; margin: 7% auto;}
}



@media only screen and (min-width:1366px) and (max-width: 1609px) {
}