/*body and container*/
* {
	margin: 0px;
	padding: 0px;
	
}

#container {
	width: 600px;
	overflow: hidden;
	margin: 0px 0px 0px 10px;
	background: white;
}


/* scroller */

.scroller {
	height: 170px;
	width: 1420px;
	margin-top: 15px;
	margin-bottom: 15px;
}

.scroller img {
	margin: 0px;
	padding: 0px;
}

.scroller img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.scroller img:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
	cursor: pointer;

	-webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
	box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}


/*keyframe animations*/
.first {
	-webkit-animation: bannermove 20s 3s linear infinite;
	-moz-animation: bannermove 20s 3s linear infinite;
	-ms-animation: bannermove 20s 3s linear infinite;
	animation: bannermove 20s 3s linear infinite;
}

/* @keyframes "bannermove" { */
@keyframes bannermove {
 0% {
    margin-left: 0px;
 }
 100% {
    /* margin-left: -738px; */
    margin-left: -618px;
 }

}

@-moz-keyframes bannermove {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -618px;
 }

}

@-webkit-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -618px;
 }

}

@-ms-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -618px;
 }

}

@-o-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -618px;
 }

}
