/* CSS Document */
/* Responsive Grid Settings */
/* Mobile */
*{
    box-sizing: border-box;
}
.row::after{
    content: "";
    clear: both;
    display: block;
}
[class*="col-"]{
    float: left;
    padding: 15px;
}
/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}
.desktop{
	display:none;
}
/* General class & element settings */
a, a:active, a:visited{
	color:#000000;;
	cursor:pointer;
	text-decoration:none;	
}
a:hover{
	text-decoration:none;
	color:#838383;
}
.buttonSmall, .buttonSmall:active, .buttonSmall:visited{
	background-color:#000000;
	border-radius: 3px;
	color:#FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-size: 1em;
	padding:2px 6px;
	text-align: center;
	white-space: nowrap;
}
html{
	height: 100%;
}
body{
	background-color:#FFFFFF;
	color:#000000;
	font-family:Helvetica, Arial, sans-serif;
	margin:0;
	padding:0;
	position: relative;
	min-height: 100%;
}
.center, .left, .right{
	text-align:center;
}
.footer{
	color:#FFFFFF;
	width:100%;
	text-align:center;
}
.footer a{
	color:#FFFFFF;
}
h1{
	color:#000000;
	font-size:1.5em;
	text-align:left;
	padding: 5px 0;
}
h2{
	color:#000000;
	font-size:1.25em;
	text-align:left;
	padding: 5px 0;
}
.header{
	align-items: center;
	display:flex;
	margin: 0;
	padding: 0;
}
.header a{
	color:#FFFFFF !important;
}
.icon{
	width:32px; 
	vertical-align: middle;
}
.inlineInput{
	background-color: transparent;
	border-radius: 3px !important;
	font-style: normal;
	font-size: 1em !important;
}
input[type=text], input[type=email], input[type=date], input[type=password], input[type=number], input[type=tel], input[type=url], select, textarea{
	border:1px inset #777777;
	color:#333333;
	font-style:italic;
	font-size: 16px;
	padding:5px;
	margin-bottom:5px;
	width:100%;
	-webkit-appearance:none;
}
input[type=button], input[type=submit], .button, .button:active, .button:visited, button{
	background-color:#C40000;
	border-radius: 5px;
	color:#FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-size: 1.2em;
	font-weight: bold;
	padding:10px 30px;
	text-align: center;
	white-space: nowrap;
}
input[type=button]:hover, input[type=submit]:hover, .button:hover, button:hover{
	font-weight:bolder;
}
.introFont{
	font-family: "ltc-flash", sans-serif;
	font-weight: 400;
	font-size: 3em;
	font-style: normal;
}
li{
	margin:10px 0 10px 0;
}
.logoContainer{
	text-align: center;
}
.logo{
	max-width:300px;
	width:85%;	
}
.menu{
	display: none;
	height: 100%;
}
.menu, .menu a, .menuItem, .menuItem a{
	color:#FFFFFF !important;
	padding: 5px 15px;
	margin: 10px 0;
	white-space: nowrap;
}
.menuItem{
	display: block;
	font-size: 1.2em;
}
.menuToggle{
	height:32px;
	position:absolute;
	right:7px;
	top:12px;
	width:32px;
}
.mobileMenu{
	display: none;
	background-color: #333333;
	color:#FFFFFF;
}
#scrollTopIcon {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 11px; /* Place the button at the bottom of the page */
  right: 11px; /* Place the button 30px from the right */
  z-index: 9999; /* Make sure it does not overlap */
  cursor: pointer; /* Add a mouse pointer on hover */
}
.shimmer{
	background: -moz-linear-gradient(-45deg,  #c40000 0%, #c40000 40%, #ffffff 50%, #c40000 60%, #c40000 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#c40000), color-stop(40%,#c40000), color-stop(50%,#ffffff), color-stop(60%,#c40000), color-stop(100%,#c40000));
	background: -webkit-linear-gradient(-45deg,  #c40000 0%,#c40000 40%,#ffffff 50%,#c40000 60%,#c40000 100%);
	background: -o-linear-gradient(-45deg,  #c40000 0%,#c40000 40%,#ffffff 50%,#c40000 60%,#c40000 100%);
	background: -ms-linear-gradient(-45deg,  #c40000 0%,#c40000 40%,#ffffff 50%,#c40000 60%,#c40000 100%);
	background: linear-gradient(135deg,  #c40000 0%,#c40000 40%,#ffffff 50%,#c40000 60%,#c40000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c40000', endColorstr='#c40000',GradientType=1 );
	background-repeat: no-repeat;  
	background-position:0px;
	background-size:400%;  
}
.shimmer{
	animation:shimmer 2s infinite;
	-webkit-animation:shimmer 2s infinite;
}
@keyframes shimmer {
  0% {
        background-position:-700px; 
  }
  100% { 
        background-position:0px; 
  }
}   
@-webkit-keyframes shimmer {
  0% {
        background-position:-700px; 
  }
  100% { 
        background-position:0px; 
  }
}
.shimmerBlack{
	background: -moz-linear-gradient(-45deg,  #000000 0%, #c40000 40%, #ffffff 50%, #000000 60%, #000000 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#000000), color-stop(40%,#000000), color-stop(50%,#ffffff), color-stop(60%,#000000), color-stop(100%,#000000));
	background: -webkit-linear-gradient(-45deg,  #000000 0%,#000000 40%,#ffffff 50%,#000000 60%,#000000 100%);
	background: -o-linear-gradient(-45deg,  #000000 0%,#000000 40%,#ffffff 50%,#000000 60%,#000000 100%);
	background: -ms-linear-gradient(-45deg,  #000000 0%,#000000 40%,#ffffff 50%,#000000 60%,#000000 100%);
	background: linear-gradient(135deg,  #000000 0%,#000000 40%,#ffffff 50%,#000000 60%,#000000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 );
	background-repeat: no-repeat;  
	background-position:0px;
	background-size:400%;  
}
.shimmerBlack{
	animation:shimmerBlack 2s infinite;
	-webkit-animation:shimmerBlack 2s infinite;
}
@keyframes shimmerBlack {
  0% {
        background-position:-700px; 
  }
  100% { 
        background-position:0px; 
  }
}   
@-webkit-keyframes shimmerBlack {
  0% {
        background-position:-700px; 
  }
  100% { 
        background-position:0px; 
  }
}
.small{
	font-size:0.85em;
}
.spotlightImage{
	margin: 0;
	padding: 0;
	width:100%;
}
table{
	border-collapse:collapse;
}
th, td{ text-align: left; padding: 5px 10px; }
tr:nth-child(even) {background-color: #EEEEEE; color:#000000;}
tr:nth-child(odd) {background-color: #DDDDDD; color:#000000;}
@media only screen and (min-width: 1152px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
	.desktop{display:block;}
	.left{ text-align:left; }
	.mobile{ display:none !important; }
	.menu{display:block; text-align: right;}
	.menuItem{
		display:inline;
		padding: 20px 0;
		position: relative;
		margin: 0 5px 0 5px !important;
	}
	.menuToggle{display:none;}
	.right{ text-align:right; }
}