<!DOCTYPE bank 
	SYSTEM "ex7Bank.dtd" >
<?xml-stylesheet type="text/xsl" href="ex8Modes.xsl"?>
<bank>
<customer customer_num="_1"
        social_sec_num="222333444"
        name="Joe"
        city="New Orleans"
	  state="LA">
        <account_type
                account_type_code="C"
                balance="212">
                <account_activity
                        operation_type="D"
                        operation_date="2008-03-23T10:12:04"
                        amount="224"/>
			<account_activity
                        operation_type="W"
                        operation_date="2008-03-24T10:12:04"
                        amount="99"/>
			<account_activity
                        operation_type="M"
                        operation_date="2008-03-24T10:12:04"
                        amount="14"
				dest_account="S"/>

	</account_type>
        <account_type
                account_type_code="S"
                balance="15"/>
</customer>
<customer
        customer_num="_2"
        social_sec_num="111333444"
        name="Joe1"
        city="San Francisco"
        state="CA">
        <account_type
                account_type_code="C"
                balance="100">
	<account_activity
                        operation_type="D"
                        operation_date="2008-03-24T10:12:04"
                        amount="99"/>

        </account_type>
</customer>
</bank>

