#fade {
	opacity: 0;
	position: fixed;
	top:0;
	left:0;
	right:0;
	height: 120px;
	background-image: url("img/fade.png");
	background-repeat: repeat-x;
	background-size: auto 100% ;
	background-position: 0px 0px;

		-webkit-transition: all 0.5s ease-in-out;
  transition:               all 0.5s ease-in-out;
}
#fade.visi {
	opacity: 1;
}
.videonav {
	opacity: 0;
	  font-family: "lightfont";
	font-size: 18px;
	z-index: 1001;
	position: fixed;
	top:45px;
	left:60px;
	right: 60px;
	width: calc(100% - 120px);
	-webkit-transition: all 0.5s ease-in-out;
  transition:           all 0.5s ease-in-out;
}
.videonav.visi {
	opacity: 1;
}
.videonav.visi.navfadeout {
	opacity: 0;
		-webkit-transition: all 0.5s ease-in-out;
  transition:               all 0.5s ease-in-out;
}

.videonav.visi:hover, .videonav.visi.navfadeout:hover {
	opacity: 1;
}

#timeline {
	font-size: 18px;
	position: absolute;
	right:0px;
	width: 4px;
	height: 10px;
	background-color: #fff;
	display: table;
	 -webkit-transition: all .25s linear;
  transition:            all .25s linear;

}
#time {
	letter-spacing: 0.05em;
	top:19px;
	width: 60px;
	text-align: center;
	position: absolute;
	right:-28px;
	color: #fff;
	z-index: 10000;
		 -webkit-transition: all .25s linear;
  transition:            all .25s linear;
}

#seekbar
{  
padding-bottom: 15px;
padding-top: 15px;
  cursor: pointer;
  height: 4px;
  margin-bottom: 10px;
  position: relative;
  width: 100%;

}
#seekbar #holder
{
		cursor: pointer;
  background-color: #fff;
  position: absolute;
  top: 15px;
  left: 0;
  height: 4px;
  width: 0px;
  z-index: 2;
}
#seekbarbg {
		cursor: pointer;
	z-index: 1;
	position: absolute;
	top:15px;
	left:0px;
	right: 0px;
	height: 4px;
	background-color: rgba(255,255,255,0.3);
}



@media (max-width: 950px) {
	.videonav {
	top:15px;
	left:30px;
	right:30px;
	width: calc(100% - 60px);
	}
	#fade {
	height: 100px;
	background-image: url("img/fade.png");
	}
}

