Render SVG with ImageView 49/60149/13
authorXiangyin Ma <x1.ma@samsung.com>
Tue, 23 Feb 2016 16:58:07 +0000 (16:58 +0000)
committerXiangyin Ma <x1.ma@samsung.com>
Tue, 22 Mar 2016 17:29:19 +0000 (17:29 +0000)
Change-Id: I70f0ffcb30d9d353940eed5c22c631be79122d55

14 files changed:
build/tizen/CMakeLists.txt
com.samsung.dali-demo.xml
demo/dali-demo.cpp
demo/file.list
examples/image-view-svg/image-view-svg-example.cpp [new file with mode: 0644]
resources/images/Camera.svg [new file with mode: 0755]
resources/images/Contacts.svg [new file with mode: 0755]
resources/images/Kid1.svg [new file with mode: 0755]
resources/images/Mail.svg [new file with mode: 0755]
resources/images/Message.svg [new file with mode: 0755]
resources/images/Phone.svg [new file with mode: 0755]
resources/images/Settings.svg [new file with mode: 0755]
resources/images/World.svg [new file with mode: 0755]
shared/dali-demo-strings.h

index f9234d4..2c4f052 100644 (file)
@@ -51,8 +51,9 @@ FILE(GLOB LOCAL_IMAGES_ICO RELATIVE  "${LOCAL_IMAGES_DIR}" "${LOCAL_IMAGES_DIR}/
 FILE(GLOB LOCAL_IMAGES_WBMP RELATIVE "${LOCAL_IMAGES_DIR}" "${LOCAL_IMAGES_DIR}/*.wbmp")
 FILE(GLOB LOCAL_IMAGES_KTX RELATIVE  "${LOCAL_IMAGES_DIR}" "${LOCAL_IMAGES_DIR}/*.ktx")
 FILE(GLOB LOCAL_IMAGES_ASTC RELATIVE "${LOCAL_IMAGES_DIR}" "${LOCAL_IMAGES_DIR}/*.astc")
+FILE(GLOB LOCAL_IMAGES_SVG RELATIVE  "${LOCAL_IMAGES_DIR}" "${LOCAL_IMAGES_DIR}/*.svg")
 
-SET(LOCAL_IMAGES_LIST ${LOCAL_IMAGES_PNG};${LOCAL_IMAGES_JPG};${LOCAL_IMAGES_GIF};${LOCAL_IMAGES_BMP};${LOCAL_IMAGES_ICO};${LOCAL_IMAGES_WBMP};${LOCAL_IMAGES_KTX};${LOCAL_IMAGES_ASTC})
+SET(LOCAL_IMAGES_LIST ${LOCAL_IMAGES_PNG};${LOCAL_IMAGES_JPG};${LOCAL_IMAGES_GIF};${LOCAL_IMAGES_BMP};${LOCAL_IMAGES_ICO};${LOCAL_IMAGES_WBMP};${LOCAL_IMAGES_KTX};${LOCAL_IMAGES_ASTC};${LOCAL_IMAGES_SVG})
 FOREACH(flag ${LOCAL_IMAGES_LIST})
         INSTALL(FILES ${LOCAL_IMAGES_DIR}/${flag} DESTINATION ${IMAGES_DIR})
 ENDFOREACH(flag)
index e388766..419c188 100644 (file)
        <ui-application appid="image-view-alpha-blending.example" exec="/usr/apps/com.samsung.dali-demo/bin/image-view-alpha-blending.example" nodisplay="true" multiple="false" type="c++app" taskmanage="true">
                <label>ImageView Alpha Blending</label>
        </ui-application>
+    <ui-application appid="image-view-svg.example" exec="/usr/apps/com.samsung.dali-demo/bin/image-view-svg.example" nodisplay="true" multiple="false" type="c++app" taskmanage="true">
+               <label>ImageView SVG</label>
+       </ui-application>
        <ui-application appid="homescreen-benchmark.example" exec="/usr/apps/com.samsung.dali-demo/bin/homescreen-benchmark.example" nodisplay="true" multiple="false" type="c++app" taskmanage="true">
                <label>Homescreen Benchmark</label>
        </ui-application>
index d8faaa2..5f89db7 100644 (file)
@@ -71,6 +71,7 @@ int main(int argc, char **argv)
   demo.AddExample(Example("image-view.example", DALI_DEMO_STR_TITLE_IMAGE_VIEW));
   demo.AddExample(Example("image-view-pixel-area.example", DALI_DEMO_STR_TITLE_IMAGE_VIEW_PIXEL_AREA));
   demo.AddExample(Example("image-view-alpha-blending.example", DALI_DEMO_STR_TITLE_IMAGE_VIEW_ALPHA_BLENDING));
+  demo.AddExample(Example("image-view-svg.example", DALI_DEMO_STR_TITLE_IMAGE_VIEW_SVG));
   demo.AddExample(Example("super-blur-bloom.example", DALI_DEMO_STR_TITLE_SUPER_BLUR_BLOOM));
   demo.AddExample(Example("tilt.example", DALI_DEMO_STR_TITLE_TILT_SENSOR));
 
index fe1e6d8..c64143a 100644 (file)
@@ -15,7 +15,8 @@ demo_image_files = \
     $(demo_src_dir)/images/*.gif \
     $(demo_src_dir)/images/*.bmp \
     $(demo_src_dir)/images/*.ico \
-    $(demo_src_dir)/images/*.wbmp
+    $(demo_src_dir)/images/*.wbmp \
+    $(demo_src_dir)/images/*.svg
 
 demo_model_files = \
     $(demo_src_dir)/models/*
diff --git a/examples/image-view-svg/image-view-svg-example.cpp b/examples/image-view-svg/image-view-svg-example.cpp
new file mode 100644 (file)
index 0000000..da06f87
--- /dev/null
@@ -0,0 +1,244 @@
+/*
+ * Copyright (c) 2016 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include <dali-toolkit/dali-toolkit.h>
+#include <dali-toolkit/devel-api/controls/renderer-factory/renderer-factory.h>
+#include <dali-toolkit/devel-api/controls/renderer-factory/control-renderer.h>
+#include <string.h>
+
+using namespace Dali;
+
+namespace
+{
+const float MAX_SCALE = 6.f;
+
+const char* SVG_IMAGES[] =
+{
+    DEMO_IMAGE_DIR "Camera.svg",
+    DEMO_IMAGE_DIR "Contacts.svg",
+    DEMO_IMAGE_DIR "Mail.svg",
+    DEMO_IMAGE_DIR "Message.svg",
+    DEMO_IMAGE_DIR "Phone.svg",
+    DEMO_IMAGE_DIR "Settings.svg",
+    DEMO_IMAGE_DIR "World.svg",
+    DEMO_IMAGE_DIR "Kid1.svg"
+};
+const unsigned int NUM_SVG_IMAGES( sizeof( SVG_IMAGES ) / sizeof( SVG_IMAGES[0] ) );
+}
+
+// This example shows how to display svg images with ImageView
+//
+class ImageSvgController : public ConnectionTracker
+{
+public:
+
+  ImageSvgController( Application& application )
+  : mApplication( application ),
+    mScale( 1.f ),
+    mIndex( 0 )
+  {
+    // Connect to the Application's Init signal
+    mApplication.InitSignal().Connect( this, &ImageSvgController::Create );
+  }
+
+  ~ImageSvgController()
+  {
+  }
+
+  // The Init signal is received once (only) during the Application lifetime
+  void Create( Application& application )
+  {
+    // Get a handle to the stage
+    Stage stage = Stage::GetCurrent();
+    stage.SetBackgroundColor( Color::WHITE );
+    Vector2 stageSize = stage.GetSize();
+    mActorSize = stageSize/2.f;
+
+    stage.KeyEventSignal().Connect(this, &ImageSvgController::OnKeyEvent);
+
+    // Background, for receiving gestures
+    mStageBackground = Actor::New();
+    mStageBackground.SetAnchorPoint( AnchorPoint::TOP_CENTER );
+    mStageBackground.SetParentOrigin( ParentOrigin::TOP_CENTER );
+    mStageBackground.SetSize( stageSize.x, stageSize.y );
+    stage.Add(mStageBackground);
+
+    // Push button,  for changing the image set for displaying
+    Toolkit::PushButton changeButton = Toolkit::PushButton::New();
+    changeButton.SetLabelText( "Next" );
+    changeButton.SetAnchorPoint( AnchorPoint::TOP_RIGHT );
+    changeButton.SetParentOrigin( ParentOrigin::TOP_RIGHT );
+    stage.Add( changeButton );
+    changeButton.ClickedSignal().Connect( this, &ImageSvgController::OnChangeButtonClicked );
+
+    // Push button, for resetting the actor size and position
+    Toolkit::PushButton resetButton = Toolkit::PushButton::New();
+    resetButton.SetLabelText( "Reset" );
+    resetButton.SetAnchorPoint( AnchorPoint::TOP_LEFT );
+    resetButton.SetParentOrigin( ParentOrigin::TOP_LEFT );
+    stage.Add( resetButton );
+    resetButton.ClickedSignal().Connect( this, &ImageSvgController::OnResetButtonClicked );
+
+    // Create and put imageViews to stage
+    for( unsigned int i=0; i<4u; i++)
+    {
+      mSvgActor[i] = Toolkit::ImageView::New(SVG_IMAGES[mIndex+i]);
+      mSvgActor[i].SetSize( mActorSize );
+      stage.Add( mSvgActor[i] );
+    }
+    mSvgActor[0].SetParentOrigin( ParentOrigin::CENTER );
+    mSvgActor[0].SetAnchorPoint( AnchorPoint::BOTTOM_RIGHT );
+    mSvgActor[1].SetParentOrigin( ParentOrigin::CENTER );
+    mSvgActor[1].SetAnchorPoint( AnchorPoint::BOTTOM_LEFT );
+    mSvgActor[2].SetParentOrigin( ParentOrigin::CENTER );
+    mSvgActor[2].SetAnchorPoint( AnchorPoint::TOP_RIGHT );
+    mSvgActor[3].SetParentOrigin( ParentOrigin::CENTER );
+    mSvgActor[3].SetAnchorPoint( AnchorPoint::TOP_LEFT );
+
+    // Connect pan gesture for moving the actors
+    mPanGestureDetector = PanGestureDetector::New();
+    mPanGestureDetector.DetectedSignal().Connect( this, &ImageSvgController::OnPanGesture );
+    mPanGestureDetector.Attach( mStageBackground );
+
+    // Connect pinch gesture for resizing the actors
+    mPinchGestureDetector = PinchGestureDetector::New();
+    mPinchGestureDetector.Attach( mStageBackground);
+    mPinchGestureDetector.DetectedSignal().Connect(this, &ImageSvgController::OnPinch);
+  }
+
+  // Callback of push button, for changing image set
+  bool OnChangeButtonClicked( Toolkit::Button button )
+  {
+    mIndex = (mIndex+4) % NUM_SVG_IMAGES;
+    for( unsigned int i=0; i<4u; i++)
+    {
+      mSvgActor[i].SetImage(SVG_IMAGES[mIndex+i]);
+    }
+
+    return true;
+  }
+
+  // Callback of push button, for resetting image size and position
+  bool OnResetButtonClicked( Toolkit::Button button )
+  {
+    for( unsigned int i=0; i<4u; i++)
+    {
+      mSvgActor[i].SetSize(mActorSize);
+      mSvgActor[i].SetPosition( Vector3::ZERO );
+      mScale = 1.f;
+    }
+
+    return true;
+  }
+
+  // Callback of pan gesture, for moving the actors
+  void OnPanGesture( Actor actor, const PanGesture& gesture )
+  {
+    if( gesture.state == Gesture::Continuing )
+    {
+      for( unsigned int i=0; i<4u; i++)
+      {
+        mSvgActor[i].TranslateBy(Vector3(gesture.displacement));
+      }
+    }
+  }
+
+  // Callback of pinch gesture, for resizing the actors
+  void OnPinch(Actor actor, const PinchGesture& gesture)
+  {
+    if (gesture.state == Gesture::Started)
+    {
+      mScaleAtPinchStart = mScale;
+    }
+    if( gesture.state == Gesture::Finished )
+    {
+      mScale = mScaleAtPinchStart * gesture.scale;
+      mScale = mScale > MAX_SCALE ? MAX_SCALE : mScale;
+      for( unsigned int i=0; i<4u; i++)
+      {
+        mSvgActor[i].SetSize( mActorSize * mScale);
+      }
+    }
+  }
+
+  /**
+    * Main key event handler
+    */
+   void OnKeyEvent(const KeyEvent& event)
+   {
+     if(event.state == KeyEvent::Down)
+     {
+       if( IsKey( event, Dali::DALI_KEY_ESCAPE) || IsKey( event, Dali::DALI_KEY_BACK) )
+       {
+         mApplication.Quit();
+       }
+       else
+       {
+         const char* keyName = event.keyPressedName.c_str();
+         if( strcmp(keyName, "Left") == 0 )
+         {
+           mScale /= 1.1f;
+           for( unsigned int i=0; i<4u; i++)
+           {
+             mSvgActor[i].SetSize( mActorSize * mScale);
+           }
+         }
+         else if( strcmp(keyName, "Right") == 0 )
+         {
+           if( mScale < MAX_SCALE )
+           {
+             mScale *= 1.1f;
+           }
+           for( unsigned int i=0; i<4u; i++)
+           {
+             mSvgActor[i].SetSize( mActorSize * mScale);
+           }
+         }
+       }
+     }
+   }
+
+private:
+  Application&         mApplication;
+  Actor                mStageBackground;
+  PanGestureDetector   mPanGestureDetector;
+  PinchGestureDetector mPinchGestureDetector;
+
+  Toolkit::ImageView  mSvgActor[4];
+  Vector2             mActorSize;
+  float               mScale;
+  float               mScaleAtPinchStart;
+  unsigned int        mIndex;
+};
+
+void RunTest( Application& application )
+{
+  ImageSvgController test( application );
+
+  application.MainLoop();
+}
+
+// Entry point for Linux & Tizen applications
+//
+int main( int argc, char **argv )
+{
+  Application application = Application::New( &argc, &argv );
+
+  RunTest( application );
+
+  return 0;
+}
diff --git a/resources/images/Camera.svg b/resources/images/Camera.svg
new file mode 100755 (executable)
index 0000000..a820260
--- /dev/null
@@ -0,0 +1,247 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 195.688 195.687"
+   xml:space="preserve"
+   inkscape:version="0.48.4 r9939"
+   width="100%"
+   height="100%"
+   sodipodi:docname="Camera.svg"><metadata
+     id="metadata111"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs109" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1855"
+     inkscape:window-height="1056"
+     id="namedview107"
+     showgrid="false"
+     inkscape:zoom="6.342955"
+     inkscape:cx="95.823553"
+     inkscape:cy="77.789068"
+     inkscape:window-x="1985"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="Layer_1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><g
+     id="g3"
+     transform="translate(-199.60801,-323.454)"><linearGradient
+       id="SVGID_1_"
+       gradientUnits="userSpaceOnUse"
+       x1="297.4512"
+       y1="324.3956"
+       x2="297.4512"
+       y2="518.1626"><stop
+         offset="0"
+         style="stop-color:#FFFFFF;stop-opacity:0.7"
+         id="stop6" /><stop
+         offset="0.9987"
+         style="stop-color:#D8D9D8;stop-opacity:0.7"
+         id="stop8" /></linearGradient><path
+       style="fill:url(#SVGID_1_);fill-rule:evenodd"
+       d="m 209.231,518.642 c -5.031,0 -9.124,-4.093 -9.124,-9.124 v -176.44 c 0,-5.031 4.093,-9.124 9.124,-9.124 h 176.441 c 5.03,0 9.123,4.093 9.123,9.124 v 176.44 c 0,5.031 -4.093,9.124 -9.123,9.124 H 209.231 z"
+       id="path10"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#d8d8d7"
+       d="m 385.671,324.454 c 4.755,0 8.624,3.868 8.624,8.623 v 176.441 c 0,4.755 -3.868,8.623 -8.624,8.623 h -176.44 c -4.755,0 -8.623,-3.868 -8.623,-8.623 V 333.077 c 0,-4.755 3.868,-8.623 8.623,-8.623 h 176.44 m 0,-1 h -176.44 c -5.315,0 -9.623,4.309 -9.623,9.623 v 176.441 c 0,5.315 4.309,9.623 9.623,9.623 h 176.441 c 5.315,0 9.624,-4.308 9.624,-9.623 V 333.077 c -10e-4,-5.315 -4.31,-9.623 -9.625,-9.623 l 0,0 z"
+       id="path12"
+       inkscape:connector-curvature="0" /></g><path
+     style="fill:none"
+     d="M 41.644991,57.106 H 161.45399 c 3.472,0 6.287,2.815 6.287,6.287 v 79.809 c 0,3.472 -2.815,6.287 -6.287,6.287 H 41.644991 c -3.472,0 -6.287,-2.815 -6.287,-6.287 V 63.393 c 0,-3.472 2.815,-6.287 6.287,-6.287 z"
+     id="path14"
+     inkscape:connector-curvature="0" /><g
+     id="g16"
+     transform="translate(-199.60801,-323.454)"><g
+       id="g18"><linearGradient
+         id="SVGID_2_"
+         gradientUnits="userSpaceOnUse"
+         x1="301.3562"
+         y1="382.27881"
+         x2="301.3562"
+         y2="473.1604"><stop
+           offset="0"
+           style="stop-color:#756A80"
+           id="stop21" /><stop
+           offset="1"
+           style="stop-color:#60576B"
+           id="stop23" /></linearGradient><path
+         style="fill:url(#SVGID_2_);fill-rule:evenodd"
+         d="m 235.238,406.51 v -19.725 c 0,-3.178 2.586,-5.764 5.765,-5.764 H 361.71 c 3.179,0 5.765,2.586 5.765,5.764 V 406.51 H 235.238 z"
+         id="path25"
+         inkscape:connector-curvature="0" /><path
+         style="fill:#5c5264"
+         d="m 361.71,381.271 c 3.041,0 5.515,2.474 5.515,5.515 v 19.475 H 235.488 v -19.475 c 0,-3.041 2.474,-5.515 5.515,-5.515 H 361.71 m 0,-0.5 H 241.002 c -3.322,0 -6.015,2.693 -6.015,6.015 v 19.975 h 132.737 v -19.975 c 0,-3.322 -2.693,-6.015 -6.014,-6.015 l 0,0 z"
+         id="path27"
+         inkscape:connector-curvature="0" /></g><g
+       id="g29"><linearGradient
+         id="SVGID_3_"
+         gradientUnits="userSpaceOnUse"
+         x1="301.3562"
+         y1="382.50409"
+         x2="301.3562"
+         y2="474.47351"><stop
+           offset="0"
+           style="stop-color:#756A80"
+           id="stop32" /><stop
+           offset="1"
+           style="stop-color:#60576B"
+           id="stop34" /></linearGradient><path
+         style="fill:url(#SVGID_3_);fill-rule:evenodd"
+         d="m 241.002,475.249 c -3.179,0 -5.765,-2.586 -5.765,-5.765 v -60.45 h 132.237 v 60.45 c 0,3.179 -2.586,5.765 -5.765,5.765 H 241.002 z"
+         id="path36"
+         inkscape:connector-curvature="0" /><path
+         style="fill:#5c5264"
+         d="m 367.224,409.284 v 60.2 c 0,3.041 -2.474,5.515 -5.515,5.515 H 241.002 c -3.041,0 -5.515,-2.474 -5.515,-5.515 v -60.2 h 131.737 m 0.5,-0.5 H 234.988 v 60.7 c 0,3.322 2.693,6.015 6.015,6.015 H 361.71 c 3.322,0 6.015,-2.693 6.015,-6.015 v -60.7 l -0.001,0 z"
+         id="path38"
+         inkscape:connector-curvature="0" /></g></g><g
+     id="g40"
+     transform="translate(-199.60801,-323.454)"><linearGradient
+       id="SVGID_4_"
+       gradientUnits="userSpaceOnUse"
+       x1="300.84109"
+       y1="399.01071"
+       x2="300.84109"
+       y2="458.10779"><stop
+         offset="0"
+         style="stop-color:#756A80"
+         id="stop43" /><stop
+         offset="1"
+         style="stop-color:#60576B"
+         id="stop45" /></linearGradient><path
+       style="fill:url(#SVGID_4_);fill-rule:evenodd"
+       d="m 300.841,461.131 c -17.485,0 -31.71,-14.226 -31.71,-31.711 0,-17.485 14.225,-31.71 31.71,-31.71 17.485,0 31.711,14.225 31.711,31.71 0,17.485 -14.226,31.711 -31.711,31.711 z"
+       id="path47"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#5c5264"
+       d="m 300.841,398.21 c 17.237,0 31.21,13.973 31.21,31.21 0,17.237 -13.973,31.211 -31.21,31.211 -17.237,0 -31.211,-13.973 -31.211,-31.211 0,-17.237 13.974,-31.21 31.211,-31.21 m 0,-1 c -17.761,0 -32.211,14.45 -32.211,32.21 0,17.761 14.45,32.211 32.211,32.211 17.761,0 32.21,-14.45 32.21,-32.211 0,-17.761 -14.449,-32.21 -32.21,-32.21 l 0,0 z"
+       id="path49"
+       inkscape:connector-curvature="0" /></g><g
+     id="g51"
+     transform="translate(-199.60801,-323.454)"><linearGradient
+       id="SVGID_5_"
+       gradientUnits="userSpaceOnUse"
+       x1="300.84109"
+       y1="399.9697"
+       x2="300.84109"
+       y2="457.20319"><stop
+         offset="0"
+         style="stop-color:#E7E7E7"
+         id="stop54" /><stop
+         offset="1"
+         style="stop-color:#E2E2E2"
+         id="stop56" /></linearGradient><path
+       style="fill:url(#SVGID_5_);fill-rule:evenodd"
+       d="m 300.841,460.131 c -16.934,0 -30.71,-13.777 -30.71,-30.711 0,-16.934 13.777,-30.71 30.71,-30.71 16.933,0 30.711,13.777 30.711,30.71 0,16.933 -13.778,30.711 -30.711,30.711 z m 0.002,-48.728 c -9.935,0 -18.017,8.083 -18.017,18.017 0,9.934 8.083,18.017 18.017,18.017 9.934,0 18.017,-8.082 18.017,-18.017 0,-9.935 -8.083,-18.017 -18.017,-18.017 z"
+       id="path58"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#f2f2f2"
+       d="m 300.841,399.21 c 16.658,0 30.21,13.552 30.21,30.21 0,16.658 -13.552,30.211 -30.21,30.211 -16.658,0 -30.211,-13.552 -30.211,-30.211 0,-16.658 13.553,-30.21 30.211,-30.21 m 0.002,48.726 c 10.21,0 18.517,-8.307 18.517,-18.517 0,-10.21 -8.307,-18.517 -18.517,-18.517 -10.21,0 -18.517,8.307 -18.517,18.517 0,10.21 8.306,18.517 18.517,18.517 m -0.002,-49.726 c -17.237,0 -31.211,13.973 -31.211,31.21 0,17.237 13.973,31.211 31.211,31.211 17.237,0 31.21,-13.973 31.21,-31.211 0,-17.237 -13.973,-31.21 -31.21,-31.21 l 0,0 z m 0.002,48.726 c -9.674,0 -17.517,-7.842 -17.517,-17.517 0,-9.674 7.843,-17.517 17.517,-17.517 9.674,0 17.517,7.843 17.517,17.517 -0.001,9.675 -7.843,17.517 -17.517,17.517 l 0,0 z"
+       id="path60"
+       inkscape:connector-curvature="0" /></g><path
+     style="fill:#5c5264;fill-rule:evenodd"
+     d="m 162.10099,57.106 -120.727999,0 c -4.82917,1.06976 -6.015,3.82683 -6.015,7.746 0,-3.322 2.693,-6.015 6.015,-6.015 l 120.728999,0 c 3.322,0 6.015,2.693 6.015,6.015 l 0,-1.731 c -10e-4,-3.322 -2.694,-6.015 -6.016,-6.015 z"
+     id="path62"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sccssccs" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 41.372991,153.312 120.728999,0 c 5.14448,-0.12383 6.015,-3.82683 6.015,-7.746 0,3.322 -2.693,6.015 -6.015,6.015 l -120.728999,0 c -3.322,0 -6.015,-2.693 -6.015,-6.015 l 0,1.731 c 0,3.322 2.693,6.015 6.015,6.015 z"
+     id="path64"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sccsscss" /><linearGradient
+     id="SVGID_6_"
+     gradientUnits="userSpaceOnUse"
+     x1="300.8425"
+     y1="413.8396"
+     x2="300.8425"
+     y2="445.65921"
+     gradientTransform="translate(-199.60801,-323.454)"><stop
+       offset="0"
+       style="stop-color:#595A5B"
+       id="stop67" /><stop
+       offset="1"
+       style="stop-color:#4C4C4C"
+       id="stop69" /></linearGradient><path
+     style="fill:url(#SVGID_6_);fill-rule:evenodd"
+     d="m 101.23499,88.449 c 9.674,0 17.517,7.842 17.517,17.517 0,9.674 -7.842,17.517 -17.517,17.517 -9.674999,0 -17.516999,-7.842 -17.516999,-17.517 0,-9.675 7.842,-17.517 17.516999,-17.517 z"
+     id="path71"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_7_"
+     gradientUnits="userSpaceOnUse"
+     x1="300.8425"
+     y1="413.8396"
+     x2="300.8425"
+     y2="445.65921"
+     gradientTransform="translate(-199.60801,-323.454)"><stop
+       offset="0"
+       style="stop-color:#595A5B"
+       id="stop74" /><stop
+       offset="1"
+       style="stop-color:#4C4C4C"
+       id="stop76" /></linearGradient><path
+     style="fill:url(#SVGID_7_);fill-rule:evenodd"
+     d="m 101.23499,88.449 c 9.674,0 17.517,7.842 17.517,17.517 0,9.674 -7.842,17.517 -17.517,17.517 -9.674999,0 -17.516999,-7.842 -17.516999,-17.517 0,-9.675 7.842,-17.517 17.516999,-17.517 z"
+     id="path78"
+     inkscape:connector-curvature="0" /><g
+     id="g80"
+     transform="translate(-199.60801,-323.454)"><g
+       id="g82"><path
+         style="fill:#5c5264;fill-rule:evenodd"
+         d="m 331.184,388.309 h 25.81 c 1.657,0 3,1.343 3,3 v 10.016 c 0,1.657 -1.343,3 -3,3 h -25.81 c -1.657,0 -3,-1.343 -3,-3 v -10.016 c 0,-1.657 1.343,-3 3,-3 z"
+         id="path84"
+         inkscape:connector-curvature="0" /></g></g><g
+     id="g86"
+     transform="translate(-199.60801,-323.454)"><g
+       id="g88"><linearGradient
+         id="SVGID_8_"
+         gradientUnits="userSpaceOnUse"
+         x1="344.0889"
+         y1="387.94641"
+         x2="344.0889"
+         y2="401.42691"><stop
+           offset="0"
+           style="stop-color:#E7E7E7"
+           id="stop91" /><stop
+           offset="1"
+           style="stop-color:#E2E2E2"
+           id="stop93" /></linearGradient><path
+         style="fill:url(#SVGID_8_);fill-rule:evenodd"
+         d="m 331.184,402.124 c -1.379,0 -2.5,-1.122 -2.5,-2.5 v -10.017 c 0,-1.378 1.121,-2.5 2.5,-2.5 h 25.811 c 1.379,0 2.5,1.122 2.5,2.5 v 10.017 c 0,1.378 -1.121,2.5 -2.5,2.5 h -25.811 z"
+         id="path95"
+         inkscape:connector-curvature="0" /></g><g
+       id="g97"><path
+         style="fill:#f2f2f2"
+         d="m 356.994,387.608 c 1.103,0 2,0.897 2,2 v 10.016 c 0,1.103 -0.897,2 -2,2 h -25.81 c -1.103,0 -2,-0.897 -2,-2 v -10.016 c 0,-1.103 0.897,-2 2,-2 h 25.81 m 0,-1 h -25.81 c -1.657,0 -3,1.343 -3,3 v 10.016 c 0,1.657 1.343,3 3,3 h 25.81 c 1.657,0 3,-1.343 3,-3 v -10.016 c 0,-1.657 -1.343,-3 -3,-3 l 0,0 z"
+         id="path99"
+         inkscape:connector-curvature="0" /></g></g><path
+     style="fill:#e0e1e0;fill-rule:evenodd"
+     d="m 94.535991,95.709 c 1.819,0 3.293,1.474 3.293,3.293 0,1.819 -1.474,3.293 -3.293,3.293 -1.819,0 -3.293,-1.475 -3.293,-3.293 -0.001,-1.819 1.474,-3.293 3.293,-3.293 z"
+     id="path101"
+     inkscape:connector-curvature="0" /><g
+     id="g103"
+     transform="translate(-199.60801,-323.454)"><path
+       style="fill:#353535;fill-rule:evenodd"
+       d="m 300.843,412.903 c 9.505,0 17.224,7.576 17.491,17.017 0.005,-0.168 0.025,-0.331 0.025,-0.5 0,-9.674 -7.842,-17.517 -17.517,-17.517 -9.675,0 -17.517,7.843 -17.517,17.517 0,0.169 0.021,0.332 0.025,0.5 0.268,-9.441 7.987,-17.017 17.493,-17.017 z"
+       id="path105"
+       inkscape:connector-curvature="0" /></g></svg>
\ No newline at end of file
diff --git a/resources/images/Contacts.svg b/resources/images/Contacts.svg
new file mode 100755 (executable)
index 0000000..ced240f
--- /dev/null
@@ -0,0 +1,152 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 196.243 197.727"
+   xml:space="preserve"
+   inkscape:version="0.48.4 r9939"
+   width="100%"
+   height="100%"
+   sodipodi:docname="Contacts.svg"><metadata
+     id="metadata59"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs57" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1476"
+     inkscape:window-height="1005"
+     id="namedview55"
+     showgrid="false"
+     inkscape:zoom="1.5857388"
+     inkscape:cx="98.059987"
+     inkscape:cy="54.586379"
+     inkscape:window-x="75"
+     inkscape:window-y="34"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="Layer_1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><g
+     id="g3"
+     transform="translate(-199.58001,-322.396)"><linearGradient
+       id="SVGID_1_"
+       gradientUnits="userSpaceOnUse"
+       x1="297.7009"
+       y1="325.1676"
+       x2="297.7009"
+       y2="517.5647"><stop
+         offset="0"
+         style="stop-color:#FFFFFF;stop-opacity:0.7"
+         id="stop6" /><stop
+         offset="0.9987"
+         style="stop-color:#D8D9D8;stop-opacity:0.7"
+         id="stop8" /></linearGradient><path
+       style="fill:url(#SVGID_1_);fill-rule:evenodd"
+       d="m 210.25,519.623 c -5.608,0 -10.17,-4.562 -10.17,-10.171 V 333.066 c 0,-5.608 4.562,-10.17 10.17,-10.17 h 174.902 c 5.607,0 10.17,4.562 10.17,10.17 v 176.386 c 0,5.608 -4.562,10.171 -10.17,10.171 H 210.25 z"
+       id="path10"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#d8d8d7"
+       d="m 385.152,323.396 c 5.332,0 9.67,4.338 9.67,9.67 v 176.387 c 0,5.332 -4.338,9.67 -9.67,9.67 H 210.25 c -5.332,0 -9.67,-4.338 -9.67,-9.67 V 333.066 c 0,-5.332 4.338,-9.67 9.67,-9.67 h 174.902 m 0,-1 H 210.25 c -5.893,0 -10.67,4.777 -10.67,10.67 v 176.387 c 0,5.893 4.777,10.67 10.67,10.67 h 174.903 c 5.893,0 10.67,-4.777 10.67,-10.67 V 333.066 c 0,-5.893 -4.778,-10.67 -10.671,-10.67 l 0,0 z"
+       id="path12"
+       inkscape:connector-curvature="0" /></g><g
+     id="g14"
+     transform="translate(-199.58001,-322.396)"><linearGradient
+       id="SVGID_2_"
+       gradientUnits="userSpaceOnUse"
+       x1="297.23581"
+       y1="364.1608"
+       x2="297.23581"
+       y2="475.73239"><stop
+         offset="0.0049"
+         style="stop-color:#F48347"
+         id="stop17" /><stop
+         offset="1"
+         style="stop-color:#E4773B"
+         id="stop19" /></linearGradient><path
+       style="fill:url(#SVGID_2_);fill-rule:evenodd"
+       d="m 344.71,476.058 c -0.364,0 -0.589,-0.024 -0.603,-0.026 l -95.657,-0.003 c -3.342,0 -6.062,-2.719 -6.062,-6.062 V 369.656 c 0,-3.342 2.719,-6.062 6.062,-6.062 h 90.311 c 3.343,0 6.062,2.719 6.062,6.062 v 90.311 c 0,3.343 -2.719,6.062 -6.062,6.062 l -89.272,0.153 -0.402,5.875 0.537,-0.002 c 0.718,-0.002 71.989,-0.204 91.555,-0.204 4.732,0 7.132,-2.618 7.132,-7.782 0,-19.79 -0.299,-85.429 -0.329,-92.176 1.185,0.195 3.999,1.104 3.999,5.334 0,0.901 0.076,90.378 0.104,90.752 l -0.012,-0.107 c -0.002,7.388 -5.15,8.186 -7.363,8.186 z"
+       id="path21"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#cf6a38"
+       d="m 338.761,364.095 c 3.067,0 5.561,2.495 5.561,5.561 v 90.311 c 0,3.067 -2.495,5.561 -5.563,5.561 l -88.806,0.152 -0.932,0.002 -0.064,0.93 -0.333,4.874 -0.073,1.071 1.074,-0.003 c 0.718,-0.002 71.989,-0.204 91.553,-0.204 3.482,0 7.632,-1.437 7.632,-8.282 0,-19.292 -0.284,-82.148 -0.327,-91.557 1.203,0.355 2.997,1.434 2.997,4.715 0,0.879 0.062,85.883 0.11,90.645 h -0.018 c 0,2.311 -0.669,7.685 -6.862,7.685 -0.338,0 -0.544,-0.022 -0.544,-0.022 l 0,0 -0.058,-0.007 h -0.058 -95.6 c -3.067,0 -5.561,-2.495 -5.561,-5.561 v -100.31 c 0,-3.067 2.495,-5.561 5.561,-5.561 h 90.311 m 0,-1 H 248.45 c -3.624,0 -6.561,2.938 -6.561,6.561 v 100.311 c 0,3.624 2.938,6.561 6.561,6.561 h 95.6 c 0,0 0.248,0.029 0.66,0.029 2.001,0 7.862,-0.683 7.862,-8.685 -0.002,-0.008 -0.092,-84.82 -0.092,-90.645 0,-5.825 -5.002,-5.888 -5.002,-5.888 0,0 0.332,71.724 0.332,92.73 0,5.221 -2.548,7.282 -6.632,7.282 -19.792,0 -91.556,0.204 -91.556,0.204 l 0.333,-4.874 88.806,-0.152 c 3.624,0 6.561,-2.938 6.561,-6.561 v -90.311 c 0,-3.624 -2.937,-6.562 -6.561,-6.562 l 0,0 z"
+       id="path23"
+       inkscape:connector-curvature="0" /></g><path
+     style="fill:#b27b2e;fill-rule:evenodd"
+     d="m 147.89799,48.943 -2.156,-1.683 c 0,-3.624 -2.938,-6.561 -6.562,-6.561 l -90.309999,0 c -3.624,0 -6.561,2.938 -6.561,6.561 l 0,1.5 c 0,-3.624 2.938,-6.561 6.561,-6.561 l 90.309999,0 c 3.624,0 6.562,2.938 6.562,6.561 l 2.156,1.683"
+     id="path25"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="ccssscsscc" /><g
+     id="g27"
+     transform="translate(-199.58001,-322.396)"><path
+       style="fill:#e1dfe2;fill-rule:evenodd"
+       d="m 344.05,476.528 -95.6,0 c -3.624,0 -6.561,-2.938 -6.561,-6.562 l 0,1.663 c 0,3.624 2.938,6.255 6.561,6.255 l 95.6,0 c 0,0 8.521,1.299 8.521,-8.35 0.0282,-3.61847 0.67639,7.26515 -8.521,6.994 z"
+       id="path29"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cscssccc" /></g><path
+     style="fill:#bf602e;fill-rule:evenodd"
+     d="m 126.68499,130.366 v -1.605 c 0,0 -16.147,-13.713 -24.628,-13.713 v -8.251 c 0,0 13.161,-2.772 13.161,-15.726 0,-8.241 3.257,-31.365 -20.096999,-31.365 -0.624,0 -0.624,0 -1.247,0 -23.354,0 -20.097,23.123 -20.097,31.365 0,12.675 13.161,15.726 13.161,15.726 v 8.251 c -8.332,0 -24.628,13.713 -24.628,13.713 v 1.605 h 64.374999 z"
+     id="path31"
+     inkscape:connector-curvature="0" /><g
+     id="g33"
+     transform="translate(-199.58001,-322.396)"><linearGradient
+       id="SVGID_3_"
+       gradientUnits="userSpaceOnUse"
+       x1="298.7244"
+       y1="371.77979"
+       x2="298.7244"
+       y2="472.5517"><stop
+         offset="0"
+         style="stop-color:#F9F3D9"
+         id="stop36" /><stop
+         offset="1"
+         style="stop-color:#EAE3CA"
+         id="stop38" /></linearGradient><path
+       style="fill:url(#SVGID_3_);fill-rule:evenodd"
+       d="m 250.188,466.931 88.572,-0.152 c 3.756,0 6.812,-3.056 6.812,-6.812 v -88.86 l 1.66,1.191 c 0.016,3.412 0.327,71.541 0.327,91.771 0,4.732 -2.088,7.032 -6.382,7.032 -18.957,0 -86.452,0.189 -91.289,0.203 l 0.3,-4.373 z"
+       id="path40"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#fffcf3"
+       d="m 345.822,371.593 1.161,0.833 c 0.039,8.466 0.327,72.223 0.327,91.643 0,4.563 -2.006,6.782 -6.132,6.782 -18.664,0 -84.381,0.183 -91.02,0.202 l 0.265,-3.873 88.339,-0.151 c 3.894,0 7.061,-3.168 7.061,-7.061 v -88.375 m -0.501,-0.974 v 89.348 c 0,3.624 -2.938,6.561 -6.561,6.561 l -88.806,0.152 -0.333,4.874 c 0,0 71.764,-0.204 91.556,-0.204 4.084,0 6.632,-2.061 6.632,-7.282 0,-19.678 -0.291,-83.869 -0.328,-91.9 l -2.16,-1.549 0,0 z"
+       id="path42"
+       inkscape:connector-curvature="0" /></g><g
+     id="g44"
+     transform="translate(-199.58001,-322.396)"><linearGradient
+       id="SVGID_4_"
+       gradientUnits="userSpaceOnUse"
+       x1="294.0769"
+       y1="380.8504"
+       x2="294.0769"
+       y2="450.2294"><stop
+         offset="0"
+         style="stop-color:#F9F3D9"
+         id="stop47" /><stop
+         offset="1"
+         style="stop-color:#EAE3CA"
+         id="stop49" /></linearGradient><path
+       style="fill:url(#SVGID_4_);fill-rule:evenodd"
+       d="m 262.494,450.906 c 2.504,-2.468 15.465,-14.817 24.024,-14.817 h 0.25 v -8.699 l -0.193,-0.045 c -0.13,-0.03 -12.968,-3.158 -12.968,-15.483 0,-0.8 -0.031,-1.741 -0.064,-2.787 -0.207,-6.352 -0.554,-16.984 5.473,-23.21 3.287,-3.396 8.145,-5.118 14.438,-5.118 h 1.247 c 6.293,0 11.152,1.722 14.439,5.118 6.026,6.226 5.68,16.858 5.473,23.21 -0.034,1.046 -0.064,1.986 -0.064,2.787 0,12.606 -12.833,15.455 -12.963,15.481 l -0.198,0.042 v 8.704 h 0.25 c 8.56,0 21.521,12.35 24.023,14.817 h -63.167 z"
+       id="path51"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#fffcf3"
+       d="m 294.701,380.997 c 6.223,0 11.02,1.696 14.259,5.042 5.953,6.15 5.609,16.716 5.403,23.028 -0.035,1.067 -0.065,1.988 -0.065,2.795 0,12.388 -12.243,15.126 -12.764,15.237 l -0.397,0.084 v 0.405 8.251 0.5 h 0.5 c 8.051,0 20.11,11.121 23.41,14.318 h -61.94 c 3.3,-3.197 15.36,-14.318 23.41,-14.318 h 0.5 v -0.5 -8.251 l 0,-0.397 -0.386,-0.09 c -0.522,-0.122 -12.774,-3.118 -12.774,-15.239 0,-0.806 -0.03,-1.728 -0.065,-2.795 -0.206,-6.313 -0.55,-16.878 5.403,-23.029 3.238,-3.345 8.036,-5.042 14.259,-5.042 h 1.247 m 0,-0.499 c -0.624,0 -0.624,0 -1.247,0 -23.354,0 -20.097,23.123 -20.097,31.365 0,12.675 13.161,15.726 13.161,15.726 v 8.251 c -9.677,0 -24.628,15.318 -24.628,15.318 h 64.376 c 0,0 -14.952,-15.318 -24.628,-15.318 v -8.251 c 0,0 13.161,-2.772 13.161,-15.726 -10e-4,-8.242 3.256,-31.365 -20.098,-31.365 l 0,0 z"
+       id="path53"
+       inkscape:connector-curvature="0" /></g></svg>
\ No newline at end of file
diff --git a/resources/images/Kid1.svg b/resources/images/Kid1.svg
new file mode 100755 (executable)
index 0000000..b7d5476
--- /dev/null
@@ -0,0 +1,491 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 306.90988 416.79828"
+   xml:space="preserve"
+   inkscape:version="0.48.4 r9939"
+   width="100%"
+   height="100%"
+   sodipodi:docname="Kid1.svg"><metadata
+     id="metadata185"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs183" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="640"
+     inkscape:window-height="480"
+     id="namedview181"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:zoom="0.28032166"
+     inkscape:cx="152.20465"
+     inkscape:cy="184.87264"
+     inkscape:window-x="75"
+     inkscape:window-y="34"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="Layer_1" /><path
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 192.28065,343.14765 c 0,0 -4.5,75.5 37.5,71 42,-4.5 11.5,-75.5 11.5,-75.5 l -49,4.5 z"
+     id="path3"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 229.78065,414.14765 c 24.024,-2.574 24.325,-26.903 20.184,-47.259 l -56.117,5.805 c 3.172,20.614 12.003,44.018 35.933,41.454 z"
+     id="path5"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 113.60765,343.14765 c 0,0 -23.087995,69 14,73 37.088,4 48,-73 48,-73 h -62 z"
+     id="path7"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 169.15465,370.76265 -60.625,-7.118 c -3.745,20.685 -4.689,49.94 19.078,52.503 21.993,2.372 34.78,-23.738 41.547,-45.385 z"
+     id="path9"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 117.10565,371.73465 39.895,2.68 c 0,0 -7.065,27.803 -23.798,24.788 -16.733,-3.015 -16.097,-27.468 -16.097,-27.468 z"
+     id="path11"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 206.27865,381.65765 35.399,-5.164 c 0,0 2.531,26.234 -10.49,26.241 -18.543,0.011 -24.909,-21.077 -24.909,-21.077 z"
+     id="path13"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 121.49165,210.92765 c -24.560995,5.263 -52.631995,5.263 -52.631995,5.263 l 5.354,60.772 25.859995,-5.032 c 0,0 64.328,-18.197 62.574,-34.16 -2.104,-19.138 -16.595,-32.106 -41.156,-26.843 z"
+     id="path15"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#c1272d;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 231.14065,228.64765 c -10.143,-34.251 -65.789,-51.053 -65.789,-51.053 0,0 -19.298,28.07 -43.86,33.333 -1.209,0.259 -2.428,0.502 -3.65,0.736 l -20.035995,60.709 2.267995,-0.441 -16.300995,80.54 184.714995,-4.731 c 0,10e-4 -25.566,-79.313 -37.347,-119.093 z"
+     id="path17"
+     inkscape:connector-curvature="0" /><line
+     style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="110.72466"
+     y1="311.29565"
+     x2="104.40065"
+     y2="352.30963"
+     id="line19" /><polygon
+     style="fill:#666666;stroke:#000000;stroke-miterlimit:10"
+     points="390.823,464.081 392.798,470.374 237.225,476.667 237.225,468.729 "
+     id="polygon21"
+     transform="translate(-145.43535,-189.01935)" /><linearGradient
+     id="SVGID_1_"
+     gradientUnits="userSpaceOnUse"
+     x1="317.35651"
+     y1="383.66669"
+     x2="317.35651"
+     y2="199.5519"
+     gradientTransform="translate(-145.43535,-189.01935)"><stop
+       offset="0"
+       style="stop-color:#402A04"
+       id="stop24" /><stop
+       offset="1"
+       style="stop-color:#7F5100"
+       id="stop26" /></linearGradient><path
+     style="fill:url(#SVGID_1_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="M 172.97165,196.01565 H 63.267655 c 0,0 -54.6040005,-192.1050008 109.704995,-188.5960008 164.309,3.5089998 106.414,188.5960008 106.414,188.5960008 h -106.415 z"
+     id="path28"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_2_"
+     gradientUnits="userSpaceOnUse"
+     x1="317.6879"
+     y1="298.16669"
+     x2="317.6879"
+     y2="399.66791"
+     gradientTransform="translate(-145.43535,-189.01935)"><stop
+       offset="0.0019"
+       style="stop-color:#FFCA94"
+       id="stop31" /><stop
+       offset="1"
+       style="stop-color:#E2A380"
+       id="stop33" /></linearGradient><path
+     style="fill:url(#SVGID_2_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 93.798655,65.647649 c 0,0 -48.605,145.281001 77.692995,145.281001 126.298,0 80.202,-145.281001 80.202,-145.281001 H 93.798655 z"
+     id="path35"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_3_"
+     gradientUnits="userSpaceOnUse"
+     x1="316.33801"
+     y1="383.66669"
+     x2="316.33801"
+     y2="199.5519"
+     gradientTransform="translate(-145.43535,-189.01935)"><stop
+       offset="0"
+       style="stop-color:#402A04"
+       id="stop38" /><stop
+       offset="1"
+       style="stop-color:#7F5100"
+       id="stop40" /></linearGradient><path
+     style="fill:url(#SVGID_3_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 108.82665,29.573649 c 0,0 -37.535995,22.859 -34.316995,82.359001 h 62.920995 c 0,0 7.255,-35.965001 7.255,-31.786001 0,4.179 3.509,31.786001 3.509,31.786001 h 48.246 V 87.833649 l 8.772,24.099001 h 62.281 c 0,0 0,-53.553001 -28.63,-82.359001 -28.072,0.877 -130.037,0 -130.037,0 z"
+     id="path42"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_4_"
+     gradientUnits="userSpaceOnUse"
+     x1="195.0862"
+     y1="372.3811"
+     x2="217.894"
+     y2="516.99213"
+     gradientTransform="translate(-145.43535,-189.01935)"><stop
+       offset="0"
+       style="stop-color:#006178"
+       id="stop45" /><stop
+       offset="1"
+       style="stop-color:#00495C"
+       id="stop47" /></linearGradient><path
+     style="fill:url(#SVGID_4_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 111.64765,331.69965 -70.387995,13.196 c -6.487,1.216 -12.79,-3.096 -14.006,-9.583 L 1.8536545,199.83065 c -1.21599995,-6.487 3.096,-12.79 9.5830005,-14.006 l 70.388,-13.196 c 6.487,-1.216 12.79,3.096 14.006,9.583 l 25.399995,135.482 c 1.217,6.487 -3.096,12.79 -9.583,14.006 z"
+     id="path49"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_5_"
+     gradientUnits="userSpaceOnUse"
+     x1="197.17931"
+     y1="393.6586"
+     x2="218.5313"
+     y2="505.75641"><stop
+       offset="0"
+       style="stop-color:#6BBBD0"
+       id="stop52" /><stop
+       offset="1"
+       style="stop-color:#ACCCD4"
+       id="stop54" /></linearGradient><polygon
+     style="fill:url(#SVGID_5_);stroke:#000000;stroke-miterlimit:10"
+     points="179.836,514.167 159.336,399.948 236.336,387.667 254.336,498.167 "
+     id="polygon56"
+     transform="translate(-145.43535,-189.01935)" /><linearGradient
+     id="SVGID_6_"
+     gradientUnits="userSpaceOnUse"
+     x1="207.9456"
+     y1="466.41"
+     x2="201.4173"
+     y2="399.4946"><stop
+       offset="0"
+       style="stop-color:#FBCA51"
+       id="stop59" /><stop
+       offset="1"
+       style="stop-color:#FFECBF"
+       id="stop61" /></linearGradient><ellipse
+     style="fill:url(#SVGID_6_);stroke:#000000;stroke-miterlimit:10"
+     cx="205.43201"
+     cy="440.64801"
+     rx="28.959"
+     ry="28.080999"
+     id="ellipse63"
+     sodipodi:cx="205.43201"
+     sodipodi:cy="440.64801"
+     sodipodi:rx="28.959"
+     sodipodi:ry="28.080999"
+     transform="translate(-145.43535,-189.01935)" /><linearGradient
+     id="SVGID_7_"
+     gradientUnits="userSpaceOnUse"
+     x1="190.9269"
+     y1="427.96649"
+     x2="192.52139"
+     y2="436.33749"><stop
+       offset="0"
+       style="stop-color:#6BBBD0"
+       id="stop66" /><stop
+       offset="1"
+       style="stop-color:#ACCCD4"
+       id="stop68" /></linearGradient><line
+     style="fill:url(#SVGID_7_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="44.983662"
+     y1="238.97565"
+     x2="47.595661"
+     y2="247.29865"
+     id="line70" /><linearGradient
+     id="SVGID_8_"
+     gradientUnits="userSpaceOnUse"
+     x1="211.39799"
+     y1="423.5397"
+     x2="213.01559"
+     y2="432.0325"><stop
+       offset="0"
+       style="stop-color:#6BBBD0"
+       id="stop73" /><stop
+       offset="1"
+       style="stop-color:#ACCCD4"
+       id="stop75" /></linearGradient><line
+     style="fill:url(#SVGID_8_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="66.200653"
+     y1="234.40564"
+     x2="67.343658"
+     y2="243.13666"
+     id="line77" /><path
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 47.595655,260.51865 c 0,0 0.653,13.22 15.831,9.14 15.178,-4.08 11.229,-15.994 11.229,-15.994"
+     id="path79"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_9_"
+     gradientUnits="userSpaceOnUse"
+     x1="247.2587"
+     y1="416.16669"
+     x2="247.2587"
+     y2="464.19009"
+     gradientTransform="translate(-145.43535,-189.01935)"><stop
+       offset="0.0019"
+       style="stop-color:#FFCA94"
+       id="stop82" /><stop
+       offset="1"
+       style="stop-color:#E2A380"
+       id="stop84" /></linearGradient><path
+     style="fill:url(#SVGID_9_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 125.03565,225.81865 c 0,0 -54.844995,-4.046 -54.589995,5.391 0.255,9.437 21.359,3.668 20.849,8.259 -0.51,4.591 -10.173,3.424 -8.763,9.166 1.335,5.436 9.891,0.337 10.485,4.399 0.594,4.062 -7.944,4.738 -7.2,9.587 0.744,4.849 9.437,1.275 9.947,4.081 0.51,2.806 -5.959,4.099 -3.664,7.415 2.296,3.316 25.481995,4.532 36.820995,-0.784 11.531,-5.406 -3.885,-47.514 -3.885,-47.514 z"
+     id="path86"
+     inkscape:connector-curvature="0" /><path
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 108.82665,147.75265 c 0,0 0.464,-21.64 21.464,-21.14 21,0.5 22,21.14 22,21.14"
+     id="path88"
+     inkscape:connector-curvature="0" /><path
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 194.78965,147.75265 c 0,0 5.5,-23.64 25,-23.64 19.5,0 21.571,21 21.571,21"
+     id="path90"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="M 154.28965,177.59465"
+     id="path92"
+     inkscape:connector-curvature="0" /><path
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 154.28965,177.59465 c 0,0 0.715,18.789 16.607,18.421 15.893,-0.368 12.893,-18.421 12.893,-18.421"
+     id="path94"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 228.94765,254.13365 c -2.38,6.629 -9.604,20.319 -44.933,26.513 -37.922,6.649 -56.122,-3.11 -56.122,-3.11 l -10.787,-59.329 c 0,0 37.312,5.696 53.792,4.439 16.48,-1.257 33.346,-5.764 33.346,-5.764 0,0 18.324,-4.366 23.904,8.074 5.579,12.439 3.538,21.552 0.8,29.177 z"
+     id="path96"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_10_"
+     gradientUnits="userSpaceOnUse"
+     x1="316.32571"
+     y1="383.66669"
+     x2="316.32571"
+     y2="199.5519"><stop
+       offset="0"
+       style="stop-color:#402A04"
+       id="stop99" /><stop
+       offset="1"
+       style="stop-color:#7F5100"
+       id="stop101" /></linearGradient><polygon
+     style="fill:url(#SVGID_10_)"
+     points="408.426,250.667 394.198,218.593 358.725,207.167 262.541,210.167 237.725,225.136 224.225,247.667 "
+     id="polygon103"
+     transform="translate(-145.43535,-189.01935)" /><polygon
+     style="fill:#c1272d;stroke:#000000;stroke-miterlimit:10"
+     points="399.167,290.713 428.616,269.855 394.694,225.136 365.225,225.136 354.191,247.667 404.225,254.667 "
+     id="polygon105"
+     transform="translate(-145.43535,-189.01935)" /><path
+     style="fill:#c1272d;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 245.96865,0.64764917 c -6.811,-2.50199997 -41.178,27.49999983 -36.678,36.49999983 4.5,9 39,21.5 39,21.5 l 13.209,-17.558 c -10e-4,0 -4.031,-36.2179998 -15.531,-40.44199983 z"
+     id="path107"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#c1272d;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 272.19765,55.502649 -13.408,15.144 c 0,0 9,36.500001 17.5,35.500001 8.5,-1 32,-21.720001 30,-31.408001 -2,-9.688 -34.092,-19.236 -34.092,-19.236 z"
+     id="path109"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#c1272d;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 243.78965,58.647649 c 0,0 13.418,-23.5 17.709,-22.5 4.291,1 15.093,16.043 15.791,19.356 0.698,3.313 -13,20.644 -18.5,19.144 -5.5,-1.5 -12.5,-10 -15,-16 z"
+     id="path111"
+     inkscape:connector-curvature="0" /><line
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="215.78966"
+     y1="36.11665"
+     x2="245.96864"
+     y2="54.967648"
+     id="line113" /><line
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="262.99066"
+     y1="73.483643"
+     x2="277.31567"
+     y2="96.647644"
+     id="line115" /><circle
+     style="opacity:0.2;fill:#d86d44"
+     cx="262.54099"
+     cy="357.16699"
+     r="19.249001"
+     id="circle117"
+     sodipodi:cx="262.54099"
+     sodipodi:cy="357.16699"
+     sodipodi:rx="19.249001"
+     sodipodi:ry="19.249001"
+     transform="translate(-145.43535,-189.01935)" /><circle
+     style="opacity:0.2;fill:#d86d44"
+     cx="372.72501"
+     cy="357.16699"
+     r="19.249001"
+     id="circle119"
+     sodipodi:cx="372.72501"
+     sodipodi:cy="357.16699"
+     sodipodi:rx="19.249001"
+     sodipodi:ry="19.249001"
+     transform="translate(-145.43535,-189.01935)" /><path
+     style="fill:#c1272d;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="M 231.14065,228.64765"
+     id="path121"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_11_"
+     gradientUnits="userSpaceOnUse"
+     x1="218.8582"
+     y1="511.4505"
+     x2="220.60651"
+     y2="520.62927"
+     gradientTransform="translate(-145.43535,-189.01935)"><stop
+       offset="0"
+       style="stop-color:#006178"
+       id="stop124" /><stop
+       offset="1"
+       style="stop-color:#00495C"
+       id="stop126" /></linearGradient><path
+     style="fill:url(#SVGID_11_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 61.249655,330.25265 c 0.7,3.23 4.623,2.704 4.623,2.704 0,0 14.196,-2.268 16.856,-2.704 2.66,-0.436 5.413,-2.183 4.802,-5.501 -0.611,-3.318 -2.578,-4.334 -4.977,-4.104 -2.143,0.206 -17.811,4.016 -17.811,4.016 0,0 -4.628,0.35 -3.493,5.589 z"
+     id="path128"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_12_"
+     gradientUnits="userSpaceOnUse"
+     x1="196.34351"
+     y1="377.0275"
+     x2="197.17529"
+     y2="381.39441"><stop
+       offset="0"
+       style="stop-color:#006178"
+       id="stop131" /><stop
+       offset="1"
+       style="stop-color:#00495C"
+       id="stop133" /></linearGradient><polygon
+     style="fill:url(#SVGID_12_);stroke:#000000;stroke-miterlimit:10"
+     points="186.437,382.911 186.437,379.506 206.978,374.966 207.302,379.506 "
+     id="polygon135"
+     transform="translate(-145.43535,-189.01935)" /><linearGradient
+     id="SVGID_13_"
+     gradientUnits="userSpaceOnUse"
+     x1="152.85809"
+     y1="432.1676"
+     x2="155.30721"
+     y2="445.02539"
+     gradientTransform="translate(-145.43535,-189.01935)"><stop
+       offset="0.0019"
+       style="stop-color:#FFCA94"
+       id="stop138" /><stop
+       offset="1"
+       style="stop-color:#E2A380"
+       id="stop140" /></linearGradient><path
+     style="fill:url(#SVGID_13_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 2.5626545,251.52265 c 0.949,7.344 13.9770005,5.843 12.4400005,-2.53 -1.537,-8.373 -13.8540005,-8.404 -12.4400005,2.53 z"
+     id="path142"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_14_"
+     gradientUnits="userSpaceOnUse"
+     x1="150.90849"
+     y1="418.1373"
+     x2="153.3576"
+     y2="430.99509"
+     gradientTransform="translate(-145.43535,-189.01935)"><stop
+       offset="0.0019"
+       style="stop-color:#FFCA94"
+       id="stop145" /><stop
+       offset="1"
+       style="stop-color:#E2A380"
+       id="stop147" /></linearGradient><path
+     style="fill:url(#SVGID_14_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 0.61265455,237.49265 c 0.94899995,7.344 13.97700045,5.843 12.44000045,-2.53 -1.537,-8.373 -13.85300045,-8.404 -12.44000045,2.53 z"
+     id="path149"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_15_"
+     gradientUnits="userSpaceOnUse"
+     x1="155.52521"
+     y1="446.19681"
+     x2="157.7338"
+     y2="457.79221"
+     gradientTransform="translate(-145.43535,-189.01935)"><stop
+       offset="0.0019"
+       style="stop-color:#FFCA94"
+       id="stop152" /><stop
+       offset="1"
+       style="stop-color:#E2A380"
+       id="stop154" /></linearGradient><path
+     style="fill:url(#SVGID_15_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 5.7066545,264.72965 c 0.856,6.623 12.6050005,5.269 11.2180005,-2.281 -1.387,-7.55 -12.4920005,-7.58 -11.2180005,2.281 z"
+     id="path156"
+     inkscape:connector-curvature="0" /><linearGradient
+     id="SVGID_16_"
+     gradientUnits="userSpaceOnUse"
+     x1="153.2876"
+     y1="459.8923"
+     x2="155.15581"
+     y2="469.70059"
+     gradientTransform="translate(-145.43535,-189.01935)"><stop
+       offset="0.0019"
+       style="stop-color:#FFCA94"
+       id="stop159" /><stop
+       offset="1"
+       style="stop-color:#E2A380"
+       id="stop161" /></linearGradient><path
+     style="fill:url(#SVGID_16_);stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     d="m 14.738655,269.81365 c 0,0 -14.45200045,0.644 -13.0900005,6.785 1.362,6.141 15.1240005,2.806 15.1240005,2.806 l -2.034,-9.591 z"
+     id="path163"
+     inkscape:connector-curvature="0" /><line
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="103.19666"
+     y1="134.52966"
+     x2="111.07164"
+     y2="138.28766"
+     id="line165" /><line
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="116.44066"
+     y1="121.91666"
+     x2="119.95366"
+     y2="128.63864"
+     id="line167" /><line
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="231.53465"
+     y1="117.39664"
+     x2="227.96065"
+     y2="125.27765"
+     id="line169" /><line
+     style="fill:#ffffff;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="249.61266"
+     y1="127.38266"
+     x2="237.84065"
+     y2="134.52966"
+     id="line171" /><line
+     style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="243.72664"
+     y1="311.64764"
+     x2="251.97566"
+     y2="348.16364"
+     id="line173" /><line
+     style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="184.01564"
+     y1="310.31366"
+     x2="184.01564"
+     y2="349.90466"
+     id="line175" /><line
+     style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="146.45665"
+     y1="311.64764"
+     x2="143.12267"
+     y2="350.95166"
+     id="line177" /><line
+     style="fill:#666666;stroke:#000000;stroke-width:1;stroke-miterlimit:10"
+     x1="218.07564"
+     y1="311.29565"
+     x2="222.05864"
+     y2="348.93066"
+     id="line179" /></svg>
diff --git a/resources/images/Mail.svg b/resources/images/Mail.svg
new file mode 100755 (executable)
index 0000000..63fdd1f
--- /dev/null
@@ -0,0 +1,170 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 195.689 195.688"
+   xml:space="preserve"
+   inkscape:version="0.48.4 r9939"
+   width="100%"
+   height="100%"
+   sodipodi:docname="Mail.svg"><metadata
+     id="metadata68"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs66" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1508"
+     inkscape:window-height="982"
+     id="namedview64"
+     showgrid="false"
+     inkscape:zoom="8.970293"
+     inkscape:cx="97.257987"
+     inkscape:cy="98.235009"
+     inkscape:window-x="75"
+     inkscape:window-y="34"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="Layer_1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><g
+     id="g3"
+     transform="translate(-200.38201,-323.492)"><linearGradient
+       id="SVGID_1_"
+       gradientUnits="userSpaceOnUse"
+       x1="298.22559"
+       y1="324.43469"
+       x2="298.22559"
+       y2="518.20068"><stop
+         offset="0"
+         style="stop-color:#FFFFFF;stop-opacity:0.7"
+         id="stop6" /><stop
+         offset="0.9987"
+         style="stop-color:#D8D9D8;stop-opacity:0.7"
+         id="stop8" /></linearGradient><path
+       style="fill:url(#SVGID_1_);fill-rule:evenodd"
+       d="m 210.005,518.68 c -5.031,0 -9.124,-4.093 -9.124,-9.123 v -176.44 c 0,-5.031 4.093,-9.124 9.124,-9.124 h 176.441 c 5.03,0 9.123,4.093 9.123,9.124 v 176.44 c 0,5.03 -4.093,9.123 -9.123,9.123 H 210.005 z"
+       id="path10"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#d8d8d7"
+       d="m 386.446,324.492 c 4.755,0 8.624,3.868 8.624,8.624 v 176.441 c 0,4.755 -3.868,8.623 -8.624,8.623 h -176.44 c -4.755,0 -8.624,-3.868 -8.624,-8.623 V 333.116 c 0,-4.755 3.868,-8.624 8.624,-8.624 h 176.44 m 0,-1 h -176.44 c -5.315,0 -9.624,4.309 -9.624,9.624 v 176.441 c 0,5.315 4.309,9.623 9.624,9.623 h 176.441 c 5.315,0 9.624,-4.308 9.624,-9.623 V 333.116 c -0.001,-5.315 -4.31,-9.624 -9.625,-9.624 l 0,0 z"
+       id="path12"
+       inkscape:connector-curvature="0" /></g><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="M 43.775991,58.85 H 148.48299 c 3.322,0 6.015,2.693 6.015,6.015 v 81.128 c 0,3.322 -2.693,6.015 -6.015,6.015 H 43.775991 c -3.322,0 -6.015,-2.693 -6.015,-6.015 V 64.865 c 0,-3.323 2.693,-6.015 6.015,-6.015 z"
+     id="path14"
+     inkscape:connector-curvature="0" /><g
+     id="g16"
+     transform="translate(-200.38201,-323.492)"><linearGradient
+       id="SVGID_2_"
+       gradientUnits="userSpaceOnUse"
+       x1="296.51169"
+       y1="381.51559"
+       x2="296.51169"
+       y2="474.0015"><stop
+         offset="0.0032"
+         style="stop-color:#E6C71E"
+         id="stop19" /><stop
+         offset="1"
+         style="stop-color:#E1BB23"
+         id="stop21" /></linearGradient><path
+       style="fill:url(#SVGID_2_);fill-rule:evenodd"
+       d="m 244.158,474.999 c -3.041,0 -5.515,-2.474 -5.515,-5.515 v -82.699 c 0,-3.041 2.474,-5.515 5.515,-5.515 h 104.707 c 3.041,0 5.515,2.474 5.515,5.515 v 82.699 c 0,3.041 -2.474,5.515 -5.515,5.515 H 244.158 z"
+       id="path23"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#d6b429"
+       d="m 348.865,381.771 c 2.765,0 5.015,2.25 5.015,5.015 v 82.699 c 0,2.765 -2.25,5.015 -5.015,5.015 H 244.158 c -2.765,0 -5.015,-2.25 -5.015,-5.015 v -82.699 c 0,-2.765 2.25,-5.015 5.015,-5.015 h 104.707 m 0,-1 H 244.158 c -3.322,0 -6.015,2.693 -6.015,6.015 v 82.699 c 0,3.322 2.693,6.015 6.015,6.015 h 104.707 c 3.322,0 6.015,-2.693 6.015,-6.015 v -82.699 c 0,-3.322 -2.693,-6.015 -6.015,-6.015 l 0,0 z"
+       id="path25"
+       inkscape:connector-curvature="0" /></g><path
+     style="fill:#c9af2d;fill-rule:evenodd"
+     d="m 39.744991,60.112 -1.026,1.112 58.106,56.862 v -2.652 l -57.08,-55.322 z"
+     id="path27"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#9e8831;fill-rule:evenodd"
+     d="m 39.867991,60.294 0.589,-0.666 56.368,55.16 v 0.646 l -56.957,-55.14 z"
+     id="path29"
+     inkscape:connector-curvature="0" /><polygon
+     style="fill:#eecf32;fill-rule:evenodd"
+     points="239.625,471.413 240.152,471.976 296.94,421.926 296.94,420.907 "
+     id="polygon31"
+     transform="translate(-200.38201,-323.492)" /><path
+     style="fill:#c9af2d;fill-rule:evenodd"
+     d="m 97.159431,118.6434 56.403999,-56.915 -1.09844,-1.5594 -55.638999,55.265 0,2.652 z"
+     id="path33"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="cccccc" /><path
+     style="fill:#968330;fill-rule:evenodd"
+     d="m 96.824991,114.788 55.097999,-55.103 0.542,0.485 -55.638999,55.265 v -0.647 z"
+     id="path35"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#9e8831;fill-rule:evenodd"
+     d="m 148.48299,57.119 -104.706999,0 c -4.82917,1.06976 -6.015,3.82683 -6.015,7.746 0,-3.322 2.693,-6.015 6.015,-6.015 l 104.706999,0 c 3.322,0 6.015,2.693 6.015,6.015 l 0,-1.731 c 0,-3.322 -2.693,-6.015 -6.015,-6.015 z"
+     id="path37"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sccsscss" /><path
+     style="fill:#bba330;fill-rule:evenodd"
+     d="m 38.470991,146.961 c 0,0 0.246,0.5 0.772,0.959 l 57.316,-50.505 0.02,-1.375 -58.108,50.921 z"
+     id="path39"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#bba330;fill-rule:evenodd"
+     d="m 96.557991,95.891 v 1.524 l 55.750999,51.174 c 0.466,-0.33 0.768,-0.716 0.768,-0.716 L 96.557991,95.891 z"
+     id="path41"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#eecf32;fill-rule:evenodd"
+     d="M 152.30999,148.589 96.558991,97.415 v 0.761 l 55.114999,50.925 c 0.32,-0.151 0.213,-0.212 0.636,-0.512 z"
+     id="path43"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#ac9431;fill-rule:evenodd"
+     d="m 88.629991,88.999 c -3.192,1.17 -4.69,6.312 -6.235,7.829 -1.544,1.517 -4.703,1.544 -6.273,5.029 -1.57,3.485 1.75,4.183 1.675,7.319 -0.076,3.136 -2.91,3.923 -2.368,7.185 0.541,3.262 3.454,2.5 4.846,4.564 1.391,2.064 -0.81,5.496 2.281,6.831 3.091,1.335 5.185,-0.25 8.327,0.084 3.142,0.334 2.986,4.66 7.796,4.18 5.496999,-0.548 4.266999,-4.183 7.267999,-5.811 3.001,-1.628 6.925,1.166 8.397,-2.402 1.472,-3.568 -0.258,-5.944 0.469,-9.521 0.727,-3.577 4.949,-4.005 4.769,-7.767 -0.18,-3.762 -4.779,-6.555 -7.659,-7.681 -1.814,-0.709 -0.625,-7.017 -4.299,-8.084 -3.673,-1.067 -5.597,0.229 -10.023999,0.635 -4.428,0.407 -3.247,-4.488 -8.97,-2.39 z"
+     id="path45"
+     inkscape:connector-curvature="0" /><g
+     id="g47"
+     transform="translate(-200.38201,-323.492)"><linearGradient
+       id="SVGID_3_"
+       gradientUnits="userSpaceOnUse"
+       x1="297.85461"
+       y1="413.6799"
+       x2="297.85461"
+       y2="452.90948"><stop
+         offset="0"
+         style="stop-color:#F9F3D9"
+         id="stop50" /><stop
+         offset="1"
+         style="stop-color:#EAE3CA"
+         id="stop52" /></linearGradient><path
+       style="fill:url(#SVGID_3_);fill-rule:evenodd"
+       d="m 298.342,453.3 c -2.136,0 -3.101,-1.126 -4.034,-2.215 -0.778,-0.908 -1.583,-1.848 -3.018,-2.001 -0.322,-0.034 -0.633,-0.049 -0.936,-0.049 -0.919,0 -1.754,0.136 -2.561,0.267 -0.764,0.124 -1.484,0.241 -2.238,0.241 -0.892,0 -1.693,-0.166 -2.52,-0.523 -1.686,-0.729 -1.654,-2.082 -1.617,-3.649 0.025,-1.077 0.051,-2.191 -0.556,-3.092 -0.607,-0.901 -1.469,-1.292 -2.303,-1.669 -1.183,-0.535 -2.205,-0.997 -2.503,-2.797 -0.275,-1.657 0.375,-2.643 1.063,-3.687 0.625,-0.949 1.272,-1.931 1.309,-3.452 0.034,-1.415 -0.597,-2.379 -1.154,-3.229 -0.744,-1.137 -1.387,-2.118 -0.542,-3.992 0.985,-2.186 2.632,-2.966 4.084,-3.653 0.806,-0.382 1.567,-0.742 2.136,-1.301 0.559,-0.549 1.086,-1.504 1.698,-2.61 1.089,-1.973 2.445,-4.427 4.448,-5.162 0.936,-0.343 1.715,-0.51 2.382,-0.51 1.299,0 1.967,0.656 2.675,1.35 0.759,0.745 1.619,1.589 3.318,1.589 0.167,0 0.344,-0.008 0.53,-0.025 1.51,-0.139 2.74,-0.381 3.824,-0.596 1.225,-0.242 2.282,-0.451 3.415,-0.451 0.894,0 1.749,0.127 2.693,0.402 2.02,0.587 2.468,2.9 2.862,4.941 0.291,1.5 0.542,2.794 1.414,3.136 2.703,1.057 7.325,3.818 7.5,7.46 0.092,1.901 -1.027,2.912 -2.212,3.982 -1.081,0.977 -2.199,1.986 -2.552,3.724 -0.326,1.603 -0.171,2.965 -0.021,4.281 0.189,1.669 0.369,3.246 -0.435,5.193 -0.609,1.478 -1.646,1.78 -3.018,1.78 -0.382,0 -0.779,-0.023 -1.184,-0.047 -0.431,-0.024 -0.869,-0.05 -1.309,-0.05 -1.16,0 -2.017,0.184 -2.774,0.595 -1.227,0.665 -1.782,1.648 -2.319,2.599 -0.832,1.471 -1.617,2.86 -4.854,3.183 -0.242,0.025 -0.472,0.037 -0.691,0.037 z"
+       id="path54"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#fffcf3"
+       d="m 291.481,410.466 c 1.197,0 1.8,0.593 2.499,1.279 0.793,0.778 1.692,1.661 3.493,1.661 0.175,0 0.359,-0.008 0.553,-0.026 1.523,-0.14 2.759,-0.384 3.849,-0.599 1.212,-0.239 2.258,-0.446 3.366,-0.446 0.869,0 1.703,0.125 2.623,0.392 1.873,0.544 2.306,2.778 2.688,4.749 0.305,1.572 0.568,2.93 1.568,3.321 2.647,1.035 7.173,3.725 7.341,7.24 0.085,1.784 -0.941,2.711 -2.13,3.785 -1.059,0.957 -2.26,2.041 -2.629,3.859 -0.334,1.642 -0.176,3.023 -0.024,4.36 0.186,1.636 0.362,3.181 -0.417,5.07 -0.558,1.354 -1.48,1.626 -2.787,1.626 -0.373,0 -0.76,-0.022 -1.17,-0.046 -0.43,-0.025 -0.874,-0.051 -1.323,-0.051 -1.204,0 -2.096,0.193 -2.893,0.625 -1.29,0.7 -1.863,1.714 -2.418,2.695 -0.833,1.474 -1.553,2.748 -4.661,3.058 -0.23,0.023 -0.455,0.035 -0.667,0.035 -2.022,0 -2.907,-1.033 -3.845,-2.128 -0.81,-0.946 -1.648,-1.923 -3.181,-2.087 -0.318,-0.034 -0.633,-0.05 -0.962,-0.05 -0.94,0 -1.784,0.137 -2.601,0.27 -0.753,0.122 -1.464,0.238 -2.198,0.238 -0.857,0 -1.626,-0.16 -2.421,-0.503 -1.457,-0.629 -1.507,-1.707 -1.466,-3.414 0.026,-1.116 0.053,-2.271 -0.598,-3.238 -0.647,-0.96 -1.582,-1.383 -2.408,-1.757 -1.164,-0.527 -2.083,-0.943 -2.359,-2.61 -0.259,-1.561 0.336,-2.463 1.025,-3.508 0.615,-0.933 1.312,-1.99 1.35,-3.584 0.036,-1.493 -0.618,-2.491 -1.195,-3.373 -0.733,-1.12 -1.312,-2.004 -0.524,-3.753 0.947,-2.102 2.48,-2.828 3.963,-3.53 0.826,-0.391 1.606,-0.76 2.205,-1.348 0.585,-0.575 1.121,-1.545 1.741,-2.668 1.069,-1.936 2.4,-4.346 4.315,-5.048 0.909,-0.334 1.66,-0.496 2.298,-0.496 m 0,-0.5 c -0.651,0 -1.451,0.152 -2.468,0.525 -3.192,1.17 -4.69,6.312 -6.235,7.829 -1.544,1.517 -4.703,1.544 -6.273,5.029 -1.57,3.485 1.75,4.183 1.675,7.319 -0.076,3.136 -2.91,3.923 -2.368,7.185 0.541,3.262 3.454,2.5 4.846,4.564 1.391,2.064 -0.81,5.496 2.281,6.831 0.947,0.409 1.801,0.544 2.619,0.544 1.587,0 3.044,-0.507 4.799,-0.507 0.294,0 0.597,0.014 0.91,0.048 2.977,0.317 2.994,4.217 7.079,4.217 0.226,0 0.465,-0.012 0.717,-0.037 5.497,-0.548 4.267,-4.183 7.268,-5.811 0.837,-0.454 1.747,-0.564 2.655,-0.564 0.853,0 1.704,0.097 2.493,0.097 1.382,0 2.574,-0.298 3.249,-1.935 1.472,-3.568 -0.258,-5.944 0.469,-9.521 0.727,-3.577 4.949,-4.005 4.769,-7.767 -0.18,-3.762 -4.779,-6.555 -7.659,-7.681 -1.814,-0.709 -0.625,-7.017 -4.299,-8.084 -1.027,-0.298 -1.917,-0.412 -2.763,-0.412 -2.181,0 -4.071,0.755 -7.261,1.047 -0.178,0.016 -0.347,0.024 -0.507,0.024 -3.128,0 -3.132,-2.939 -5.996,-2.94 l 0,0 z"
+       id="path56"
+       inkscape:connector-curvature="0" /></g><g
+     id="g58"
+     transform="translate(-200.38201,-323.492)"><path
+       style="fill:#2c2c2c"
+       d="m 295.754,427.07 c -0.707,0.492 -1.312,1.11 -1.816,1.854 -0.506,0.744 -0.9,1.554 -1.189,2.43 -0.287,0.876 -0.432,1.71 -0.432,2.502 0,1.008 0.289,1.842 0.863,2.502 0.576,0.66 1.32,0.99 2.232,0.99 0.793,0 1.523,-0.258 2.197,-0.774 0.67,-0.516 1.26,-1.163 1.764,-1.943 0.504,-0.78 0.9,-1.614 1.188,-2.502 0.288,-0.888 0.432,-1.704 0.432,-2.448 0,-0.433 -0.078,-0.852 -0.234,-1.26 -0.156,-0.408 -0.371,-0.762 -0.646,-1.062 -0.277,-0.3 -0.59,-0.546 -0.938,-0.738 -0.348,-0.191 -0.713,-0.288 -1.098,-0.288 -0.84,-0.001 -1.614,0.246 -2.323,0.737 z m 6.157,8.676 c -0.084,0.324 -0.125,0.618 -0.125,0.883 0,0.744 0.287,1.115 0.863,1.115 0.553,0 1.121,-0.252 1.711,-0.756 0.588,-0.504 1.121,-1.151 1.602,-1.943 0.479,-0.792 0.875,-1.68 1.188,-2.664 0.313,-0.984 0.469,-1.956 0.469,-2.916 0,-1.416 -0.271,-2.7 -0.811,-3.853 -0.541,-1.151 -1.266,-2.13 -2.178,-2.934 -0.912,-0.804 -1.951,-1.422 -3.115,-1.854 -1.164,-0.432 -2.381,-0.647 -3.652,-0.647 -1.537,0 -2.971,0.306 -4.303,0.918 -1.332,0.611 -2.49,1.446 -3.475,2.502 -0.984,1.057 -1.758,2.28 -2.322,3.672 -0.562,1.393 -0.846,2.88 -0.846,4.464 0,1.608 0.295,3.108 0.883,4.5 0.588,1.393 1.391,2.599 2.412,3.618 1.02,1.021 2.201,1.824 3.545,2.412 1.344,0.588 2.773,0.882 4.285,0.882 1.727,0 3.389,-0.396 4.986,-1.188 1.596,-0.792 2.908,-1.848 3.941,-3.168 h 2.268 c -0.576,1.009 -1.271,1.902 -2.088,2.683 -0.817,0.781 -1.709,1.439 -2.682,1.98 -0.973,0.54 -2.01,0.948 -3.115,1.225 -1.104,0.275 -2.23,0.414 -3.383,0.414 -1.896,0 -3.666,-0.349 -5.311,-1.044 -1.645,-0.696 -3.072,-1.65 -4.283,-2.862 -1.213,-1.212 -2.166,-2.64 -2.863,-4.284 -0.695,-1.644 -1.043,-3.426 -1.043,-5.346 0,-1.848 0.354,-3.582 1.062,-5.202 0.707,-1.62 1.668,-3.036 2.879,-4.248 1.213,-1.212 2.629,-2.166 4.248,-2.862 1.621,-0.695 3.342,-1.044 5.166,-1.044 1.656,0 3.229,0.276 4.717,0.828 1.488,0.553 2.789,1.314 3.906,2.286 1.115,0.972 1.998,2.137 2.645,3.492 0.648,1.355 0.973,2.85 0.973,4.481 0,1.561 -0.283,2.982 -0.846,4.267 -0.564,1.284 -1.266,2.382 -2.105,3.294 -0.842,0.912 -1.754,1.62 -2.736,2.124 -0.984,0.504 -1.896,0.756 -2.736,0.756 -0.625,0 -1.152,-0.192 -1.584,-0.576 -0.432,-0.384 -0.672,-0.972 -0.721,-1.764 h -0.107 c -0.553,0.624 -1.213,1.182 -1.98,1.674 -0.767,0.492 -1.596,0.738 -2.484,0.738 -0.768,0 -1.469,-0.15 -2.105,-0.45 -0.636,-0.3 -1.176,-0.702 -1.619,-1.206 -0.445,-0.504 -0.793,-1.104 -1.045,-1.8 -0.252,-0.696 -0.377,-1.44 -0.377,-2.232 0,-1.248 0.203,-2.484 0.611,-3.708 0.408,-1.224 0.979,-2.315 1.711,-3.276 0.73,-0.959 1.619,-1.739 2.662,-2.34 1.045,-0.6 2.203,-0.899 3.475,-0.899 0.84,0 1.621,0.222 2.34,0.666 0.721,0.444 1.283,1.206 1.693,2.286 l 0.826,-2.269 h 2.27 l -3.025,10.224 c -0.099,0.309 -0.188,0.628 -0.272,0.951 z"
+       id="path60"
+       inkscape:connector-curvature="0" /></g><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="M 148.48299,149.755 H 43.775991 c -3.322,0 -6.015,-2.693 -6.015,-6.015 v 2.253 c 0,3.322 2.693,6.015 6.015,6.015 H 148.48299 c 3.322,0 6.015,-2.693 6.015,-6.015 v -2.253 c 0,3.322 -2.693,6.015 -6.015,6.015 z"
+     id="path62"
+     inkscape:connector-curvature="0" /></svg>
\ No newline at end of file
diff --git a/resources/images/Message.svg b/resources/images/Message.svg
new file mode 100755 (executable)
index 0000000..623ea41
--- /dev/null
@@ -0,0 +1,224 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 195.689 195.688"
+   xml:space="preserve"
+   inkscape:version="0.48.4 r9939"
+   width="100%"
+   height="100%"
+   sodipodi:docname="Message.svg"><metadata
+     id="metadata113"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs111" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1365"
+     inkscape:window-height="1008"
+     id="namedview109"
+     showgrid="false"
+     inkscape:zoom="6.342955"
+     inkscape:cx="93.708537"
+     inkscape:cy="72.329172"
+     inkscape:window-x="325"
+     inkscape:window-y="44"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="Layer_1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><g
+     id="g3"
+     transform="translate(-199.56101,-322.811)"><linearGradient
+       id="SVGID_1_"
+       gradientUnits="userSpaceOnUse"
+       x1="297.405"
+       y1="323.75299"
+       x2="297.405"
+       y2="517.51898"><stop
+         offset="0"
+         style="stop-color:#FFFFFF;stop-opacity:0.7"
+         id="stop6" /><stop
+         offset="0.9987"
+         style="stop-color:#D8D9D8;stop-opacity:0.7"
+         id="stop8" /></linearGradient><path
+       style="fill:url(#SVGID_1_);fill-rule:evenodd"
+       d="m 209.185,517.998 c -5.031,0 -9.124,-4.093 -9.124,-9.123 v -176.44 c 0,-5.031 4.093,-9.124 9.124,-9.124 h 176.44 c 5.031,0 9.124,4.093 9.124,9.124 v 176.44 c 0,5.03 -4.093,9.123 -9.124,9.123 h -176.44 z"
+       id="path10"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#d8d8d7"
+       d="m 385.625,323.811 c 4.755,0 8.624,3.868 8.624,8.624 v 176.441 c 0,4.755 -3.868,8.623 -8.624,8.623 h -176.44 c -4.755,0 -8.624,-3.868 -8.624,-8.623 V 332.434 c 0,-4.755 3.868,-8.624 8.624,-8.624 h 176.44 m 0,-0.999 h -176.44 c -5.315,0 -9.624,4.309 -9.624,9.624 v 176.441 c 0,5.315 4.309,9.623 9.624,9.623 h 176.441 c 5.315,0 9.624,-4.309 9.624,-9.623 V 332.434 c -10e-4,-5.314 -4.31,-9.623 -9.625,-9.623 l 0,0 z"
+       id="path12"
+       inkscape:connector-curvature="0" /></g><g
+     id="g14"
+     transform="translate(-199.56101,-322.811)"><linearGradient
+       id="SVGID_2_"
+       gradientUnits="userSpaceOnUse"
+       x1="296.19089"
+       y1="369.73291"
+       x2="296.19089"
+       y2="474.21371"><stop
+         offset="0"
+         style="stop-color:#329AC8"
+         id="stop17" /><stop
+         offset="1"
+         style="stop-color:#2884BC"
+         id="stop19" /></linearGradient><path
+       style="fill:url(#SVGID_2_);fill-rule:evenodd"
+       d="m 307.517,451.043 -0.539,-0.029 h -62.729 c -5.151,0 -9.342,-4.19 -9.342,-9.342 v -62.597 c 0,-5.151 4.191,-9.342 9.342,-9.342 h 103.884 c 5.151,0 9.342,4.191 9.342,9.342 v 62.597 c 0,5.151 -4.19,9.342 -9.342,9.342 h -13.09 l -0.145,0.091 -27.908,25.471 0.527,-25.533 z"
+       id="path21"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#327eab"
+       d="m 348.133,370.233 c 4.876,0 8.842,3.967 8.842,8.842 v 62.597 c 0,4.875 -3.966,8.842 -8.842,8.842 h -12.938 l -0.407,0.007 -0.286,0.261 -26.987,24.637 0.491,-23.859 -10e-4,-0.44 -0.294,-0.299 -0.314,-0.308 h -0.42 -62.728 c -4.875,0 -8.842,-3.966 -8.842,-8.842 v -62.597 c 0,-4.875 3.966,-8.842 8.842,-8.842 h 103.884 m 0,-0.999 H 244.249 c -5.436,0 -9.842,4.406 -9.842,9.842 v 62.597 c 0,5.436 4.406,9.842 9.842,9.842 h 62.728 c 0.016,0 0.029,0.013 0.028,0.029 l -0.538,26.121 c 0,0.017 0.014,0.029 0.029,0.029 0.007,0 0.013,-0.002 0.019,-0.008 l 28.66,-26.165 c 0.005,-0.005 0.012,-0.007 0.019,-0.007 h 12.938 c 5.436,0 9.842,-4.406 9.842,-9.842 v -62.597 c 0.001,-5.435 -4.406,-9.841 -9.841,-9.841 l 0,0 z"
+       id="path23"
+       inkscape:connector-curvature="0" /></g><g
+     id="g25"
+     transform="translate(-199.56101,-322.811)"><g
+       id="g27"><polygon
+         style="fill:#266583;fill-rule:evenodd"
+         points="306.996,452.599 306.984,452.599 306.466,477.73 306.479,477.719 "
+         id="polygon29" /></g><g
+       id="g31"><path
+         style="fill:#266583;fill-rule:evenodd"
+         d="m 348.133,369.233 -103.884,0 c -5.436,0 -9.842,4.406 -9.842,9.842 l 0,0 c 0,0.035 0.051,0.038 0.054,0.003 0.527,-4.888 4.687,-8.404 9.749,-8.404 l 103.912,0 c 8.6778,-0.3713 9.36903,6.45678 9.842,11.47667 0.36195,-7.49834 0.68242,-13.28604 -9.831,-12.91767 z"
+         id="path33"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cscccsccc" /></g></g><g
+     id="g35"
+     transform="translate(-199.56101,-322.811)"><g
+       id="g37"><path
+         style="fill:#e1dfe2;fill-rule:evenodd"
+         d="m 348.161,451.514 -12.967,0 c -0.007,0 -0.014,0.003 -0.019,0.007 l -28.687,26.19 -0.021,1.024 28.709,-26.209 c 0.005,-0.005 0.012,-0.007 0.019,-0.007 l 12.938,0 c 6.67403,-0.41947 9.842,-5.49 9.842,-10.819 0,5.42 -4.394,9.814 -9.814,9.814 z"
+         id="path39"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ssccccsccs" /></g><g
+       id="g41"><path
+         style="fill:#e1dfe2;fill-rule:evenodd"
+         d="M 307.006,451.514 H 244.22 c -5.42,0 -9.813,-4.394 -9.813,-9.813 v 0.977 c 0,5.436 4.406,9.842 9.842,9.842 h 62.737 l 0.02,-1.006 z"
+         id="path43"
+         inkscape:connector-curvature="0" /></g></g><g
+     id="g45"
+     transform="translate(-199.56101,-322.811)"><g
+       id="g47"><path
+         style="fill:#2f7496"
+         d="m 263.841,407.883 c 0.411,-1.172 1.001,-2.194 1.771,-3.066 0.77,-0.873 1.715,-1.558 2.836,-2.054 1.121,-0.496 2.383,-0.744 3.786,-0.744 1.42,0 2.686,0.248 3.799,0.744 1.112,0.496 2.053,1.181 2.823,2.054 0.77,0.872 1.36,1.895 1.771,3.066 0.411,1.173 0.616,2.443 0.616,3.812 0,1.334 -0.206,2.579 -0.616,3.734 -0.41,1.155 -1.001,2.16 -1.771,3.016 -0.77,0.856 -1.711,1.527 -2.823,2.015 -1.113,0.488 -2.379,0.732 -3.799,0.732 -1.403,0 -2.666,-0.244 -3.786,-0.732 -1.121,-0.487 -2.066,-1.158 -2.836,-2.015 -0.77,-0.855 -1.36,-1.86 -1.771,-3.016 -0.411,-1.156 -0.616,-2.4 -0.616,-3.734 0,-1.369 0.206,-2.639 0.616,-3.812 z m 3.684,6.057 c 0.18,0.728 0.466,1.383 0.86,1.964 0.393,0.582 0.907,1.049 1.54,1.399 0.633,0.351 1.403,0.525 2.31,0.525 0.907,0 1.677,-0.175 2.31,-0.525 0.633,-0.351 1.146,-0.817 1.54,-1.399 0.393,-0.581 0.68,-1.236 0.86,-1.964 0.18,-0.727 0.27,-1.476 0.27,-2.245 0,-0.805 -0.09,-1.583 -0.27,-2.336 -0.18,-0.753 -0.467,-1.425 -0.86,-2.015 -0.394,-0.591 -0.907,-1.062 -1.54,-1.412 -0.633,-0.351 -1.403,-0.526 -2.31,-0.526 -0.907,0 -1.677,0.176 -2.31,0.526 -0.633,0.351 -1.147,0.821 -1.54,1.412 -0.394,0.59 -0.68,1.262 -0.86,2.015 -0.18,0.753 -0.27,1.531 -0.27,2.336 0,0.77 0.09,1.519 0.27,2.245 z"
+         id="path49"
+         inkscape:connector-curvature="0" /></g><g
+       id="g51"><path
+         style="fill:#2f7496"
+         d="m 289.642,402.455 c 0.012,0 0.023,0.008 0.027,0.019 l 4.28,12.583 H 294 l 4.049,-12.583 c 0.004,-0.012 0.015,-0.02 0.027,-0.02 h 5.623 c 0.016,0 0.028,0.013 0.028,0.028 v 18.269 c 0,0.016 -0.013,0.028 -0.028,0.028 h -3.716 c -0.016,0 -0.028,-0.013 -0.028,-0.028 v -12.96 h -0.051 l -4.485,12.969 c -0.004,0.011 -0.015,0.019 -0.027,0.019 h -3.065 c -0.012,0 -0.023,-0.008 -0.027,-0.019 l -4.485,-12.84 h -0.051 v 12.831 c 0,0.016 -0.013,0.028 -0.028,0.028 h -3.717 c -0.016,0 -0.028,-0.013 -0.028,-0.028 v -18.269 c 0,-0.016 0.013,-0.028 0.028,-0.028 h 5.623 z"
+         id="path53"
+         inkscape:connector-curvature="0" /></g><g
+       id="g55"><path
+         style="fill:#2f7496"
+         d="m 318.128,420.64 c -0.873,0.368 -1.754,0.553 -2.644,0.553 -1.403,0 -2.666,-0.244 -3.786,-0.732 -1.121,-0.487 -2.066,-1.158 -2.836,-2.015 -0.77,-0.855 -1.36,-1.86 -1.771,-3.016 -0.411,-1.156 -0.616,-2.4 -0.616,-3.734 0,-1.369 0.205,-2.64 0.616,-3.812 0.411,-1.172 1.001,-2.194 1.771,-3.066 0.77,-0.873 1.715,-1.558 2.836,-2.054 1.121,-0.496 2.383,-0.744 3.786,-0.744 0.941,0 1.852,0.141 2.733,0.423 0.881,0.282 1.677,0.698 2.387,1.245 0.71,0.548 1.296,1.224 1.758,2.028 0.457,0.795 0.738,1.709 0.843,2.738 0.002,0.017 -0.012,0.033 -0.029,0.033 h -3.796 c -0.013,0 -0.024,-0.009 -0.027,-0.022 -0.241,-1.016 -0.701,-1.779 -1.381,-2.288 -0.685,-0.514 -1.515,-0.771 -2.49,-0.771 -0.907,0 -1.677,0.176 -2.31,0.526 -0.633,0.351 -1.147,0.821 -1.54,1.412 -0.394,0.59 -0.68,1.262 -0.86,2.015 -0.18,0.753 -0.27,1.531 -0.27,2.336 0,0.77 0.09,1.519 0.27,2.245 0.18,0.728 0.466,1.383 0.86,1.964 0.393,0.582 0.907,1.049 1.54,1.399 0.633,0.351 1.403,0.525 2.31,0.525 1.334,0 2.365,-0.337 3.093,-1.014 0.721,-0.67 1.143,-1.638 1.267,-2.905 0.002,-0.017 -0.012,-0.034 -0.029,-0.034 h -3.995 c -0.016,0 -0.028,-0.013 -0.028,-0.028 v -2.946 c 0,-0.016 0.013,-0.028 0.028,-0.028 h 7.644 c 0.016,0 0.028,0.013 0.028,0.028 v 9.85 c 0,0.016 -0.013,0.028 -0.028,0.028 h -2.515 c -0.014,0 -0.025,-0.01 -0.028,-0.023 l -0.406,-2.056 c -0.716,0.926 -1.512,1.572 -2.385,1.94 z"
+         id="path57"
+         inkscape:connector-curvature="0" /></g><g
+       id="g59"><path
+         style="fill:#2f7496"
+         d="m 330.577,416.857 v 3.896 c 0,0.016 -0.013,0.028 -0.028,0.028 h -3.973 c -0.016,0 -0.028,-0.013 -0.028,-0.028 v -3.896 c 0,-0.016 0.013,-0.028 0.028,-0.028 h 3.973 c 0.015,-0.001 0.028,0.012 0.028,0.028 z m -1.155,-1.569 h -1.773 c -0.014,0 -0.026,-0.011 -0.028,-0.025 l -0.972,-7.879 c 0,-0.001 0,-0.002 0,-0.004 v -4.898 c 0,-0.016 0.013,-0.028 0.028,-0.028 h 3.742 c 0.016,0 0.028,0.013 0.028,0.028 v 4.897 c 0,10e-4 0,0.002 0,0.004 l -0.998,7.879 c 0,0.015 -0.013,0.026 -0.027,0.026 z"
+         id="path61"
+         inkscape:connector-curvature="0" /></g></g><g
+     id="g63"
+     transform="translate(-199.56101,-322.811)"><g
+       id="g65"><linearGradient
+         id="SVGID_3_"
+         gradientUnits="userSpaceOnUse"
+         x1="272.23489"
+         y1="401.85071"
+         x2="272.23489"
+         y2="419.34131"><stop
+           offset="0"
+           style="stop-color:#E2EEF4"
+           id="stop68" /><stop
+           offset="1"
+           style="stop-color:#CDE5F3"
+           id="stop70" /></linearGradient><path
+         style="fill:url(#SVGID_3_)"
+         d="m 272.235,419.826 c -1.362,0 -2.603,-0.239 -3.686,-0.711 -1.084,-0.471 -2.009,-1.128 -2.75,-1.953 -0.745,-0.828 -1.324,-1.814 -1.722,-2.932 -0.399,-1.123 -0.601,-2.351 -0.601,-3.651 0,-1.334 0.203,-2.589 0.602,-3.73 0.398,-1.136 0.978,-2.14 1.723,-2.983 0.743,-0.842 1.668,-1.512 2.75,-1.991 1.083,-0.479 2.323,-0.723 3.685,-0.723 1.378,0 2.622,0.243 3.697,0.723 1.074,0.479 1.995,1.149 2.737,1.991 0.745,0.843 1.324,1.847 1.723,2.983 0.399,1.141 0.602,2.396 0.602,3.73 0,1.299 -0.203,2.527 -0.602,3.651 -0.398,1.118 -0.977,2.104 -1.722,2.932 -0.741,0.825 -1.662,1.482 -2.738,1.953 -1.076,0.471 -2.32,0.711 -3.698,0.711 z m 0,-15.786 c -0.945,0 -1.763,0.188 -2.431,0.558 -0.666,0.369 -1.214,0.871 -1.627,1.492 -0.408,0.61 -0.709,1.315 -0.895,2.095 -0.184,0.769 -0.276,1.574 -0.276,2.394 0,0.787 0.093,1.562 0.277,2.305 0.187,0.755 0.488,1.443 0.896,2.044 0.414,0.612 0.96,1.11 1.626,1.478 0.667,0.369 1.485,0.557 2.431,0.557 0.946,0 1.764,-0.188 2.431,-0.557 0.664,-0.368 1.211,-0.865 1.626,-1.478 0.408,-0.604 0.709,-1.292 0.896,-2.044 0.184,-0.743 0.277,-1.519 0.277,-2.305 0,-0.82 -0.093,-1.625 -0.276,-2.394 -0.186,-0.777 -0.487,-1.482 -0.895,-2.095 -0.415,-0.622 -0.962,-1.124 -1.627,-1.492 -0.67,-0.371 -1.488,-0.558 -2.433,-0.558 z"
+         id="path72"
+         inkscape:connector-curvature="0" /><path
+         style="fill:#f5fbfd"
+         d="m 272.235,401.402 c 1.343,0 2.552,0.236 3.595,0.701 1.041,0.465 1.934,1.113 2.652,1.928 0.723,0.819 1.286,1.795 1.674,2.901 0.39,1.115 0.588,2.342 0.588,3.647 0,1.27 -0.198,2.47 -0.587,3.567 -0.387,1.087 -0.949,2.046 -1.672,2.849 -0.717,0.798 -1.61,1.434 -2.652,1.891 -1.044,0.458 -2.254,0.69 -3.598,0.69 -1.328,0 -2.534,-0.232 -3.587,-0.691 -1.05,-0.457 -1.947,-1.093 -2.664,-1.891 -0.723,-0.803 -1.285,-1.761 -1.672,-2.849 -0.389,-1.096 -0.587,-2.296 -0.587,-3.567 0,-1.306 0.198,-2.534 0.588,-3.647 0.387,-1.106 0.951,-2.082 1.674,-2.901 0.718,-0.815 1.615,-1.463 2.664,-1.927 1.051,-0.465 2.257,-0.701 3.584,-0.701 m 0,15.811 c 0.989,0 1.848,-0.198 2.552,-0.588 0.699,-0.387 1.275,-0.911 1.712,-1.557 0.425,-0.628 0.738,-1.343 0.931,-2.124 0.189,-0.762 0.284,-1.558 0.284,-2.365 0,-0.84 -0.095,-1.665 -0.283,-2.452 -0.192,-0.806 -0.505,-1.538 -0.93,-2.176 -0.437,-0.655 -1.014,-1.184 -1.714,-1.572 -0.706,-0.391 -1.565,-0.589 -2.552,-0.589 -0.988,0 -1.847,0.198 -2.552,0.589 -0.702,0.388 -1.278,0.917 -1.714,1.572 -0.424,0.635 -0.737,1.367 -0.93,2.176 -0.188,0.787 -0.283,1.612 -0.283,2.452 0,0.807 0.096,1.603 0.284,2.365 0.194,0.784 0.507,1.499 0.931,2.124 0.436,0.646 1.012,1.169 1.712,1.557 0.704,0.39 1.562,0.588 2.552,0.588 m 0,-16.311 c -1.403,0 -2.666,0.248 -3.786,0.744 -1.121,0.496 -2.066,1.181 -2.836,2.054 -0.77,0.872 -1.36,1.895 -1.771,3.066 -0.411,1.173 -0.616,2.443 -0.616,3.812 0,1.334 0.205,2.579 0.616,3.734 0.411,1.155 1.001,2.16 1.771,3.016 0.77,0.856 1.715,1.527 2.836,2.015 1.121,0.488 2.383,0.732 3.786,0.732 1.42,0 2.686,-0.244 3.799,-0.732 1.112,-0.487 2.053,-1.158 2.823,-2.015 0.77,-0.855 1.36,-1.86 1.771,-3.016 0.411,-1.156 0.616,-2.4 0.616,-3.734 0,-1.369 -0.206,-2.64 -0.616,-3.812 -0.411,-1.172 -1.001,-2.194 -1.771,-3.066 -0.77,-0.873 -1.711,-1.558 -2.823,-2.054 -1.113,-0.496 -2.379,-0.744 -3.799,-0.744 l 0,0 z m 0,15.811 c -0.907,0 -1.677,-0.175 -2.31,-0.525 -0.633,-0.351 -1.147,-0.817 -1.54,-1.399 -0.394,-0.581 -0.68,-1.236 -0.86,-1.964 -0.18,-0.727 -0.27,-1.476 -0.27,-2.245 0,-0.805 0.09,-1.583 0.27,-2.336 0.18,-0.753 0.466,-1.425 0.86,-2.015 0.393,-0.591 0.907,-1.062 1.54,-1.412 0.633,-0.351 1.403,-0.526 2.31,-0.526 0.907,0 1.677,0.176 2.31,0.526 0.633,0.351 1.146,0.821 1.54,1.412 0.393,0.59 0.68,1.262 0.86,2.015 0.18,0.753 0.27,1.531 0.27,2.336 0,0.77 -0.09,1.519 -0.27,2.245 -0.18,0.728 -0.467,1.383 -0.86,1.964 -0.394,0.582 -0.907,1.049 -1.54,1.399 -0.633,0.35 -1.403,0.525 -2.31,0.525 l 0,0 z"
+         id="path74"
+         inkscape:connector-curvature="0" /></g><g
+       id="g76"><linearGradient
+         id="SVGID_4_"
+         gradientUnits="userSpaceOnUse"
+         x1="293.85941"
+         y1="401.86169"
+         x2="293.85941"
+         y2="419.33069"><stop
+           offset="0"
+           style="stop-color:#E2EEF4"
+           id="stop79" /><stop
+           offset="1"
+           style="stop-color:#CDE5F3"
+           id="stop81" /></linearGradient><polygon
+         style="fill:url(#SVGID_4_)"
+         points="299.668,406.595 295.234,419.415 292.484,419.415 287.993,406.555 287.565,406.555 287.514,406.805 287.514,419.415 284.24,419.415 284.24,401.588 289.483,401.588 293.77,414.191 294.131,414.191 294.238,414.018 298.238,401.588 303.479,401.588 303.479,419.415 300.205,419.415 300.205,406.426 299.777,406.426 "
+         id="polygon83" /><path
+         style="fill:#f5fbfd"
+         d="m 303.228,401.839 v 17.326 h -2.773 v -12.488 -0.5 h -0.5 -0.051 -0.356 l -0.116,0.337 -4.375,12.652 h -2.395 l -4.375,-12.524 -0.117,-0.335 h -0.355 -0.051 -0.5 v 0.5 12.359 h -2.773 V 401.84 h 4.814 l 4.171,12.264 0.115,0.339 h 0.358 0.051 0.364 l 0.112,-0.347 3.944,-12.256 h 4.808 m 0.472,-0.501 h -5.623 c -0.012,0 -0.023,0.008 -0.027,0.02 L 294,413.941 h -0.051 l -4.28,-12.583 c -0.004,-0.012 -0.015,-0.019 -0.027,-0.019 h -5.624 c -0.016,0 -0.028,0.013 -0.028,0.028 v 18.269 c 0,0.016 0.013,0.028 0.028,0.028 h 3.717 c 0.016,0 0.028,-0.013 0.028,-0.028 v -12.831 h 0.051 l 4.485,12.84 c 0.004,0.011 0.015,0.019 0.027,0.019 h 3.065 c 0.012,0 0.023,-0.008 0.027,-0.019 l 4.485,-12.969 h 0.051 v 12.96 c 0,0.016 0.013,0.028 0.028,0.028 h 3.716 c 0.016,0 0.028,-0.013 0.028,-0.028 v -18.269 c 0.002,-0.016 -0.01,-0.028 -0.026,-0.028 l 0,0 z"
+         id="path85"
+         inkscape:connector-curvature="0" /></g><g
+       id="g87"><linearGradient
+         id="SVGID_5_"
+         gradientUnits="userSpaceOnUse"
+         x1="314.98441"
+         y1="401.85071"
+         x2="314.98441"
+         y2="419.34131"><stop
+           offset="0"
+           style="stop-color:#E2EEF4"
+           id="stop90" /><stop
+           offset="1"
+           style="stop-color:#CDE5F3"
+           id="stop92" /></linearGradient><path
+         style="fill:url(#SVGID_5_)"
+         d="m 315.484,419.826 c -1.362,0 -2.603,-0.239 -3.687,-0.711 -1.084,-0.471 -2.009,-1.128 -2.75,-1.953 -0.744,-0.826 -1.323,-1.813 -1.722,-2.933 -0.398,-1.123 -0.601,-2.351 -0.601,-3.65 0,-1.334 0.202,-2.589 0.602,-3.73 0.398,-1.137 0.979,-2.141 1.723,-2.983 0.742,-0.842 1.667,-1.512 2.75,-1.991 1.083,-0.479 2.323,-0.723 3.685,-0.723 0.912,0 1.806,0.138 2.657,0.411 0.847,0.271 1.624,0.676 2.312,1.205 0.681,0.525 1.25,1.183 1.693,1.955 0.401,0.698 0.664,1.503 0.783,2.397 h -3.374 c -0.265,-0.985 -0.746,-1.746 -1.431,-2.26 -0.726,-0.544 -1.614,-0.82 -2.641,-0.82 -0.945,0 -1.763,0.188 -2.431,0.558 -0.667,0.369 -1.214,0.871 -1.627,1.493 -0.408,0.609 -0.709,1.314 -0.896,2.095 -0.184,0.769 -0.276,1.574 -0.276,2.394 0,0.787 0.093,1.562 0.276,2.305 0.188,0.755 0.488,1.443 0.896,2.044 0.413,0.612 0.96,1.109 1.626,1.478 0.667,0.369 1.484,0.557 2.431,0.557 1.395,0 2.492,-0.364 3.263,-1.081 0.764,-0.71 1.217,-1.741 1.347,-3.063 l 0.011,-0.109 -0.081,-0.106 -0.074,-0.083 -0.134,-0.01 h -3.773 v -2.503 h 7.201 v 9.407 h -2.111 l -0.477,-2.416 -0.336,0.433 c -0.689,0.886 -1.459,1.512 -2.287,1.86 -0.839,0.353 -1.695,0.533 -2.547,0.533 z"
+         id="path94"
+         inkscape:connector-curvature="0" /><path
+         style="fill:#f5fbfd"
+         d="m 315.485,401.402 c 0.886,0 1.754,0.134 2.581,0.399 0.819,0.262 1.571,0.654 2.234,1.165 0.655,0.505 1.203,1.138 1.63,1.882 0.342,0.596 0.58,1.274 0.709,2.022 h -2.895 c -0.289,-0.953 -0.782,-1.695 -1.469,-2.21 -0.77,-0.578 -1.708,-0.871 -2.79,-0.871 -0.988,0 -1.847,0.198 -2.552,0.589 -0.702,0.388 -1.278,0.917 -1.714,1.572 -0.424,0.635 -0.737,1.367 -0.93,2.176 -0.188,0.787 -0.283,1.612 -0.283,2.452 0,0.807 0.096,1.603 0.284,2.365 0.194,0.784 0.507,1.499 0.931,2.124 0.436,0.646 1.012,1.169 1.712,1.557 0.704,0.39 1.563,0.588 2.552,0.588 1.46,0 2.615,-0.386 3.433,-1.147 0.809,-0.752 1.288,-1.836 1.425,-3.223 l 0.013,-0.244 -0.149,-0.164 -0.17,-0.174 h -0.221 -3.523 v -2.003 h 6.701 v 8.907 h -1.656 l -0.331,-1.676 -0.212,-1.075 -0.673,0.865 c -0.663,0.852 -1.398,1.452 -2.187,1.784 -0.807,0.341 -1.631,0.513 -2.449,0.513 -1.328,0 -2.534,-0.232 -3.587,-0.691 -1.05,-0.457 -1.947,-1.093 -2.664,-1.891 -0.723,-0.803 -1.285,-1.761 -1.672,-2.849 -0.389,-1.096 -0.587,-2.296 -0.587,-3.567 0,-1.306 0.198,-2.534 0.588,-3.647 0.387,-1.106 0.951,-2.082 1.674,-2.901 0.718,-0.815 1.615,-1.463 2.664,-1.927 1.05,-0.464 2.256,-0.7 3.583,-0.7 m 0,-0.5 c -1.403,0 -2.666,0.248 -3.786,0.744 -1.121,0.496 -2.066,1.181 -2.836,2.054 -0.77,0.872 -1.36,1.895 -1.771,3.066 -0.411,1.173 -0.616,2.443 -0.616,3.812 0,1.334 0.205,2.579 0.616,3.734 0.411,1.155 1.001,2.16 1.771,3.016 0.77,0.856 1.715,1.527 2.836,2.015 1.121,0.488 2.383,0.732 3.786,0.732 0.889,0 1.771,-0.185 2.644,-0.553 0.873,-0.367 1.668,-1.014 2.387,-1.938 l 0.406,2.056 c 0.003,0.013 0.014,0.023 0.028,0.023 h 2.515 c 0.016,0 0.028,-0.013 0.028,-0.028 v -9.85 c 0,-0.016 -0.013,-0.028 -0.028,-0.028 h -7.644 c -0.016,0 -0.028,0.013 -0.028,0.028 v 2.946 c 0,0.016 0.013,0.028 0.028,0.028 h 3.995 c 0.017,0 0.031,0.016 0.029,0.034 -0.124,1.267 -0.547,2.235 -1.267,2.905 -0.728,0.677 -1.758,1.014 -3.093,1.014 -0.907,0 -1.677,-0.175 -2.31,-0.525 -0.633,-0.351 -1.147,-0.817 -1.54,-1.399 -0.394,-0.581 -0.68,-1.236 -0.86,-1.964 -0.18,-0.727 -0.27,-1.476 -0.27,-2.245 0,-0.805 0.09,-1.583 0.27,-2.336 0.18,-0.753 0.466,-1.425 0.86,-2.015 0.393,-0.591 0.907,-1.062 1.54,-1.412 0.633,-0.351 1.403,-0.526 2.31,-0.526 0.975,0 1.805,0.257 2.49,0.771 0.679,0.509 1.139,1.272 1.381,2.288 0.003,0.012 0.014,0.022 0.027,0.022 h 3.796 c 0.017,0 0.031,-0.016 0.029,-0.033 -0.105,-1.029 -0.386,-1.943 -0.843,-2.738 -0.462,-0.805 -1.048,-1.48 -1.758,-2.028 -0.71,-0.547 -1.506,-0.963 -2.387,-1.245 -0.881,-0.282 -1.794,-0.425 -2.735,-0.425 l 0,0 z"
+         id="path96"
+         inkscape:connector-curvature="0" /></g><g
+       id="g98"><linearGradient
+         id="SVGID_6_"
+         gradientUnits="userSpaceOnUse"
+         x1="328.56149"
+         y1="401.86169"
+         x2="328.56149"
+         y2="419.33069"><stop
+           offset="0"
+           style="stop-color:#E2EEF4"
+           id="stop101" /><stop
+           offset="1"
+           style="stop-color:#CDE5F3"
+           id="stop103" /></linearGradient><path
+         style="fill:url(#SVGID_6_)"
+         d="m 326.797,419.415 v -3.453 h 3.529 v 3.453 h -3.529 z m 1.048,-5.494 -0.947,-7.684 0.002,-4.649 h 3.299 v 4.676 l -0.972,7.657 h -1.382 z"
+         id="path105"
+         inkscape:connector-curvature="0" /><path
+         style="fill:#f5fbfd"
+         d="m 329.948,401.839 v 4.396 l -0.942,7.437 h -0.94 l -0.917,-7.436 v -4.397 h 2.799 m 0.129,14.373 v 2.953 h -3.03 v -2.953 h 3.03 m 0.343,-14.873 h -3.742 c -0.016,0 -0.028,0.013 -0.028,0.028 v 4.898 c 0,0.001 0,0.002 0,0.003 l 0.972,7.879 c 0.002,0.014 0.014,0.025 0.028,0.025 h 1.773 c 0.014,0 0.026,-0.011 0.028,-0.025 l 0.998,-7.879 c 0,-10e-4 0,-0.002 0,-0.004 v -4.897 c -0.001,-0.016 -0.014,-0.028 -0.029,-0.028 l 0,0 z m 0.128,14.373 h -3.973 c -0.016,0 -0.028,0.013 -0.028,0.028 v 3.896 c 0,0.016 0.013,0.028 0.028,0.028 h 3.973 c 0.016,0 0.028,-0.013 0.028,-0.028 v -3.896 c 10e-4,-0.016 -0.012,-0.028 -0.028,-0.028 l 0,0 z"
+         id="path107"
+         inkscape:connector-curvature="0" /></g></g></svg>
\ No newline at end of file
diff --git a/resources/images/Phone.svg b/resources/images/Phone.svg
new file mode 100755 (executable)
index 0000000..33bb355
--- /dev/null
@@ -0,0 +1,447 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 195.689 195.688"
+   xml:space="preserve"
+   inkscape:version="0.48.4 r9939"
+   width="100%"
+   height="100%"
+   sodipodi:docname="Phone.svg"><metadata
+     id="metadata203"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs201" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="919"
+     inkscape:window-height="776"
+     id="namedview199"
+     showgrid="false"
+     inkscape:zoom="25.37182"
+     inkscape:cx="42.537767"
+     inkscape:cy="132.91916"
+     inkscape:window-x="237"
+     inkscape:window-y="230"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="Layer_1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><g
+     id="g3"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_1_"
+       gradientUnits="userSpaceOnUse"
+       x1="297.405"
+       y1="324.43469"
+       x2="297.405"
+       y2="518.20068"><stop
+         offset="0"
+         style="stop-color:#FFFFFF;stop-opacity:0.7"
+         id="stop6" /><stop
+         offset="0.9987"
+         style="stop-color:#D8D9D8;stop-opacity:0.7"
+         id="stop8" /></linearGradient><path
+       style="fill:url(#SVGID_1_);fill-rule:evenodd"
+       d="m 209.185,518.68 c -5.031,0 -9.124,-4.093 -9.124,-9.123 v -176.44 c 0,-5.031 4.093,-9.124 9.124,-9.124 h 176.44 c 5.031,0 9.124,4.093 9.124,9.124 v 176.44 c 0,5.03 -4.093,9.123 -9.124,9.123 h -176.44 z"
+       id="path10"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#d8d8d7"
+       d="m 385.625,324.492 c 4.755,0 8.624,3.868 8.624,8.624 v 176.441 c 0,4.755 -3.868,8.623 -8.624,8.623 h -176.44 c -4.755,0 -8.624,-3.868 -8.624,-8.623 V 333.116 c 0,-4.755 3.868,-8.624 8.624,-8.624 h 176.44 m 0,-1 h -176.44 c -5.315,0 -9.624,4.309 -9.624,9.624 v 176.441 c 0,5.315 4.309,9.623 9.624,9.623 h 176.441 c 5.315,0 9.624,-4.308 9.624,-9.623 V 333.116 c -10e-4,-5.315 -4.31,-9.624 -9.625,-9.624 l 0,0 z"
+       id="path12"
+       inkscape:connector-curvature="0" /></g><g
+     id="g14"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_2_"
+       gradientUnits="userSpaceOnUse"
+       x1="297.5188"
+       y1="379.46899"
+       x2="297.5188"
+       y2="476.5372"><stop
+         offset="0"
+         style="stop-color:#2D8F57"
+         id="stop17" /><stop
+         offset="1"
+         style="stop-color:#247746"
+         id="stop19" /></linearGradient><path
+       style="fill:url(#SVGID_2_);fill-rule:evenodd"
+       d="m 323.719,412.993 v -18.74 H 271.4 v 18.74 H 240.862 V 392.51 l 0.011,-0.25 v -1.15 c 0,-7.968 4.717,-11.841 14.421,-11.841 h 84.879 c 9.554,0 14.003,4.035 14.003,12.698 v 2.287 h -0.103 v 18.74 h -30.354 z"
+       id="path21"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#247746"
+       d="m 340.172,379.518 c 9.383,0 13.753,3.956 13.753,12.448 v 2.037 h -0.102 v 0.5 18.24 h -29.855 v -18.24 -0.5 h -0.5 -51.82 -0.5 v 0.5 18.24 H 241.11 V 392.76 h 0.012 v -0.5 -1.15 c 0,-7.799 4.635,-11.591 14.171,-11.591 h 84.879 m 0,-0.501 c -21.886,0 -63.476,0 -84.878,0 -10.194,0 -14.671,4.359 -14.671,12.091 0,0.439 0,0.816 0,1.15 h -0.012 v 20.984 h 31.038 v -18.74 h 51.82 v 18.74 h 30.855 v -18.74 h 0.102 c 0,0 0,-1.02 0,-2.537 0,-7.571 -3.316,-12.948 -14.254,-12.948 l 0,0 z"
+       id="path23"
+       inkscape:connector-curvature="0" /></g><g
+     id="g25"
+     transform="translate(-199.56101,-323.492)"><g
+       id="g27"><path
+         style="fill:#96baa4;fill-rule:evenodd"
+         d="m 240.623,392.26 h -0.012 v 1 h 0.012 c 0,-0.294 0,-0.628 0,-1 z"
+         id="path29"
+         inkscape:connector-curvature="0" /></g><g
+       id="g31"><path
+         style="fill:#1e6035;fill-rule:evenodd"
+         d="m 340.172,379.018 c -21.886,0 -63.476,0 -84.878,0 -10.56705,0.0408 -15.02572,4.86892 -14.671,13.091 0,-7.732 4.477,-11.901 14.671,-11.901 21.403,0 62.993,-2.1e-4 84.878,0 9.26381,0.32125 14.05593,7.72823 14.253,11.759 10e-4,-7.572 -3.315,-12.949 -14.253,-12.949 z"
+         id="path33"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="sccsccs" /></g></g><g
+     id="g35"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_3_"
+       gradientUnits="userSpaceOnUse"
+       x1="297.4675"
+       y1="379.59189"
+       x2="297.4675"
+       y2="477.47699"><stop
+         offset="0"
+         style="stop-color:#2D8F57"
+         id="stop38" /><stop
+         offset="1"
+         style="stop-color:#247746"
+         id="stop40" /></linearGradient><path
+       style="fill:url(#SVGID_3_);fill-rule:evenodd"
+       d="m 240.862,477.046 c 0.036,-21.582 4.705,-41.18 13.878,-58.254 h 21.99 v -20.309 h 11.143 v 10.237 h 19.348 v -10.237 h 11.473 v 20.309 h 21.113 c 6.505,12.096 14.218,31.972 14.267,58.254 H 240.862 z"
+       id="path42"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#247746"
+       d="m 318.443,398.734 v 19.808 0.5 h 0.5 20.714 c 6.456,12.045 14.069,31.742 14.165,57.754 h -112.71 c 0.071,-21.386 4.706,-40.813 13.777,-57.754 h 21.59 0.5 v -0.5 -19.808 h 10.643 v 9.737 0.5 h 0.5 18.848 0.5 v -0.5 -9.737 h 10.973 m 0.5,-0.5 h -11.972 v 10.237 H 288.123 V 398.234 H 276.48 v 20.308 c 0,0 -11.825,0 -21.889,0 -7.057,13.092 -13.979,32.586 -13.979,58.754 43.235,0 77.889,0 113.712,0 0,-25.693 -7.176,-45.427 -14.367,-58.754 -9.858,0 -21.013,0 -21.013,0 v -20.308 l -0.001,0 z"
+       id="path44"
+       inkscape:connector-curvature="0" /></g><g
+     id="g46"
+     transform="translate(-199.56101,-323.492)"><path
+       style="fill:#1e6035;fill-rule:evenodd"
+       d="m 272.181,429.65 h 13.338 v 7.738 h -13.338 v -7.738 z"
+       id="path48"
+       inkscape:connector-curvature="0" /></g><g
+     id="g50"
+     transform="translate(-199.56101,-323.492)"><path
+       style="fill:#1e6035;fill-rule:evenodd"
+       d="m 290.07,429.65 h 13.338 v 7.738 H 290.07 v -7.738 z"
+       id="path52"
+       inkscape:connector-curvature="0" /></g><g
+     id="g54"
+     transform="translate(-199.56101,-323.492)"><path
+       style="fill:#1e6035;fill-rule:evenodd"
+       d="m 307.959,429.65 h 13.338 v 7.738 h -13.338 v -7.738 z"
+       id="path56"
+       inkscape:connector-curvature="0" /></g><g
+     id="g58"
+     transform="translate(-199.56101,-323.492)"><path
+       style="fill:#1e6035;fill-rule:evenodd"
+       d="m 272.181,441.099 h 13.338 v 7.738 h -13.338 v -7.738 z"
+       id="path60"
+       inkscape:connector-curvature="0" /></g><g
+     id="g62"
+     transform="translate(-199.56101,-323.492)"><path
+       style="fill:#1e6035;fill-rule:evenodd"
+       d="m 290.07,441.099 h 13.338 v 7.738 H 290.07 v -7.738 z"
+       id="path64"
+       inkscape:connector-curvature="0" /></g><g
+     id="g66"
+     transform="translate(-199.56101,-323.492)"><path
+       style="fill:#1e6035;fill-rule:evenodd"
+       d="m 307.959,441.099 h 13.338 v 7.738 h -13.338 v -7.738 z"
+       id="path68"
+       inkscape:connector-curvature="0" /></g><g
+     id="g70"
+     transform="translate(-199.56101,-323.492)"><path
+       style="fill:#1e6035;fill-rule:evenodd"
+       d="m 272.181,452.548 h 13.338 v 7.738 h -13.338 v -7.738 z"
+       id="path72"
+       inkscape:connector-curvature="0" /></g><g
+     id="g74"
+     transform="translate(-199.56101,-323.492)"><path
+       style="fill:#1e6035;fill-rule:evenodd"
+       d="m 290.07,452.548 h 13.338 v 7.738 H 290.07 v -7.738 z"
+       id="path76"
+       inkscape:connector-curvature="0" /></g><g
+     id="g78"
+     transform="translate(-199.56101,-323.492)"><path
+       style="fill:#1e6035;fill-rule:evenodd"
+       d="m 307.959,452.548 h 13.338 v 7.738 h -13.338 v -7.738 z"
+       id="path80"
+       inkscape:connector-curvature="0" /></g><g
+     id="g82"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_4_"
+       gradientUnits="userSpaceOnUse"
+       x1="278.8501"
+       y1="429.478"
+       x2="278.8501"
+       y2="455.63269"><stop
+         offset="0"
+         style="stop-color:#ADCBB8"
+         id="stop85" /><stop
+         offset="1"
+         style="stop-color:#96BAA4"
+         id="stop87" /></linearGradient><rect
+       x="272.681"
+       y="429.14999"
+       style="fill:url(#SVGID_4_);fill-rule:evenodd"
+       width="12.338"
+       height="6.7379999"
+       id="rect89" /><path
+       style="fill:#c3dccb"
+       d="m 284.519,429.65 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z"
+       id="path91"
+       inkscape:connector-curvature="0" /></g><g
+     id="g93"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_5_"
+       gradientUnits="userSpaceOnUse"
+       x1="296.73929"
+       y1="429.478"
+       x2="296.73929"
+       y2="455.63269"><stop
+         offset="0"
+         style="stop-color:#ADCBB8"
+         id="stop96" /><stop
+         offset="1"
+         style="stop-color:#96BAA4"
+         id="stop98" /></linearGradient><rect
+       x="290.57001"
+       y="429.14999"
+       style="fill:url(#SVGID_5_);fill-rule:evenodd"
+       width="12.338"
+       height="6.7379999"
+       id="rect100" /><path
+       style="fill:#c3dccb"
+       d="m 302.408,429.65 v 5.738 H 291.07 v -5.738 h 11.338 m 1,-1 H 290.07 v 7.738 h 13.338 v -7.738 l 0,0 z"
+       id="path102"
+       inkscape:connector-curvature="0" /></g><g
+     id="g104"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_6_"
+       gradientUnits="userSpaceOnUse"
+       x1="314.6279"
+       y1="429.478"
+       x2="314.6279"
+       y2="455.63269"><stop
+         offset="0"
+         style="stop-color:#ADCBB8"
+         id="stop107" /><stop
+         offset="1"
+         style="stop-color:#96BAA4"
+         id="stop109" /></linearGradient><rect
+       x="308.45901"
+       y="429.14999"
+       style="fill:url(#SVGID_6_);fill-rule:evenodd"
+       width="12.338"
+       height="6.7379999"
+       id="rect111" /><path
+       style="fill:#c3dccb"
+       d="m 320.297,429.65 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z"
+       id="path113"
+       inkscape:connector-curvature="0" /></g><g
+     id="g115"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_7_"
+       gradientUnits="userSpaceOnUse"
+       x1="278.8501"
+       y1="430.95789"
+       x2="278.8501"
+       y2="457.11221"><stop
+         offset="0"
+         style="stop-color:#ADCBB8"
+         id="stop118" /><stop
+         offset="1"
+         style="stop-color:#96BAA4"
+         id="stop120" /></linearGradient><rect
+       x="272.681"
+       y="440.60001"
+       style="fill:url(#SVGID_7_);fill-rule:evenodd"
+       width="12.338"
+       height="6.7379999"
+       id="rect122" /><path
+       style="fill:#c3dccb"
+       d="m 284.519,441.099 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z"
+       id="path124"
+       inkscape:connector-curvature="0" /></g><g
+     id="g126"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_8_"
+       gradientUnits="userSpaceOnUse"
+       x1="296.73929"
+       y1="430.95789"
+       x2="296.73929"
+       y2="457.11221"><stop
+         offset="0"
+         style="stop-color:#ADCBB8"
+         id="stop129" /><stop
+         offset="1"
+         style="stop-color:#96BAA4"
+         id="stop131" /></linearGradient><rect
+       x="290.57001"
+       y="440.60001"
+       style="fill:url(#SVGID_8_);fill-rule:evenodd"
+       width="12.338"
+       height="6.7379999"
+       id="rect133" /><path
+       style="fill:#c3dccb"
+       d="m 302.408,441.099 v 5.738 H 291.07 v -5.738 h 11.338 m 1,-1 H 290.07 v 7.738 h 13.338 v -7.738 l 0,0 z"
+       id="path135"
+       inkscape:connector-curvature="0" /></g><g
+     id="g137"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_9_"
+       gradientUnits="userSpaceOnUse"
+       x1="314.6279"
+       y1="430.95789"
+       x2="314.6279"
+       y2="457.11221"><stop
+         offset="0"
+         style="stop-color:#ADCBB8"
+         id="stop140" /><stop
+         offset="1"
+         style="stop-color:#96BAA4"
+         id="stop142" /></linearGradient><rect
+       x="308.45901"
+       y="440.60001"
+       style="fill:url(#SVGID_9_);fill-rule:evenodd"
+       width="12.338"
+       height="6.7379999"
+       id="rect144" /><path
+       style="fill:#c3dccb"
+       d="m 320.297,441.099 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z"
+       id="path146"
+       inkscape:connector-curvature="0" /></g><g
+     id="g148"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_10_"
+       gradientUnits="userSpaceOnUse"
+       x1="278.8501"
+       y1="432.43359"
+       x2="278.8501"
+       y2="458.5921"><stop
+         offset="0"
+         style="stop-color:#ADCBB8"
+         id="stop151" /><stop
+         offset="1"
+         style="stop-color:#96BAA4"
+         id="stop153" /></linearGradient><rect
+       x="272.681"
+       y="452.048"
+       style="fill:url(#SVGID_10_);fill-rule:evenodd"
+       width="12.338"
+       height="6.7389998"
+       id="rect155" /><path
+       style="fill:#c3dccb"
+       d="m 284.519,452.548 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z"
+       id="path157"
+       inkscape:connector-curvature="0" /></g><g
+     id="g159"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_11_"
+       gradientUnits="userSpaceOnUse"
+       x1="296.73929"
+       y1="432.43359"
+       x2="296.73929"
+       y2="458.5921"><stop
+         offset="0"
+         style="stop-color:#ADCBB8"
+         id="stop162" /><stop
+         offset="1"
+         style="stop-color:#96BAA4"
+         id="stop164" /></linearGradient><rect
+       x="290.57001"
+       y="452.048"
+       style="fill:url(#SVGID_11_);fill-rule:evenodd"
+       width="12.338"
+       height="6.7389998"
+       id="rect166" /><path
+       style="fill:#c3dccb"
+       d="m 302.408,452.548 v 5.738 H 291.07 v -5.738 h 11.338 m 1,-1 H 290.07 v 7.738 h 13.338 v -7.738 l 0,0 z"
+       id="path168"
+       inkscape:connector-curvature="0" /></g><g
+     id="g170"
+     transform="translate(-199.56101,-323.492)"><linearGradient
+       id="SVGID_12_"
+       gradientUnits="userSpaceOnUse"
+       x1="314.6279"
+       y1="432.43359"
+       x2="314.6279"
+       y2="458.5921"><stop
+         offset="0"
+         style="stop-color:#ADCBB8"
+         id="stop173" /><stop
+         offset="1"
+         style="stop-color:#96BAA4"
+         id="stop175" /></linearGradient><rect
+       x="308.45901"
+       y="452.048"
+       style="fill:url(#SVGID_12_);fill-rule:evenodd"
+       width="12.338"
+       height="6.7389998"
+       id="rect177" /><path
+       style="fill:#c3dccb"
+       d="m 320.297,452.548 v 5.738 h -11.338 v -5.738 h 11.338 m 1,-1 h -13.338 v 7.738 h 13.338 v -7.738 l 0,0 z"
+       id="path179"
+       inkscape:connector-curvature="0" /></g><rect
+     x="41.050991"
+     y="153.80399"
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     width="113.712"
+     height="1.527"
+     id="rect181" /><rect
+     x="41.050991"
+     y="89.236"
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     width="31.038"
+     height="1.166"
+     id="rect183" /><rect
+     x="71.567986"
+     y="70.518013"
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     width="52.827999"
+     height="1.166"
+     id="rect185" /><rect
+     x="76.918999"
+     y="74.742012"
+     style="fill:#1e6035;fill-rule:evenodd"
+     width="11.643"
+     height="1.166"
+     id="rect187" /><polygon
+     style="fill:#1e6035;fill-rule:evenodd"
+     points="277.05,418.542 277.05,419.708 254.005,419.708 254.591,418.542 "
+     id="polygon189"
+     transform="translate(-199.56101,-323.492)" /><rect
+     x="107.41"
+     y="74.742012"
+     style="fill:#1e6035;fill-rule:evenodd"
+     width="11.972"
+     height="1.166"
+     id="rect191" /><polygon
+     style="fill:#1e6035;fill-rule:evenodd"
+     points="339.956,418.542 340.577,419.708 318.43,419.708 318.43,418.542 "
+     id="polygon193"
+     transform="translate(-199.56101,-323.492)" /><rect
+     x="88.053001"
+     y="84.978004"
+     style="fill:#1e6035;fill-rule:evenodd"
+     width="19.858999"
+     height="1.166"
+     id="rect195" /><rect
+     x="123.90798"
+     y="89.13401"
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     width="30.855"
+     height="1.166"
+     id="rect197" /></svg>
\ No newline at end of file
diff --git a/resources/images/Settings.svg b/resources/images/Settings.svg
new file mode 100755 (executable)
index 0000000..68156cd
--- /dev/null
@@ -0,0 +1,452 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 198.205 197.727"
+   xml:space="preserve"
+   inkscape:version="0.48.4 r9939"
+   width="100%"
+   height="100%"
+   sodipodi:docname="Settings.svg"><metadata
+     id="metadata198"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs196" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1855"
+     inkscape:window-height="1056"
+     id="namedview194"
+     showgrid="false"
+     inkscape:zoom="8.970293"
+     inkscape:cx="106.85199"
+     inkscape:cy="108.17733"
+     inkscape:window-x="65"
+     inkscape:window-y="24"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="Layer_1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><g
+     id="g3"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_1_"
+       gradientUnits="userSpaceOnUse"
+       x1="297.9707"
+       y1="323.84149"
+       x2="297.9707"
+       y2="518.87842"><stop
+         offset="0"
+         style="stop-color:#FFFFFF;stop-opacity:0.7"
+         id="stop6" /><stop
+         offset="0.9987"
+         style="stop-color:#D8D9D8;stop-opacity:0.7"
+         id="stop8" /></linearGradient><path
+       style="fill:url(#SVGID_1_);fill-rule:evenodd"
+       d="m 209.538,519.703 c -5.608,0 -10.17,-4.562 -10.17,-10.17 V 333.146 c 0,-5.608 4.562,-10.17 10.17,-10.17 h 176.865 c 5.607,0 10.17,4.562 10.17,10.17 v 176.387 c 0,5.607 -4.562,10.17 -10.17,10.17 H 209.538 z"
+       id="path10"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#d8d8d7"
+       d="m 386.404,323.477 c 5.332,0 9.67,4.338 9.67,9.67 v 176.387 c 0,5.332 -4.338,9.67 -9.67,9.67 H 209.538 c -5.332,0 -9.67,-4.338 -9.67,-9.67 V 333.147 c 0,-5.332 4.338,-9.67 9.67,-9.67 h 176.866 m 0,-1 H 209.538 c -5.893,0 -10.67,4.777 -10.67,10.67 v 176.387 c 0,5.893 4.777,10.67 10.67,10.67 h 176.865 c 5.893,0 10.67,-4.777 10.67,-10.67 V 333.147 c 0.001,-5.893 -4.777,-10.67 -10.669,-10.67 l 0,0 z"
+       id="path12"
+       inkscape:connector-curvature="0" /></g><g
+     id="g14"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_2_"
+       gradientUnits="userSpaceOnUse"
+       x1="245.7205"
+       y1="365.71552"
+       x2="245.7205"
+       y2="468.46078"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop17" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop19" /></linearGradient><path
+       style="fill:url(#SVGID_2_);fill-rule:evenodd"
+       d="m 235.816,397.952 c -3.191,0 -5.788,-2.596 -5.788,-5.787 v -19.809 c 0,-3.191 2.596,-5.788 5.788,-5.788 h 19.809 c 3.191,0 5.787,2.596 5.787,5.788 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z"
+       id="path21"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 255.625,367.069 c 2.915,0 5.287,2.372 5.287,5.287 l 0,19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 l -19.809,0 c -2.915,0 -5.287,-2.372 -5.287,-5.287 l 0,-19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 l 19.809,0 m 0,-1 -19.809,0 c -3.472,0 -6.287,2.815 -6.287,6.287 l 0,19.809 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 3.472,0 6.287,-2.92648 6.287,-6.287 l 0,-19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 z"
+       id="path23"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="csssssssccssssssscc" /></g><g
+     id="g25"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_3_"
+       gradientUnits="userSpaceOnUse"
+       x1="281.9429"
+       y1="365.71552"
+       x2="281.9429"
+       y2="468.46078"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop28" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop30" /></linearGradient><path
+       style="fill:url(#SVGID_3_);fill-rule:evenodd"
+       d="m 272.039,397.952 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.788 5.787,-5.788 h 19.809 c 3.191,0 5.787,2.596 5.787,5.788 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z"
+       id="path32"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 291.847,367.069 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.814,-6.287 -6.287,-6.287 l 0,0 z"
+       id="path34"
+       inkscape:connector-curvature="0" /></g><g
+     id="g36"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_4_"
+       gradientUnits="userSpaceOnUse"
+       x1="317.79349"
+       y1="365.71552"
+       x2="317.79349"
+       y2="468.46078"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop39" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop41" /></linearGradient><path
+       style="fill:url(#SVGID_4_);fill-rule:evenodd"
+       d="m 307.889,397.952 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.788 5.787,-5.788 h 19.809 c 3.191,0 5.788,2.596 5.788,5.788 v 19.809 c 0,3.191 -2.597,5.787 -5.788,5.787 h -19.809 z"
+       id="path43"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 327.698,367.069 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z"
+       id="path45"
+       inkscape:connector-curvature="0" /></g><g
+     id="g47"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_5_"
+       gradientUnits="userSpaceOnUse"
+       x1="354.01559"
+       y1="365.71552"
+       x2="354.01559"
+       y2="468.46078"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop50" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop52" /></linearGradient><path
+       style="fill:url(#SVGID_5_);fill-rule:evenodd"
+       d="m 344.111,397.952 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.788 5.787,-5.788 h 19.809 c 3.191,0 5.787,2.596 5.787,5.788 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z"
+       id="path54"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 363.92,367.069 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z"
+       id="path56"
+       inkscape:connector-curvature="0" /></g><g
+     id="g58"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_6_"
+       gradientUnits="userSpaceOnUse"
+       x1="245.7205"
+       y1="366.86359"
+       x2="245.7205"
+       y2="469.60889"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop61" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop63" /></linearGradient><path
+       style="fill:url(#SVGID_6_);fill-rule:evenodd"
+       d="m 235.816,435.128 c -3.191,0 -5.788,-2.596 -5.788,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.788,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z"
+       id="path65"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 255.625,404.244 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z"
+       id="path67"
+       inkscape:connector-curvature="0" /></g><g
+     id="g69"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_7_"
+       gradientUnits="userSpaceOnUse"
+       x1="281.9429"
+       y1="366.86359"
+       x2="281.9429"
+       y2="469.60889"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop72" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop74" /></linearGradient><path
+       style="fill:url(#SVGID_7_);fill-rule:evenodd"
+       d="m 272.039,435.128 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z"
+       id="path76"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 291.847,404.244 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.814,-6.287 -6.287,-6.287 l 0,0 z"
+       id="path78"
+       inkscape:connector-curvature="0" /></g><g
+     id="g80"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_8_"
+       gradientUnits="userSpaceOnUse"
+       x1="317.79349"
+       y1="366.85529"
+       x2="317.79349"
+       y2="469.599"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop83" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop85" /></linearGradient><path
+       style="fill:url(#SVGID_8_);fill-rule:evenodd"
+       d="m 307.889,434.837 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.788,2.596 5.788,5.787 v 19.809 c 0,3.191 -2.597,5.787 -5.788,5.787 h -19.809 z"
+       id="path87"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 327.698,403.954 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z"
+       id="path89"
+       inkscape:connector-curvature="0" /></g><g
+     id="g91"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_9_"
+       gradientUnits="userSpaceOnUse"
+       x1="354.01559"
+       y1="366.85529"
+       x2="354.01559"
+       y2="469.599"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop94" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop96" /></linearGradient><path
+       style="fill:url(#SVGID_9_);fill-rule:evenodd"
+       d="m 344.111,434.837 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z"
+       id="path98"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 363.92,403.954 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z"
+       id="path100"
+       inkscape:connector-curvature="0" /></g><g
+     id="g102"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_10_"
+       gradientUnits="userSpaceOnUse"
+       x1="245.7205"
+       y1="367.98279"
+       x2="245.7205"
+       y2="470.72681"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop105" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop107" /></linearGradient><path
+       style="fill:url(#SVGID_10_);fill-rule:evenodd"
+       d="m 235.816,471.35 c -3.191,0 -5.788,-2.596 -5.788,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.788,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z"
+       id="path109"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 255.625,440.467 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z"
+       id="path111"
+       inkscape:connector-curvature="0" /></g><g
+     id="g113"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_11_"
+       gradientUnits="userSpaceOnUse"
+       x1="281.9429"
+       y1="367.98279"
+       x2="281.9429"
+       y2="470.72681"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop116" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop118" /></linearGradient><path
+       style="fill:url(#SVGID_11_);fill-rule:evenodd"
+       d="m 272.039,471.35 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z"
+       id="path120"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 291.847,440.467 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.814,-6.287 -6.287,-6.287 l 0,0 z"
+       id="path122"
+       inkscape:connector-curvature="0" /></g><g
+     id="g124"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_12_"
+       gradientUnits="userSpaceOnUse"
+       x1="317.79349"
+       y1="367.98279"
+       x2="317.79349"
+       y2="470.72681"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop127" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop129" /></linearGradient><path
+       style="fill:url(#SVGID_12_);fill-rule:evenodd"
+       d="m 307.889,471.35 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.788,2.596 5.788,5.787 v 19.809 c 0,3.191 -2.597,5.787 -5.788,5.787 h -19.809 z"
+       id="path131"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 327.698,440.467 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z"
+       id="path133"
+       inkscape:connector-curvature="0" /></g><g
+     id="g135"
+     transform="translate(-198.86801,-322.477)"><linearGradient
+       id="SVGID_13_"
+       gradientUnits="userSpaceOnUse"
+       x1="354.01559"
+       y1="367.98279"
+       x2="354.01559"
+       y2="470.72681"><stop
+         offset="0.0061"
+         style="stop-color:#EE4748"
+         id="stop138" /><stop
+         offset="1"
+         style="stop-color:#E33C3B"
+         id="stop140" /></linearGradient><path
+       style="fill:url(#SVGID_13_);fill-rule:evenodd"
+       d="m 344.111,471.35 c -3.191,0 -5.787,-2.596 -5.787,-5.787 v -19.809 c 0,-3.191 2.596,-5.787 5.787,-5.787 h 19.809 c 3.191,0 5.787,2.596 5.787,5.787 v 19.809 c 0,3.191 -2.596,5.787 -5.787,5.787 h -19.809 z"
+       id="path142"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#ce3737"
+       d="m 363.92,440.467 c 2.915,0 5.287,2.372 5.287,5.287 v 19.809 c 0,2.915 -2.372,5.287 -5.287,5.287 h -19.809 c -2.915,0 -5.287,-2.372 -5.287,-5.287 v -19.809 c 0,-2.915 2.372,-5.287 5.287,-5.287 h 19.809 m 0,-1 h -19.809 c -3.472,0 -6.287,2.815 -6.287,6.287 v 19.809 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -19.809 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l 0,0 z"
+       id="path144"
+       inkscape:connector-curvature="0" /></g><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 56.756991,75.017 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.26011,-0.22453 6.287,-3.99363 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z"
+     id="path146"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 92.978991,75.017 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.14863,0.10991 6.287,-3.99363 6.287,-8.082 0,3.472 -2.814,6.287 -6.287,6.287 z"
+     id="path148"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 128.82999,74.915 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.03715,-0.11305 6.287,-3.993628 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z"
+     id="path150"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 165.05199,74.915 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.03715,-0.0016 6.287,-3.993628 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z"
+     id="path152"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 56.756991,112.192 h -19.809 c -3.472,0 -6.287,-2.815 -6.287,-6.287 v 1.795 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -1.795 c 0,3.473 -2.815,6.287 -6.287,6.287 z"
+     id="path154"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 92.978991,112.192 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.14863,-0.002 6.287,-3.99363 6.287,-8.082 0,3.473 -2.814,6.287 -6.287,6.287 z"
+     id="path156"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 128.82999,111.902 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.03715,-0.11305 6.287,-3.99363 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z"
+     id="path158"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 165.05199,111.902 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.03715,-0.002 6.287,-3.99363 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z"
+     id="path160"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 56.756991,148.415 h -19.809 c -3.472,0 -6.287,-2.815 -6.287,-6.287 v 1.795 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -1.795 c 0,3.472 -2.815,6.287 -6.287,6.287 z"
+     id="path162"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 92.978991,148.415 h -19.809 c -3.472,0 -6.287,-2.815 -6.287,-6.287 v 1.795 c 0,3.472 2.815,6.287 6.287,6.287 h 19.809 c 3.472,0 6.287,-2.815 6.287,-6.287 v -1.795 c 0,3.472 -2.814,6.287 -6.287,6.287 z"
+     id="path164"
+     inkscape:connector-curvature="0" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 128.82999,148.415 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.26011,0.10991 6.287,-3.99363 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z"
+     id="path166"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#e1dfe2;fill-rule:evenodd"
+     d="m 165.05199,148.415 -19.809,0 c -3.472,0 -6.287,-2.815 -6.287,-6.287 l 0,1.795 c 0,3.472 2.815,6.287 6.287,6.287 l 19.809,0 c 5.37159,0.10991 6.287,-3.99363 6.287,-8.082 0,3.472 -2.815,6.287 -6.287,6.287 z"
+     id="path168"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 145.24299,118.785 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.47975,0.11305 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z"
+     id="path170"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 109.02099,118.785 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -5.14863,0.11305 -6.39848,3.21328 -6.287,8.082 0.66887,-3.24904 2.815,-6.287 6.287,-6.287 z"
+     id="path172"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 73.169991,118.887 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -5.037149,0.002 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z"
+     id="path174"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 36.947991,118.887 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.59123,0.11305 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z"
+     id="path176"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 145.24299,81.609 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 0.17873,-4.285788 -2.33849,-8.090395 -6.287,-8.082 l -19.809,0 c -5.37159,0.0016 -6.287,3.993628 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z"
+     id="path178"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="ssccccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 109.02099,81.609 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.92567,0.002 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z"
+     id="path180"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 73.169991,81.9 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.81419,0.22453 -6.287,3.99363 -6.287,8.082 1.114791,-3.583479 2.815,-6.287 6.287,-6.287 z"
+     id="path182"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 36.947991,81.9 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.92567,0.11305 -6.287,3.993628 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z"
+     id="path184"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 145.24299,45.387 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.81419,0.002 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z"
+     id="path186"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 109.02099,45.387 19.809,0 c 6.54822,0.694817 6.287,9.093427 6.287,4.492 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -5.48307,0.0016 -6.287,3.993628 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z"
+     id="path188"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sccsccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 73.169991,45.387 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -5.37159,0.11305 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z"
+     id="path190"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /><path
+     style="fill:#c02829;fill-rule:evenodd"
+     d="m 36.947991,45.387 19.809,0 c 3.472,0 6.287,2.815 6.287,6.287 l 0,-1.795 c 0,-3.472 -2.815,-6.287 -6.287,-6.287 l -19.809,0 c -4.81419,0.22453 -6.287,3.99363 -6.287,8.082 0,-3.472 2.815,-6.287 6.287,-6.287 z"
+     id="path192"
+     inkscape:connector-curvature="0"
+     sodipodi:nodetypes="sscssccs" /></svg>
\ No newline at end of file
diff --git a/resources/images/World.svg b/resources/images/World.svg
new file mode 100755 (executable)
index 0000000..91aef13
--- /dev/null
@@ -0,0 +1,284 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 195.687 195.688"
+   xml:space="preserve"
+   inkscape:version="0.48.4 r9939"
+   width="100%"
+   height="100%"
+   sodipodi:docname="World.svg"><metadata
+     id="metadata129"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+     id="defs127" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1199"
+     inkscape:window-height="896"
+     id="namedview125"
+     showgrid="false"
+     inkscape:zoom="6.342955"
+     inkscape:cx="97.837987"
+     inkscape:cy="98.236009"
+     inkscape:window-x="75"
+     inkscape:window-y="34"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="Layer_1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><g
+     id="g3"
+     transform="translate(-199.80201,-323.493)"><linearGradient
+       id="SVGID_1_"
+       gradientUnits="userSpaceOnUse"
+       x1="297.64529"
+       y1="324.43469"
+       x2="297.64529"
+       y2="518.20172"><stop
+         offset="0"
+         style="stop-color:#FFFFFF;stop-opacity:0.7"
+         id="stop6" /><stop
+         offset="0.9987"
+         style="stop-color:#D8D9D8;stop-opacity:0.7"
+         id="stop8" /></linearGradient><path
+       style="fill:url(#SVGID_1_);fill-rule:evenodd"
+       d="m 209.425,518.681 c -5.031,0 -9.124,-4.093 -9.124,-9.124 v -176.44 c 0,-5.031 4.093,-9.124 9.124,-9.124 h 176.44 c 5.031,0 9.124,4.093 9.124,9.124 v 176.44 c 0,5.031 -4.093,9.124 -9.124,9.124 h -176.44 z"
+       id="path10"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#d8d8d7"
+       d="m 385.865,324.493 c 4.755,0 8.623,3.868 8.623,8.624 v 176.441 c 0,4.755 -3.868,8.623 -8.623,8.623 h -176.44 c -4.755,0 -8.623,-3.868 -8.623,-8.623 V 333.116 c 0,-4.755 3.868,-8.624 8.623,-8.624 h 176.44 m 0,-0.999 h -176.44 c -5.315,0 -9.623,4.309 -9.623,9.624 v 176.441 c 0,5.315 4.309,9.623 9.623,9.623 h 176.441 c 5.315,0 9.623,-4.309 9.623,-9.623 V 333.116 c 0,-5.315 -4.309,-9.623 -9.624,-9.623 l 0,0 z"
+       id="path12"
+       inkscape:connector-curvature="0" /></g><g
+     id="g14"
+     transform="translate(-199.80201,-323.493)"><linearGradient
+       id="SVGID_2_"
+       gradientUnits="userSpaceOnUse"
+       x1="295.34409"
+       y1="366.51251"
+       x2="295.34409"
+       y2="477.05319"><stop
+         offset="0"
+         style="stop-color:#537FAF"
+         id="stop17" /><stop
+         offset="1"
+         style="stop-color:#436997"
+         id="stop19" /></linearGradient><path
+       style="fill:url(#SVGID_2_);fill-rule:evenodd"
+       d="m 295.344,365.432 c 30.647,0 55.492,24.845 55.492,55.492 0,30.647 -24.845,55.492 -55.492,55.492 -30.647,0 -55.492,-24.845 -55.492,-55.492 0,-30.647 24.845,-55.492 55.492,-55.492 z"
+       id="path21"
+       inkscape:connector-curvature="0" /></g><g
+     id="g23"
+     transform="translate(-199.80201,-323.493)"><path
+       style="fill:#3d5e86;fill-rule:evenodd"
+       d="m 336.697,448.9 c -1.4466,-17.74544 -6.79574,8.99663 -17.693,-19.639 -0.105,-0.613 -0.158,-1.2 -0.187,-1.775 -0.053,0.99 -0.003,2.033 0.187,3.145 8.478,23.495 15.228,8.439 17.693,18.269 z"
+       id="path25"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" /><path
+       style="fill:#3d5e86;fill-rule:evenodd"
+       d="m 322.35931,469.75845 c 11.4669,-11.09759 23.42214,-27.18821 22.63386,-47.49545 -0.009,-0.23982 5.82483,-0.446 5.82183,-0.686 0.33349,21.63904 -14.73709,38.28161 -28.45569,48.18145 z"
+       id="path27"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cscc" /></g><path
+     style="fill:#3d5e86;fill-rule:evenodd"
+     d="m 142.99999,70.832 c -0.788,3.617 -1.577,7.235 -2.365,10.852 -4.961,-1.349 -8.753,1.731 -13.289,3.095 -0.653,-2.785 -1.305,-5.572 -1.958,-8.357 -0.113,-0.024 -0.223,-0.043 -0.338,-0.074 0.765,3.266 1.531,6.534 2.296,9.801 4.537,-1.363 8.328,-4.444 13.289,-3.095 0.788,-3.617 1.577,-7.235 2.365,-10.852 0.387,-0.052 0.774,-0.104 1.161,-0.156 -0.238,-0.431 -0.502,-0.844 -0.75,-1.268 -0.137,0.017 -0.274,0.035 -0.411,0.054 z"
+     id="path29"
+     inkscape:connector-curvature="0" /><g
+     id="g31"
+     transform="translate(-199.80201,-323.493)"><path
+       style="fill:#3d5e86;fill-rule:evenodd"
+       d="m 329.068,380.749 c -0.243,-1.017 -0.486,-2.033 -0.729,-3.05 -0.135,-0.1 -0.264,-0.207 -0.4,-0.306 0.303,1.267 0.606,2.535 0.909,3.802 0.072,-0.148 0.146,-0.297 0.22,-0.446 z"
+       id="path33"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#3d5e86;fill-rule:evenodd"
+       d="m 327.22,389.512 c -0.489,-0.227 -0.978,-0.455 -1.468,-0.682 -0.183,0.371 -0.367,0.742 -0.55,1.114 0.673,0.313 1.345,0.625 2.018,0.938 3.634,-0.915 5.053,-5.373 4.871,-9.558 -0.155,3.741 -1.633,7.372 -4.871,8.188 z"
+       id="path35"
+       inkscape:connector-curvature="0" /></g><path
+     style="fill:#3d5e86;fill-rule:evenodd"
+     d="m 123.30399,61.978 c -0.543,-0.236 -1.087,-0.471 -1.63,-0.707 -0.179,0.379 -0.358,0.758 -0.537,1.136 0.722,0.313 1.445,0.627 2.167,0.94 0.365,-1.137 0.73,-2.275 1.095,-3.413 -0.129,-0.055 -0.257,-0.111 -0.386,-0.166 -0.236,0.737 -0.473,1.474 -0.709,2.21 z"
+     id="path37"
+     inkscape:connector-curvature="0" /><g
+     id="g39"
+     transform="translate(-199.80201,-323.493)"><path
+       style="fill:#3d5e86;fill-rule:evenodd"
+       d="m 272.087,393.816 c 0.93,-5.339 1.861,-10.68 2.792,-16.019 -0.025,-0.167 -0.072,-0.388 -0.129,-0.63 -0.93,5.334 -1.859,10.669 -2.789,16.003 0.037,0.217 0.085,0.431 0.126,0.646 z"
+       id="path41"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#3d5e86;fill-rule:evenodd"
+       d="m 260.998,417.547 c 0,0.424 0.044,0.842 0.117,1.256 0.455,-0.442 0.911,-0.885 1.366,-1.327 1.956,0 13.993,0.484 15.897,1.198 0,-0.465 -0.021,-0.926 -0.05,-1.385 -2.041,-0.705 -13.906,-1.182 -15.847,-1.182 -0.495,0.479 -0.989,0.96 -1.483,1.44 z"
+       id="path43"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#3d5e86;fill-rule:evenodd"
+       d="m 271.142,443.257 c -0.062,0.322 -0.109,0.664 -0.134,1.038 5.203,13.429 12.196,14.9 12.423,28.805 0.219,-15.067 -6.933,-16.306 -12.289,-29.843 z"
+       id="path45"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#3d5e86;fill-rule:evenodd"
+       d="m 276.572,434.507 c -0.064,-0.093 -8.841,-3.054 -12.462,-5.359 -7.139,-4.544 -14.035,-13.956 -20.542,-26.81 -0.1,0.258 -0.211,0.51 -0.306,0.77 6.597,13.166 13.598,22.794 20.849,27.409 3.571,2.273 12.138,5.178 12.438,5.348 0.136,-0.364 0.169,-0.795 0.023,-1.358 z"
+       id="path49"
+       inkscape:connector-curvature="0" /></g><g
+     id="g51"
+     transform="translate(-217.32904,-322.54707)"><linearGradient
+       id="SVGID_3_"
+       gradientUnits="userSpaceOnUse"
+       x1="334.81161"
+       y1="368.34589"
+       x2="334.81161"
+       y2="475.01251"
+       gradientTransform="translate(17.527034,-0.89641334)"><stop
+         offset="0"
+         style="stop-color:#D1DBE8"
+         id="stop54" /><stop
+         offset="1"
+         style="stop-color:#C4CDDC"
+         id="stop56" /></linearGradient><path
+       style="fill:url(#SVGID_3_);fill-rule:evenodd"
+       d="m 368.20538,422.0761 c 0,-4.224 -0.33035,-10.38051 -1.22335,-14.33451 -9.023,1.521 -33.199,4.524 -30.451,20.622 8.53,23.641 15.312,8.248 17.739,18.45 0.38,4.725 -6.01,12.864 -10.126,19.052 14.62,-9.993 24.06135,-24.74349 24.06135,-43.78949 z"
+       id="path58"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="sccccs" /></g><g
+     id="g60"
+     transform="translate(-199.80201,-323.493)"><linearGradient
+       id="SVGID_4_"
+       gradientUnits="userSpaceOnUse"
+       x1="334.4075"
+       y1="368.34589"
+       x2="334.4075"
+       y2="475.01251"><stop
+         offset="0"
+         style="stop-color:#D1DBE8"
+         id="stop63" /><stop
+         offset="1"
+         style="stop-color:#C4CDDC"
+         id="stop65" /></linearGradient><path
+       style="fill:url(#SVGID_4_);fill-rule:evenodd"
+       d="m 340.438,405.177 c 0.788,-3.617 1.577,-7.235 2.365,-10.852 0.387,-0.052 0.774,-0.104 1.161,-0.156 -2.168,-3.931 -4.798,-7.569 -7.818,-10.845 -1.648,5.677 -4.173,17.083 -11.293,15.147 0.765,3.266 1.531,6.534 2.296,9.801 4.536,-1.364 8.327,-4.444 13.289,-3.095 z"
+       id="path67"
+       inkscape:connector-curvature="0" /></g><g
+     id="g69"
+     transform="translate(-199.80201,-323.493)"><linearGradient
+       id="SVGID_5_"
+       gradientUnits="userSpaceOnUse"
+       x1="328.65619"
+       y1="368.34589"
+       x2="328.65619"
+       y2="475.01251"><stop
+         offset="0"
+         style="stop-color:#D1DBE8"
+         id="stop72" /><stop
+         offset="1"
+         style="stop-color:#C4CDDC"
+         id="stop74" /></linearGradient><path
+       style="fill:url(#SVGID_5_);fill-rule:evenodd"
+       d="m 329.068,380.749 c -1.288,2.608 -2.577,5.217 -3.865,7.824 0.673,0.313 1.345,0.625 2.018,0.938 3.816,-0.96 5.194,-5.829 4.836,-10.184 -1.319,-1.165 -2.692,-2.267 -4.118,-3.304 0.376,1.576 0.752,3.151 1.129,4.726 z"
+       id="path76"
+       inkscape:connector-curvature="0" /></g><linearGradient
+     id="SVGID_6_"
+     gradientUnits="userSpaceOnUse"
+     x1="322.56961"
+     y1="368.34589"
+     x2="322.56961"
+     y2="475.01251"
+     gradientTransform="translate(-199.80201,-323.493)"><stop
+       offset="0"
+       style="stop-color:#D1DBE8"
+       id="stop79" /><stop
+       offset="1"
+       style="stop-color:#C4CDDC"
+       id="stop81" /></linearGradient><path
+     style="fill:url(#SVGID_6_);fill-rule:evenodd"
+     d="m 122.55399,58.04 c -0.472,1 -0.945,1.999 -1.417,2.999 0.722,0.313 1.445,0.627 2.168,0.94 0.365,-1.137 0.73,-2.275 1.095,-3.413 -0.603,-0.26 -1.206,-0.52 -1.809,-0.78 -0.013,0.084 -0.025,0.169 -0.037,0.254 z"
+     id="path83"
+     inkscape:connector-curvature="0" /><g
+     id="g85"
+     transform="translate(-199.80201,-323.493)"><linearGradient
+       id="SVGID_7_"
+       gradientUnits="userSpaceOnUse"
+       x1="272.83749"
+       y1="368.69739"
+       x2="272.83749"
+       y2="474.75171"><stop
+         offset="0"
+         style="stop-color:#D1DBE8"
+         id="stop88" /><stop
+         offset="1"
+         style="stop-color:#C4CDDC"
+         id="stop90" /></linearGradient><path
+       style="fill:url(#SVGID_7_);fill-rule:evenodd"
+       d="m 289.565,475.865 c -1.934,-0.202 -3.929,-0.524 -5.938,-0.96 0.533,-10.776 -2.327,-14.988 -5.941,-20.313 -2.057,-3.029 -4.387,-6.462 -6.424,-11.704 0.232,-3.271 1.997,-4.275 3.555,-5.163 1.275,-0.727 2.479,-1.413 1.998,-3.28 -0.096,-0.164 -0.096,-0.164 -1.222,-0.578 -2.546,-0.935 -8.511,-3.123 -11.348,-4.93 -6.877,-4.377 -13.845,-13.534 -20.711,-27.213 5.141,-13.864 15.829,-25.245 29.361,-31.274 0.786,2.477 1.591,5.021 1.737,6.015 l -1.458,8.292 -1.458,8.372 c 0.583,3.561 1.838,6.961 3.052,10.25 1.614,4.371 3.281,8.887 3.357,13.59 -2.776,-0.693 -14.013,-1.111 -15.644,-1.111 h -0.102 l -1.631,1.585 v 0.105 c 0,6.491 8.881,11.957 14.996,12.867 0.383,0.058 0.781,0.086 1.182,0.086 1.528,0 3.001,-0.416 4.425,-0.817 1.436,-0.405 2.92,-0.824 4.474,-0.824 0.413,0 0.824,0.03 1.22,0.089 13.326,1.986 15.562,6.703 15.026,14.712 -2.567,9.616 -8.209,22.441 -11.942,30.928 l -0.564,1.276 z"
+       id="path92"
+       inkscape:connector-curvature="0" /><path
+       style="fill:#f5fbfd"
+       d="m 272.741,370.792 c 0.736,2.319 1.466,4.644 1.632,5.632 l -2.904,16.661 -0.015,0.084 0.014,0.084 c 0.587,3.499 1.847,6.911 3.065,10.21 1.57,4.253 3.191,8.644 3.335,13.193 -3.276,-0.657 -13.81,-1.05 -15.387,-1.05 h -0.203 l -0.146,0.141 -0.837,0.813 -0.646,0.627 -0.152,0.147 v 0.211 c 0,4.531 5.786,11.712 15.208,13.115 0.395,0.059 0.806,0.089 1.22,0.089 1.563,0 3.053,-0.42 4.493,-0.827 1.419,-0.4 2.886,-0.814 4.405,-0.814 0.401,0 0.799,0.029 1.183,0.086 6.37,0.949 10.356,2.524 12.543,4.956 1.889,2.101 2.57,4.926 2.274,9.443 -2.575,9.637 -8.198,22.421 -11.921,30.884 l -0.492,1.119 c -1.796,-0.194 -3.65,-0.493 -5.523,-0.892 0.49,-10.702 -2.377,-14.926 -5.995,-20.255 -2.042,-3.008 -4.355,-6.415 -6.378,-11.602 0.24,-3.093 1.931,-4.057 3.425,-4.908 1.301,-0.741 2.646,-1.507 2.116,-3.56 l -0.022,-0.087 -0.051,-0.074 c -0.104,-0.149 -0.104,-0.149 -1.306,-0.59 -2.321,-0.852 -8.485,-3.114 -11.299,-4.905 -6.822,-4.343 -13.743,-13.431 -20.573,-27.018 5.101,-13.665 15.618,-24.897 28.937,-30.913 m 0.307,-0.685 c -13.74,6.037 -24.57,17.472 -29.787,31.631 6.597,13.166 13.598,22.794 20.849,27.409 3.621,2.305 12.398,5.266 12.462,5.359 0.955,3.699 -5.15,2.093 -5.564,8.419 5.597,14.445 13.27,15.045 12.359,32.179 2.078,0.457 4.195,0.811 6.354,1.028 3.832,-8.726 9.872,-22.225 12.598,-32.457 0.557,-8.315 -1.871,-12.984 -15.239,-14.975 -0.427,-0.064 -0.846,-0.092 -1.257,-0.092 -3.144,0 -5.88,1.641 -8.898,1.641 -0.377,0 -0.759,-0.026 -1.146,-0.083 -6.077,-0.905 -14.782,-6.232 -14.782,-12.62 0.494,-0.48 0.989,-0.96 1.483,-1.44 1.956,0 13.993,0.484 15.897,1.198 0,-8.417 -5.042,-15.941 -6.416,-24.133 0.972,-5.58 1.945,-11.162 2.918,-16.743 -0.154,-1.05 -1.001,-3.704 -1.831,-6.321 l 0,0 z"
+       id="path94"
+       inkscape:connector-curvature="0" /></g><g
+     id="g96"
+     transform="translate(-199.80201,-323.493)"><linearGradient
+       id="SVGID_8_"
+       gradientUnits="userSpaceOnUse"
+       x1="272.82639"
+       y1="368.33749"
+       x2="272.82639"
+       y2="475.51071"><stop
+         offset="0"
+         style="stop-color:#D1DBE8"
+         id="stop99" /><stop
+         offset="1"
+         style="stop-color:#C4CDDC"
+         id="stop101" /></linearGradient><path
+       style="fill:url(#SVGID_8_);fill-rule:evenodd"
+       d="m 287.081,428.701 c -4.097,-0.61 -7.409,2.046 -11.301,1.466 -6.077,-0.905 -14.782,-6.232 -14.782,-12.62 0.494,-0.48 0.989,-0.96 1.483,-1.44 1.956,0 13.993,0.484 15.897,1.198 0,-8.417 -5.042,-15.941 -6.416,-24.133 0.972,-5.58 1.945,-11.162 2.918,-16.743 -0.154,-1.05 -1.001,-3.704 -1.831,-6.321 -13.74,6.037 -24.57,17.472 -29.787,31.631 6.597,13.166 13.598,22.794 20.849,27.409 3.621,2.305 12.398,5.266 12.462,5.359 0.955,3.699 -5.15,2.093 -5.564,8.419 5.597,14.445 13.187,15.646 12.276,32.78 2.078,0.457 4.047,0.713 6.206,0.93 2.76103,-10.7429 8.89487,-23.77947 12.829,-32.96 0.556,-8.315 -1.871,-12.984 -15.239,-14.975 z"
+       id="path103"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccccccccccccccc" /></g><path
+     style="fill:none;stroke:#436997;stroke-width:1;stroke-miterlimit:10"
+     d="m 143.92999,71.247 c -2.151,-3.9 -5.028,-7.893 -8.025,-11.143"
+     id="path105"
+     inkscape:connector-curvature="0" /><path
+     style="fill:none;stroke:#436997;stroke-width:1;stroke-miterlimit:10"
+     d="m 132.77899,56.97 c -1.308,-1.156 -3.383,-3.07 -4.992,-4.109"
+     id="path107"
+     inkscape:connector-curvature="0" /><path
+     style="fill:none;stroke:#436997;stroke-width:1;stroke-miterlimit:10"
+     d="m 73.432991,46.99 c -14.161,6.084 -24.626,17.909 -29.827,32.251"
+     id="path109"
+     inkscape:connector-curvature="0" /><g
+     id="g111"
+     transform="translate(-199.80201,-323.493)"><path
+       style="fill:#e1dfe2;fill-rule:evenodd"
+       d="m 295.344,476.415 c -30.44,0 -55.144,-24.514 -55.476,-54.876 -0.002,0.206 -0.016,0.409 -0.016,0.616 0,30.647 24.844,55.492 55.492,55.492 30.647,0 57.06855,-24.52869 55.492,-55.492 -0.0105,-0.2067 -0.013,-0.41 -0.016,-0.616 -0.48966,30.20434 -25.035,54.876 -55.476,54.876 z"
+       id="path113"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="scssscs" /></g><path
+     style="fill:none;stroke:#436997;stroke-width:1;stroke-miterlimit:10"
+     d="M 90.267991,152.213"
+     id="path115"
+     inkscape:connector-curvature="0" /><path
+     style="fill:none;stroke:#436997;stroke-width:1;stroke-miterlimit:10"
+     d="M 83.481991,151.099"
+     id="path117"
+     inkscape:connector-curvature="0" /><g
+     id="g121"
+     transform="translate(-199.80201,-323.493)"><path
+       style="fill:#37577e;fill-rule:evenodd"
+       d="m 295.344,366.659 c 30.441,0 54.98834,24.98797 55.476,54.878 0.002,-0.205 0.0107,-0.40807 0.016,-0.614 0.78828,-30.647 -24.845,-55.492 -55.492,-55.492 -30.647,0 -55.492,24.845 -55.492,55.492 0,0.206 0.013,0.408 0.016,0.614 0.331,-30.363 25.035,-54.878 55.476,-54.878 z"
+       id="path123"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="scssscs" /></g></svg>
\ No newline at end of file
index 65ac91c..8fadcf9 100644 (file)
@@ -100,6 +100,7 @@ extern "C"
 #define DALI_DEMO_STR_TITLE_IMAGE_VIEW                "Image View"
 #define DALI_DEMO_STR_TITLE_IMAGE_VIEW_PIXEL_AREA     "Image View Pixel Area"
 #define DALI_DEMO_STR_TITLE_IMAGE_VIEW_ALPHA_BLENDING "Image View Alpha Blending"
+#define DALI_DEMO_STR_TITLE_IMAGE_VIEW_SVG            "Image View SVG"
 #define DALI_DEMO_STR_TITLE_SUPER_BLUR_BLOOM          "Super Blur and Bloom"
 
 #endif