body {
  background: #FFF;
}

.Iam {
  padding: 1em 1em;
  font: normal 40px/50px Open Sans Condensed, sans-serif;
  color: #666;
}
.Iam p {
  float: left;
  margin-right: 0.25em;
  height: 0px;
  margin-bottom: 10px;
}
.Iam b {
  float: left;
  overflow: hidden;
  position: relative;
  height: 50px;
  top: 60px;
}
a {
	color: #CCC;
	text-decoration:none;
}
a:hover {
	color: #ff4137;
	text-decoration:none;
}
.Iam .innerIam {
  display: inline-block;
  color: #ff4137;
  position: relative;
  white-space: nowrap;
  top: 0;
  left: 0;

/*animation*/
-webkit-animation:move 10s;
   -moz-animation:move 10s;
    -ms-animation:move 10s;
     -o-animation:move 10s;
        animation:move 10s;
/*animation-iteration-count*/
-webkit-animation-iteration-count:infinite;
   -moz-animation-iteration-count:infinite;
    -ms-animation-iteration-count:infinite;
     -o-animation-iteration-count:infinite;
        animation-iteration-count:infinite;
/*animation-delay*/
-webkit-animation-delay:1s;
   -moz-animation-delay:1s;
    -ms-animation-delay:1s;
     -o-animation-delay:1s;
        animation-delay:1s;
}
@keyframes move{
0%  { top: 0px; }
10%  { top: -50px; }
20%  { top: -100px; }
30%  { top: -150px; }
40%  { top: -200px; }
50%  { top: -250px; }
60%  { top: -300px; }
70%  { top: -350px; }
80%  { top: -400px; }
90%  { top: -450px; }
}

@-webkit-keyframes move {
0%  { top: 0px; }
10%  { top: -50px; }
20%  { top: -100px; }
30%  { top: -150px; }
40%  { top: -200px; }
50%  { top: -250px; }
60%  { top: -300px; }
70%  { top: -350px; }
80%  { top: -400px; }
90%  { top: -450px; }
}
@-moz-keyframes move {
0%  { top: 0px; }
10%  { top: -50px; }
20%  { top: -100px; }
30%  { top: -150px; }
40%  { top: -200px; }
50%  { top: -250px; }
60%  { top: -300px; }
70%  { top: -350px; }
80%  { top: -400px; }
90%  { top: -450px; }
}
@-o-keyframes move {
0%  { top: 0px; }
10%  { top: -50px; }
20%  { top: -100px; }
30%  { top: -150px; }
40%  { top: -200px; }
50%  { top: -250px; }
60%  { top: -300px; }
70%  { top: -350px; }
80%  { top: -400px; }
90%  { top: -450px; }
}
@keyframes move {
0%  { top: 0px; }
10%  { top: -50px; }
20%  { top: -100px; }
30%  { top: -150px; }
40%  { top: -200px; }
50%  { top: -250px; }
60%  { top: -300px; }
70%  { top: -350px; }
80%  { top: -400px; }
90%  { top: -450px; }
}