Is there a service available that will change class based styles to inline styles. I need to design an email and working with classes is by far easier and faster, but everything then must be changed to inline styles in the end. It seems like there should be a program that can do this, but I can't seem to find anything.\[code\] <table class="g"> <tr> <td> <p> content should be bright green </p> <span> content should be red and bold </span> </td> </tr></table><style>table.g p{ color:#3f0;}table.g span{ color:#f00; font-weight:bold;}</style>\[/code\]Can this be automatically changed to\[code\]<table> <tr> <td> <p style="color:#3f0;"> content should be bright green </p> <span style="color:#f00;font-weight:bold;"> content should be red and bold </span> </td> </tr></table>\[/code\]using some sort of software that understands how CSS rules are applied, and can automatically convert them?*tagged with javascript and jquery in case there is a way to do this using that.