<?xml version="1.0" encoding="iso-8859-1"?>

<!-- file: xhtml-style-1.rng

     This is XHTML, a reformulation of HTML as a modular XML application.
     Copyright 1998-2010 W3C (MIT, ERCIM, Keio), All Rights Reserved.
     Revision: $Id: xhtml-style-1.rng,v 1.1 2010/12/12 23:24:11 smccarro Exp $

     This RelaxNG module is identified by URI:
        
        http://www.w3.org/MarkUp/RELAXNG/xhtml-style-1.rng
     .................................................................... -->
<!-- Style Module -->
<grammar xmlns="http://relaxng.org/ns/structure/1.0">

<define name="xhtml.style">
  <element name="style">
    <ref name="xhtml.style.attlist"/>
    <text/>
  </element>
</define>

<define name="xhtml.style.attlist">
  <ref name="xhtml.title.attrib"/>
  <ref name="xhtml.I18n.attrib"/>
  <attribute name="type">
    <ref name="xhtml.ContentType.datatype"/>
  </attribute>
  <optional>
    <attribute name="media">
      <ref name="xhtml.MediaDesc.datatype"/>
    </attribute>
  </optional>
  <optional>
    <attribute name="xml:space">
      <value>preserve</value>
    </attribute>
  </optional>
</define>

<define name="xhtml.head.content" combine="interleave">
  <zeroOrMore>
    <ref name="xhtml.style"/>
  </zeroOrMore>
</define>

</grammar>

