Unless you are a developer most CMS systems don't give you access to the head of a page. The head is where you place stylesheets to format your page. In this case we usually go with inline styles, for example:
<div style='color:black' />
Doing this is usually a bad idea but we can live with it. The problem is when you can't manipulate the elements either. Not to mention that your code would be bloated with inline styles and will be hard to maintain (you should be writing Unobstrusive javascript).
This plugin helps you in this -very specific- scenario. It will parse the contents of the element selected and load it as a css style. Very simple and tiny. I tested it with IE 8, Firefox 3.5 and Chrome. If you can create a .css file you are better off going that way.