.fadein {
position:relative;
height:290px;
width:290px;
top:-487px;
left:320px;
}

.fadein img { position:absolute; left:0; top:0; }




#tech-slideshow {
    height: 160px;
    position: relative;
    overflow: hidden;
}
#tech-slideshow > div {
    height: 160px;
    width: 1400px;
	
    /*background: url(http://localhost:8888/ap/_deploy/images/logo4.jpg);*/
	background-repeat: repeat-x;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    
    -moz-transition:  opacity 0.5s ease-out; 
       -o-transition: opacity 0.5s ease-out; 
  -webkit-transition: opacity 0.5s ease-out; 
      -ms-transition: opacity 0.5s ease-out; 

    -webkit-animation: moveSlideshow 25s linear infinite;
    -moz-animation:    moveSlideshow 25s linear infinite;
    
}

@-webkit-keyframes moveSlideshow {
    0% { left: 0; }
    100% { left: -700px; }
}
@-moz-keyframes moveSlideshow {
    0% { left: 0; }
    100% { left: -700px; }
}