How float be used here to position the Contact information bar underneath the photos. I am floating mostly left, but ic an figure out how to stick the last contact information up with the pictures.

This is where I want it to move up towards, I am unable to do so.
Here is the current set up:
<div id='post'><div id='vpPhotos'>
<img src='Images/img.jpg'/><img src='Images/default.png'/><img src='Images/default.png'/><img src='Images/default.png'/></br><a id='posttitle' href='#?photoID=$photoID'>View More Pictures</a>
</div>
<div id='vpTitle'>
<h3>$eventTlt</h3>
</div>
<div id='vpprice'><b>Price: </b>$priceOfEvent</div>
<div id='vpdate'>
</br><b>Start Date:</b> <div class='float-right'>$eventSD </div>
</br><b>End Date:</b> <div class='float-right'>$eventED</div>
</br><b>Start Time:</b> <div class='float-right'> $eventTime </div>
<br/><b>Location Of Event:</b> <div class='float-right'>$location</div>
<br/><b>Address Of Location:</b> <div class='float-right'>$locationAddress</div></div>
<div id='eventdesc'>
</br></br><b>Description:</b>   $eventDesc </div>
<div id='vpcontact'>
</br><h3 align='left'><b>Contact Information</b></h3>   
</br><b>Name:</b>   $contactName
</br></br><b>Email:</b> $emailAddress</div>
<div style='clear:both;'/>
</div>
I am floating all left. I’m not sure thats right after all of my other divs are floating left. #post is the most outer and the rest is basically describable by the name.
#post{
border:3px inset red;
margin-right:20px;
}
#vpPhotos{
border:3px outset blue;
float:left;
width:25%;
}
#vpTitle{
float:left;
border:3px inset green;
}
#vpdate{
float:left;
width: 20%;
border:3px inset blue;
margin-right:100px;
padding-right:300px;
}
#eventdesc{
float:left;
width: 73.74%;
border:3px inset green;
}
#vpcontact{
float:left;
width: 24%;
border:3px inset red;
}
#vpprice{
float:right;
width: 15%;
border:3px inset black;
}
In order to do that you will need to put the photos and contact div in a separate div, float it and put all the other divs in another div which is also floated.
Working example on JS Bin.
Updated code:
HTML:
CSS: