/*.wrapper {
  margin: 0 auto;
  padding: 0;
	width: 45em;
	height: 10em;
	background-color: #3E3E3E;
  box-shadow: 7px 5px 4px rgba(0,0,0,0.5);
}
*/
.box {
	margin: 3em auto;
	padding: 10em 2em;
	/*width: 15em;
	height: 3em;*/
	position: relative;
	overflow: hidden;
  top: 1em;
	background-color: #FFF;
	box-shadow: 7px 5px 4px rgba(245,131,32,0.5);
	border: 2px solid #F58320;
	border-radius: 2px;
}
/* Animating the UL 
-_-_-_-_-_-_-_-_-_-_-_-_ 

@keyframes "scroll" {
 from {
   top: 100px;
 }
 to {
   top: -200px;
 }

}

@-moz-keyframes scroll {
 from {
   top: 100px;
 }
 to {
   top: -200px;
 }

}

@-webkit-keyframes "scroll" {
 from {
   top: 100px;
 }
 to {
   top: -200px;
 }

}

@-ms-keyframes "scroll" {
 from {
   top: 100px;
 }
 to {
   top: -200px;
 }

}

@-o-keyframes "scroll" {
 from {
   top: 100px;
 }
 to {
   top: -200px;
 }

}
*/
.scroll {
	position: absolute;

	/*-webkit-animation: scroll 15s linear infinite;
	-moz-animation: scroll 15s linear infinite;
	-ms-animation: scroll 15s linear infinite;
	-o-animation: scroll 15s linear infinite;
	animation: scroll 15s linear infinite; */
}

.scroll li{
	list-style: circle;
}
.box:after{
	background: #F58320 url(../images/testimonials/quote.png) no-repeat center center;
    content: "";
    width: 58px;
    height: 52px;
    position: absolute;
    right: 0;
    top: -2px;
    border-radius: 5px;
}