/* Title */

#home > .title {
  position: absolute;
	z-index: 10;
  left: 93px;
  top: 105px;
}

/* Menu */

.menu {
  position: absolute;
  left: 98px;
	top: 199px;
	z-index: 10;
}

.menu > div {
	z-index: 20;
}

.menu > .play {
  top: 0px;
}

.menu > .songs {
  top: 26px;
}

.menu > .portrait {
  top: 52px;
}

.menu > .flood {
  top: 78px;
}

.menu > .look {
  top: 105px;
}

.menu > .gallery {
  top: 131px;
}

.menu > .credits {
  top: 157px;
}


#home > .band{
	position: absolute;
	top: 50px;
	left: 90px;
}


/* Band animation setup */
#home > .band img{
	position: absolute;
	top: 0;
	opacity: 0;
}
#home.in > .band img{-webkit-transition: opacity 2s;	}
#home.out > .band img{-webkit-transition: opacity 0.8s;	}

#home > .band img.show, #home > .menu .show{
	opacity: 1;
}

#home > .menu div{
	opacity: 0;
	-webkit-transition: opacity 1s;
}

#home > .band .band1{ left: 0;    }
#home > .band .band2{ left: 228px;}
#home > .band .band3{ left: 428px; z-index: 3;}
#home > .band .band4{ left: 684px;}
#home > .band .band5{ left: 912px;}
#home > .band .band6{ left: 0;     z-index: 6;}


@-webkit-keyframes fadeIn{
	from	 { opacity: 0;}
	to  { opacity: 1;}
}

@-webkit-keyframes fadeOut{
	from	 { opacity: 1;}
	to  { opacity: 0;}
}
