.image {
    position:relative;
    float:left; /* optional */
}
.image .text {
    position:absolute;
    top:50px; /* in conjunction with left property, decides the text position */
    left:65px;
    width:550px; /* optional, though better have one */
}

.image .text2{
    position:absolute;
    top:350px; /* in conjunction with left property, decides the text position */
    left:65px;
    width:550px; /* optional, though better have one */
}
