[data-toggle="collapse"] > i  {
	display: inline-block;
	transform: rotate(90deg) ;
	transition: all linear 0.25s;
	font-size: 1.45em;
	color: rgba(0, 0, 0, 0.125);
	position: absolute;
	top: 20px;
	left: 12px;
}   
[data-toggle="collapse"].collapsed > i {
	transform: rotate(0deg) ;
}

/* from Eric */
body {
  padding-top: 83px;
}
.btn-link {
    color: #1b76b9;
}
.btn-outline-primary {
  color: white;
  border-color: white;
}
.btn-outline-primary:hover {
  background-color: #444444;
  border-color: #444444;
}

.navbar-light .navbar-nav .nav-link {
	color: #1b76b9;
}

.hero-header {
	height: 50vh;
	min-height: 300px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover !important;
	-o-background-size: cover;
	transition: background 1s linear;
	position: relative;
}

.centered {
    margin: 0 auto;
    text-align: left;
    width: 96%;
}

.card {
  height: 100%;
}

.card-no-border {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 0.25rem;
}
.card-img-top {
     max-width: 100%;
     flex-shrink: 0;
}
.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #fff;
    border-radius: .3rem;
}
.display-3 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}
.bg-blue {
    background-color: #1b76b9 !important;
}

.bg-dark {
    background-color: #59b147 !important;
}

.bg-orange {
    background-color: #ffe24f !important;
}

.bg-gray {
    background-color: #e3e4e5 !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: #1b76b9;
}
.h4, h4 {
    font-size: 1.2rem;
}

span.greencircle {
  background: #59b147;
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 15px;
  text-align: center;
  width: 1.6em; 
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}


/* end from Eric */

/*
input:required, textarea:required, select:required {
  border-left: 4px solid #a60000 !important;
}
*/

.manageHeader {
	position: relative;
	text-align: center;
	background: #1b76b9;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	line-height: 40px;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	width: 100%;
	min-height: 40px;
	padding: 0 10px;
}
.manageMenuButtons {
	margin: 0 0 10px 0;
}
.manageMenuButtons h2 {
	margin: -10px 0 10px 0;
}

.modal {
  background: rgba(0,0,0,0.5);
}

@-o-keyframes fadeIt {
	0%   { background-color: #ffffff; }
	50%  { background-color: #80c8ff; }
	100% { background-color: #ffffff; }
}
@keyframes fadeIt {
	0%   { background-color: #ffffff; }
	50%  { background-color: #80c8ff; }
	100% { background-color: #ffffff; }
}

.activity-response{    
	-o-animation: fadeIt 1.5s ease-in-out; 
	animation: fadeIt 1.5s ease-in-out; 
}

.panel {
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
	box-shadow: 0 1px 1px rgba(0,0,0,.05);
	border-color: ##ddd;
}
.panel-heading {
	padding: 10px 15px;
	border-bottom: 1px solid transparent;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
}
.panel-body {
	padding: 0;
}

.detailOuter, .detailOuterEven {
	display: grid;
}
.detailWrapper {
	display: grid;
}
@media all and (min-width: 1051px) {
	.detailOuter {
		grid-gap: 50px;
		margin: 0 50px 0 0;
		grid-template-columns: 60% 40%;
	}
	.detailOuterEven {
		grid-gap: 50px;
		margin: 0 50px 0 0;
		grid-template-columns: 50% 50%;
	}
	.detailWrapper {
		grid-template-columns: 20% 30% 20% 30%;
	}
	.detailRightFull {
		grid-column: span 3;
	}
}
@media all and (max-width: 1050px) {
	.detailOuter {
		grid-template-columns: 100%;
	}
	.detailOuterEven {
		grid-template-columns: 100%;
	}
	.detailWrapper {
		grid-template-columns: 30% 70%;
	}
}
.detailLeft, .detailLeftFull {
	padding: 5px;
	text-align: right;
	font-weight: bold;
	margin: 4px 0 4px 0;
}
.detailLeftFull {
	grid-column: 1;
}
.detailRight, .detailRightFull {
	padding: 5px;
	background-color: #eeeeee;
	margin: 4px 0 4px 0;
}
.detailWrapper:after, detailOuter:after {
	content: "";
	display: table;
	clear: both;
}

.autocomplete-suggestions { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; border: 1px solid #999; background: #FFF; cursor: default; overflow: auto; -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); }
.autocomplete-suggestion { padding: 2px 5px; white-space: nowrap; overflow: hidden; }
.autocomplete-no-suggestion { padding: 2px 5px;}
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { font-weight: bold; color: #000; }

.imagedropshadow {
    padding: 5px;
}
a:hover img.imagedropshadow {
	border: 1px solid #cccccc;
	box-shadow: 1px 1px 5px #999999;
}

.formButtons {
	margin: 20px 0 0 20px;
	height: 50px;
}

.waitingDiv{
	display: none;
	border-radius:50%;
	margin: 26px 0 20px 70px;
	width: 24px;
	height: 24px;
	box-sizing:border-box;
	background:#59b147;
	animation:waitingDiv-animate 1s linear infinite
}
.waitingDiv:before{border-radius:50%;content:" ";width:24px;height:24px;display:inline-block;box-sizing:border-box;background-color:#59b147;position:absolute;left:-30px;animation:waitingDiv-animate-before 1s ease-in-out infinite}
.waitingDiv:after{border-radius:50%;content:" ";width:24px;height:24px;display:inline-block;box-sizing:border-box;background-color:#59b147;position:absolute;right:-30px;animation:waitingDiv-animate-after 1s ease-in-out infinite}
@keyframes waitingDiv-animate{0%{opacity:.5;transform:scale(1) translateX(0)}25%{opacity:1;transform:scale(1.1) translateX(-15px)}50%{opacity:1;transform:scale(1.2) translateX(15px)}100%{opacity:.5;transform:scale(1) translateX(0)}}
@keyframes waitingDiv-animate-before{0%{opacity:.5;transform:scale(1)}25%{transform:scale(1.1)}100%,50%{opacity:1;transform:scale(1)}}
@keyframes waitingDiv-animate-after{0%,50%{opacity:.5;transform:scale(1)}50%{transform:scale(1.1)}100%,75%{opacity:1;transform:scale(1)}}

img {
	max-width: 100%;
	height: auto;
}

.fa { margin-right: 5px; }

table.listingTable {
	width: 100%;
}
table.listingTable th {
	text-transform: uppercase;
}
@media screen and (max-width: 900px) {
	table.listingTable {
		border: 0;
		empty-cells: show;
	}
	table.listingTable thead {
		display: none;
	}
	table.listingTable tr {
		display: block;
		margin-bottom: .625em;
	}
	table.listingTable td {
		margin: 2px;
		border-bottom: 1px solid #bdbdbd;
		display: block;
		text-align: right;
		min-height: 20px;
	}
	table.listingTable td:before {
		content: attr(aria-label);
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}
	table.listingTable td:last-child {
		border-bottom: 0;
	}
	.hideSmall {
		display: none !important;
	}
	.titleClass {
		text-align: left !important;
		width: 100% !important;
		padding-left: 6px;
	}
	.titleClass + td {
		margin: 0 0 10px 0;
		display: block;
	}
}
@media screen and (min-width: 901px) {
	.hideLarge {
		display: none !important;
	}
}

.btn-primary, input[type="button"], input[type="submit"] {
	color: #ffffff;
	background-color: #1b76b9;
    border-color: #1b76b9;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active, input[type="button"]:hover, input[type="submit"]:hover {
	color: #ffffff;
	background-color:#59b147;
	border-color: #59b147;
}

.btn-default, input[type="button"], input[type="submit"] {
	color: #333333;
	background-color: #ebebeb;
	border-color: #cccccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active, input[type="button"]:hover, input[type="submit"]:hover {
	color: #333333;
	background-color: #ffffff;
	border-color: #adadad;
}

.btn-white {
	color: #333333;
	background-color: #ffffff;
	border-color: #cccccc;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active {
	color: #000000;
	background-color: #ffffff;
	border-color: #adadad;
}
input[type="text"], input[type="password"], textarea, select {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 6px;
	border-radius: 6px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	border: 2px solid #f1f1f1;
	box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.33);
	-moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.33);
	-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.33);
}

.pointer { cursor: pointer; }

.popbox {
	display: none;
	position: absolute;
	z-index: 99999;
	padding: 4px;
	background: #ffffff;
	color: #000000;
	border: 1px solid #1b76b9;
	margin: 0px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(164, 164, 164, 1);
	box-shadow: 0px 0px 5px 0px rgba(164, 164, 164, 1);
}

.colHdrTxt a, .colHdrTxt A:visited, .colHdrTxt A:link {
    font-size: 8pt;
	color: white;
}

.listingCol { padding: 2px; font-size: 9pt; }
.notification {
	font-weight: bold;
	background: #59b147;
	color: white;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	margin-bottom: 4px;
}

.titleClass {
	display: block;
  	width: 100%;
	text-align: right;
	background: #f1f1f1;
	border-bottom: 1px solid #CCCCCC;
	border-right: 1px solid #DDDDDD;
	border-top: 1px solid #EEEEEE;
	padding-top: 6px;
	margin-bottom: 6px;
	min-height: 38px;
}
.errorMessage, .error {
	color: #a60000;
	font-style: italic;
	font-weight: bold;
}
.sortingTableHeader {
	background: #1b76b9;
	padding: 2px;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	box-shadow: 0 3px 4px -2px #777777;
}
.sortingTableHeader, .sortingTableHeader a, .sortingTableHeader a:visited, .sortingTableHeader a:link, .sortingTableHeader a:active {
	font-size: 9pt;
	color: white;
	font-weight: bold;
}	
.sortingTableHeaderSmall, .sortingTableHeaderSmall a, .sortingTableHeaderSmall a:visited, .sortingTableHeaderSmall a:link, .sortingTableHeaderSmall a:active {
    font-size: 7pt;
	color: white;
    font-weight: bold;
	background: #1b76b9;
}

.filterDiv {
	float: left;
	white-space: nowrap;
	padding: 0 5px 5px 0;;
	font-size: 8pt;
	min-height: 36px;
}
.filtersDiv {
	border: 1px solid #ccc;
	padding: 5px 5px 0 5px;
	margin: 0 0 10px 0;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.filtersDiv:after {
	content: "";
	display: table;
	clear: both;
}

label { cursor: pointer; }
a { color: #1b76b9; }


/*

.btn, input[type="button"], input[type="submit"] {
	  display: inline-block;
	  padding: 3px 8px;
	  margin-bottom: 2px;
	  font-size: 14px;
	  font-weight: normal;
	  line-height: 1.42857143;
	  text-align: center;
	  white-space: nowrap;
	  vertical-align: middle;
	  cursor: pointer;
	  -webkit-user-select: none;
		 -moz-user-select: none;
		  -ms-user-select: none;
			  user-select: none;
	  background-image: none;
	  border: 1px solid transparent;
	  border-radius: 4px;
	}
.btn:focus,
.btn:active:focus,
.btn.active:focus, input[type="button"]:focus, input[type="submit"]:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
.btn:hover,
.btn:focus, input[type="button"]:hover, input[type="submit"]:hover {
	color: #333;
	text-decoration: none;
}
.btn:active,
.btn.active, input[type="button"]:active, input[type="submit"]:active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled] {  
	pointer-events: none;
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65;
}


.btn-blue {
	color: #ffffff;
	background-color: #0281e3;
	border-color: #cccccc;
}
.btn-red {
	color: #ffffff;
	background-color: #690808;
	border-color: #cccccc;
}
.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active,
.btn-blue.active,
.btn-red:hover,
.btn-red:focus,
.btn-red:active,
.btn-red.active {
	color: #ffffff;
	background-color: #333333;
	border-color: #adadad;
}

.btn-dark {
	color: #ffffff;
	background-color: #6d6d6d;
	border-color: #cccccc;
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active {
	color: #333333;
	background-color: #ffffff;
	border-color: #adadad;
}

.btn-default.disabled,
.btn-default[disabled],
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
.btn-dark.disabled,
.btn-dark[disabled],
.btn-dark.disabled:hover,
.btn-dark[disabled]:hover,
.btn-dark.disabled:focus,
.btn-dark[disabled]:focus,
.btn-dark.disabled:active,
.btn-dark[disabled]:active,
.btn-dark.disabled.active,
.btn-dark[disabled].active {  
	background-color: #fff;
	border-color: #ccc;
}

.btn-lg {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 6px;
}
.btn-sm {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}
.btn-xs {
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.2;
	border-radius: 3px;
}
.btn-block {
	display: block;
	width: 100%;
	padding-right: 0;
	padding-left: 0;
}
.btn-block + .btn-block {
	margin-top: 5px;
}
input[type="submit"].btn-block,  
input[type="reset"].btn-block,  
input[type="button"].btn-block {  
	width: 100%;
}
*/