/************************
*ELEMENT STYLE
*********************/
* {
	padding: 0;
	margin: 0;
}

body {
	padding: 0;
	margin: 0;
	font: 1.0em Arial, Helvetica, sans-serif;
	line-height: 1.5em;
	background: #fff;
	color: black;
}

hr {
	background-color: #406CAE;
	border: none;
	height: 2px;
	margin-top: 10px;
}

input[type=text] {
	display: block;
	height: 30px;
	padding: 7px 7px;
	margin-bottom: 5px;
	margin-top: 5px;
	font-size: 14px;
	color: white;
	line-height: 1.42857143;
	background-color: #1e2429;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 10px;
	-webkit-box-shadow: none;
	box-shadow: 0 0 8px #719ECE;
	outline: none !important;
	box-sizing: border-box;
}

input[type=text]:focus {
	border:1px solid #406CAE;
}

textarea {
	display: block;
	padding: 7px 7px;
	margin-bottom: 5px;
	margin-top: 5px;
	font-size: 14px;
	color: white;
	line-height: 1.42857143;
	background-color: #1e2429;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 10px;
	-webkit-box-shadow: none;
	box-shadow: 0 0 8px #719ECE;
	outline: none !important;
	box-sizing: border-box;
}

textarea:focus {
	border:1px solid #406CAE;
}

input[type=button] {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 5px;
	margin-top: 5px;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #273948;
	border: 1px solid transparent;
	border-radius: 4px;
	color: white;
	box-shadow: 0 0 8px #719ECE;
	outline: none !important;
}

input[type=button]:focus {
	border:1px solid #406CAE;
}

input[type=button]:hover {
	border:1px solid #406CAE;
}

input[type=button]:active {
	border:1px solid #406CAE;
	color: #66737D;
	background-color: #1e2429;
}

input[type=button]:disabled {
	color: black;
	background-color: #1e2429;
	border:1px solid transparent;
	cursor: default;
}

a {
	color: #0893E3;
	text-decoration: none;
}

a:hover {
	/*color: #e47911;*/
	color: #33485E;
	text-decoration: none;
	cursor: pointer;
}

a.disabled, a[disabled=disabled] {
	cursor: default;
	color: gray;
	text-decoration: none;
}

a.scrollLink.activeLink {
	text-decoration: underline;
}

/************************
*GLOBAL CLASSES
*********************/
.fontMid {
	font-size: 14px;
}

.container {
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
}

.evenSection {
	background-color: black;
	color: white;
	padding-top: 20px;
}

.oddSection {
	background-color: white;
	color: black;
	padding-top: 20px;
}

.pageHeader {
	background: none;
	color: white;
	width: 100%;
	border-bottom: none;
	position: fixed;
	top: 0px;
	display: table;
	height: 60px;
}

.pageHeader.scrolled {
	background-color: #000000;
	border-bottom: 1px solid gray;
}

.fixedBackground {
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.serviceBlock {
	font-weight: bold;
	width: 150px;
	height: 170px;
	text-align: center;
	border: 2px solid black;
	border-radius: 10px;
	padding-top: 30px;
	margin-top: 20px;
	cursor: pointer;
	background-color: #273948;
	color: white;
	box-shadow: 0 0 50px #719ECE;
}

.serviceBlock:hover {
	border:2px solid #406CAE;
}

.serviceDesc {
	text-align: center;
	border: 2px solid black;
	border-radius: 10px;
	background-color: #FFFFFF;
	border-radius: 4px;
	color: black;
	box-shadow: 0 0 5px #719ECE;
	padding-bottom: 30px;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

.serviceActive {
	color: black;
	background-color: white;
}

.teamBlock {
	width: 230px;
	height: 340px;
	text-align: center;
	border: 2px solid black;
	border-radius: 10px;
	padding-top: 20px;
	padding-right: 10px;
	padding-left: 10px;
	margin-top: 20px;
	background-color: white;
	color: black;
	box-shadow: 0 0 50px #719ECE;
}

.teamBlock:hover {
	border:2px solid #406CAE;
}

.legals {
	font-size: 10px;
	text-align: center;
}

.failure {
	color: red;
}

.success {
	color: green;
}

.boxImage {
	border-radius: 10px;
	background-color: black;
	margin-bottom: 20px;
	border: 1px solid gray;
	box-shadow: 0 0 4px gray;
}


.schedTbl tr:nth-child(odd) {
	background-color: #E5E7E9;
}
.schedTbl th {
	background-color: black;
	color: white;
}
.schedTbl td {
	padding-right: 20px;
}
.schedTbl th {
	padding-right: 20px;
}
.schedTbl tr td:nth-child(3) {
	font-weight: bold
}

.abbeCol {
	color: #2e7d32;
}
.finCol {
	color: #311b92;
}
.evCol {
	color: #d84315;
}
.girlCol {
	color: #f06292;
}
.boyCol {
	color: #1565c0;
}

/************************
*ELEMENT SPECIFIC STYLE
*********************/
#headerLogo {
	float: left;
	font-size: 36px;
	display: inline;
	margin-top: 7px;
	margin-left: 5px;
}

#headerLogo img {
	width: 50px;
	height: 44px;
	vertical-align: middle;
}

#headerMenuBurger {
	margin-right: 10px;
	margin-top: 5px;
	height: 55px;
	cursor: pointer;
}

#headerMenu {
	float: right;
	text-align: right;
	font-size: 22px;
	display: inline;
	line-height: 60px;
	vertical-align: middle;
	position: relative;
}

#headerMenu.dropdown {
	width: 65px;
}

#headerMenu ul {
	list-style: none;
}

#headerMenu:not(.dropdown) li {
	display: inline;
	margin-right: 50px;
	list-style: none;
}

#headerMenu.dropdown ul {
	list-style: none;
	position: absolute;
	right: 0px;
	top: 60px;
	padding-right: 10px;
	line-height: 35px;
	font-size: 18px;
}

#header.scrolled #headerMenu.dropdown ul {
	background-color: black;
	border-left: 1px solid gray;
}

#headerMenu.dropdown ul li {
	padding-left: 10px;
	padding-right: 10px;
	clear: both;
	white-space: nowrap;
}

#homeADiv {
	background-image:url('./../images/backimg.jpg');
}

/************************
*GROWL STYLE
*********************/
div.growlUI
{
	background: url(./../images/error.png) no-repeat 10px 10px;
}
div.growlUI h1 {
	color: white;
	padding: 5px 5px 5px 75px;
	text-align: left;
	font-size: 20px;
}
div.growlUI h2 {
	color: white;
	padding: 5px 5px 5px 75px;
	text-align: left;
	font-size: 10px;
	line-height: 1em;
}

/***************************
**** RESPONSIVENESS CLASSES
***************************/
#scheduleDiv {
	text-align: left;
	padding-left: 10px;
}

#nextDiv {
	text-align: left;
	padding-left: 10px;
}

#locationDiv {
	text-align: center;
	margin-top: 20px;
}

#aboutTextDiv {
	text-align: left;
	padding-left: 10px;
}

#aboutPicDiv {
	text-align: center;
	margin-top: 20px;
}

#headQuartSpn {
	font-weight: bold;
	font-size: 24px;
}

#contactTextDiv {
	text-align: center;
	/*width: 100%;*/
	padding-right: 10px;
	padding-left: 10px;
}

#contactTblDiv {
	margin-left: 10px;
	/*width: 100%;*/
}

#contactLinksDiv {
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
}

#logoImg {
	width: 190px;
	height: auto;
}

.titleSmallTxt {
	font-size: 14px;
	display: none;
}

.headerTexttr {
	opacity: 0.0;
}

.scrolled .headerTexttr {
	opacity: 1.0;
}

@media screen and (min-width: 800px) {
	.justContainer {
		text-align: justify;
		width: 70%;
		margin-left: auto;
		margin-right: auto;
	}

	.justContainer span.filler {
		width: 100%;
		display: inline-block;
		font-size: 0;
		line-height: 0;
	}

	.justContainer div {
		display: inline-block;
		vertical-align: top;
	}

	.smallOnly {
		display: none;
	}

	#aboutTextDiv {
		display: table-cell;
	}

	#locationDiv {
		width: 420px;
		padding-left: 20px;
		display: table-cell;
		text-align: left;
		margin-top: 0px;
		vertical-align:middle;
	}

	#scheduleDiv {
		display: table-cell;
	}

	#nextDiv {
		padding-top: 15px;
		display: table-cell;
	}

	#aboutPicDiv {
		width: 420px;
		padding-left: 20px;
		display: table-cell;
		text-align: left;
		margin-top: 0px;
	}

	#locationTextSpn {
		font-size: 14px;
	}

	#headQuartSpn {
		line-height: 1em;
		font-size: inherit;
	}

	#contactTextDiv {
		text-align: left;
		width: 50%;
		display: table-cell;
	}

	#contactTblDiv {
		display: table-cell;
		margin-left: 0px;
	}

	#logoImg {
		margin-left: 20px;
		width: initial;
		height: initial;
	}

	.titleSmallTxt {
		display: inline;
	}
}