#relativ  img {
	float: left;
}

#abszolut {
	position: absolute; 
     	top: 800px; left: 100px;
}

#relativ {
	position: relative; 
     	top: 150px; left: 50px;
}

#nagykep{
	z-index: 0;
	position: fixed;
	top: 200px; left: 300px;
}
#balkep{
	z-index: 1;
	position: fixed;
	top: 210px; left: 320px;
}

#kozepsokep{
	z-index: 2;	
	position: fixed;
	top: 310px; left: 400px;
}

#jobbkep {
	z-index: 3;
	position: fixed;
	top: 410px; left: 500px;
}

.border {
	border: 5px groove red;
	/*border: 5px ridge red;
	border: 5px inset red;
	border: 5px outset red;
	border: 5px dotted red;*/
	
}