*{
	margin: 0;
	padding: 0;
}
.a{
	width: 100%;
	background-image: url(../images/bg.jpg);
	overflow: hidden;
	height: 610px;
}
.b{
	width: 1300px;
	margin: 0 auto;
}
.c{
	position: relative;
	left: 50px;
	-webkit-animation:c 3s;
-moz-animation:c 3s;
-o-animation:c 3s;
animation:c 3s;
	-webkit-animation-fill-mode : forwards;
-webkit-animation-fill-mode : forwards;
-moz-animation-fill-mode : forwards;
-o-animation-fill-mode : forwards;
animation-fill-mode : forwards;
	float: left;
}
@keyframes c{
	0%{left: 50px; top: -600px;}
  100%{left: 50px; top: 100px;}
}
.d{
	position: relative;
	top: 700px;
	float: right;
	animation: d 3s 2s;
	animation-fill-mode : forwards;
}
@keyframes d{
	0%{ top: 700px;}
	100%{top: 500px;	}
}
.e{
	position: relative;
	top:200px;
	right: 130px;
	float: right;
}
.f{
	float: right;
	position: relative;
	right:-900px;
	top: 250px;
	animation:f 4s 1s;
	animation-fill-mode : forwards;
}
@keyframes f {
	0%{top:250px;right: -900px;}
  100%{top: 250px; right: 0px;}
}