#container{position: relative;
	width: 900px;
	height: 1000px;
	border: 10px solid #27BCCE;
}

#child1{
	position: relative;
	width: 300px;
	height: 200px;
	border: 3px solid #FF5722;
	top: 40px;
	left: 100px;
}

#child2{
		position: absolute;
	width: 300px;
	height: 200px;
	border: 3px solid #FF5722;
	top: 0px;
	right: 0px;
	background-color:#ffffff;
}

#child3{
	position: fixed;
	border: 3px solid #FF5722;
	width: 200px;
	height: 200px;
	top: 0;
	right: 0;
}