apply_to = 'p, dd'

$(document).ready(function() {
	$.each($(apply_to), function() {
		if ($(this).text()[0] === '\u201C') {
			$(this).css('text-indent', '-0.55em');
		}
	});
});

