Copying and pasting text from elsewhere without using either icon 5 or icon 6 in Row 2 of the visual editor is always an issue. See: http://en.support.wordpress.com/visual-editor/#pasting-text
Have you done what follows?
Go to Settings > Writing and select “ ___ WordPress should correct invalidly nested XHTML automatically” and then scroll down and click “Save Changes.”
Posts > All Posts, change all your latest posts to Draft, click Update, change them back to Published, click Update again. (You can edit all 3 of them at once: tick the square in front of their titles then select Edit from the Bulk Actions dropdown and click Apply.)
re: image alignment and text wrapping
The alignment icons in the WordPress editor are for aligning text; they are not for aligning images. http://en.support.wordpress.com/visual-editor/#alignment They are used to achieve wrapping text around images on either the right or left hand side, or to display an image that's centered without text on either side of it. If the text beside the images does not occupy the same amount of space that the image beside it does then the text wrapping will continue and the images and text that follow will have a staggered appearance.
Align-left means position left, with the rest of the content wrapping around the right side of the image.
Align-right means position right, with the rest of the content wrapping around the left side of the image.
Align-center means position center, with no wrap-around (= the rest of the content below the image).
Every theme has a maximum displayed image width http://wpbtips.wordpress.com/2009/07/23/maximum-image-width/ so it's important to keep that in mind when posting multiple images side-by-side. If you want two images to be side by side on the same line start by setting the alignment of both images to left. To prevent the staggered effect what you do is insert the following snippet of code into the HTML editor after each image/text pair:
<p style="clear:both;">TEXT HERE</p>