tag the_content()

WordPress inserts p tags in the_content(), otherwise it would be rather difficult for your content to contain more than one paragraph. If you want to target the p WordPress inserts, just change your css to:

.page_content p
{
    text-align:justify;
    float:left;
}

and remove your wrapping <p> tag.