@-webkit-keyframes spin-a
{
	100%
	{
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
	}
}

@-webkit-keyframes spin-b
{
	100%
	{
	-webkit-transform: rotate(-360deg);
	-ms-transform: rotate(-360deg);
	transform: rotate(-360deg);
	}
}
@keyframes spin-a
{
	100%
	{
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
	}
}
@keyframes spin-b
{ 
	100%
	{
	-webkit-transform: rotate(-360deg);
	-ms-transform: rotate(-360deg);
	transform: rotate(-360deg);
	}
}
.zahnrad
{
    position: absolute;
	z-index: 10;
    top: 50%;
    left: 50%;
	margin-left: -300px;
	margin-top: -300px;
    width: 600px;
    height: 600px;
    -webkit-animation:spin-a 60s linear infinite;
	animation:spin-a 60s linear infinite;
}
.komplett
{	
	position: absolute;
	z-index: 40;
    top: 50%;
    left: 50%;
	margin-left: -150px;
	margin-top: -200px;		max-width: 300px;
	border: 0px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.komplett:hover
{
	-webkit-transform: scale(1.7) ;
	-moz-transform: scale(1.7);
	transform: scale(1.7) ;
}
.kleines-a
{
	position: absolute;
	z-index: 30;
    top: 50%;
    left: 50%;
	margin-left: -170px;
	margin-top: -170px;
    width: 71px;
    height: 69px;
	-webkit-animation:spin-b 30s linear infinite;
	animation:spin-b 30s linear infinite;
}
.kleines-b
{
	position: absolute;
	z-index: 30;
    top: 50%;
    left: 50%;
	margin-left: -210px;
	margin-top: -90px;
    width: 91px;
    height: 89px;
	-webkit-animation:spin-a 40s linear infinite;
	animation:spin-a 40s linear infinite;
}
.kleines-c
{
	position: absolute;
	z-index: 30;
    top: 50%;
    left: 50%;
	margin-left: 80px;
	margin-top: -140px;
    width: 61px;
    height: 59px;
	-webkit-animation:spin-b 30s linear infinite;
	animation:spin-b 30s linear infinite;
}