<?xml-stylesheet href="general.css" type="text/css"?>
<?xml-stylesheet href="#css" type="text/css" title="Default"?>
<?xml-stylesheet href="#css-2" type="text/css" title="Alternate" alternate="yes"?>
<!DOCTYPE test [
 <!ATTLIST css id ID #IMPLIED>
]>
<test>

 <css id="css">
  t-element-1{
   background:lime;
  }
 </css>

 <css id="css-2">
  t-element-2{
   background:lime;
  }
 </css>

 <t-element-1>This element should have a green background with the Default stylesheet, otherwise it should be unstyled.</t-element-1>
 
 <t-element-2>This element should be unstyled with the Default style sheet, otherwise it should have a green background.</t-element-2>

</test>
