#pscroller1{
	width: 100%;
	max-width: 600px;
	height: 320px;
	margin-bottom: 1em;
}
#pscroller1 img{
max-height:180px;
}
#pscroller1 h5{
color:#fff;
}
#pscroller1 span{
color:dodgerblue;
}
#pscroller1 > div.innerDiv{
	padding: 8px;
}

#pscroller2{
	width: 100%;
	max-width: 350px;
	height: 35px;
	border: 1px solid #f5f5f5;
}

#pscroller2 > div.innerDiv{
	padding: 4px;
}

#pscroller2 a{
	text-decoration: none;
}

/* Required CSS for Pausing Scroller */

div.pausescroller{
	position: relative;
	overflow: hidden;
}

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

/*
	Hack to force iOS browsers to transition elements initially hidden by parent container's overflow:hidden setting
	Works by creating a pseudo element that pokes out into visible area of parent container:
*/
div.pausescroller > div.innerDiv:before{
	content: '';
	position: absolute;
	bottom: 100%;
	height: 1000px;
	width: 1px;
}

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