/*keep this same for all*/
/*the main div container parallel to and above mainBox div*/
#wepLab10
{
	position: relative;
	width:100%;
	height:100%;

	top:0%;
	left:0%;

	margin:0;
	padding:0;	

	/*background-color: #37C2DA;*/
	
	/*change only this*/

}

/*sun image*/
#sun{
	display: none;
	position: absolute;
	top:20%;
	left:30%;
	
	width: 40%;

	transform-origin:50% 50%;
	-webkit-transform-origin:50% 50%;
}

/*plant div*/
#plant{
	position: absolute;
	top:20%;
	left:20%;

	width:35%;
	height:55%;

	/*border:1px solid red;*/
}

#stalk{
	position: absolute;
	top:40%;
	left:15%;

	width:70%;

	/*transform origin for choosing a point with reference to which the transform happens*/
	transform-origin:50% 100%;
	-webkit-transform-origin:50% 100%;

	transform:scale(0);
	-webkit-transform:scale(0);
}

#bud{
	position: absolute;
	top:14%;
	left:40%;

	width:17%;

	/*important transform origin*/
	transform-origin:60% 100%;
	-webkit-transform-origin:60% 100%;

	transform:scale(0);
	-webkit-transform:scale(0);
}

#flower{
	display: none;
	position: absolute;
	top:10%;
	left:30%;

	width:35%;

}

/*how plant uses light energy to make food*/
#pointOne, #pointTwo, #pointThree, #reference{
	display: none;
	position: absolute;
	top:8%;
	left:32%;

	color:darkred;

	font-size: 1.4em;
}

#pointTwo{
	top:20%;
	left:35%;

	color:yellow;
}

#pointThree{
	top:50%;
	left:50%;

	color:darkblue;
}

#reference{
	top:79%;
	left:0%;
	font-size: 1.15em;

	width: 100%;
	text-align: center;
	color:white;

	font-style: italic;
}


/*light energy text*/
#lightEnergy{
	display: none;
	position:absolute;
	top:87%;
	left:0%;
	
	/*width 100% and align center for making the text at center of screen*/
	width:100%;
	text-align: center;

	font-size: 2em;

	color:rgb(2,66,83);

	padding: 0% 2%;

	border-radius: 5%;
	background-color: rgba(185,228,238,0.7);
}






