/*body and container*/




#scroller {
	
	width:100%;
	overflow: hidden;
	margin: 4px auto;
	background: white;
}

/*header*/






/*photobanner*/

.photobanner {
	height: 250px;
	 /*each picture width 350 total pictures = 12 and first four pictures reapeting so formula  (350X12)+(350X4)*******/
	width: 3850px;
	margin-bottom: 0px;
}

.photobanner 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;
}

.photobanner img:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	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 50s linear infinite;
	-moz-animation: bannermove 50s linear infinite;
	-ms-animation: bannermove 50s linear infinite;
	animation: bannermove 50s linear infinite;
}

@keyframes "bannermove" {
 0% {
    margin-left: 0px;
 }
 100% {
	 /*********12 pictures and each picture width 350   12X350+25*********/
    margin-left: -2450px;
 }

}

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

}

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

}

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

}

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

}
