* @param media The value for the <code>media</code> attribute.
* @return a <code>TemplatePageAttributes</code> (self).
*/
public TemplatePageAttributes setStyleSheet(String url, String media)
{
data.getPage().getHead().addElement(new Link().setRel("stylesheet")
.setType("text/css").setMedia(media).setHref(url));
return this;
}