/* Required CSS for Pausing Scroller */


#pscroller{
  width: 100%;
  height: 100%;
  color:#fff;
 padding-top: 5px;

}

#pscroller a{
  color:#fff;
  font-size: 15px;
  font-weight: 300;
}

#pscroller a:hover{
  text-decoration: underline;
}

#pscroller > div.innerDiv{
  padding: 0px;
}


div.pausescroller{
	position: relative;
	overflow: hidden;
	z-index: 100;
	color:#fff;
}

div.pausescroller > div.innerDiv{
	position: absolute;
	will-change: transform;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	z-index: 100;
}


div.pausescroller > div.innerDiv:before{
	content: '';
	position: absolute;
	bottom: 100%;
	height: 1000px;
	width: 1px;
	z-index: -1;
}

.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}