<?xml version="1.0" encoding="utf-8"?>
<mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" 
    xmlns:comp="components.*"
    layout="absolute" viewSourceURL="srcview/index.html">
    
    <!--
        NOTE: This isn't intended to look pretty, it is to demonstrate custom/derived styles.
    -->
    
    <mx:Style source="styles/basic.css" />
    <mx:Style source="styles/advanced.css" />
    <mx:Style source="styles/alternate.css" />
    
    <comp:CustomPanel width="400" height="400" x="10" y="10"  styleName="basicCustomPanel" title="This is the basic window" />
    <comp:CustomPanel width="400" height="400" x="420" y="10" styleName="advancedCustomPanel" title="This is the advanced window" />
    <comp:CustomPanel width="400" height="400" x="10" y="420" styleName="alternateCustomPanel" title="This is the alternate window" />
    
</mx:Application>