/* Photo Banner */
.container {
    width: 1200px;
    overflow: hidden;
    margin: 10px auto;
    background: white;
}

.photobanner, .photobanner2 {
    height: 350px;
    width: 3678px; /* 613 a multiplicar pelo numero imagens */
    margin-bottom: 5px;
}

.photobanner img, .photobanner2 img {
	margin-bottom: 10px;
	padding-right: 2px;
	height: 350px;
	width: 613px;
}

.photobanner img  {
    -webkit-transition: all 0.5s ease; /*   chrome   */
    -moz-transition: all 0.5s ease;/*   firfox   */
    -o-transition: all 0.5s ease; /*   opera   */
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease; /*   IE   */
}
 
.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);
	-ms-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
	-o-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}


/*keyframe animations das fotos*/
.first {
    -webkit-animation: bannermove 18s linear infinite;
       -moz-animation: bannermove 18s linear infinite;
        -ms-animation: bannermove 18s linear infinite;
         -o-animation: bannermove 18s linear infinite;
            animation: bannermove 18s linear infinite;
}
 
@keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -5125px;}
}
 
@-moz-keyframes bannermove {
 0% {margin-left: 0px;}
 100% {margin-left: -5125px;}
}
 
@-webkit-keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -5125px;}
}
 
@-ms-keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -5125px;}
}
 
@-o-keyframes "bannermove" {
 0% {margin-left: 0px;}
 100% {margin-left: -5125px;}
}

.second {
    -webkit-animation: bannermoves 40s linear infinite;
       -moz-animation: bannermoves 40s linear infinite;
        -ms-animation: bannermoves 40s linear infinite;
         -o-animation: bannermoves 40s linear infinite;
            animation: bannermoves 40s linear infinite;
}
 
@keyframes "bannermoves" {
 0% {margin-left: -5125px;}
 100% {margin-left: 0px;}
}
 
@-moz-keyframes bannermoves {
 0% {margin-left: -5125px;}
 100% {margin-left: 0px;}
}
 
@-webkit-keyframes "bannermoves" {
 0% {margin-left: -5125px;}
 100% {margin-left: 0px;}
}
 
@-ms-keyframes "bannermoves" {
 0% {margin-left: -5125px;}
 100% {margin-left: 0px;}
}
 
@-o-keyframes "bannermoves" {
 0% {margin-left: -5125px;}
 100% {margin-left: 0px;}
}