<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.macromedia.com/2005/mxml" 
    xmlns="*"
    xmlns:views="com.realestate.views.*"
    xmlns:services="com.realestate.services.*"
    xmlns:model="com.realestate.model.*"
    marginLeft="0"
    marginTop="0"
    marginBottom="0"
    marginRight="0"
    verticalAlign="middle">

    <mx:Style source="assets/styles/main.css" />
    
    <services:ServiceManager />
    
    <model:ModelManager />
    
    <mx:Canvas width="990" height="598">
    
        <views:Logo height="143" width="226" />
        
        <views:SearchPanel width="226"  height="434" y="153" />
        
        <views:PropertiesPanel styleName="propertiesPanel" height="585" y="2" width="744" x="233" />
        
    </mx:Canvas>
    
</mx:Application>