html {
	max-width: 960px;
	margin: auto;
	background-color: #ffffff;
	color: black;
	direction: ltr;
	font-family: "Times New Roman", serif;
	font-size: 16px;
	text-align: center;
}
h1 {
	color:#9900cc;
	font-size: 18px;
	font-style: italic;
	font-weight: 700;
	margin-top: 0px;
	margin-bottom: 0.5em;
}

h2, a {
	font-size: 17px;
	font-weight: 600;
	text-align: center;
	padding: 15px;
	line-height: 20px;
	margin-top: 0px;
	margin-bottom: 0px;
}

h3 {
	font-weight: 400;
	text-align: center;
}

p {
	line-height: 1em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	text-align: left;
}

.container {
    width: 100%;
    height: 60px;
    margin: auto;
    overflow: hidden;
    background: white;
    position: relative;
    box-sizing: border-box;
}

.marquee {
	background-color: #0000ff;
	color: #ffffff;
	font-size: 16px;	
	font-weight: 700;
	line-height: 100%;
	margin: auto;
	text-align: center;
	animation-name: scroll;	
	position: relative;
	box-sizing: border-box;
	animation: scroll 20s linear infinite;
	-webkit-animation-name: scroll;
	-webkit-animation: scroll 20s linear infinite;
}

.marquee:hover {
	animation-play-state: paused;
	-webkit-animation-play-state: paused;
}

@keyframes scroll {
	0% { top:   70% }
	100% { top: -80% }
}

@-webkit-keyframes scroll {
	0% { top:   70% }
	100% { top: -80% }
}

.span1 {
	color: #d200d2;
	font-weight: 600;
	margin-top: 0px;
	margin-bottom: 0px;
}

.img {
	max-height: 25px;
	margin-top: 0em;
	margin-bottom: 0em;
	width: 100%;
	text-align: center;
}

.button6 {
   border-top: 1px solid #fafafa;
   background: white;
   background: -webkit-gradient(linear, left top, left bottom, from(white), to(#ffe633));
   background: -webkit-linear-gradient(top, white, #ffe633);
   background: -moz-linear-gradient(top, white, #ffe633);
   background: -ms-linear-gradient(top, white, #ffe633);
   background: -o-linear-gradient(top, white, #ffe633);
   padding: 5px 10px;
   -webkit-border-radius: 20px;
   -moz-border-radius: 20px;
   border-radius: 20px;
   -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
   -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
   box-shadow: rgba(0,0,0,1) 0 1px 0;
   text-shadow: rgba(0,0,0,.4) 0 1px 0;
   color: red;
   font-size: 16px;
   font-family: Times New Roman, serif;
   font-weight:600;
   vertical-align: middle;
   }

.scroll-left {
height: 250px; 
overflow: hidden;
position: relative;
}
.scroll-left p {
position: absolute;
width: 40%;
height: 40%;
margin: 0;
line-height: 25px;
text-align: center;
/* Starting position */
-moz-transform:translateX(100%);
-webkit-transform:translateX(100%); 
transform:translateX(100%);
/* Apply animation to this element */ 
-moz-animation: scroll-left 30s linear infinite;
-webkit-animation: scroll-left 30s linear infinite;
animation: scroll-left 30s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
0% { -moz-transform: translateX(100%); }
100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
0% { -webkit-transform: translateX(100%); }
100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
0% { 
-moz-transform: translateX(100%); /* Browser bug fix */
-webkit-transform: translateX(100%); /* Browser bug fix */
transform: translateX(100%); 
}
100% { 
-moz-transform: translateX(-100%); /* Browser bug fix */
-webkit-transform: translateX(-100%); /* Browser bug fix */
transform: translateX(-100%); 
}
}