a:link {
	color: white;
}
a:visited {
	color: white;
}
a:hover {
	color: white;
}
a:active {
	color: white;
}
body, html {
	min-height: 100%;
	font-family: "Arial";
	color: white;
	
	background-image: url('../images/background-dim-2017-2.jpg');
	background-color: black;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	
	-webkit-animation: backgroundScroll 2s ease 1;
    -webkit-animation-fill-mode: forwards;
	
	animation: backgroundScroll 2s ease 1;
    animation-fill-mode: forwards;
}

#header {
	width: 100%;
	background-color: black;
	position: fixed;
	top: 0px ;
	margin-left: auto;
    margin-right: auto;

}

#sticky {
	width: 100%;
	height: 70px;
	padding-top: 5px;
	background: black;
	color: white;
	font-size: 12px;
	text-align: center;
	position: fixed;    /*Here's what sticks it*/
	bottom: 0;          /*to the bottom of the window*/
	z-index: 999;

}


#content {
	margin-top: 180px;
	margin-bottom: 90px;
	display: block;

}

#nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
	max-width: 1080px;
	font-size: 12px;	
}

#nav li {
	float: left;
	border-right: 3px solid black;
}

	
#nav li:last-child {
	float: right;
	border-left: 3px solid black;
}
#nav li a:hover:not(.active) {
	background-color: darkblue;
	transition: all .5s;
	border-bottom: 1px solid white;
	border-top: 1px solid white;

}
#nav .active {
	background-color: black;
}
#nav li a, .dropbtn {
	transition: all .5s;
	display: inline-block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	border-bottom: 1px solid #333;
	border-top: 1px solid #333;
	cursor:pointer;
}
#nav li a:hover, .dropdown:hover .dropbtn {
	transition: all .5s;
	background-color: darkblue;
	box-shadow: 10px 10px 16px 0px rgba(0,0,0,1);
}
#nav li.dropdown {
	display: inline-block;
}
#nav .dropdown-content {
	display: none;
	position: absolute;
	background-color: #333;
	min-width: 160px;
	box-shadow: 10px 10px 16px 0px rgba(0,0,0,1);
	z-index: 1;
}
#nav .dropdown-content a {
	color: white;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
	border-bottom: 1px solid black;
	border-top: 1px solid black;
}
#nav .dropdown-content a:hover {
	border-bottom: 0px solid white;

}
#nav .dropdown:hover .dropdown-content {
	display: block;
}

div.toggle {
	display: none;
}
div.toggle2 {
	display: block;
}
table, th, td {
	border: 0px solid white;
	border-collapse: collapse;
	spacing: 0px;
	padding: 1px;
	background-Color:rgba(0,0,0,0.25); 
}

tr.highlight:hover { 
	background: black; 
}


.w3-spin{animation:w3-spin 2s infinite linear}@keyframes w3-spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}
.w3-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}50%{opacity:1}100%{opacity:0}}
.w3-animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
.w3-animate-top{position:relative;animation:animatetop 0.9s}@keyframes animatetop{from{top:-900px;opacity:0} to{top:0;opacity:1}}
.w3-animate-left{position:relative;animation:animateleft 1.9s}@keyframes animateleft{from{left:-1300px;opacity:0} to{left:0;opacity:1}}
.w3-animate-right{position:relative;animation:animateright 0.9s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.w3-animate-bottom{position:relative;animation:animatebottom 0.9s}@keyframes animatebottom{from{bottom:-1900px;opacity:0} to{bottom:0;opacity:1}}
.w3-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.w3-animate-input{transition:width 0.4s ease-in-out}.w3-animate-input:focus{width:100%!important}


.grow img{
	transition: 1s ease;
	margin: 20px;
}

.grow img:hover{
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	transition: .5s ease;
}

	@-webkit-keyframes backgroundScroll {
	from {background-position: center -500px;}
	to {background-position: center 165px;}
	}

	@keyframes backgroundScroll {
	from {background-position: center -500px;}
	to {background-position: center 165px;}
	}