body {
	font-family: Arial, Helvetica, sans-serif;
}

.firstContainer{
	width: 730px; /* Set to width of image */
	height: 347px; /* Set to height of image */
	position: relative;  /* Other choice is relative to other containers on page */
	left: 0px; /* 100 pixels from edge of page; if you choose a relative position the would be 100 pixels from the last container; you can use negative numbers here */
	top: 0px; /* 100 pixels from top of page; if you choose a relative position the would be 100 pixels from the last container; you can use negative numbers here */
}
.secondContainer {
	color: #FFFFFF; /*  Font Color */
	text-decoration: 1px white;  /*  If you don't want it to be underlined */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	/* background-color: #CCCCCC;    background of container; delete this line if you just want the text to appear on top of the graphic */
	text-align: center;
	width: 200px;  /*  width of container; you can also specify height of container as I did in the first container */
	height: 23px;
	position: absolute; /*  "Absolute" places this container within the last (because it's surrounded by the DIV; "Relative" will make it relative to the last contain even if it is within the same DIV */
	top: 300px; /*  Because the position is set to absolute and the second container is within the first container this is 100 pixels from the top of the first container */
	left: -30px; /*  Because the position is set to absolute and the second container is within the first container this is 0 pixels from the left side of the first container */
}
.thirdContainer {
	color: #0000FF; /*  Font Color */
	text-decoration: 1px white;  /*  If you don't want it to be underlined */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	/* background-color: #CCCCCC;    background of container; delete this line if you just want the text to appear on top of the graphic */
	text-align: center;
	width: 200px;  /*  width of container; you can also specify height of container as I did in the first container */
	height: 23px;
	position: absolute; /*  "Absolute" places this container within the last (because it's surrounded by the DIV; "Relative" will make it relative to the last contain even if it is within the same DIV */
	top: 325px; /*  Because the position is set to absolute and the second container is within the first container this is 100 pixels from the top of the first container */
	left: -20px; /*  Because the position is set to absolute and the second container is within the first container this is 0 pixels from the left side of the first container */
}
.differentColor {
	color: #0080FF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

