﻿.myMarquee {
	width: 100%;
    height: 90px;
	overflow:hidden; position:relative; 
    background:linear-gradient(40deg, #6F4100 0%, #D1A40F 100%);
	transform: rotate(359deg);    
	left: -1px;
}



.scroller {display:block; width:1540px; height:90px; position:absolute; left:0; top:0;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-moz-animation-duration:10s;
-moz-animation-name: scroll;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-webkit-animation-duration:10s;
-webkit-animation-name: scroll;
}
.scroller div {font-size:22px; line-height:90px; float:left; width:450px; color:#fff; font-weight:bold; padding:0 10px;  
	background: url("../images/logo.png") no-repeat left 25px; background-size:40px;    padding-left: 90px;
}

@-moz-keyframes scroll {
0% {left:0;}
100% {left:450px;}
}

.scroller:hover {
 -moz-animation-play-state: paused;
 }


@-webkit-keyframes scroll {
0% {left:0;}
100% {left:450px;}
}

.scroller:hover {
 -webkit-animation-play-state: paused;
 }


