body, html, div { border: 0; margin: 0; padding: 0;}
body { background: #fd5773; color: #fff; }
.users { }
.user { overflow: hidden; width: 90px; height: 90px; background: #fff; -webkit-box-shadow: 0 0 7px 2px rgba(169,60,77,0.8); -moz-box-shadow: 0 0 7px 2px rgba(169,60,77,0.8); box-shadow: 0 0 7px 2px rgba(169,60,77,0.8); margin-left: 8px; margin-top: 8px; position: relative; display: block; float: left; text-decoration: none;  }
.user.idx-4 { clear: both; }
.user > img { display: block; width: 84px; height: 84px; position: absolute; left: 3px; top: 3px; }
.user > span { color: #ff0000; text-align: center; width: 90px; position: absolute; height: 22px; line-height: 22px; background: #fff; left: 0; bottom: -30px; display: block; font-size: 12px; -webkit-transition: all 0.2s ; -moz-transition: all 0.2s; transition: all 0.2s; }
.user:hover {  }
.user:hover > span { bottom: 0;}
.clr { clear: both; font-size: 0; height: 0; overflow: hidden;}
.footer { overflow: hidden; width: 300px; }
.footer > img { margin-left: 10px; margin-top: 10px; }
.footer > a { float: right; display: inline-block; font-size: 15px; text-decoration: none; color: #fff; background: #a93c4d; padding: 5px 20px; -moz-border-radius: 3px; -webkit-border-radius:3px; border-radius: 3px; margin-top: 17px; margin-right: 10px; }



.user {
  -webkit-animation-name: pulse-cont; 
  -webkit-animation-duration: 3s; 
  -webkit-animation-iteration-count: 999;
  
  -moz-animation-name: pulse-cont; 
  -moz-animation-duration: 3s; 
  -moz-animation-iteration-count: 999;
  
  animation-name: pulse-cont; 
  animation-duration: 3s; 
  animation-iteration-count: 999;
}


@-webkit-keyframes pulse-cont {
  from {
    -webkit-transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
  }
  to { 
    -webkit-transform: rotate(-10deg);
  }
}


@-moz-keyframes pulse-cont {
  from {
    -moz-transform: rotate(-10deg);
  }
  50% {
    -moz-transform: rotate(10deg);
  }
  to { 
    -moz-transform: rotate(-10deg);
  }
}


@keyframes pulse-cont {
  from {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  to { 
    transform: rotate(-10deg);
	
  }
}