.contenedor{
	position: relative;
	background: #d5c3f0;
	height: 100px;
}
.caja1{
	position: relative;
	background: #5b3d87;
	height: 50px;
	left: 10px;
}

.caja2{
	position: absolute;
	background: #ad85e8;
	height: 150px;
	width: 150px;
	left: 50px;
    top: 25px;
    z-index: -1;
}

.caja3{
	position: absolute;
	background: #7a4dbc;
	width: 125px;
	height: 125px;
	right: 100px; /*derecha*/
	top: 40px;
	z-index: 2;
}
.caja4{
	position: absolute;
	width: 75px;
	height: 75px;
	background: #5a3492;
	top: 55px;
	right: 55px;
	z-index: 3;
}
.caja5{
	position: fixed;
	right: 0px;
	bottom: 0px;
	width: 100px;
	border: 2px solid red;
	z-index: 4;

}
