/**
 * The classes "align-*" are assigned to <p> by the TYPO3-RTE
 * when the user selects to align text in a certain way.
 * Make them do what they are supposed to do.
 *
 * DO NOT DELETE the #content in the CSS definitions. Otherwise,
 * these definitions will have less weight than other definitions
 * in 00_main.css and will not be applied.
 *
 * Peter Bücker, 2009-02-20
 */
#content p.align-left,
#content-nomargin p.align-left,
#content td.align-left,
#content-nomargin td.align-left,
#content td.align-left p,
#content-nomargin td.align-left p {
	    text-align: left;
}

#content p.align-center,
#content-nomargin p.align-center,
#content td.align-center,
#content-nomargin td.align-center,
#content td.align-center p,
#content-nomargin td.align-center p {
	    text-align: center;
}

#content p.align-right,
#content-nomargin p.align-right,
#content td.align-right,
#content-nomargin td.align-right,
#content td.align-right p,
#content-nomargin td.align-right p {
	    text-align: right;
}

#content p.align-justify,
#contentnomargin p.align-justify,
#content td.align-justify,
#contentnomargin td.align-justify,
#content td.align-justify p,
#contentnomargin td.align-justify p {
	    text-align: justify;
}
