<?xml version="1.0" encoding="utf-8"?>
<!--
 * Species Explorer web app
 * Modest maps code based on Alistair Rutherford's "Simple Modest Maps Demo Application", www.netthreads.co.uk, Nov 2007.
 * MVCS design based on Joe Berkovitz MVCS and ReviewTube application
-->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
    width="100%" height="100%"
    xmlns:view="com.speciesexplorer.view.*"
    xmlns:services="com.speciesexplorer.services.*"
    paddingTop="5" paddingBottom="5" paddingLeft="5" paddingRight="5" 
    backgroundGradientColors="[0xB7CC9A,0xD5EDB3]" 
    backgroundColor="0xB7CC9A" viewSourceURL="srcview/index.html">
    
      <!-- Master stylesheet -->
    <mx:Style source="main.css"/>
    
     <!-- Model, Controller, Services configuration -->    
  <services:SpeciesExplorerComponents id="components"/>

    <!-- Top level View -->
    <view:MainView/>
    
    
</mx:Application>