-- MySQL dump 10.13  Distrib 8.0.37, for Linux (x86_64)
--
-- Host: localhost    Database: divya_wp909
-- ------------------------------------------------------
-- Server version	8.0.37-cll-lve

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Current Database: `divya_wp909`
--


--
-- Table structure for table `wp_calendar`
--

DROP TABLE IF EXISTS `wp_calendar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_calendar` (
  `event_id` int NOT NULL AUTO_INCREMENT,
  `event_begin` date NOT NULL,
  `event_end` date NOT NULL,
  `event_title` varchar(30) NOT NULL,
  `event_desc` text NOT NULL,
  `event_time` time DEFAULT NULL,
  `event_recur` char(1) DEFAULT NULL,
  `event_repeats` int DEFAULT NULL,
  `event_author` bigint unsigned DEFAULT NULL,
  `event_category` bigint unsigned NOT NULL DEFAULT '1',
  `event_link` text,
  PRIMARY KEY (`event_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_calendar`
--

LOCK TABLES `wp_calendar` WRITE;
/*!40000 ALTER TABLE `wp_calendar` DISABLE KEYS */;
INSERT INTO `wp_calendar` (`event_id`, `event_begin`, `event_end`, `event_title`, `event_desc`, `event_time`, `event_recur`, `event_repeats`, `event_author`, `event_category`, `event_link`) VALUES (1,'2013-08-14','2013-08-14','Divya Yoga','','14:08:00','S',0,1,1,'');
/*!40000 ALTER TABLE `wp_calendar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_calendar_categories`
--

DROP TABLE IF EXISTS `wp_calendar_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_calendar_categories` (
  `category_id` int NOT NULL AUTO_INCREMENT,
  `category_name` varchar(30) NOT NULL,
  `category_colour` varchar(30) NOT NULL,
  PRIMARY KEY (`category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_calendar_categories`
--

LOCK TABLES `wp_calendar_categories` WRITE;
/*!40000 ALTER TABLE `wp_calendar_categories` DISABLE KEYS */;
INSERT INTO `wp_calendar_categories` (`category_id`, `category_name`, `category_colour`) VALUES (1,'General','#F6F79B');
/*!40000 ALTER TABLE `wp_calendar_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_calendar_config`
--

DROP TABLE IF EXISTS `wp_calendar_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_calendar_config` (
  `config_item` varchar(30) NOT NULL,
  `config_value` text NOT NULL,
  PRIMARY KEY (`config_item`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_calendar_config`
--

LOCK TABLES `wp_calendar_config` WRITE;
/*!40000 ALTER TABLE `wp_calendar_config` DISABLE KEYS */;
INSERT INTO `wp_calendar_config` (`config_item`, `config_value`) VALUES ('can_manage_events','edit_posts'),('calendar_style','    .calnk a:hover {\n        background-position:0 0;\n        text-decoration:none;  \n        color:#000000;\n        border-bottom:1px dotted #000000;\n     }\n    .calnk a:visited {\n        text-decoration:none;\n        color:#000000;\n        border-bottom:1px dotted #000000;\n    }\n    .calnk a {\n        text-decoration:none; \n        color:#000000; \n        border-bottom:1px dotted #000000;\n    }\n    .calnk a span { \n        display:none; \n    }\n    .calnk a:hover span {\n        color:#333333; \n        background:#F6F79B; \n        display:block;\n        position:absolute; \n        margin-top:1px; \n        padding:5px; \n        width:150px; \n        z-index:100;\n        line-height:1.2em;\n    }\n    .calendar-table {\n        border:0 !important;\n        width:100% !important;\n        border-collapse:separate !important;\n        border-spacing:2px !important;\n    }\n    .calendar-heading {\n        height:25px;\n        text-align:center;\n        border:1px solid #D6DED5;\n        background-color:#E4EBE3;\n    }\n    .calendar-next {\n        width:25%;\n        text-align:center;\n    }\n    .calendar-prev {\n        width:25%;\n        text-align:center;\n    }\n    .calendar-month {\n        width:50%;\n        text-align:center;\n        font-weight:bold;\n    }\n    .normal-day-heading {\n        text-align:center;\n        width:25px;\n        height:25px;\n        font-size:0.8em;\n        border:1px solid #DFE6DE;\n        background-color:#EBF2EA;\n    }\n    .weekend-heading {\n        text-align:center;\n        width:25px;\n        height:25px;\n        font-size:0.8em;\n        border:1px solid #DFE6DE;\n        background-color:#EBF2EA;\n        color:#FF0000;\n    }\n    .day-with-date {\n        vertical-align:text-top;\n        text-align:left;\n        width:60px;\n        height:60px;\n        border:1px solid #DFE6DE;\n    }\n    .no-events {\n\n    }\n    .day-without-date {\n        width:60px;\n        height:60px;\n        border:1px solid #E9F0E8;\n    }\n    span.weekend {\n        color:#FF0000;\n    }\n    .current-day {\n        vertical-align:text-top;\n        text-align:left;\n        width:60px;\n        height:60px;\n        border:1px solid #BFBFBF;\n        background-color:#E4EBE3;\n    }\n    span.event {\n        font-size:0.75em;\n    }\n    .kjo-link {\n        font-size:0.75em;\n        text-align:center;\n    }\n    .calendar-date-switcher {\n        height:25px;\n        text-align:center;\n        border:1px solid #D6DED5;\n        background-color:#E4EBE3;\n    }\n    .calendar-date-switcher form {\n        margin:2px;\n    }\n    .calendar-date-switcher input {\n        border:1px #D6DED5 solid;\n        margin:0;\n    }\n    .calendar-date-switcher select {\n        border:1px #D6DED5 solid;\n        margin:0;\n    }\n    .calnk a:hover span span.event-title {\n        padding:0;\n        text-align:center;\n        font-weight:bold;\n        font-size:1.2em;\n        margin-left:0px;\n    }\n    .calnk a:hover span span.event-title-break {\n        width:96%;\n        text-align:center;\n        height:1px;\n        margin-top:5px;\n        margin-right:2%;\n        padding:0;\n        background-color:#000000;\n        margin-left:0px;\n    }\n    .calnk a:hover span span.event-content-break {\n        width:96%;\n        text-align:center;\n        height:1px;\n        margin-top:5px;\n        margin-right:2%;\n        padding:0;\n        background-color:#000000;\n        margin-left:0px;\n    }\n    .page-upcoming-events {\n        font-size:80%;\n    }\n    .page-todays-events {\n        font-size:80%;\n    }\n    .calendar-table table,tbody,tr,td {\n        margin:0 !important;\n        padding:0 !important;\n    }\n    table.calendar-table {\n        margin-bottom:5px !important;\n    }\n    .cat-key {\n        width:100%;\n        margin-top:30px;\n        padding:5px;\n        border:0 !important;\n    }\n    .cal-separate {\n       border:0 !important;\n       margin-top:10px;\n    }\n    table.cat-key {\n       margin-top:5px !important;\n       border:1px solid #DFE6DE !important;\n       border-collapse:separate !important;\n       border-spacing:4px !important;\n       margin-left:2px !important;\n       width:99.5% !important;\n       margin-bottom:5px !important;\n    }\n    .cat-key td {\n       border:0 !important;\n    }'),('display_author','false'),('display_jump','false'),('display_todays','true'),('display_upcoming','true'),('display_upcoming_days','7'),('calendar_version','1.2'),('enable_categories','false');
/*!40000 ALTER TABLE `wp_calendar_config` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=67 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
  `comment_author` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint unsigned NOT NULL DEFAULT '0',
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_links` (
  `link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint unsigned NOT NULL DEFAULT '1',
  `link_rating` int NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_options` (
  `option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=42792 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://divyayogamonteregie.org/french','yes'),(2,'blogname','Divya Yoga Monteregie','yes'),(3,'blogdescription','Your Yoga Website','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','webmaster@divyayogamonteregie.org','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','1','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','','yes'),(11,'posts_per_rss','15','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','closed','yes'),(20,'default_pingback_flag','','yes'),(21,'posts_per_page','15','yes'),(22,'date_format','F j, Y','yes'),(23,'time_format','g:i a','yes'),(24,'links_updated_date_format','F j, Y g:i a','yes'),(28,'comment_moderation','1','yes'),(29,'moderation_notify','1','yes'),(30,'permalink_structure','','yes'),(32,'hack_file','0','yes'),(33,'blog_charset','UTF-8','yes'),(34,'moderation_keys','','no'),(35,'active_plugins','a:5:{i:0;s:43:\"codepeople-post-map/codepeople-post-map.php\";i:1;s:41:\"easy-media-gallery/easy-media-gallery.php\";i:2;s:50:\"multiple-post-thumbnails/multi-post-thumbnails.php\";i:3;s:34:\"spider-event-calendar/calendar.php\";i:4;s:30:\"wp-better-categories/image.php\";}','yes'),(36,'home','http://divyayogamonteregie.org/french','yes'),(37,'category_base','','yes'),(38,'ping_sites','http://rpc.pingomatic.com/','yes'),(40,'comment_max_links','1','yes'),(41,'gmt_offset','','yes'),(42,'default_email_category','1','yes'),(43,'recently_edited','a:5:{i:0;s:68:\"/home/center/divyayogamonteregie.orgfrench/wp-content/themes/twentyeleven/style.css\";i:2;s:90:\"/home/center/divyayogamonteregie.orgfrench/wp-content/plugins/codepeople-post-map/codepeople-post-map.php\";i:3;s:64:\"/home/center/divyayogamonteregie.orgfrench/wp-content/themes/pinboard/style.css\";i:4;s:62:\"/home/center/divyayogamonteregie.orgfrench/wp-content/themes/pinboard/404.php\";i:5;s:66:\"/home/center/divyayogamonteregie.orgfrench/wp-content/plugins/akismet/akismet.php\";}','no'),(44,'template','magazino','yes'),(45,'stylesheet','magazino','yes'),(30852,'finished_updating_comment_type','1','yes'),(48,'comment_registration','1','yes'),(49,'html_type','text/html','yes'),(50,'use_trackback','0','yes'),(51,'default_role','subscriber','yes'),(52,'db_version','53496','yes'),(53,'uploads_use_yearmonth_folders','1','yes'),(54,'upload_path','','yes'),(55,'blog_public','1','yes'),(56,'default_link_category','0','yes'),(57,'show_on_front','posts','yes'),(58,'tag_base','','yes'),(59,'show_avatars','1','yes'),(60,'avatar_rating','G','yes'),(61,'upload_url_path','','yes'),(62,'thumbnail_size_w','150','yes'),(63,'thumbnail_size_h','150','yes'),(64,'thumbnail_crop','1','yes'),(65,'medium_size_w','300','yes'),(66,'medium_size_h','300','yes'),(67,'avatar_default','mystery','yes'),(68,'large_size_w','1024','yes'),(69,'large_size_h','1024','yes'),(70,'image_default_link_type','file','yes'),(71,'image_default_size','','yes'),(72,'image_default_align','','yes'),(73,'close_comments_for_old_posts','','yes'),(74,'close_comments_days_old','14','yes'),(75,'thread_comments','','yes'),(76,'thread_comments_depth','5','yes'),(77,'page_comments','','yes'),(78,'comments_per_page','50','yes'),(79,'default_comments_page','newest','yes'),(80,'comment_order','asc','yes'),(81,'sticky_posts','a:0:{}','yes'),(82,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(83,'widget_text','a:0:{}','yes'),(84,'widget_rss','a:0:{}','yes'),(85,'uninstall_plugins','a:0:{}','no'),(86,'timezone_string','America/Montreal','yes'),(87,'page_for_posts','0','yes'),(88,'page_on_front','0','yes'),(89,'default_post_format','0','yes'),(90,'link_manager_enabled','0','yes'),(91,'initial_db_version','22441','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:12:\"categories-2\";i:1;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:2:{i:0;s:17:\"spider_calendar-2\";i:1;s:8:\"search-2\";}s:13:\"array_version\";i:3;}','yes'),(99,'cron','a:12:{i:1732316999;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1732318512;a:1:{s:24:\"akismet_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1732320599;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1732320841;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1732338734;a:2:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1732341903;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1732363798;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1732364262;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1732382020;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1732396673;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1732536599;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(1224,'db_upgraded','','yes'),(110,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:37:\"http://divyayogamonteregie.org/french\";s:4:\"link\";s:113:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://divyayogamonteregie.org/french/\";s:3:\"url\";s:146:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://divyayogamonteregie.org/french/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(429,'theme_mods_twentyeleven','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1379584756;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:12:\"categories-2\";i:1;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:2:{i:0;s:8:\"search-2\";i:1;s:7:\"pages-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}','yes'),(2128,'theme_mods_magazino','a:27:{i:0;b:0;s:16:\"background_color\";s:6:\"e5e5e5\";s:16:\"background_image\";s:73:\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/09/ciel.jpg\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:23:\"magazino_color_settings\";s:7:\"#9dbb41\";s:13:\"magazino_logo\";s:0:\"\";s:17:\"magazino_facebook\";s:68:\"https://www.facebook.com/pages/Divya-yoga-Monteregie/121622414526664\";s:16:\"magazino_twitter\";s:0:\"\";s:15:\"magazino_google\";s:0:\"\";s:18:\"magazino_pinterest\";s:0:\"\";s:17:\"magazino_linkedin\";s:0:\"\";s:16:\"magazino_youtube\";s:0:\"\";s:15:\"magazino_tumblr\";s:0:\"\";s:18:\"magazino_instagram\";s:0:\"\";s:15:\"magazino_flickr\";s:0:\"\";s:14:\"magazino_vimeo\";s:0:\"\";s:13:\"magazino_yelp\";s:0:\"\";s:12:\"magazino_rss\";s:0:\"\";s:14:\"magazino_email\";s:0:\"\";s:22:\"magazino_slider_effect\";s:10:\"scrollHorz\";s:23:\"magazino_slider_timeout\";s:1:\"3\";s:21:\"magazino_slider_pager\";b:1;s:20:\"magazino_date_format\";s:5:\"d.m.y\";s:18:\"custom_css_post_id\";i:-1;}','yes'),(432,'twentyeleven_theme_options','a:3:{s:12:\"color_scheme\";s:5:\"light\";s:10:\"link_color\";s:7:\"#1be539\";s:12:\"theme_layout\";s:15:\"content-sidebar\";}','yes'),(1435,'simplevisitorcounter_display_footer','1','yes'),(1436,'simplevisitorcounter_display_credit','0','yes'),(1437,'simplevisitorcounter_count_only_unique','0','yes'),(1438,'simplevisitorcounter_check_update','1','yes'),(1439,'simplevisitorcounter_exclude_ips','1','yes'),(1440,'simplevisitorcounter_align','center','yes'),(1441,'simplevisitorcounter_count_admin','0','yes'),(1442,'simplevisitorcounter_count_404','0','yes'),(1443,'simplevisitorcounter_pad_zeros','0','yes'),(1728,'al2fb_siteurl','1','yes'),(1729,'al2fb_css','.al2fb_widget_comments { }\n.al2fb_widget_comments li { }\n.al2fb_widget_picture { width: 32px; height: 32px; }\n.al2fb_widget_name { }\n.al2fb_widget_comment { }\n.al2fb_widget_date { font-size: smaller; }\n','yes'),(1730,'al2fb_noshortcode','1','yes'),(1731,'al2fb_nofilter','1','yes'),(1732,'al2fb_nofilter_comments','1','yes'),(1733,'al2fb_version','13','yes'),(1734,'al2fb_exclude_custom','1','yes'),(1735,'al2fb_min_cap','edit_posts','yes'),(495,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2187,'widget_spider_calendar','a:2:{i:2;a:8:{s:5:\"title\";s:0:\"\";s:8:\"calendar\";s:1:\"1\";s:5:\"theme\";s:1:\"1\";s:12:\"default_view\";s:5:\"month\";s:6:\"view_0\";s:5:\"month\";s:6:\"view_1\";s:4:\"list\";s:6:\"view_2\";s:4:\"week\";s:6:\"view_3\";s:3:\"day\";}s:12:\"_multiwidget\";i:1;}','yes'),(414,'emediagallery_children','a:0:{}','yes'),(438,'akismet_available_servers','a:4:{s:12:\"66.135.58.62\";b:1;s:12:\"72.233.69.88\";b:1;s:12:\"72.233.69.89\";b:1;s:12:\"66.135.58.61\";b:1;}','yes'),(425,'_transient_plugins_delete_result_1','1','yes'),(439,'akismet_connectivity_time','1368929484','yes'),(448,'cpm_config','a:17:{s:4:\"zoom\";s:2:\"10\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:6:\"margin\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:8:\"language\";s:2:\"en\";s:5:\"icons\";a:0:{}s:12:\"default_icon\";s:97:\"http://divyayogamonteregie.org/french/wp-content/plugins/codepeople-post-map/images/icons/marker.png\";s:4:\"type\";s:7:\"ROADMAP\";s:6:\"points\";i:3;s:7:\"display\";s:3:\"map\";s:10:\"mousewheel\";b:1;s:14:\"zoompancontrol\";b:1;s:11:\"typecontrol\";b:1;s:9:\"highlight\";b:1;s:15:\"highlight_class\";s:13:\"cpm_highlight\";s:10:\"windowhtml\";s:777:\"<div class=\'cpm-infowindow\'>\r\n                                                <div class=\'cpm-content\'>\r\n                                                    <a title=\'%link%\' href=\'%link%\'>%thumbnail%</a>\r\n                                                    <a class=\'title\' href=\'%link%\'>%title%</a>\r\n                                                    <div class=\'address\'>%address%</div>\r\n                                                    <div class=\'description\'>%description%</div>\r\n                                                    <a href=\'%link%\' class=\'more\'>more &raquo;</a>\r\n                                                </div>\r\n                                                <div style=\'clear:both;\'></div>\r\n                                            </div>\";}','yes'),(30835,'widget_wvisitorcounter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1433,'simplevisitorcounter_data','107318','yes'),(1434,'simplevisitorcounter_style','Basic/5','yes'),(143,'theme_mods_twentytwelve','a:7:{s:16:\"header_textcolor\";s:6:\"1e73be\";s:16:\"background_color\";s:6:\"e6e6e6\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1368042176;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(149,'current_theme','Magazino','yes'),(150,'theme_mods_pinboard','a:9:{i:0;b:0;s:16:\"header_textcolor\";s:6:\"102ca0\";s:16:\"background_color\";s:6:\"1802e2\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:12:\"header_image\";s:13:\"remove-header\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1371866012;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:7:\"pages-2\";}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:17:\"recent-comments-2\";i:2;s:12:\"categories-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:9:\"sidebar-8\";a:0:{}s:9:\"sidebar-9\";a:0:{}s:10:\"sidebar-10\";a:0:{}}}}','yes'),(151,'theme_switched','','yes'),(152,'category_children','a:0:{}','yes'),(156,'recently_activated','a:0:{}','yes'),(165,'pinboard_theme_options','a:105:{s:18:\"home_page_excerpts\";i:2;s:6:\"slider\";b:0;s:8:\"location\";b:0;s:13:\"retina_header\";b:1;s:15:\"crop_thumbnails\";b:0;s:8:\"lightbox\";b:1;s:13:\"facebook_link\";s:0:\"\";s:12:\"twitter_link\";s:0:\"\";s:14:\"pinterest_link\";s:0:\"\";s:11:\"flickr_link\";s:0:\"\";s:12:\"youtube_link\";s:0:\"\";s:10:\"vimeo_link\";s:0:\"\";s:15:\"googleplus_link\";s:0:\"\";s:12:\"dribble_link\";s:0:\"\";s:13:\"linkedin_link\";s:0:\"\";s:13:\"portfolio_cat\";s:2:\"-1\";s:16:\"portfolio_filter\";b:1;s:18:\"portfolio_excerpts\";i:0;s:26:\"portfolio_archive_excerpts\";i:0;s:17:\"portfolio_columns\";i:3;s:14:\"portfolio_meta\";b:1;s:22:\"blog_exclude_portfolio\";b:0;s:16:\"archive_excerpts\";i:0;s:9:\"posts_nav\";s:8:\"infinite\";s:16:\"posts_nav_labels\";s:9:\"next/prev\";s:15:\"fancy_dropdowns\";b:1;s:8:\"facebook\";b:1;s:7:\"twitter\";b:1;s:6:\"google\";b:1;s:9:\"pinterest\";b:1;s:10:\"author_box\";b:1;s:16:\"copyright_notice\";s:20:\"© %year% %blogname%\";s:17:\"theme_credit_link\";b:0;s:18:\"author_credit_link\";b:0;s:21:\"wordpress_credit_link\";b:1;s:15:\"page_background\";s:7:\"#f8f8f8\";s:15:\"menu_background\";s:4:\"#111\";s:18:\"submenu_background\";s:4:\"#333\";s:23:\"sidebar_wide_background\";s:4:\"#eee\";s:18:\"content_background\";s:4:\"#fff\";s:20:\"post_meta_background\";s:7:\"#fcfcfc\";s:22:\"footer_area_background\";s:4:\"#222\";s:17:\"footer_background\";s:4:\"#111\";s:6:\"layout\";s:10:\"full-width\";s:14:\"layout_columns\";i:3;s:13:\"boxes_columns\";s:1:\"3\";s:14:\"footer_columns\";s:1:\"3\";s:12:\"hide_sidebar\";b:0;s:16:\"hide_footer_area\";b:0;s:8:\"user_css\";s:0:\"\";s:9:\"body_font\";s:9:\"open-sans\";s:13:\"headings_font\";s:6:\"oswald\";s:12:\"content_font\";s:9:\"open-sans\";s:14:\"body_font_size\";s:2:\"13\";s:19:\"body_font_size_unit\";s:2:\"px\";s:16:\"body_line_height\";s:4:\"1.62\";s:21:\"body_line_height_unit\";s:2:\"em\";s:12:\"h1_font_size\";s:2:\"36\";s:17:\"h1_font_size_unit\";s:2:\"px\";s:12:\"h2_font_size\";s:2:\"32\";s:17:\"h2_font_size_unit\";s:2:\"px\";s:12:\"h3_font_size\";s:2:\"24\";s:17:\"h3_font_size_unit\";s:2:\"px\";s:12:\"h4_font_size\";s:2:\"18\";s:17:\"h4_font_size_unit\";s:2:\"px\";s:20:\"headings_line_height\";s:4:\"1.62\";s:25:\"headings_line_height_unit\";s:2:\"em\";s:17:\"content_font_size\";s:2:\"15\";s:22:\"content_font_size_unit\";s:2:\"px\";s:19:\"content_line_height\";s:4:\"1.62\";s:24:\"content_line_height_unit\";s:2:\"em\";s:16:\"mobile_font_size\";s:2:\"17\";s:21:\"mobile_font_size_unit\";s:2:\"px\";s:18:\"mobile_line_height\";s:4:\"1.62\";s:23:\"mobile_line_height_unit\";s:2:\"em\";s:10:\"body_color\";s:4:\"#333\";s:14:\"headings_color\";s:4:\"#333\";s:13:\"content_color\";s:4:\"#333\";s:11:\"links_color\";s:7:\"#21759b\";s:17:\"links_hover_color\";s:7:\"#d54e21\";s:10:\"menu_color\";s:7:\"#f0f0f0\";s:16:\"menu_hover_color\";s:4:\"#fff\";s:13:\"sidebar_color\";s:4:\"#ccc\";s:19:\"sidebar_title_color\";s:4:\"#ccc\";s:19:\"sidebar_links_color\";s:7:\"#7597B9\";s:12:\"footer_color\";s:4:\"#ccc\";s:18:\"footer_title_color\";s:7:\"#e0e0e0\";s:15:\"copyright_color\";s:4:\"#ccc\";s:21:\"copyright_links_color\";s:7:\"#7597B9\";s:19:\"home_site_title_tag\";s:2:\"h1\";s:19:\"home_desc_title_tag\";s:3:\"div\";s:19:\"home_post_title_tag\";s:2:\"h2\";s:22:\"archive_site_title_tag\";s:3:\"div\";s:22:\"archive_desc_title_tag\";s:3:\"div\";s:26:\"archive_location_title_tag\";s:2:\"h1\";s:22:\"archive_post_title_tag\";s:2:\"h2\";s:21:\"single_site_title_tag\";s:3:\"div\";s:21:\"single_desc_title_tag\";s:3:\"div\";s:21:\"single_post_title_tag\";s:2:\"h1\";s:25:\"single_comments_title_tag\";s:2:\"h2\";s:24:\"single_respond_title_tag\";s:2:\"h2\";s:16:\"widget_title_tag\";s:2:\"h3\";s:14:\"submit-general\";s:13:\"Save Settings\";s:10:\"submit-seo\";N;s:13:\"submit-layout\";s:13:\"Save Settings\";}','yes'),(211,'_transient_random_seed','d76475d3d71b57f0e2ff02da235fbf86','yes'),(223,'easy_media_opt','a:37:{s:19:\"easymedia_deff_init\";s:1:\"1\";s:17:\"easymedia_frm_col\";s:7:\"#FFFFFF\";s:17:\"easymedia_ttl_col\";s:7:\"#C7C7C7\";s:18:\"easymedia_shdw_col\";s:7:\"#4A4A4A\";s:18:\"easymedia_icon_col\";s:7:\"#474747\";s:19:\"easymedia_box_style\";s:5:\"Light\";s:21:\"easymedia_overlay_col\";s:7:\"#F7F0D7\";s:19:\"easymedia_thumb_col\";s:7:\"#000000\";s:21:\"easymedia_hover_style\";s:4:\"Dark\";s:21:\"easymedia_plugin_core\";s:14:\"core-1.4.5-min\";s:21:\"easymedia_hover_opcty\";s:2:\"40\";s:23:\"easymedia_overlay_opcty\";s:2:\"80\";s:28:\"easymedia_thumb_border_opcty\";s:3:\"100\";s:24:\"easymedia_img_size_limit\";s:3:\"940\";s:17:\"easymedia_columns\";s:1:\"3\";s:20:\"easymedia_margin_box\";s:2:\"12\";s:19:\"easymedia_audio_vol\";s:2:\"75\";s:26:\"easymedia_disen_audio_loop\";s:1:\"1\";s:20:\"easymedia_frm_border\";s:1:\"5\";s:19:\"easymedia_cur_style\";s:7:\"Pointer\";s:20:\"easymedia_alignstyle\";s:6:\"Center\";s:18:\"easymedia_brdr_rds\";s:1:\"3\";s:19:\"easymedia_disen_bor\";s:1:\"1\";s:19:\"easymedia_disen_sdw\";s:1:\"1\";s:23:\"easymedia_style_pattern\";s:14:\"pattern-01.png\";s:21:\"easymedia_disen_ticon\";s:1:\"1\";s:22:\"easymedia_disen_icocol\";s:1:\"1\";s:22:\"easymedia_disen_databk\";s:1:\"1\";s:25:\"easymedia_disen_style_man\";s:1:\"1\";s:21:\"easymedia_disen_upchk\";s:1:\"0\";s:24:\"easymedia_disen_hovstyle\";s:1:\"1\";s:20:\"easymedia_disen_plug\";s:1:\"1\";s:22:\"easymedia_disen_autopl\";s:1:\"1\";s:23:\"easymedia_disen_autoplv\";s:1:\"1\";s:25:\"easymedia_disen_admnotify\";s:1:\"1\";s:18:\"easymedia_frm_size\";a:2:{s:5:\"width\";s:3:\"160\";s:6:\"height\";s:3:\"160\";}s:18:\"easymedia_vid_size\";a:2:{s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"400\";}}','yes'),(30858,'recovery_keys','a:0:{}','yes'),(30859,'https_detection_errors','a:1:{s:17:\"bad_response_code\";a:1:{i:0;s:21:\"Internal Server Error\";}}','yes'),(30826,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(30827,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(30828,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(30829,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(30830,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(30831,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(30832,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(30833,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(30834,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2610,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:2;}}','yes'),(30851,'WPLANG','','yes'),(30836,'rewrite_rules','','yes'),(30837,'finished_splitting_shared_terms','1','yes'),(30838,'site_icon','0','yes'),(30839,'medium_large_size_w','768','yes'),(30840,'medium_large_size_h','0','yes'),(30841,'wp_page_for_privacy_policy','0','yes'),(30842,'show_comments_cookies_opt_in','1','yes'),(30843,'admin_email_lifespan','0','yes'),(30844,'disallowed_keys','','no'),(30845,'comment_previously_approved','1','yes'),(30846,'auto_plugin_theme_update_emails','a:0:{}','no'),(30847,'auto_update_core_dev','enabled','yes'),(30848,'auto_update_core_minor','enabled','yes'),(30849,'auto_update_core_major','unset','yes'),(30850,'wp_force_deactivated_plugins','a:0:{}','yes'),(30853,'user_count','2','no'),(35929,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:33:\"webmaster@divyayogamonteregie.org\";s:7:\"version\";s:5:\"6.2.6\";s:9:\"timestamp\";i:1719297442;}','no'),(35271,'_transient_is_multi_author','0','yes'),(34899,'_site_transient_theme_roots','a:5:{s:8:\"magazino\";s:7:\"/themes\";s:8:\"pinboard\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','no'),(30872,'can_compress_scripts','0','no'),(30913,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":6,\"critical\":1}','yes'),(42785,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1732299162;s:7:\"checked\";a:5:{s:8:\"magazino\";s:5:\"1.1.2\";s:8:\"pinboard\";s:5:\"1.1.0\";s:12:\"twentyeleven\";s:3:\"1.5\";s:14:\"twentythirteen\";s:3:\"1.0\";s:12:\"twentytwelve\";s:3:\"1.1\";}s:8:\"response\";a:5:{s:8:\"magazino\";a:6:{s:5:\"theme\";s:8:\"magazino\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:38:\"https://wordpress.org/themes/magazino/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/magazino.2.0.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:8:\"pinboard\";a:6:{s:5:\"theme\";s:8:\"pinboard\";s:11:\"new_version\";s:6:\"1.1.12\";s:3:\"url\";s:38:\"https://wordpress.org/themes/pinboard/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/pinboard.1.1.12.zip\";s:8:\"requires\";s:3:\"3.9\";s:12:\"requires_php\";b:0;}s:12:\"twentyeleven\";a:6:{s:5:\"theme\";s:12:\"twentyeleven\";s:11:\"new_version\";s:3:\"4.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentyeleven/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentyeleven.4.8.zip\";s:8:\"requires\";s:3:\"3.2\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentythirteen\";a:6:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.4.3.zip\";s:8:\"requires\";s:3:\"3.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwelve\";a:6:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"4.4\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwelve/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwelve.4.4.zip\";s:8:\"requires\";s:3:\"3.5\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(42786,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1732299162;s:8:\"response\";a:3:{s:43:\"codepeople-post-map/codepeople-post-map.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:33:\"w.org/plugins/codepeople-post-map\";s:4:\"slug\";s:19:\"codepeople-post-map\";s:6:\"plugin\";s:43:\"codepeople-post-map/codepeople-post-map.php\";s:11:\"new_version\";s:5:\"1.1.8\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/codepeople-post-map/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/codepeople-post-map.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/codepeople-post-map/assets/icon-256x256.jpg?rev=980165\";s:2:\"1x\";s:71:\"https://ps.w.org/codepeople-post-map/assets/icon-128x128.jpg?rev=980165\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/codepeople-post-map/assets/banner-1544x500.png?rev=1624847\";s:2:\"1x\";s:74:\"https://ps.w.org/codepeople-post-map/assets/banner-772x250.png?rev=1624847\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.5\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:41:\"easy-media-gallery/easy-media-gallery.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:32:\"w.org/plugins/easy-media-gallery\";s:4:\"slug\";s:18:\"easy-media-gallery\";s:6:\"plugin\";s:41:\"easy-media-gallery/easy-media-gallery.php\";s:11:\"new_version\";s:7:\"1.3.170\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/easy-media-gallery/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/easy-media-gallery.1.3.170.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/easy-media-gallery/assets/icon-256x256.png?rev=1119960\";s:2:\"1x\";s:71:\"https://ps.w.org/easy-media-gallery/assets/icon-128x128.png?rev=1119050\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/easy-media-gallery/assets/banner-1544x500.png?rev=1673295\";s:2:\"1x\";s:73:\"https://ps.w.org/easy-media-gallery/assets/banner-772x250.png?rev=1690938\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:55:\"<p>IMPORTANT! SECURITY BUGS FIX, PLEASE UPDATE NOW!</p>\";}s:50:\"multiple-post-thumbnails/multi-post-thumbnails.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:38:\"w.org/plugins/multiple-post-thumbnails\";s:4:\"slug\";s:24:\"multiple-post-thumbnails\";s:6:\"plugin\";s:50:\"multiple-post-thumbnails/multi-post-thumbnails.php\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/multiple-post-thumbnails/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/multiple-post-thumbnails.1.7.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:75:\"https://s.w.org/plugins/geopattern-icon/multiple-post-thumbnails_d94965.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/multiple-post-thumbnails/assets/banner-772x250.png?rev=652603\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"2.9.2\";s:6:\"tested\";s:6:\"5.0.22\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}}','no'),(42632,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1732536625','no'),(42633,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(38226,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:6:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.6.2-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.2\";s:7:\"version\";s:5:\"6.6.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.4.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.4.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.4.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.4.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.5\";s:7:\"version\";s:5:\"6.4.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.3.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.3.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.3.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.3.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.3.5\";s:7:\"version\";s:5:\"6.3.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1732299162;s:15:\"version_checked\";s:5:\"6.2.6\";s:12:\"translations\";a:0:{}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=1134 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','full-width-homepage.php'),(2,2,'_edit_lock','1381280388:1'),(3,2,'_edit_last','1'),(4,6,'_edit_last','1'),(5,6,'_edit_lock','1379449002:1'),(6,6,'_wp_page_template','full-width-homepage.php'),(7,9,'_edit_last','1'),(8,9,'_edit_lock','1410827243:1'),(9,9,'_wp_page_template','full-width-homepage.php'),(10,12,'_edit_last','1'),(11,12,'_edit_lock','1381281384:1'),(12,12,'_wp_page_template','full-width-homepage.php'),(13,1,'_edit_lock','1381279503:1'),(14,1,'_edit_last','1'),(19,25,'_edit_last','1'),(20,25,'_edit_lock','1381280922:1'),(21,25,'_wp_page_template','full-width-homepage.php'),(22,31,'_edit_last','1'),(23,31,'_edit_lock','1381279896:1'),(24,31,'_wp_page_template','default'),(25,33,'_edit_last','1'),(26,33,'_edit_lock','1381280097:1'),(27,33,'_wp_page_template','full-width-homepage.php'),(28,35,'_edit_last','1'),(29,35,'_edit_lock','1392169044:1'),(30,35,'_wp_page_template','full-width-homepage.php'),(380,379,'_wp_attached_file','2013/08/site_cloud_bg.jpg'),(34,39,'_edit_last','1'),(35,39,'_edit_lock','1381280265:1'),(36,39,'_wp_page_template','full-width-homepage.php'),(37,42,'_edit_last','1'),(38,42,'_edit_lock','1379811716:1'),(39,42,'_wp_page_template','default'),(40,45,'_edit_last','1'),(41,45,'_edit_lock','1379812314:1'),(42,45,'_wp_page_template','default'),(43,48,'_edit_last','1'),(44,48,'_edit_lock','1379811160:1'),(45,48,'_wp_page_template','default'),(46,53,'_edit_last','1'),(47,53,'_edit_lock','1379811785:1'),(48,53,'_wp_page_template','default'),(49,55,'_edit_last','1'),(50,55,'_edit_lock','1379810937:1'),(51,55,'_wp_page_template','default'),(52,57,'_edit_last','1'),(53,57,'_edit_lock','1379811026:1'),(54,57,'_wp_page_template','default'),(55,59,'_edit_last','1'),(56,59,'_edit_lock','1379810789:1'),(57,59,'_wp_page_template','default'),(58,61,'_edit_last','1'),(59,61,'_edit_lock','1379813702:1'),(60,61,'_wp_page_template','default'),(61,63,'_edit_last','1'),(62,63,'_edit_lock','1379812868:1'),(63,63,'_wp_page_template','default'),(64,65,'_edit_last','1'),(65,65,'_edit_lock','1379811325:1'),(66,65,'_wp_page_template','default'),(67,67,'_edit_last','1'),(68,67,'_edit_lock','1379813954:1'),(69,67,'_wp_page_template','default'),(70,70,'_edit_last','1'),(71,70,'_edit_lock','1379812709:1'),(72,70,'_wp_page_template','default'),(73,72,'_edit_last','1'),(74,72,'_edit_lock','1379814643:1'),(75,72,'_wp_page_template','default'),(76,74,'_edit_last','1'),(77,74,'_edit_lock','1379812346:1'),(78,74,'_wp_page_template','default'),(79,76,'_edit_last','1'),(80,76,'_edit_lock','1379812413:1'),(81,76,'_wp_page_template','default'),(82,79,'_edit_last','1'),(83,79,'_edit_lock','1381280211:1'),(84,79,'_wp_page_template','default'),(85,89,'_edit_last','1'),(86,89,'_edit_lock','1381021580:1'),(87,90,'_wp_attached_file','2013/05/giraffle.png'),(88,90,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:256;s:6:\"height\";i:265;s:4:\"file\";s:20:\"2013/05/giraffle.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"giraffle-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"gallery-3-thumb\";a:4:{s:4:\"file\";s:20:\"giraffle-256x164.png\";s:5:\"width\";i:256;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(89,91,'_wp_attached_file','2013/05/butterfly.png'),(90,91,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:225;s:4:\"file\";s:21:\"2013/05/butterfly.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"butterfly-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"gallery-2-thumb\";a:4:{s:4:\"file\";s:21:\"butterfly-268x225.png\";s:5:\"width\";i:268;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"gallery-3-thumb\";a:4:{s:4:\"file\";s:21:\"butterfly-268x164.png\";s:5:\"width\";i:268;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(91,89,'_wp_page_template','default'),(92,108,'_wp_attached_file','2013/05/banner1.jpg'),(93,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:573;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2013/05/banner1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"banner1-150x120.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"banner1-300x62.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:62;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"teaser-thumb\";a:4:{s:4:\"file\";s:18:\"banner1-332x69.jpg\";s:5:\"width\";i:332;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"gallery-1-thumb\";a:4:{s:4:\"file\";s:19:\"banner1-432x120.jpg\";s:5:\"width\";i:432;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"gallery-2-thumb\";a:4:{s:4:\"file\";s:19:\"banner1-268x120.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"gallery-3-thumb\";a:4:{s:4:\"file\";s:19:\"banner1-268x120.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(94,111,'_wp_attached_file','2013/05/cropped-banner11.jpg'),(95,111,'_wp_attachment_context','custom-header'),(96,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:392;s:6:\"height\";i:96;s:4:\"file\";s:28:\"2013/05/cropped-banner11.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner11-150x96.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"cropped-banner11-300x73.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"teaser-thumb\";a:4:{s:4:\"file\";s:27:\"cropped-banner11-332x81.jpg\";s:5:\"width\";i:332;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"gallery-2-thumb\";a:4:{s:4:\"file\";s:27:\"cropped-banner11-268x96.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"gallery-3-thumb\";a:4:{s:4:\"file\";s:27:\"cropped-banner11-268x96.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(97,111,'_wp_attachment_is_custom_header','pinboard'),(279,262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:562;s:6:\"height\";i:530;s:4:\"file\";s:37:\"2013/06/Dill-fenugreek-tofu-rice..jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Dill-fenugreek-tofu-rice.-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Dill-fenugreek-tofu-rice.-300x282.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"Dill-fenugreek-tofu-rice.-562x288.jpg\";s:5:\"width\";i:562;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:37:\"Dill-fenugreek-tofu-rice.-562x288.jpg\";s:5:\"width\";i:562;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:37:\"Dill-fenugreek-tofu-rice.-318x300.jpg\";s:5:\"width\";i:318;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(278,262,'_wp_attached_file','2013/06/Dill-fenugreek-tofu-rice..jpg'),(103,114,'_wp_attached_file','2013/05/cropped-banner111.jpg'),(104,114,'_wp_attachment_context','custom-header'),(105,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:29:\"2013/05/cropped-banner111.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cropped-banner111-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-banner111-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-banner111-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:30:\"cropped-banner111-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:29:\"cropped-banner111-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(106,114,'_wp_attachment_is_custom_header','twentyeleven'),(107,115,'_wp_attached_file','2013/05/cropped-banner2.jpg'),(108,115,'_wp_attachment_context','custom-header'),(109,115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2013/05/cropped-banner2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-banner2-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner2-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:28:\"cropped-banner2-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:27:\"cropped-banner2-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(110,115,'_wp_attachment_is_custom_header','twentyeleven'),(111,116,'_wp_attached_file','2013/05/cropped-banner3.jpg'),(112,116,'_wp_attachment_context','custom-header'),(113,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2013/05/cropped-banner3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-banner3-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner3-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:28:\"cropped-banner3-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:27:\"cropped-banner3-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(114,116,'_wp_attachment_is_custom_header','twentyeleven'),(115,117,'_wp_attached_file','2013/05/cropped-banner4.jpg'),(116,117,'_wp_attachment_context','custom-header'),(117,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2013/05/cropped-banner4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-banner4-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner4-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:28:\"cropped-banner4-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:27:\"cropped-banner4-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(118,117,'_wp_attachment_is_custom_header','twentyeleven'),(119,118,'_wp_attached_file','2013/05/cropped-banner5.jpg'),(120,118,'_wp_attachment_context','custom-header'),(121,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2013/05/cropped-banner5.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-banner5-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner5-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:28:\"cropped-banner5-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:27:\"cropped-banner5-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(122,118,'_wp_attachment_is_custom_header','twentyeleven'),(123,119,'_wp_attached_file','2013/05/cropped-banner7.jpg'),(124,119,'_wp_attachment_context','custom-header'),(125,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2013/05/cropped-banner7.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-banner7-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner7-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:28:\"cropped-banner7-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:27:\"cropped-banner7-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(126,119,'_wp_attachment_is_custom_header','twentyeleven'),(128,121,'_wp_attached_file','2013/05/IMG_2734.jpg'),(129,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:20:\"2013/05/IMG_2734.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_2734-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_2734-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_2734-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_2734-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:21:\"IMG_2734-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"IMG_2734-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1298633847;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(130,122,'_wp_attached_file','2013/05/divya_yoga.jpg'),(131,122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:4:\"file\";s:22:\"2013/05/divya_yoga.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"divya_yoga-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"divya_yoga-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"divya_yoga-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"divya_yoga-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:23:\"divya_yoga-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:22:\"divya_yoga-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(132,9,'cpm_point','a:7:{s:4:\"name\";s:10:\"Divya Yoga\";s:11:\"description\";s:13:\"Saint-Lambert\";s:9:\"thumbnail\";s:76:\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/divya_yoga.jpg\";s:7:\"address\";s:48:\"675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada\";s:8:\"latitude\";s:17:\"45.50991639999999\";s:9:\"longitude\";s:18:\"-73.50477610000002\";s:4:\"icon\";s:97:\"http://divyayogamonteregie.org/french/wp-content/plugins/codepeople-post-map/images/icons/marker.png\";}'),(133,9,'cpm_map','a:13:{s:6:\"single\";b:1;s:4:\"zoom\";s:2:\"60\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:6:\"margin\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:4:\"type\";s:7:\"ROADMAP\";s:8:\"language\";s:2:\"en\";s:7:\"display\";s:3:\"map\";s:10:\"mousewheel\";b:1;s:14:\"zoompancontrol\";b:1;s:11:\"typecontrol\";b:1;s:6:\"points\";s:1:\"3\";}'),(134,133,'_edit_last','1'),(135,133,'_edit_lock','1381023811:1'),(136,133,'_wp_page_template','default'),(137,135,'_edit_last','1'),(138,135,'_edit_lock','1381023588:1'),(139,135,'_wp_page_template','default'),(140,137,'_edit_last','1'),(141,137,'_edit_lock','1381021793:1'),(142,137,'_wp_page_template','default'),(143,139,'_edit_last','1'),(144,139,'_edit_lock','1381022900:1'),(145,139,'_wp_page_template','default'),(146,141,'_wp_attached_file','2013/06/hospital_window.png'),(147,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2013/06/hospital_window.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"hospital_window-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(148,145,'_edit_last','1'),(149,145,'_edit_lock','1381024647:1'),(150,145,'_wp_page_template','default'),(151,147,'_edit_last','1'),(152,147,'_edit_lock','1381022522:1'),(153,147,'_wp_page_template','default'),(154,150,'_edit_last','1'),(155,150,'_edit_lock','1381021890:1'),(156,150,'_wp_page_template','default'),(157,152,'_edit_last','1'),(158,152,'_edit_lock','1381023298:1'),(159,152,'_wp_page_template','default'),(160,154,'_edit_last','1'),(161,154,'_edit_lock','1381022118:1'),(162,154,'_wp_page_template','default'),(175,164,'_wp_attached_file','2013/06/image014.jpg'),(176,164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image014.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image014-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image014-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image014-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image014-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image014-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(170,160,'_edit_last','1'),(171,160,'_edit_lock','1381022683:1'),(172,160,'_wp_page_template','default'),(173,163,'_wp_attached_file','2013/06/image008.jpg'),(174,163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image008.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image008-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image008-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image008-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image008-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image008-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(167,156,'_edit_last','1'),(168,156,'_edit_lock','1381020628:1'),(169,156,'_wp_page_template','default'),(177,165,'_wp_attached_file','2013/06/image002.jpg'),(178,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image002.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image002-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image002-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image002-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image002-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(179,166,'_wp_attached_file','2013/06/image004.jpg'),(180,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:624;s:6:\"height\";i:351;s:4:\"file\";s:20:\"2013/06/image004.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image004-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image004-624x288.jpg\";s:5:\"width\";i:624;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image004-624x288.jpg\";s:5:\"width\";i:624;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image004-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(181,167,'_wp_attached_file','2013/06/image006.jpg'),(182,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image006.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image006-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image006-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image006-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image006-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(183,168,'_wp_attached_file','2013/06/image010.jpg'),(184,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image010.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image010-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image010-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image010-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image010-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image010-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(185,169,'_wp_attached_file','2013/06/image012.jpg'),(186,169,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image012.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image012-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image012-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image012-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image012-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image012-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(187,162,'_edit_last','1'),(188,162,'_edit_lock','1381023708:1'),(189,162,'_wp_page_template','default'),(190,171,'_edit_last','1'),(191,171,'_edit_lock','1381024501:1'),(192,171,'_wp_page_template','default'),(193,173,'_edit_last','1'),(194,173,'_edit_lock','1381024809:1'),(195,173,'_wp_page_template','default'),(196,175,'_edit_last','1'),(197,175,'_edit_lock','1381025549:1'),(198,175,'_wp_page_template','default'),(199,177,'_edit_last','1'),(200,177,'_edit_lock','1381027391:1'),(201,177,'_wp_page_template','default'),(202,179,'_edit_last','1'),(203,179,'_edit_lock','1381020497:1'),(204,179,'_wp_page_template','default'),(382,379,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1980;s:6:\"height\";i:976;s:4:\"file\";s:25:\"2013/08/site_cloud_bg.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"site_cloud_bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"site_cloud_bg-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"site_cloud_bg-1024x504.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"site_cloud_bg-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:26:\"site_cloud_bg-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:25:\"site_cloud_bg-500x246.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(209,183,'_edit_last','1'),(210,183,'_edit_lock','1381022022:1'),(211,183,'_wp_page_template','default'),(212,185,'_edit_last','1'),(213,185,'_edit_lock','1381021679:1'),(214,185,'_wp_page_template','default'),(215,187,'_edit_last','1'),(216,187,'_edit_lock','1381023049:1'),(217,187,'_wp_page_template','default'),(218,190,'_edit_last','1'),(219,190,'_edit_lock','1379454371:1'),(220,190,'_wp_page_template','default'),(221,192,'_edit_last','1'),(222,192,'_edit_lock','1379458736:1'),(223,192,'_wp_page_template','default'),(224,194,'_edit_last','1'),(225,194,'_edit_lock','1379458907:1'),(226,194,'_wp_page_template','default'),(381,379,'_wp_attachment_context','custom-background'),(229,199,'_wp_attached_file','2013/06/image001.jpg'),(230,199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:304;s:6:\"height\";i:377;s:4:\"file\";s:20:\"2013/06/image001.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image001-241x300.jpg\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image001-304x288.jpg\";s:5:\"width\";i:304;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image001-304x288.jpg\";s:5:\"width\";i:304;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image001-241x300.jpg\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(231,200,'_edit_last','1'),(232,200,'_edit_lock','1379459200:1'),(233,200,'_wp_page_template','default'),(234,202,'_edit_last','1'),(235,202,'_edit_lock','1379455255:1'),(236,202,'_wp_page_template','default'),(237,204,'_edit_last','1'),(238,204,'_edit_lock','1379458520:1'),(239,204,'_wp_page_template','default'),(240,209,'_edit_last','1'),(241,209,'_edit_lock','1379455577:1'),(242,209,'_wp_page_template','default'),(243,211,'_edit_last','1'),(244,211,'_edit_lock','1379458335:1'),(245,211,'_wp_page_template','default'),(246,213,'_edit_last','1'),(247,213,'_edit_lock','1379458193:1'),(248,213,'_wp_page_template','default'),(249,199,'_edit_lock','1371345480:1'),(250,199,'_edit_lock','1371345480:1'),(259,225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:323;s:4:\"file\";s:21:\"2013/06/image0022.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"image0022-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"image0022-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"image0022-575x288.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:21:\"image0022-575x288.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:21:\"image0022-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(258,225,'_wp_attached_file','2013/06/image0022.jpg'),(256,218,'_wp_attached_file','2013/06/image0021.jpg'),(257,218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:272;s:4:\"file\";s:21:\"2013/06/image0021.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"image0021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"image0021-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:21:\"image0021-500x236.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(260,253,'_wp_attached_file','2013/06/image003.jpg'),(261,253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:628;s:6:\"height\";i:428;s:4:\"file\";s:20:\"2013/06/image003.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image003-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image003-628x288.jpg\";s:5:\"width\";i:628;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image003-628x288.jpg\";s:5:\"width\";i:628;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image003-440x300.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(348,121,'_edit_lock','1371681190:1'),(349,108,'_edit_lock','1371681062:1'),(350,291,'_wp_attached_file','2013/06/banner_aum.jpg'),(351,291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:22:\"2013/06/banner_aum.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"banner_aum-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner_aum-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"banner_aum-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:23:\"banner_aum-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:22:\"banner_aum-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(352,292,'_wp_attached_file','2013/06/cropped-banner_aum1.jpg'),(353,292,'_wp_attachment_context','custom-header'),(354,292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:31:\"2013/06/cropped-banner_aum1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-banner_aum1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"cropped-banner_aum1-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-banner_aum1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:32:\"cropped-banner_aum1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:31:\"cropped-banner_aum1-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(355,292,'_wp_attachment_is_custom_header','twentyeleven'),(356,293,'_wp_attached_file','2013/06/20130315_99_2.jpg'),(357,293,'_wp_attachment_context','custom-background'),(358,293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:25:\"2013/06/20130315_99_2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"20130315_99_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"20130315_99_2-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"20130315_99_2-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"20130315_99_2-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:26:\"20130315_99_2-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:25:\"20130315_99_2-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1363381652;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(359,293,'_wp_attachment_is_custom_background','twentyeleven'),(360,294,'_wp_attached_file','2013/06/20130601_99_1.jpg'),(361,294,'_wp_attachment_context','custom-background'),(362,294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:25:\"2013/06/20130601_99_1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"20130601_99_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"20130601_99_1-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"20130601_99_1-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"20130601_99_1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:26:\"20130601_99_1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:25:\"20130601_99_1-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1370111308;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"23.2\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";}}'),(363,294,'_wp_attachment_is_custom_background','twentyeleven'),(364,295,'_wp_attached_file','2013/06/Meeras-kitchen.jpg'),(365,295,'_wp_attachment_context','custom-background'),(366,295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:771;s:6:\"height\";i:544;s:4:\"file\";s:26:\"2013/06/Meeras-kitchen.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Meeras-kitchen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Meeras-kitchen-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Meeras-kitchen-771x288.jpg\";s:5:\"width\";i:771;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:26:\"Meeras-kitchen-771x288.jpg\";s:5:\"width\";i:771;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:26:\"Meeras-kitchen-425x300.jpg\";s:5:\"width\";i:425;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(280,263,'_wp_attached_file','2013/06/Lima-beans.jpg'),(281,263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:511;s:6:\"height\";i:438;s:4:\"file\";s:22:\"2013/06/Lima-beans.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Lima-beans-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Lima-beans-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Lima-beans-511x288.jpg\";s:5:\"width\";i:511;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:22:\"Lima-beans-511x288.jpg\";s:5:\"width\";i:511;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:22:\"Lima-beans-350x300.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(282,264,'_wp_attached_file','2013/06/Pumkin.jpg'),(283,264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:719;s:6:\"height\";i:539;s:4:\"file\";s:18:\"2013/06/Pumkin.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Pumkin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Pumkin-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"Pumkin-719x288.jpg\";s:5:\"width\";i:719;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:18:\"Pumkin-719x288.jpg\";s:5:\"width\";i:719;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:18:\"Pumkin-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(284,265,'_wp_attached_file','2013/06/Rhubarb-Sauce..jpg'),(285,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2013/06/Rhubarb-Sauce..jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Rhubarb-Sauce.-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Rhubarb-Sauce.-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Rhubarb-Sauce.-960x288.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:26:\"Rhubarb-Sauce.-960x288.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:26:\"Rhubarb-Sauce.-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(286,266,'_wp_attached_file','2013/06/20121123_48.jpg'),(287,266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_48.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_48-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_48-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_48-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_48-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_48-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_48-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671613;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(288,267,'_wp_attached_file','2013/06/20121123_50.jpg'),(289,267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_50.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_50-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_50-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_50-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_50-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_50-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_50-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671633;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(290,268,'_wp_attached_file','2013/06/20121123_49.jpg'),(291,268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_49.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_49-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_49-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_49-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_49-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_49-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_49-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671624;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(292,269,'_wp_attached_file','2013/06/20121123_51.jpg'),(293,269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_51.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_51-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_51-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_51-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_51-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_51-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_51-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671648;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(294,270,'_wp_attached_file','2013/06/20121123_46.jpg'),(295,270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_46.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_46-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_46-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_46-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_46-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_46-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_46-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671601;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(296,271,'_wp_attached_file','2013/06/20121123_44.jpg'),(297,271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_44.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_44-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_44-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_44-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_44-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_44-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_44-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671583;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(298,272,'_wp_attached_file','2013/06/20121123_40.jpg'),(299,272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_40.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_40-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_40-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_40-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_40-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_40-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_40-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671528;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(300,273,'_wp_attached_file','2013/06/20121123_39.jpg'),(301,273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_39.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_39-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_39-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_39-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_39-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_39-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_39-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671518;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(302,274,'_wp_attached_file','2013/06/20121123_41.jpg'),(303,274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_41.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_41-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_41-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_41-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_41-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_41-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_41-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671537;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(304,275,'_wp_attached_file','2013/06/20121123_43.jpg'),(305,275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_43.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_43-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_43-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_43-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_43-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_43-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_43-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671570;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(306,276,'_wp_attached_file','2013/06/20121123_36.jpg'),(307,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_36.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_36-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_36-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_36-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_36-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_36-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_36-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671495;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(308,277,'_wp_attached_file','2013/06/20121123_33.jpg'),(309,277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_33.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_33-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_33-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_33-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_33-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_33-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_33-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671469;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(310,278,'_wp_attached_file','2013/06/20121123_34.jpg'),(311,278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_34.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_34-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_34-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_34-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_34-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_34-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_34-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671475;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(312,279,'_wp_attached_file','2013/06/20121123_31.jpg'),(313,279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_31.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_31-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_31-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_31-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_31-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_31-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_31-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671445;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(314,280,'_wp_attached_file','2013/06/20121123_32.jpg'),(315,280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_32.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_32-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_32-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_32-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_32-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_32-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_32-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996447286321199499070644378662109375;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671455;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(316,281,'_wp_attached_file','2013/06/20121123_30.jpg'),(317,281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_30.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_30-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_30-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_30-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_30-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_30-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_30-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671435;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(318,282,'_wp_attached_file','2013/06/20121123_25.jpg'),(319,282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_25.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_25-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_25-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_25-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_25-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_25-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_25-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671624;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(320,283,'_wp_attached_file','2013/06/20121123_24.jpg'),(321,283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_24.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_24-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_24-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_24-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_24-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_24-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_24-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671613;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(322,267,'_edit_lock','1371678235:1'),(323,282,'_edit_lock','1371678288:1'),(324,281,'_edit_lock','1371678306:1'),(325,280,'_edit_lock','1371678318:1'),(326,271,'_edit_lock','1371678335:1'),(327,284,'_wp_attached_file','2013/06/20121123_241.jpg'),(328,284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:24:\"2013/06/20121123_241.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_241-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"20121123_241-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"20121123_241-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"20121123_241-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:25:\"20121123_241-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:24:\"20121123_241-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671613;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(329,284,'_edit_lock','1371678803:1'),(330,285,'_wp_attached_file','2013/06/20121123_18.jpg'),(331,285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_18.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_18-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_18-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_18-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_18-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_18-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671554;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(332,285,'_edit_lock','1371678811:1'),(333,286,'_wp_attached_file','2013/06/food1.jpg'),(334,286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:17:\"2013/06/food1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"food1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"food1-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"food1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:18:\"food1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:17:\"food1-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(335,287,'_wp_attached_file','2013/06/food7.jpg'),(336,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:17:\"2013/06/food7.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"food7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"food7-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"food7-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:18:\"food7-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:17:\"food7-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(383,379,'_wp_attachment_is_custom_background','twentyeleven'),(1004,638,'_menu_item_menu_item_parent','572'),(1003,638,'_menu_item_type','post_type'),(392,433,'_wp_attachment_context','custom-background'),(391,433,'_wp_attached_file','2013/09/ciel.jpg'),(369,346,'_edit_lock','1381023480:1'),(370,346,'_wp_page_template','default'),(371,352,'_edit_last','1'),(372,352,'_edit_lock','1381024278:1'),(373,352,'_wp_page_template','default'),(374,356,'_edit_last','1'),(375,356,'_edit_lock','1381022374:1'),(376,356,'_wp_page_template','default'),(368,346,'_edit_last','1'),(345,290,'_wp_attached_file','2013/06/IMG_4135.jpg'),(346,290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:20:\"2013/06/IMG_4135.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_4135-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_4135-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_4135-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_4135-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:21:\"IMG_4135-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"IMG_4135-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1371577679;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";}}'),(347,290,'_edit_lock','1371680900:1'),(367,295,'_wp_attachment_is_custom_background','twentyeleven'),(393,433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1980;s:6:\"height\";i:976;s:4:\"file\";s:16:\"2013/09/ciel.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"ciel-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"ciel-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"ciel-1024x504.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(394,433,'_wp_attachment_is_custom_background','magazino'),(1006,638,'_menu_item_object','page'),(1005,638,'_menu_item_object_id','150'),(413,1,'post_grid-thumbnail_thumbnail_id','117'),(422,1,'_thumbnail_id','118'),(402,438,'_thumbnail_id','114'),(403,438,'post_grid-thumbnail_thumbnail_id','291'),(404,438,'_edit_last','1'),(406,438,'_edit_lock','1381279059:1'),(420,440,'_thumbnail_id','117'),(408,440,'post_grid-thumbnail_thumbnail_id','116'),(409,440,'_edit_last','1'),(410,440,'_edit_lock','1381279421:1'),(425,564,'_menu_item_menu_item_parent','0'),(424,564,'_menu_item_type','post_type'),(426,564,'_menu_item_object_id','2'),(427,564,'_menu_item_object','page'),(428,564,'_menu_item_target',''),(429,564,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(430,564,'_menu_item_xfn',''),(431,564,'_menu_item_url',''),(532,584,'_menu_item_xfn',''),(433,565,'_menu_item_type','post_type'),(434,565,'_menu_item_menu_item_parent','0'),(435,565,'_menu_item_object_id','25'),(436,565,'_menu_item_object','page'),(437,565,'_menu_item_target',''),(438,565,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(439,565,'_menu_item_xfn',''),(440,565,'_menu_item_url',''),(529,584,'_menu_item_object','page'),(442,566,'_menu_item_type','post_type'),(443,566,'_menu_item_menu_item_parent','0'),(444,566,'_menu_item_object_id','12'),(445,566,'_menu_item_object','page'),(446,566,'_menu_item_target',''),(447,566,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(448,566,'_menu_item_xfn',''),(449,566,'_menu_item_url',''),(530,584,'_menu_item_target',''),(451,567,'_menu_item_type','post_type'),(452,567,'_menu_item_menu_item_parent','0'),(453,567,'_menu_item_object_id','9'),(454,567,'_menu_item_object','page'),(455,567,'_menu_item_target',''),(456,567,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(457,567,'_menu_item_xfn',''),(458,567,'_menu_item_url',''),(531,584,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(460,568,'_menu_item_type','post_type'),(461,568,'_menu_item_menu_item_parent','0'),(462,568,'_menu_item_object_id','6'),(463,568,'_menu_item_object','page'),(464,568,'_menu_item_target',''),(465,568,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(466,568,'_menu_item_xfn',''),(467,568,'_menu_item_url',''),(469,569,'_menu_item_type','post_type'),(470,569,'_menu_item_menu_item_parent','0'),(471,569,'_menu_item_object_id','33'),(472,569,'_menu_item_object','page'),(473,569,'_menu_item_target',''),(474,569,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(475,569,'_menu_item_xfn',''),(476,569,'_menu_item_url',''),(527,584,'_menu_item_menu_item_parent','0'),(478,570,'_menu_item_type','post_type'),(479,570,'_menu_item_menu_item_parent','0'),(480,570,'_menu_item_object_id','35'),(481,570,'_menu_item_object','page'),(482,570,'_menu_item_target',''),(483,570,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(484,570,'_menu_item_xfn',''),(485,570,'_menu_item_url',''),(526,584,'_menu_item_type','post_type'),(487,571,'_menu_item_type','post_type'),(488,571,'_menu_item_menu_item_parent','0'),(489,571,'_menu_item_object_id','39'),(490,571,'_menu_item_object','page'),(491,571,'_menu_item_target',''),(492,571,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(493,571,'_menu_item_xfn',''),(494,571,'_menu_item_url',''),(525,582,'_wp_page_template','default'),(496,572,'_menu_item_type','post_type'),(497,572,'_menu_item_menu_item_parent','0'),(498,572,'_menu_item_object_id','79'),(499,572,'_menu_item_object','page'),(500,572,'_menu_item_target',''),(501,572,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(502,572,'_menu_item_xfn',''),(503,572,'_menu_item_url',''),(524,582,'_edit_lock','1420332935:1'),(505,573,'_menu_item_type','post_type'),(506,573,'_menu_item_menu_item_parent','0'),(507,573,'_menu_item_object_id','31'),(508,573,'_menu_item_object','page'),(509,573,'_menu_item_target',''),(510,573,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(511,573,'_menu_item_xfn',''),(512,573,'_menu_item_url',''),(528,584,'_menu_item_object_id','582'),(514,574,'_menu_item_type','post_type'),(515,574,'_menu_item_menu_item_parent','0'),(516,574,'_menu_item_object_id','190'),(517,574,'_menu_item_object','page'),(518,574,'_menu_item_target',''),(519,574,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(520,574,'_menu_item_xfn',''),(521,574,'_menu_item_url',''),(523,582,'_edit_last','1'),(533,584,'_menu_item_url',''),(1124,666,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:19:\"2014/02/Comitee.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Comitee-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Comitee-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Comitee-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"GT-P5113\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1388329737;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.79\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";}}'),(1123,666,'_wp_attached_file','2014/02/Comitee.jpg'),(1122,665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:27:\"2014/02/20131229_075932.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20131229_075932-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20131229_075932-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20131229_075932-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"GT-P5113\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1388303971;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.79\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";}}'),(1121,665,'_wp_attached_file','2014/02/20131229_075932.jpg'),(1120,664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:27:\"2013/05/20131229_074557.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20131229_074557-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20131229_074557-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20131229_074557-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"GT-P5113\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1388303156;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.79\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";}}'),(1119,664,'_wp_attached_file','2013/05/20131229_074557.jpg'),(1117,662,'_menu_item_url',''),(1116,662,'_menu_item_xfn',''),(1115,662,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1114,662,'_menu_item_target',''),(1113,662,'_menu_item_object','page'),(1112,662,'_menu_item_object_id','659'),(1111,662,'_menu_item_menu_item_parent','0'),(1110,662,'_menu_item_type','post_type'),(1109,660,'_menu_item_url',''),(1108,660,'_menu_item_xfn',''),(1107,660,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1106,660,'_menu_item_target',''),(1105,660,'_menu_item_object','page'),(1104,660,'_menu_item_object_id','659'),(1103,660,'_menu_item_menu_item_parent','0'),(1099,659,'_edit_last','1'),(1100,659,'_edit_lock','1450739800:1'),(1097,653,'_menu_item_url',''),(1096,653,'_menu_item_xfn',''),(1095,653,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1094,653,'_menu_item_target',''),(1093,653,'_menu_item_object','page'),(1092,653,'_menu_item_object_id','648'),(1091,653,'_menu_item_menu_item_parent','572'),(1090,653,'_menu_item_type','post_type'),(1101,659,'_wp_page_template','default'),(1102,660,'_menu_item_type','post_type'),(1088,652,'_menu_item_url',''),(1087,652,'_menu_item_xfn',''),(634,596,'_menu_item_type','post_type'),(635,596,'_menu_item_menu_item_parent','571'),(636,596,'_menu_item_object_id','57'),(637,596,'_menu_item_object','page'),(638,596,'_menu_item_target',''),(639,596,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(640,596,'_menu_item_xfn',''),(641,596,'_menu_item_url',''),(742,608,'_menu_item_type','post_type'),(643,597,'_menu_item_type','post_type'),(644,597,'_menu_item_menu_item_parent','571'),(645,597,'_menu_item_object_id','48'),(646,597,'_menu_item_object','page'),(647,597,'_menu_item_target',''),(648,597,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(649,597,'_menu_item_xfn',''),(650,597,'_menu_item_url',''),(940,630,'_menu_item_type','post_type'),(652,598,'_menu_item_type','post_type'),(653,598,'_menu_item_menu_item_parent','571'),(654,598,'_menu_item_object_id','70'),(655,598,'_menu_item_object','page'),(656,598,'_menu_item_target',''),(657,598,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(658,598,'_menu_item_xfn',''),(659,598,'_menu_item_url',''),(740,607,'_menu_item_url',''),(661,599,'_menu_item_type','post_type'),(662,599,'_menu_item_menu_item_parent','571'),(663,599,'_menu_item_object_id','61'),(664,599,'_menu_item_object','page'),(665,599,'_menu_item_target',''),(666,599,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(667,599,'_menu_item_xfn',''),(668,599,'_menu_item_url',''),(739,607,'_menu_item_xfn',''),(670,600,'_menu_item_type','post_type'),(671,600,'_menu_item_menu_item_parent','571'),(672,600,'_menu_item_object_id','55'),(673,600,'_menu_item_object','page'),(674,600,'_menu_item_target',''),(675,600,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(676,600,'_menu_item_xfn',''),(677,600,'_menu_item_url',''),(679,601,'_menu_item_type','post_type'),(680,601,'_menu_item_menu_item_parent','571'),(681,601,'_menu_item_object_id','63'),(682,601,'_menu_item_object','page'),(683,601,'_menu_item_target',''),(684,601,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(685,601,'_menu_item_xfn',''),(686,601,'_menu_item_url',''),(738,607,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(688,602,'_menu_item_type','post_type'),(689,602,'_menu_item_menu_item_parent','571'),(690,602,'_menu_item_object_id','74'),(691,602,'_menu_item_object','page'),(692,602,'_menu_item_target',''),(693,602,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(694,602,'_menu_item_xfn',''),(695,602,'_menu_item_url',''),(737,607,'_menu_item_target',''),(697,603,'_menu_item_type','post_type'),(698,603,'_menu_item_menu_item_parent','571'),(699,603,'_menu_item_object_id','42'),(700,603,'_menu_item_object','page'),(701,603,'_menu_item_target',''),(702,603,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(703,603,'_menu_item_xfn',''),(704,603,'_menu_item_url',''),(736,607,'_menu_item_object','page'),(706,604,'_menu_item_type','post_type'),(707,604,'_menu_item_menu_item_parent','571'),(708,604,'_menu_item_object_id','76'),(709,604,'_menu_item_object','page'),(710,604,'_menu_item_target',''),(711,604,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(712,604,'_menu_item_xfn',''),(713,604,'_menu_item_url',''),(735,607,'_menu_item_object_id','179'),(715,605,'_menu_item_type','post_type'),(716,605,'_menu_item_menu_item_parent','571'),(717,605,'_menu_item_object_id','45'),(718,605,'_menu_item_object','page'),(719,605,'_menu_item_target',''),(720,605,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(721,605,'_menu_item_xfn',''),(722,605,'_menu_item_url',''),(734,607,'_menu_item_menu_item_parent','572'),(724,606,'_menu_item_type','post_type'),(725,606,'_menu_item_menu_item_parent','571'),(726,606,'_menu_item_object_id','72'),(727,606,'_menu_item_object','page'),(728,606,'_menu_item_target',''),(729,606,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(730,606,'_menu_item_xfn',''),(731,606,'_menu_item_url',''),(733,607,'_menu_item_type','post_type'),(743,608,'_menu_item_menu_item_parent','572'),(744,608,'_menu_item_object_id','346'),(745,608,'_menu_item_object','page'),(746,608,'_menu_item_target',''),(747,608,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(748,608,'_menu_item_xfn',''),(749,608,'_menu_item_url',''),(751,609,'_menu_item_type','post_type'),(752,609,'_menu_item_menu_item_parent','572'),(753,609,'_menu_item_object_id','139'),(754,609,'_menu_item_object','page'),(755,609,'_menu_item_target',''),(756,609,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(757,609,'_menu_item_xfn',''),(758,609,'_menu_item_url',''),(938,629,'_menu_item_url',''),(760,610,'_menu_item_type','post_type'),(761,610,'_menu_item_menu_item_parent','572'),(762,610,'_menu_item_object_id','187'),(763,610,'_menu_item_object','page'),(764,610,'_menu_item_target',''),(765,610,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(766,610,'_menu_item_xfn',''),(767,610,'_menu_item_url',''),(937,629,'_menu_item_xfn',''),(769,611,'_menu_item_type','post_type'),(770,611,'_menu_item_menu_item_parent','572'),(771,611,'_menu_item_object_id','177'),(772,611,'_menu_item_object','page'),(773,611,'_menu_item_target',''),(774,611,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(775,611,'_menu_item_xfn',''),(776,611,'_menu_item_url',''),(778,612,'_menu_item_type','post_type'),(779,612,'_menu_item_menu_item_parent','572'),(780,612,'_menu_item_object_id','145'),(781,612,'_menu_item_object','page'),(782,612,'_menu_item_target',''),(783,612,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(784,612,'_menu_item_xfn',''),(785,612,'_menu_item_url',''),(936,629,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(787,613,'_menu_item_type','post_type'),(788,613,'_menu_item_menu_item_parent','572'),(789,613,'_menu_item_object_id','173'),(790,613,'_menu_item_object','page'),(791,613,'_menu_item_target',''),(792,613,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(793,613,'_menu_item_xfn',''),(794,613,'_menu_item_url',''),(935,629,'_menu_item_target',''),(796,614,'_menu_item_type','post_type'),(797,614,'_menu_item_menu_item_parent','572'),(798,614,'_menu_item_object_id','147'),(799,614,'_menu_item_object','page'),(800,614,'_menu_item_target',''),(801,614,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(802,614,'_menu_item_xfn',''),(803,614,'_menu_item_url',''),(934,629,'_menu_item_object','page'),(805,615,'_menu_item_type','post_type'),(806,615,'_menu_item_menu_item_parent','572'),(807,615,'_menu_item_object_id','154'),(808,615,'_menu_item_object','page'),(809,615,'_menu_item_target',''),(810,615,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(811,615,'_menu_item_xfn',''),(812,615,'_menu_item_url',''),(933,629,'_menu_item_object_id','211'),(814,616,'_menu_item_type','post_type'),(815,616,'_menu_item_menu_item_parent','572'),(816,616,'_menu_item_object_id','135'),(817,616,'_menu_item_object','page'),(818,616,'_menu_item_target',''),(819,616,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(820,616,'_menu_item_xfn',''),(821,616,'_menu_item_url',''),(932,629,'_menu_item_menu_item_parent','574'),(823,617,'_menu_item_type','post_type'),(824,617,'_menu_item_menu_item_parent','572'),(825,617,'_menu_item_object_id','160'),(826,617,'_menu_item_object','page'),(827,617,'_menu_item_target',''),(828,617,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(829,617,'_menu_item_xfn',''),(830,617,'_menu_item_url',''),(931,629,'_menu_item_type','post_type'),(832,618,'_menu_item_type','post_type'),(833,618,'_menu_item_menu_item_parent','572'),(834,618,'_menu_item_object_id','185'),(835,618,'_menu_item_object','page'),(836,618,'_menu_item_target',''),(837,618,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(838,618,'_menu_item_xfn',''),(839,618,'_menu_item_url',''),(1000,637,'_menu_item_xfn',''),(841,619,'_menu_item_type','post_type'),(842,619,'_menu_item_menu_item_parent','572'),(843,619,'_menu_item_object_id','162'),(844,619,'_menu_item_object','page'),(845,619,'_menu_item_target',''),(846,619,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(847,619,'_menu_item_xfn',''),(848,619,'_menu_item_url',''),(929,628,'_menu_item_url',''),(850,620,'_menu_item_type','post_type'),(851,620,'_menu_item_menu_item_parent','572'),(852,620,'_menu_item_object_id','152'),(853,620,'_menu_item_object','page'),(854,620,'_menu_item_target',''),(855,620,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(856,620,'_menu_item_xfn',''),(857,620,'_menu_item_url',''),(928,628,'_menu_item_xfn',''),(859,621,'_menu_item_type','post_type'),(860,621,'_menu_item_menu_item_parent','572'),(861,621,'_menu_item_object_id','171'),(862,621,'_menu_item_object','page'),(863,621,'_menu_item_target',''),(864,621,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(865,621,'_menu_item_xfn',''),(866,621,'_menu_item_url',''),(868,622,'_menu_item_type','post_type'),(869,622,'_menu_item_menu_item_parent','572'),(870,622,'_menu_item_object_id','175'),(871,622,'_menu_item_object','page'),(872,622,'_menu_item_target',''),(873,622,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(874,622,'_menu_item_xfn',''),(875,622,'_menu_item_url',''),(927,628,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(877,623,'_menu_item_type','post_type'),(878,623,'_menu_item_menu_item_parent','572'),(879,623,'_menu_item_object_id','356'),(880,623,'_menu_item_object','page'),(881,623,'_menu_item_target',''),(882,623,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(883,623,'_menu_item_xfn',''),(884,623,'_menu_item_url',''),(926,628,'_menu_item_target',''),(886,624,'_menu_item_type','post_type'),(887,624,'_menu_item_menu_item_parent','572'),(888,624,'_menu_item_object_id','133'),(889,624,'_menu_item_object','page'),(890,624,'_menu_item_target',''),(891,624,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(892,624,'_menu_item_xfn',''),(893,624,'_menu_item_url',''),(925,628,'_menu_item_object','page'),(895,625,'_menu_item_type','post_type'),(896,625,'_menu_item_menu_item_parent','572'),(897,625,'_menu_item_object_id','89'),(898,625,'_menu_item_object','page'),(899,625,'_menu_item_target',''),(900,625,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(901,625,'_menu_item_xfn',''),(902,625,'_menu_item_url',''),(924,628,'_menu_item_object_id','200'),(904,626,'_menu_item_type','post_type'),(905,626,'_menu_item_menu_item_parent','572'),(906,626,'_menu_item_object_id','137'),(907,626,'_menu_item_object','page'),(908,626,'_menu_item_target',''),(909,626,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(910,626,'_menu_item_xfn',''),(911,626,'_menu_item_url',''),(923,628,'_menu_item_menu_item_parent','574'),(913,627,'_menu_item_type','post_type'),(914,627,'_menu_item_menu_item_parent','572'),(915,627,'_menu_item_object_id','183'),(916,627,'_menu_item_object','page'),(917,627,'_menu_item_target',''),(918,627,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(919,627,'_menu_item_xfn',''),(920,627,'_menu_item_url',''),(922,628,'_menu_item_type','post_type'),(941,630,'_menu_item_menu_item_parent','574'),(942,630,'_menu_item_object_id','202'),(943,630,'_menu_item_object','page'),(944,630,'_menu_item_target',''),(945,630,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(946,630,'_menu_item_xfn',''),(947,630,'_menu_item_url',''),(999,637,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(949,631,'_menu_item_type','post_type'),(950,631,'_menu_item_menu_item_parent','574'),(951,631,'_menu_item_object_id','213'),(952,631,'_menu_item_object','page'),(953,631,'_menu_item_target',''),(954,631,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(955,631,'_menu_item_xfn',''),(956,631,'_menu_item_url',''),(998,637,'_menu_item_target',''),(958,632,'_menu_item_type','post_type'),(959,632,'_menu_item_menu_item_parent','574'),(960,632,'_menu_item_object_id','209'),(961,632,'_menu_item_object','page'),(962,632,'_menu_item_target',''),(963,632,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(964,632,'_menu_item_xfn',''),(965,632,'_menu_item_url',''),(997,637,'_menu_item_object','page'),(967,633,'_menu_item_type','post_type'),(968,633,'_menu_item_menu_item_parent','574'),(969,633,'_menu_item_object_id','194'),(970,633,'_menu_item_object','page'),(971,633,'_menu_item_target',''),(972,633,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(973,633,'_menu_item_xfn',''),(974,633,'_menu_item_url',''),(996,637,'_menu_item_object_id','200'),(976,634,'_menu_item_type','post_type'),(977,634,'_menu_item_menu_item_parent','574'),(978,634,'_menu_item_object_id','192'),(979,634,'_menu_item_object','page'),(980,634,'_menu_item_target',''),(981,634,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(982,634,'_menu_item_xfn',''),(983,634,'_menu_item_url',''),(995,637,'_menu_item_menu_item_parent','574'),(985,635,'_menu_item_type','post_type'),(986,635,'_menu_item_menu_item_parent','574'),(987,635,'_menu_item_object_id','204'),(988,635,'_menu_item_object','page'),(989,635,'_menu_item_target',''),(990,635,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(991,635,'_menu_item_xfn',''),(992,635,'_menu_item_url',''),(994,637,'_menu_item_type','post_type'),(1001,637,'_menu_item_url',''),(1007,638,'_menu_item_target',''),(1008,638,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1009,638,'_menu_item_xfn',''),(1010,638,'_menu_item_url',''),(1032,641,'_menu_item_object_id','65'),(1012,639,'_menu_item_type','post_type'),(1013,639,'_menu_item_menu_item_parent','572'),(1014,639,'_menu_item_object_id','352'),(1015,639,'_menu_item_object','page'),(1016,639,'_menu_item_target',''),(1017,639,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1018,639,'_menu_item_xfn',''),(1019,639,'_menu_item_url',''),(1031,641,'_menu_item_menu_item_parent','571'),(1021,640,'_menu_item_type','post_type'),(1022,640,'_menu_item_menu_item_parent','572'),(1023,640,'_menu_item_object_id','156'),(1024,640,'_menu_item_object','page'),(1025,640,'_menu_item_target',''),(1026,640,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1027,640,'_menu_item_xfn',''),(1028,640,'_menu_item_url',''),(1030,641,'_menu_item_type','post_type'),(1033,641,'_menu_item_object','page'),(1034,641,'_menu_item_target',''),(1035,641,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1036,641,'_menu_item_xfn',''),(1037,641,'_menu_item_url',''),(1075,648,'_edit_last','1'),(1039,642,'_menu_item_type','post_type'),(1040,642,'_menu_item_menu_item_parent','571'),(1041,642,'_menu_item_object_id','53'),(1042,642,'_menu_item_object','page'),(1043,642,'_menu_item_target',''),(1044,642,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1045,642,'_menu_item_xfn',''),(1046,642,'_menu_item_url',''),(1077,648,'_wp_page_template','default'),(1086,652,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1085,652,'_menu_item_target',''),(1084,652,'_menu_item_object','page'),(1083,652,'_menu_item_object_id','650'),(1082,652,'_menu_item_menu_item_parent','572'),(1081,652,'_menu_item_type','post_type'),(1057,644,'_menu_item_type','post_type'),(1058,644,'_menu_item_menu_item_parent','571'),(1059,644,'_menu_item_object_id','59'),(1060,644,'_menu_item_object','page'),(1061,644,'_menu_item_target',''),(1062,644,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1063,644,'_menu_item_xfn',''),(1064,644,'_menu_item_url',''),(1076,648,'_edit_lock','1386210293:1'),(1066,645,'_menu_item_type','post_type'),(1067,645,'_menu_item_menu_item_parent','571'),(1068,645,'_menu_item_object_id','67'),(1069,645,'_menu_item_object','page'),(1070,645,'_menu_item_target',''),(1071,645,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1072,645,'_menu_item_xfn',''),(1073,645,'_menu_item_url',''),(1078,650,'_edit_last','1'),(1079,650,'_edit_lock','1386210662:1'),(1080,650,'_wp_page_template','default'),(1125,669,'_edit_last','1'),(1126,669,'_edit_lock','1396131623:1'),(1127,669,'_wp_page_template','default'),(1128,671,'_edit_last','1'),(1129,671,'_edit_lock','1396131679:1'),(1130,671,'_wp_page_template','default'),(1131,673,'_edit_last','1'),(1132,673,'_edit_lock','1396131747:1'),(1133,673,'_wp_page_template','default');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int NOT NULL DEFAULT '0',
  `post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`),
  KEY `post_name` (`post_name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=686 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (1,1,'2013-05-08 17:12:14','2013-05-08 17:12:14','Chaque dernier Samedi du mois nous avons un conférencier de 11.00 à 11.45\r\n\r\n&nbsp;\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724','Conférence','','publish','open','open','','hello-world','','','2013-10-08 20:46:30','2013-10-09 00:46:30','',0,'http://divyayogamonteregie.org/french/?p=1',0,'post','',0),(2,1,'2013-05-08 17:12:14','2013-05-08 17:12:14','Rendre accessible la pratique de base du yoga à tous et sans frais.\r\n\r\nLe fondateur de Divya Yoga, Swami Rana Dev, dit “ Une bonne santé est un droit de naissance pour chaque homme (femme)”. En effectuant les postures de yoga, asanas, les exercices, mudras, pranayama, méditation et en fournissant un discours de motivation cela permet à l’esprit de se libérer du stress et au corps de se libérer de la maladie. En mettant en évidence que la clé pour une bonne santé physique et une bonne santé mentale est sous le contrôle de chacun. En prenant contact avec son soi intérieur, nous pouvons expérimenter un état de bonheur complet et de félicité.\r\n\r\nCe Yoga Divya s’adresse aux gens de tout âge. Nous débutons notre session par des exercices de réchauffement (12-15), le salut au soleil et une lecture de motivation. Nous effectuons certaines accu pressions, 6 mudras, 7 pranayamas et des micro exercices pour les yeux, les doigts, les orteils, le visage et le cou. Font également partie du cours : le Yoga du rire et le Yoga du super cerveau. Nous terminons la session par la position savasana, la lecture d’un poème de motivation, mantra et prière.\r\n\r\nAprès la pratique du yoga, de super aliments : raisins et bananes sont disponibles pour les yogis.\r\n\r\nLe yoga est une façon merveilleuse de faire de l’exercice, de s’étirer et de relaxer le corps et l’esprit cela permettant d’avoir une vie en santé et de longue durée. Il permet de relier le corps, l’esprit et l’âme. Nous pouvons aussi créer un environnement où les gens peuvent interagir pour l’amélioration de leurs conditions de vie.','Notre Mission','','publish','open','open','','sample-page','','','2013-09-19 19:34:31','2013-09-19 23:34:31','',0,'http://divyayogamonteregie.org/french/?page_id=2',0,'page','',0),(398,1,'2013-09-17 19:11:15','2013-09-17 23:11:15','<h1><strong><span style=\"text-decoration: underline;\">Notre Mission</span></strong></h1>\r\nRendre accessible la pratique de base du yoga à tous et sans frais.\r\n\r\nLe fondateur de Divya Yoga, Swami Rana Dev, dit “ Une bonne santé est un droit de naissance pour chaque homme (femme)”. En effectuant les postures de yoga, asanas, les exercices, mudras, pranayama, méditation et en fournissant un discours de motivation cela permet à l’esprit de se libérer du stress et au corps de se libérer de la maladie. En mettant en évidence que la clé pour une bonne santé physique et une bonne santé mentale est sous le contrôle de chacun. En prenant contact avec son soi intérieur, nous pouvons expérimenter un état de bonheur complet et de félicité.\r\n\r\nCe Yoga Divya s’adresse aux gens de tout âge. Nous débutons notre session par des exercices de réchauffement (12-15), le salut au soleil et une lecture de motivation. Nous effectuons certaines accu pressions, 6 mudras, 7 pranayamas et des micro exercices pour les yeux, les doigts, les orteils, le visage et le cou. Font également partie du cours : le Yoga du rire et le Yoga du super cerveau. Nous terminons la session par la position savasana, la lecture d’un poème de motivation, mantra et prière.\r\n\r\nAprès la pratique du yoga, de super aliments : raisins et bananes sont disponibles pour les yogis.\r\n\r\nLe yoga est une façon merveilleuse de faire de l’exercice, de s’étirer et de relaxer le corps et l’esprit cela permettant d’avoir une vie en santé et de longue durée. Il permet de relier le corps, l’esprit et l’âme. Nous pouvons aussi créer un environnement où les gens peuvent interagir pour l’amélioration de leurs conditions de vie.','Notre Mission','','inherit','closed','closed','','2-autosave-v1','','','2013-09-17 19:11:15','2013-09-17 23:11:15','',2,'http://divyayogamonteregie.org/french/?p=398',0,'revision','',0),(5,1,'2013-05-08 17:12:14','2013-05-08 17:12:14','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://divyayogamonteregie.org/french/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2013-05-08 17:12:14','2013-05-08 17:12:14','',2,'http://divyayogamonteregie.org/french/?p=5',0,'revision','',0),(6,1,'2013-05-08 21:19:24','2013-05-08 21:19:24','<p style=\"text-align: justify;\"> </p>\r\n<b>Professeurs</b>\r\n<p style=\"text-align: justify;\"> </p>\r\n<b>Vinesh Saxena</b> est un professeur de yoga formé par Patanjali yoga peeth. Il a pratiqué le yoga depuis son enfance. Monsieur Saxena est un autodidacte. Il vient d’une famille modeste et a travaillé fort pour atteindre ses buts. Il a gagné de nombreuses bourses d’études alors qu’il était étudiant. Il détient une maîtrise en ingénierie et une maitrise en administration des affaires avec une désignation de comptable. Il a longtemps travaillé dans le domaine de l’ingénierie et a enseigné aux universités Concordia et McGill.\r\n<p style=\"text-align: justify;\"> </p>\r\nIl a pris sa retraite vers l’âge de 50 ans dans le but de poursuivre sa passion. Il a constitué une fondation de bienfaisance qui vient en aide aux personnes nécessiteuses. Sur le site internet de la fondation, il décrit aussi « sept principes simples de vie » à partir desquels, si les gens les appliquent, les gens vont retrouver le contrôle de leur vie, devenir heureux et devenir des êtres autonomes.\r\n<p style=\"text-align: justify;\"> </p>\r\nPour deuxième objectif de la fondation, il a pour défi de trouver les réponses aux questions restées sans réponse. C’est à dire “y a-t-il une âme?”<span style=\"font-size: medium;\">  </span>“y a-t-il une vie après la mort?” “dieu existe-t-il?”\r\n<p style=\"text-align: justify;\"> </p>\r\nDans la continuité du thème “d’aider les gens nécessiteux » et de la spiritualité, il a débuté des sessions de yoga gratuites pour tous depuis janvier 2010. Quoi qu’il arrive, ces séances de yoga sont tenues chaque samedi (52 semaines par année) pour aider le bien-être de la population et l’amélioration de la société.\r\n<p style=\"text-align: justify;\"> </p>\r\n<b>Meera Trivedi</b> est un professeur de yoga formée par Patanjali yoga peeth. Elle est née d’une famille brahmane, le yoga était son rituel quotidien d’aussi loin qu’elle se souvienne. Elle était capable de se tenir sur la tête déjà à la maternelle. Son premier professeur de yoga était son père. Elle se souvient de son père dans la cour, assis sur son matelas, faisant des respirations nasales alternées. Après avoir fait son B.Sc en biologie et chimie, elle devint professeur de biologie dans un lycée en Inde. En enseignant l’anatomie humaine et la physiologie, alors qu’elle faisait du yoga, elle a compris graduellement l’utilité et les faits scientifiques impliqués dans le yoga. Elle a immigré aux États-Unis en 1994 et puis s’est mariée et a immigré au Canada. Présentement elle travaille en laboratoire à l’école<span style=\"font-size: medium;\">  </span>Chambly Academy.\r\n<p style=\"text-align: justify;\"> </p>\r\nElle croit que le yoga pratiqué sur le matelas, comme l’aérobie, provoque des effets thérapeutiques et physiothérapeutiques de la même façon qu’elle croit aux effets du yoga hors du tapis. Si nous faisons du yoga et menons aussi une vie pieuse, libre de culpabilité alors nos organes vont fonctionner correctement. Parce qu’à partir du moment où nous faisons quelque chose de mal, notre rythme cardiaque augmente alors pourquoi faire quelque chose de mal en premier lieu. En premier lieu, elle croit et met en pratique le yoga de la dévotion et le yoga du karma, puis vient en deuxième lieu la pratique du yoga sur matelas. Toutes ces choses ajoutent beaucoup à notre longévité, notre santé et notre âme. Elle croit aussi<span style=\"font-size: medium;\">  </span>pour le bon fonctionnement de l’esprit que le yoga du rire et le yoga du super cerveau peuvent apporter une grande contribution. Elle s’efforce également de suivre<span style=\"font-size: medium;\">  </span>les huit branches du yoga autant qu’elle peut.\r\n<p style=\"text-align: justify;\"><strong></strong></p>','Instructeurs','','publish','closed','closed','','instructors','','','2013-09-19 19:34:31','2013-09-19 23:34:31','',0,'http://divyayogamonteregie.org/french/?page_id=6',0,'page','',0),(7,1,'2013-05-08 21:18:54','2013-05-08 21:18:54','<strong>Vinesh Saxena</strong> is yoga instructor trained by Patanjali yoga peeth. He has been practicing yoga since his childhood. Mr. Saxena is “self made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarship while he was student. He holds a Masters degree in Engineering and Masters in business administration along with an Accounting designation. He has worked a long time in engineering and has taught on part time basis in Concordia and McGill universities.\n\nHe retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his web site of foundation he also describes “Seven simple principals of life” if people follow these principals they can gain control of their life, be happy and self sufficient beings.\n\nAs a second objective of the foundation he also challenges to find answers to unanswered questions. i.e. “is there a soul” “Is there life after death”  “Does God exist”\n\nWith continuing theme of “help the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nMeera Trivedi is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for ChamblyAcademy.\n\nShe believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.\n\n&nbsp;','Instructors','','inherit','closed','closed','','6-revision-v1','','','2013-05-08 21:18:54','2013-05-08 21:18:54','',6,'http://divyayogamonteregie.org/french/?p=7',0,'revision','',0),(8,1,'2013-09-16 22:49:04','2013-09-17 02:49:04','<p style=\"text-align: justify;\"> </p>\r\n<b>Professeurs</b>\r\n<p style=\"text-align: justify;\"> </p>\r\n<b>Vinesh Saxena</b> est un professeur de yoga formé par Patanjali yoga peeth. Il a pratiqué le yoga depuis son enfance. Monsieur Saxena est un autodidacte. Il vient d’une famille modeste et a travaillé fort pour atteindre ses buts. Il a gagné de nombreuses bourses d’études alors qu’il était étudiant. Il détient une maîtrise en ingénierie et une maitrise en administration des affaires avec une désignation de comptable. Il a longtemps travaillé dans le domaine de l’ingénierie et a enseigné aux universités Concordia et McGill.\r\n<p style=\"text-align: justify;\"> </p>\r\nIl a pris sa retraite vers l’âge de 50 ans dans le but de poursuivre sa passion. Il a constitué une fondation de bienfaisance qui vient en aide aux personnes nécessiteuses. Sur le site internet de la fondation, il décrit aussi « sept principes simples de vie » à partir desquels, si les gens les appliquent, les gens vont retrouver le contrôle de leur vie, devenir heureux et devenir des êtres autonomes.\r\n<p style=\"text-align: justify;\"> </p>\r\nPour deuxième objectif de la fondation, il a pour défi de trouver les réponses aux questions restées sans réponse. C’est à dire “y a-t-il une âme?”<span style=\"font-size: medium;\">  </span>“y a-t-il une vie après la mort?” “dieu existe-t-il?”\r\n<p style=\"text-align: justify;\"> </p>\r\nDans la continuité du thème “d’aider les gens nécessiteux » et de la spiritualité, il a débuté des sessions de yoga gratuites pour tous depuis janvier 2010. Quoi qu’il arrive, ces séances de yoga sont tenues chaque samedi (52 semaines par année) pour aider le bien-être de la population et l’amélioration de la société.\r\n<p style=\"text-align: justify;\"> </p>\r\n<b>Meera Trivedi</b> est un professeur de yoga formée par Patanjali yoga peeth. Elle est née d’une famille brahmane, le yoga était son rituel quotidien d’aussi loin qu’elle se souvienne. Elle était capable de se tenir sur la tête déjà à la maternelle. Son premier professeur de yoga était son père. Elle se souvient de son père dans la cour, assis sur son matelas, faisant des respirations nasales alternées. Après avoir fait son B.Sc en biologie et chimie, elle devint professeur de biologie dans un lycée en Inde. En enseignant l’anatomie humaine et la physiologie, alors qu’elle faisait du yoga, elle a compris graduellement l’utilité et les faits scientifiques impliqués dans le yoga. Elle a immigré aux États-Unis en 1994 et puis s’est mariée et a immigré au Canada. Présentement elle travaille en laboratoire à l’école<span style=\"font-size: medium;\">  </span>Chambly Academy.\r\n<p style=\"text-align: justify;\"> </p>\r\nElle croit que le yoga pratiqué sur le matelas, comme l’aérobie, provoque des effets thérapeutiques et physiothérapeutiques de la même façon qu’elle croit aux effets du yoga hors du tapis. Si nous faisons du yoga et menons aussi une vie pieuse, libre de culpabilité alors nos organes vont fonctionner correctement. Parce qu’à partir du moment où nous faisons quelque chose de mal, notre rythme cardiaque augmente alors pourquoi faire quelque chose de mal en premier lieu. En premier lieu, elle croit et met en pratique le yoga de la dévotion et le yoga du karma, puis vient en deuxième lieu la pratique du yoga sur matelas. Toutes ces choses ajoutent beaucoup à notre longévité, notre santé et notre âme. Elle croit aussi<span style=\"font-size: medium;\">  </span>pour le bon fonctionnement de l’esprit que le yoga du rire et le yoga du super cerveau peuvent apporter une grande contribution. Elle s’efforce également de suivre<span style=\"font-size: medium;\">  </span>les huit branches du yoga autant qu’elle peut.\r\n<p style=\"text-align: justify;\"><strong></strong></p>','Instructeurs','','inherit','closed','closed','','6-autosave-v1','','','2013-09-16 22:49:04','2013-09-17 02:49:04','',6,'http://divyayogamonteregie.org/french/?p=8',0,'revision','',0),(9,1,'2013-05-08 21:36:00','2013-05-08 21:36:00','<div>\r\n\r\n<b>Horaire et Lieu</b>\r\n\r\n<b>Chaque Samedi 9h-11h toute l’année durant</b>\r\n\r\n675 Rue Green, Saint-Lambert, QCJ4P 1V9, Canada\r\n\r\nGym de Chambly Academy\r\n\r\n<b>              </b>\r\n\r\n<b>Mercredi  6:30 to 7:30 Sept-Juin (quand Terry Fox est ouvert)</b>\r\n<div>\r\n\r\n1648 rue Langevin, Saint- Hubert, Québec J4T 1X7\r\n\r\n</div>\r\n</div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>','Horaire et Lieu','','publish','closed','closed','','schedule-location','','','2014-09-15 20:29:03','2014-09-16 00:29:03','',0,'http://divyayogamonteregie.org/french/?page_id=9',0,'page','',0),(10,1,'2013-05-08 21:32:39','2013-05-08 21:32:39','<strong>Saturday 9-11 pm</strong>\n\nOur location\n\n675 Green, St. Lambert , Quebec J4P1V9\n\n&nbsp;\n\nPut google maps\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>Thursday  6:30 to 7:30</strong>\n\n1648 Langevin, St. Hubert, Quebec J4T 1X7\n\n&nbsp;\n\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-08 21:32:39','2013-05-08 21:32:39','',9,'http://divyayogamonteregie.org/french/?p=10',0,'revision','',0),(124,1,'2013-05-18 22:40:08','2013-05-19 02:40:08','<strong>Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:40:08','2013-05-19 02:40:08','',9,'http://divyayogamonteregie.org/french/?p=124',0,'revision','',0),(125,1,'2013-05-18 22:48:01','2013-05-19 02:48:01','<strong>[codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:48:01','2013-05-19 02:48:01','',9,'http://divyayogamonteregie.org/french/?p=125',0,'revision','',0),(11,1,'2014-09-15 20:28:19','2014-09-16 00:28:19','<div>\n\n<b>Horaire et Lieu</b>\n\n<b>Chaque Samedi 9h-11h toute l’année durant</b>\n\n675 Rue Green, Saint-Lambert, QCJ4P 1V9, Canada\n\nGym de Chambly Academy\n\n<b>              </b>\n\n<b>Mecredi  6:30 to 7:30 Sept-Juin (quand Terry Fox est ouvert)</b>\n<div>\n\n1648 rue Langevin, Saint- Hubert, Québec J4T 1X7\n\n</div>\n</div>\n<div> </div>\n<div> </div>\n<div> </div>\n<div> </div>\n<div> </div>\n<div> </div>','Horaire et Lieu','','inherit','closed','closed','','9-autosave-v1','','','2014-09-15 20:28:19','2014-09-16 00:28:19','',9,'http://divyayogamonteregie.org/french/?p=11',0,'revision','',0),(121,1,'2013-05-18 22:26:42','2013-05-19 02:26:42','','IMG_2734','','inherit','closed','closed','','img_2734','','','2013-05-18 22:26:42','2013-05-19 02:26:42','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/IMG_2734.jpg',0,'attachment','image/jpeg',0),(122,1,'2013-05-18 22:30:42','2013-05-19 02:30:42','','divya_yoga','','inherit','closed','closed','','divya_yoga','','','2013-05-18 22:30:42','2013-05-19 02:30:42','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/divya_yoga.jpg',0,'attachment','image/jpeg',0),(123,1,'2013-05-09 08:35:27','2013-05-09 12:35:27','<strong>Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[easy-media med=\"\" align=\"center\"]\r\n\r\n&nbsp;\r\n\r\nPut google maps\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://maps.google.ca/maps/empw?url=https:%2F%2Fmaps.google.ca%2Fmaps%3Ff%3Dq%26source%3Ds_q%26hl%3Den%26geocode%3D%26q%3D675%2BRue%2BGreen,%2BSaint-Lambert,%2BQuebec%2BJ4P1V9%26aq%3D0%26oq%3D675%2BGreen%2B,%2BSt.%2BLambert%2B,%2Bquebec%2BJ4P1V9%26sll%3D49.303974,-84.738438%26sspn%3D16.263009,43.286133%26vpsrc%3D0%26ie%3DUTF8%26hq%3D%26hnear%3D675%2BRue%2BGreen,%2BSaint-Lambert,%2BQu%25C3%25A9bec%2BJ4P%2B1V9%26t%3Dm%26z%3D14%26ll%3D45.509916,-73.504776%26output%3Dembed&amp;hl=en&amp;gl=ca\">Saint Lambert</a>\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-09 08:35:27','2013-05-09 12:35:27','',9,'http://divyayogamonteregie.org/french/?p=123',0,'revision','',0),(12,1,'2013-05-08 22:05:22','2013-05-09 02:05:22','<b>Ce que nous faisons !</b>\r\n\r\nChaque Samedi matin de  9.00 à 11.00  , nous participons à la session – une série d’exercices physiques et respiratoires dans le but de rendre notre corps flexible .  Nous prenons soin de notre corps, esprit et âme avec des paroles  de sagesse , des affirmations positives, des histoires de sagesse, des poèmes de motivation, des prières et nos mantras. Le Yoga est un mode de vie complet.\r\n\r\nChaque dernier Samedi du mois nous avons un conférencier de 11.00 à 11.45 et par la suite nous mangeons ensemble. Les aliments sont fournis par la Fondation familiale Vinesh Saxena, Meera  prépare pour nous d’incroyables mets Indiens, et si vous désirez partager avec nous un petit plat vous êtes bienvenue.\r\n\r\nSi c’est votre premier jour, veuillez arriver plus tôt à 8.30 matin pour prendre le temps de remplir une feuille d’information. Mihaela sera heureuse de vous rencontrer.\r\n\r\nConséquemment veuillez arriver  10-15 minutes plus tôt dans le but d’avoir le temps d’installer votre matelas etc… pour que nous puissions débuter dès 9.00 du matin\r\n\r\nVeuillez lire ci-bas une courte description d’exercices que nous pratiquons chaque Samedi.\r\n\r\n&nbsp;\r\n<ol>\r\n	<li><b>Mise en forme- </b> une série de  12-15 exercices pour réchauffer le corps: c’est-à-dire plier les genoux, plier devant, plier derrière, plier à gauche, étirement des épaules, sauter, bouger les mains, plier le genou droit, plier le genou gauche, jumping jack, secouez votre corps, position de descente/remontée du chien etc…</li>\r\n	<li><b>Salutation</b> <b>du soleil</b>– Surya Namaskar, une série fluide de 12 postures qui développent la force et la flexibilité des muscles et de la colonne vertébrale. Ces postures aussi réchauffent le corps et renforcissent les muscles abdominaux.</li>\r\n	<li><b>Discours motivant</b> – notre professeur  Vinesh Saxena partage avec nous des histoires de sagesse et des conseils pratiques pour une vie heureuse, en santé, motivante, et épanouie.</li>\r\n	<li><b>Acu-pression</b> (technique de médecine alternative qui provient de l’acupuncture) appuyer en faisant une rotation sur le bout de chacun de vos doigts pour soulager les problèmes de sinus,  au milieu de la paume de votre main pour les problèmes de rein et sous votre pouce pour le bien-être de la thyroïde.</li>\r\n	<li><b>Exercices pour les yeux et le cou</b>– nous prenons soin de chaque partie du corps. Yeux: déplacer les yeux vers la droite, gauche, en haut et en bas ; les rouler dans le sens des aiguilles d’une horloge, puis en sens inverse. Étirer le bras droit devant vous, pouce vers le haut, fixer le pouce tout en emmenant votre main vers votre nez puis emmener-la plus loin. Allonger les deux bras devant, le regard au milieu sur les pouces. Séparer, déplacer les bras vers l’extérieur tant que vous les voyez encore, restez dans cette position 30 secondes, remmener les bras ensemble.<b>     </b>\r\nCou: pencher à gauche, pencher à droite, devant et  vers l’arrière, rotation dans le sens des aiguilles d’une horloge, puis en sens inverse, regarder à droite et regarder à gauche.</li>\r\n	<li><b>Sept Pranayamas  </b>(exercices de respiration) Lorsque nous faisons du yoga 75% des bienfaits proviennent des exercices de respiration et 25% des asanas. Nous incluons  7 exercices de respiration Durant notre pratique: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(position des doigts) – sont utilisées en même temps que le pranayama, habituellement lorsque nous sommes assis , pour stimuler différentes parties de notre corps avec des respirations et pour influencer le courant de prana dans notre corps.</li>\r\n	<li><b>100 postures, exercices et asanas</b> – grâce à ceux-ci nous développons la flexibilité de la tête jusqu’aux orteils. Nous faisons aussi des exercices d<b>’étirement </b>pour aider<b> </b>notre corps à stimuler le système lymphatique, concentrer sur des points clés de notre corps y compris la région de la  tête et du cou, épaules,  doigts,  bras, abdomen, hanches, genoux et pieds.\r\nNous faisons des exercices pour soulager l’arthrite, le diabète, maladie du coeur, cholestérol, douleurs du dos, insomnie etc…</li>\r\n	<li><b>Yoga du rire </b>– avec Meera – une idée révolutionnaire – simple et profonde. Inventé par  Dr. Madan Kataria, un physicien de  Mumbai. Aujourd’hui, c’est devenu un phénomène dans le monde entier avec plus  6000 Clubs Sociaux du rire dans environ 60 pays. Nous combinons le Rire Inconditionnel avec le Prayanama. Le concept du Yoga du Rire est basé sur le fait scientifique que le corps ne peut pas différencier le rire simulé du vrai rire. L’on obtient les mêmes résultats bénéfiques  physiologiques et psychologiques. Nous faisons aussi le <b>Yoga du super cerveau </b> pour stimuler les cellules du cerveau et améliorer la mémoire. Cette forme de yoga a été inventé par un médecin de la  Virginie et est très populaire parmi la communauté médicale.</li>\r\n	<li><b>Shavasana </b>– Après la session de yoga, allongé sur le dos sur le matelas: Shavasana permet au corps  de se remettre au neutre et de se réinitialer.  Suite à une pratique équilibrée, le corps a été étiré, contracté, tourné et inversé . Le corps, l’esprit et l’âme reçoivent un repos complet, de l’énergie, de la motivation et  du bonheur.</li>\r\n	<li><b>Poème motivant</b> –  est lu à la fin de la session pour nous garder motivés, concentrés et recharger nos batteries.</li>\r\n	<li><b>Mantra</b> – à la fin nous répétons notre mantra et reconnaissons notre mantra – CE QUI SERA CELA DÉPEND DE MOI.</li>\r\n</ol>\r\n<p align=\"center\"><b>Nous vous invitons à nous rejoindre tous les Samedis matin de 9.00 à 11.00 </b>\r\n<b>à  Chambly Academy 675 rue Green, St-Lambert, QC, J4P 1V9</b></p>','Ce que nous faisons!','','publish','closed','closed','','what-we-do','','','2013-10-08 21:14:32','2013-10-09 01:14:32','',0,'http://divyayogamonteregie.org/french/?page_id=12',0,'page','',0),(17,1,'2013-05-08 22:24:02','2013-05-08 22:24:02','Every Saturday morning from 9.00 to 11.00 am we practice Divya Yoga- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with positive affirmations, wise stories, motivational poem and our mantra. Yoga is a complete lifestyle\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.30 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is cooking for us amazing Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, movitated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then      counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, gingers, arms, hips, knees and feet.\r\nWe do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.\r\nWe also do <b>Super Brain yoga</b> to stimulate brain cells. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>','What we do !','','inherit','closed','closed','','12-revision-v1','','','2013-05-08 22:24:02','2013-05-08 22:24:02','',12,'http://divyayogamonteregie.org/french/?p=17',0,'revision','',0),(13,1,'2013-05-08 21:58:59','2013-05-08 21:58:59','<b> </b>Every Saturday morning from 9.00 to 11.00 am we practice Divya Yoga- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with positive affirmations, wise stories, motivational poem and our mantra. Yoga is a complete lifestyle\n\n&nbsp;\n\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.30 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is cooking for us amazing Indian food, and if you want to share with us a little plate you are welcome.\n\n&nbsp;\n\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\n\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\n\n&nbsp;\n\nPlease see below a short description of exercises that we practice every Saturday.\n\n&nbsp;\n<ol>\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, movitated and fulfilling life.</li>\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.                                  Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>Neck: bend left, right, forward, and backward, rotate clockwise, then      counter clockwise, look to the right and look to the left.</li>\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, gingers, arms, hips, knees and feet.                                                                                          We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.                                                                           We also do <b>Super Brain yoga</b> to stimulate brain cells. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\n</ol>','What we do !','','inherit','closed','closed','','12-revision-v1','','','2013-05-08 21:58:59','2013-05-08 21:58:59','',12,'http://divyayogamonteregie.org/french/?p=13',0,'revision','',0),(582,1,'2013-10-08 21:21:09','2013-10-09 01:21:09','<a title=\"Clic here for english\" href=\"http://divyayogamonteregie.org/web/\" target=\"_blank\">Clic here for english</a>','English-site','','publish','closed','closed','','english-site','','','2013-10-08 21:21:09','2013-10-09 01:21:09','',0,'http://divyayogamonteregie.org/french/?page_id=582',0,'page','',0),(583,1,'2013-10-08 21:21:09','2013-10-09 01:21:09','<a title=\"Clic here for english\" href=\"http://divyayogamonteregie.org/web/\" target=\"_blank\">Clic here for english</a>','English-site','','inherit','closed','closed','','582-revision-v1','','','2013-10-08 21:21:09','2013-10-09 01:21:09','',582,'http://divyayogamonteregie.org/french/?p=583',0,'revision','',0),(584,1,'2013-10-08 21:22:42','2013-10-09 01:22:42',' ','','','publish','closed','closed','','584','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=584',63,'nav_menu_item','',0),(653,1,'2013-12-04 21:25:51','2013-12-05 02:25:51',' ','','','publish','closed','closed','','653','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=653',52,'nav_menu_item','',0),(596,1,'2013-10-10 22:19:08','2013-10-11 02:19:08',' ','','','publish','closed','closed','','596','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=596',12,'nav_menu_item','',0),(597,1,'2013-10-10 22:19:08','2013-10-11 02:19:08',' ','','','publish','closed','closed','','597','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=597',13,'nav_menu_item','',0),(598,1,'2013-10-10 22:19:08','2013-10-11 02:19:08',' ','','','publish','closed','closed','','598','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=598',14,'nav_menu_item','',0),(599,1,'2013-10-10 22:19:08','2013-10-11 02:19:08','','En toi se trouve la force d\'accomplir tes défis dans la vie','','publish','closed','closed','','en-toi-se-trouve-la-force-daccomplir-tes-defis-dans-la-vie','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=599',15,'nav_menu_item','',0),(600,1,'2013-10-10 22:19:08','2013-10-11 02:19:08',' ','','','publish','closed','closed','','600','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=600',16,'nav_menu_item','',0),(601,1,'2013-10-10 22:19:08','2013-10-11 02:19:08','','Les rêves d\'aujourd\'hui sont les succès de demain','','publish','closed','closed','','les-reves-daujourdhui-sont-les-succes-de-demain','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=601',17,'nav_menu_item','',0),(602,1,'2013-10-10 22:19:08','2013-10-11 02:19:08',' ','','','publish','closed','closed','','602','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=602',18,'nav_menu_item','',0),(603,1,'2013-10-10 22:19:08','2013-10-11 02:19:08',' ','','','publish','closed','closed','','603','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=603',19,'nav_menu_item','',0),(604,1,'2013-10-10 22:19:08','2013-10-11 02:19:08','','Partez D\'ou Vous Etes','','publish','closed','closed','','partez-dou-vous-etes','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=604',20,'nav_menu_item','',0),(605,1,'2013-10-10 22:19:08','2013-10-11 02:19:08',' ','','','publish','closed','closed','','605','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=605',21,'nav_menu_item','',0),(606,1,'2013-10-10 22:19:08','2013-10-11 02:19:08',' ','','','publish','closed','closed','','606','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=606',22,'nav_menu_item','',0),(607,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','607','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=607',30,'nav_menu_item','',0),(608,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','608','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=608',31,'nav_menu_item','',0),(609,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','609','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=609',32,'nav_menu_item','',0),(610,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','610','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=610',33,'nav_menu_item','',0),(611,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','611','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=611',34,'nav_menu_item','',0),(612,1,'2013-10-10 22:22:33','2013-10-11 02:22:33','','C\'est bien','','publish','closed','closed','','cest-bien','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=612',35,'nav_menu_item','',0),(16,1,'2013-05-08 22:21:59','2013-05-08 22:21:59','Every Saturday morning from 9.00 to 11.00 am we practice Divya Yoga- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with positive affirmations, wise stories, motivational poem and our mantra. Yoga is a complete lifestyle\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.30 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is cooking for us amazing Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, movitated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then      counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, gingers, arms, hips, knees and feet.                                                                                          We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.                                                                           We also do <b>Super Brain yoga</b> to stimulate brain cells. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>','What we do !','','inherit','closed','closed','','12-revision-v1','','','2013-05-08 22:21:59','2013-05-08 22:21:59','',12,'http://divyayogamonteregie.org/french/?p=16',0,'revision','',0),(15,1,'2013-05-08 22:05:22','2013-05-08 22:05:22','<b> </b>Every Saturday morning from 9.00 to 11.00 am we practice Divya Yoga- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with positive affirmations, wise stories, motivational poem and our mantra. Yoga is a complete lifestyle\r\n\r\n&nbsp;\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.30 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is cooking for us amazing Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\n&nbsp;\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n\r\n&nbsp;\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, movitated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.                                  Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>Neck: bend left, right, forward, and backward, rotate clockwise, then      counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, gingers, arms, hips, knees and feet.                                                                                          We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.                                                                           We also do <b>Super Brain yoga</b> to stimulate brain cells. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra –<strong> IF IT IS TO BE IT IS UP TO ME.</strong></li>\r\n</ol>','What we do !','','inherit','closed','closed','','12-revision-v1','','','2013-05-08 22:05:22','2013-05-08 22:05:22','',12,'http://divyayogamonteregie.org/french/?p=15',0,'revision','',0),(18,1,'2013-09-19 19:16:59','2013-09-19 23:16:59','[caption id=\"attachment_286\" align=\"aligncenter\" width=\"300\"]<a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/food1.jpg\"><img class=\"size-medium wp-image-286\" alt=\"De la nourriture végétarienne est servie et partagée chaque dernier Samedi du mois\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/food1-300x86.jpg\" width=\"300\" height=\"86\" /></a> De la nourriture végétarienne est servie et partagée chaque dernier Samedi du mois[/caption]\n\nWelcome to <strong>Divya Yoga</strong> Monteregie.\n\nContact us\n\nPhone # 450-468-7539\nFax # 450-468-5724\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-autosave-v1','','','2013-09-19 19:16:59','2013-09-19 23:16:59','',1,'http://divyayogamonteregie.org/french/?p=18',0,'revision','',0),(19,1,'2013-05-08 17:12:14','2013-05-08 17:12:14','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2013-05-08 17:12:14','2013-05-08 17:12:14','',1,'http://divyayogamonteregie.org/french/?p=19',0,'revision','',0),(20,1,'2013-05-08 22:42:50','2013-05-08 22:42:50','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2013-05-08 22:42:50','2013-05-08 22:42:50','',1,'http://divyayogamonteregie.org/french/?p=20',0,'revision','',0),(21,1,'2013-05-08 22:43:21','2013-05-08 22:43:21','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2013-05-08 22:43:21','2013-05-08 22:43:21','',1,'http://divyayogamonteregie.org/french/?p=21',0,'revision','',0),(22,1,'2013-05-08 22:44:06','2013-05-08 22:44:06','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n<br>\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2013-05-08 22:44:06','2013-05-08 22:44:06','',1,'http://divyayogamonteregie.org/french/?p=22',0,'revision','',0),(25,1,'2013-05-08 22:07:32','2013-05-09 02:07:32','<h6> <b>Chaque dernier samedi du mois, nous invitons un conférencier pour parler d’un sujet relié à notre mission. La conférence est d’une durée de 30-40 minutes suivie d’une période de 15minutes de questions. Par la suite, nous avons un brunch végétarien.</b></h6>\r\n<h6><span style=\"color: #0000ff;\"> </span></h6>','  Conférences de fin de mois    ','','publish','closed','closed','','month-end-conferences','','','2013-09-19 19:34:31','2013-09-19 23:34:31','',0,'http://divyayogamonteregie.org/french/?page_id=25',0,'page','',0),(133,1,'2013-06-10 20:06:17','2013-06-11 00:06:17','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Un homme trouva la chrysalide d’un papillon.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Un jour, apparut une petite ouverture.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il s’assis et regarda pendant des heures le papillon</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">qui luttait en essayant de sortir son corps par la petite fente</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Puis <span style=\"mso-spacerun: yes;\"> </span>arrêta, comme s’il ne pouvait pas aller plus loin.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’homme décida alors d’aider le papillon.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il pris une paire de ciseaux et</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">coupa les restants de la chrysalide.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Le papillon sortit facilement mais</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il avait le corps enflé et les ailes flétries.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’homme continua à l’observer,</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">s’attendant à tout instant que les ailes se déploient</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">suffisamment pour supporter le corps.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Rien ne se produisit.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">En fait, le papillon passa le reste de sa vie </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">à ramper.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il n’a jamais été capable de voler.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Ce que cet homme dans sa bonté</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">et sa hâte n’a pas compris :</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">l’ouverture restreinte de la chrysalide combinée à</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">l’effort que devait faire le papillon pour émerger</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">lui permettaient de sortir tout le liquide de son corps</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">afin que ses ailes soient prêtes</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">pour voler lorsqu’il aurait <span style=\"mso-spacerun: yes;\"> </span>terminé ce processus.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Parfois <span style=\"mso-spacerun: yes;\"> </span>les efforts sont exactement</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">ce dont nous avons besoin dans nos vies.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Traverser la vie sans aucun obstacle pourrait être un handicap.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Nous ne serions jamais aussi forts que nous aurions pu le devenir</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Et nous serions incapables de voler de nos propres ailes.</span></span></p>','L’histoire du papillon','','publish','closed','closed','','the-story-of-the-butterfly','','','2013-10-05 21:45:18','2013-10-06 01:45:18','',79,'http://divyayogamonteregie.org/french/?page_id=133',0,'page','',0),(26,1,'2013-05-08 21:55:40','2013-05-09 01:55:40','Every last Saturday of the month we invite a guest speaker who is related to Alternative way of healing. He talks to the people for 30 minutes.And then 15 minutes question answer period. After that we have brunch. Which is vegetarian.','Month end conferences','','inherit','closed','closed','','25-revision-v1','','','2013-05-08 21:55:40','2013-05-09 01:55:40','',25,'http://divyayogamonteregie.org/french/?p=26',0,'revision','',0),(27,1,'2013-05-08 22:05:04','2013-05-09 02:05:04','<h6><span style=\"color: #0000ff;\">Every last Saturday of the month we invite a guest speaker who is related to Alternative way of healing. He talks to the people for 30 minutes.And then 15 minutes question answer period. After that we have brunch. Which is vegetarian.</span></h6>','Month end conferences','','inherit','closed','closed','','25-revision-v1','','','2013-05-08 22:05:04','2013-05-09 02:05:04','',25,'http://divyayogamonteregie.org/french/?p=27',0,'revision','',0),(400,1,'2013-07-09 20:07:50','2013-07-10 00:07:50','<h6><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Every last Saturday of the month we invite a guest speaker to talk on a relevant topic related to our mission. He talks to the people for 30-45 minutes.And then 15 minutes question answer period. After that we have vegetarian brunch.</span>\r\n</span></h6>','Month end conferences','','inherit','closed','closed','','25-revision-v1','','','2013-07-09 20:07:50','2013-07-10 00:07:50','',25,'http://divyayogamonteregie.org/french/?p=400',0,'revision','',0),(29,1,'2013-05-08 21:17:08','2013-05-08 21:17:08','To make basic yoga practice easily accessible to everyone without charge.\r\n\r\nFounder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”\r\n\r\nThis Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,\r\n\r\nAfter yoga super food i. e. grapes and banana are available for Yogies.\r\n\r\nYoga is a marvelous means of exercising, stretching, and freeing the body so it can be a healthy, long-lived, and vital instrument for the body,mind and soul. We also create an environment where people can interact for their betterment.','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-05-08 21:17:08','2013-05-08 21:17:08','',2,'http://divyayogamonteregie.org/french/?p=29',0,'revision','',0),(31,1,'2013-05-09 07:13:29','2013-05-09 11:13:29','<div>\r\n<div>\r\n<p style=\"text-align: justify;\"><em><span style=\"text-decoration: underline;\"><strong>From volunteers</strong></span></em></p>\r\n<p style=\"text-align: justify;\"><em><strong>Monique</strong></em></p>\r\n<p style=\"text-align: justify;\">Suite à un accident de voiture survenu il y a plusieurs années, mon corps était dans une souffrance chronique, mon esprit était pris dans des blocages inconscients de perturbations, de découragement, de tourment, de peur, et d’angoisse.  Puis un jour, j’ai fait la découverte du yoga.</p>\r\n<p style=\"text-align: justify;\">Au début, lors de mes pratiques, je n’arrivais pas à synchroniser les mouvements, mon corps était rigide et tendu,  je n’étais pas concentrée.  Après un certain temps, j’ai abandonné  les cours en me disant que je n’y arriverai jamais, que mon corps ne pouvait pas suivre, j’avais trop mal, je n’avais pas la dextérité  pour faire les postures, ni la flexibilité, l’attention, la concentration, etc., etc.</p>\r\n<p style=\"text-align: justify;\">Un peu plus tard, j’ai vu une annonce dans le journal qu’il y avait des cours de yoga offerts gratuitement à St-Lambert.  J’ai décidé de faire un autre essai.  Puis voilà  que ma vie s’est transformée.  J’ai commencé le yoga une fois semaine. Après quelques semaines de pratique,  j’ai été approchée par le professeur de yoga pour être bénévole, pour accueillir les gens. J’ai accepté de m’engager dans cette belle aventure dont je fais toujours partie depuis déjà presque 3 ans. Depuis,  j’ai exploré différentes approches de yoga qui m’ont amenée à un changement positif de vie complète.  Une bonne hygiène alimentaire, une flexibilité de mon corps et de mon esprit, de mes attitudes et comportements. J’ai appris à  cultiver le calme mental et ma force vitale intérieure par les exercices de respiration et de méditation. J’ai amélioré mon équilibre mental et physique,  l’écoute de mon corps, ma concentration et ma mémoire, ma coordination et l’acceptation de ce qui est.</p>\r\n<p style=\"text-align: justify;\">Je vis maintenant mon quotidien dans un mieux-être. Il y a encore place à l’amélioration, mais chaque jour j’intègre un style de vie de yoga qui m’amène de plus en plus à faire l’expérience d’une paix intérieure.</p>\r\n<p style=\"text-align: justify;\">*****************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Michel …. 74</strong></span></p>\r\n<p style=\"text-align: justify;\">My duties:-</p>\r\n<p style=\"text-align: justify;\">To be always ready to help</p>\r\n<p style=\"text-align: justify;\">About me</p>\r\n<p style=\"text-align: justify;\">I am a very happy man. I enjoy the company of nice people.</p>\r\n<p style=\"text-align: justify;\">What yoga means to me? How it has affected my life?</p>\r\n<p style=\"text-align: justify;\">Yoga is for me an extraordinary choice of movements and exercices created by people who knew the human body and soul.</p>\r\n<p style=\"text-align: justify;\">Two hours of yoga per week complement my daily exercices that I do since 50 years plus. My body appreciate yoga and I feel balanced.</p>\r\n<p style=\"text-align: justify;\">Marathon Runner</p>\r\n<p style=\"text-align: justify;\">Bénévole (mes tâches)\r\nÊtre toujours prêt à aider</p>\r\n<p style=\"text-align: justify;\">À propos de moi\r\nJe suis un homme très heureux. J\'aime la compagnie des gens sympathiques.</p>\r\n<p style=\"text-align: justify;\">Ce que le yoga signifie pour moi? Comment cela a affecté ma vie?</p>\r\n<p style=\"text-align: justify;\">Le yoga est pour moi un choix extraordinaire de mouvements et d\'exercices créés par des gens qui connaissaient le corps humain et l\'âme.\r\nDeux heures de yoga par semaine complètent mes exercices quotidiens que je fais depuis 50 ans et plus. Mon corps apprécie le yoga et je me sens équilibrée.</p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Bénévole : Mihaela Frandes</span></strong></p>\r\n<p style=\"text-align: justify;\">Mon rôle</p>\r\n<p style=\"text-align: justify;\">J’arrive chaque samedi matin à 8.30am à l’Académie Chambly pour accueillir les nouvelles personnes. Je leur demande de compléter une fiche d’inscription et leur explique un peu comment se déroulent les cours.</p>\r\n<p style=\"text-align: justify;\">À propos de moi</p>\r\n<p style=\"text-align: justify;\">J’ai commencé les cours de yoga offerts par Meera Trivedi et Vinesh Saxena en juin 2010 et depuis j’y suis toujours fidèle J’avoue que le samedi est ma journée de la semaine la plus heureuse. Depuis, je fais du yoga régulièrement. Je suis d’origine roumaine, ma formation est en biochimie et dans la vie quotidienne je me préoccupe beaucoup de ma nutrition et j’aime beaucoup la nature. En été  je fais du vélo et en hiver j’adore faire du ski de fond. J’aime beaucoup aider les gens et le yoga m’aide à accomplir le bonheur dans ma vie. Ma dernière passion est la préparation de pain au levain – faire du bon pain est pour moi un immense plaisir.</p>\r\n<p style=\"text-align: justify;\">Qu’est que yoga signifie pour moi. Comment a-t-elle affecte ma vie</p>\r\n<p style=\"text-align: justify;\">Le yoga a amélioré la flexibilité de mon corps et esprit ainsi que ma santé. J’adore faire du yoga et je sens que le yoga est une marche dans mon évolution.</p>\r\n<p style=\"text-align: justify;\">Volunteer</p>\r\n<p style=\"text-align: justify;\">My duties: I came every Saturday morning at 8.30 at Chambly Academy in Saint Lambert to accommodate the new peoples. I give them the form to fill-up and explain a little bit how we function here.</p>\r\n<p style=\"text-align: justify;\">About me: I started the yoga classes given by Meera Trivedi and Vinesh Saxena in July 2010 and since then I do yoga on a regular basis. Saturday is the happiest day of my week. I am Rumanian, I studied biochemistry and I am interested in nutrition, healthy eating, I try to come closer to nature. In summer I do a lot of bike and in winter I love the cross-country sky. I love helping people; yoga is helping me to maintain a happy mood. Now I’m in love with making sourdough bread, making bread makes me happy.</p>\r\n<p style=\"text-align: justify;\">What yoga means for me. How it has affected my life: Yoga gave me a happiness that I cannot explain; friends, a more conscious life, a flexible body, and a healthy body, a clear mind. I love doing yoga, and I am pretty sure that yoga is only a step in my evolution.</p>\r\n<p style=\"text-align: justify;\">******************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>From other participants</strong></span></p>\r\n<p style=\"text-align: justify;\">This yoga class is a precious time for me. I may arrive out of breath or lacking of energy, or a bit annoyed at my brain « monkey chatter » but I always leave rejuvenated physically, mentally and emotionally. Joining in, I am giving my whole body the royal treatment from head to toes, stretching out the kinks and limbering up muscles and joints I was not aware of. It is quality time I give to myself. When I am there, I have my own space. But there are people around me and I feel I belong, that I am surrounded by positive energy. The space we are in fills, it feels to me, with well being respect, silent communication. Thank you to all who make this possible. I was hooked the first time I went.</p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Charlene Olse</span></strong></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je passais des moments très difficiles suite à un deuil, mon amie m’a conseillé de faire du yoga.</p>\r\n<p style=\"text-align: justify;\">J’ai essayé une première séance et je me suis sentie vraiment bien, les mouvements accompagnés de la respiration fluide ont effectivement apaisé mon âme, mon esprit et mon corps et depuis je ne peux rater une séance. Je fais du yoga seule à la maison, mais je m’arrête au bout de 5 minutes, cependant du yoga en groupe avec la belle ambiance, la bonne motivation et l’encouragement de l’entraîneur m’a permis de bien vivre mon deuil et surtout de bien gérer mes sentiments et mes émotions.</p>\r\n<p style=\"text-align: justify;\">Un grand merci pour ce que vous faites pour le groupe de yoga.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Lynda</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga diminue mon stress, assouplit mon corps et lubrifie mes articulations. Certaines positions ou exercices libèrent des structures énergétiques associées à des mémoires antérieures. L’énergie circule plus librement dans mon corps et je me sens revivifié. J’apprécie aussi le fait que ce soit une activité non compétitive.</p>\r\n<p style=\"text-align: justify;\">Je remercie M. Saxena de sa très grande disponibilité ainsi que toute son équipe de bénévoles.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong> Marcel Baril</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga m’a apporté beaucoup de paix intérieure. J’aime la combinaison de l’exercice physique et le mental, le rire…. Cela équilibre mon moral, améliore mon corps physique, m’aide à  pratiquer la méditation et la relaxation et surtout à mieux respirer. J’aime beaucoup l’ambiance généreuse, le don de soi des bénévoles. Je crois de plus en plus à la bonté de l’être humain.</p>\r\n<p style=\"text-align: justify;\">Merci</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Colette</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Mon mari est décédé il y a trois ans. Je fus effondrée. Depuis ce temps je pratique le yoga avec Monsieur Saxena. Cet exercice m’a apporté l’équilibre physique et la paix de l’âme.</p>\r\n<p style=\"text-align: justify;\">Ginette Paradis</p>\r\n<p style=\"text-align: justify;\"><strong>******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je dois remercier Mr et Mme Saxena pout leur dévouement et leur disponibilité  apportés chaque samedi.</p>\r\n<p style=\"text-align: justify;\">Pour moi,ce que j\'aime le plus c\'est bien ses histoires qui m\'amênent a penser positivement,ensuite il y a les exercises</p>\r\n<p style=\"text-align: justify;\">qui aident a calmer le mental et a controler le stress,c\'est bien.</p>\r\n<p style=\"text-align: justify;\">Mais tant qu\'aux exercises d\'accupressions pour les sinus ,j\'en vois pas d\'effet immédiat, c\'est probablement a long</p>\r\n<p style=\"text-align: justify;\">terme que l\'effet se fait sentir.</p>\r\n<p style=\"text-align: justify;\">Les nouveaux mouvements ou exercises sont les bienvenues ,j\'en suis certain, pour la pluparts des participants.</p>\r\n<p style=\"text-align: justify;\">Apres deux heures de participations la position a l\'horizontale (shawaseen)ou repos est très bien appréciée.</p>\r\n<p style=\"text-align: justify;\">C\'est durant le reste de la journée qu\'on sent une certaine fatigue et qu\'il faut récupérer,en un mot c\'est sûrement</p>\r\n<p style=\"text-align: justify;\">bénifique pour la santé.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Renald Couture</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">What would I do without Yoga? it has helped me to live a fulfilling life!</p>\r\n<p style=\"text-align: justify;\">When I was 12 years old, I was one day about to sit down on a kitchen chair when my brother took it away from underneath me. I fell had on my coccyx and thought nothing more of it, thinking that my pride was hurt more than my back. But by the age of 18 I started getting persistent backaches, and from then on I became a \'back sufferer\'. By the age of 30 I wasn\'t able to wash a kitchen floor or do an hour\'s gardening without a backache for the rest of the day, and few days after. I wasn\'t even sure I could have children with such a bad back, so I did a series of adjustments over a year and a half at a chiropractor\'s, and tried acupuncture. Both helped somewhat, but certainly did not cure my condition. I did have two children and a full time job teaching, but backaches became a fact of life, always there in the background.</p>\r\n<p style=\"text-align: justify;\">I came across Yoga in my middle 30\'s but never had enough time to pursue it diligently. It was only after I retired that I started doing it seriously, and I now wish I had allowed no excuses to not do it consistently earlier. I now do Yoga for an hour every day, following the type of Mr. Saxena\'s exercises on Saturday mornings, and take exercises out of books. I have never felt better! Today at 68 I feel better that I did at 30. I can now do gardening all day, shovel snow, wash floors, and walk good long walks with no consequent pain. The injury to my back is still there, but my back mussels are now strong enough to support me in my activities.</p>\r\n<p style=\"text-align: justify;\">Doing the exercises is only part of my Yoga practice. I am careful to eat only food that is nutritious for my body, and I try to keep as much as possible a positive outlook on life.</p>\r\n<p style=\"text-align: justify;\">Yoga is a lifestyle - it takes care of every aspect of one\'s being, and I intend to keep well and healthy to my dying day.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Mary Brunet</strong></span></p>\r\n<strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong>\r\n\r\n</div>\r\n</div>','Témoignages de participants','','publish','closed','closed','','testimony-from-participants','','','2013-10-08 20:53:19','2013-10-09 00:53:19','',0,'http://divyayogamonteregie.org/french/?page_id=31',0,'page','',0),(576,1,'2013-10-08 20:53:19','2013-10-09 00:53:19','<div>\r\n<div>\r\n<p style=\"text-align: justify;\"><em><span style=\"text-decoration: underline;\"><strong>From volunteers</strong></span></em></p>\r\n<p style=\"text-align: justify;\"><em><strong>Monique</strong></em></p>\r\n<p style=\"text-align: justify;\">Suite à un accident de voiture survenu il y a plusieurs années, mon corps était dans une souffrance chronique, mon esprit était pris dans des blocages inconscients de perturbations, de découragement, de tourment, de peur, et d’angoisse.  Puis un jour, j’ai fait la découverte du yoga.</p>\r\n<p style=\"text-align: justify;\">Au début, lors de mes pratiques, je n’arrivais pas à synchroniser les mouvements, mon corps était rigide et tendu,  je n’étais pas concentrée.  Après un certain temps, j’ai abandonné  les cours en me disant que je n’y arriverai jamais, que mon corps ne pouvait pas suivre, j’avais trop mal, je n’avais pas la dextérité  pour faire les postures, ni la flexibilité, l’attention, la concentration, etc., etc.</p>\r\n<p style=\"text-align: justify;\">Un peu plus tard, j’ai vu une annonce dans le journal qu’il y avait des cours de yoga offerts gratuitement à St-Lambert.  J’ai décidé de faire un autre essai.  Puis voilà  que ma vie s’est transformée.  J’ai commencé le yoga une fois semaine. Après quelques semaines de pratique,  j’ai été approchée par le professeur de yoga pour être bénévole, pour accueillir les gens. J’ai accepté de m’engager dans cette belle aventure dont je fais toujours partie depuis déjà presque 3 ans. Depuis,  j’ai exploré différentes approches de yoga qui m’ont amenée à un changement positif de vie complète.  Une bonne hygiène alimentaire, une flexibilité de mon corps et de mon esprit, de mes attitudes et comportements. J’ai appris à  cultiver le calme mental et ma force vitale intérieure par les exercices de respiration et de méditation. J’ai amélioré mon équilibre mental et physique,  l’écoute de mon corps, ma concentration et ma mémoire, ma coordination et l’acceptation de ce qui est.</p>\r\n<p style=\"text-align: justify;\">Je vis maintenant mon quotidien dans un mieux-être. Il y a encore place à l’amélioration, mais chaque jour j’intègre un style de vie de yoga qui m’amène de plus en plus à faire l’expérience d’une paix intérieure.</p>\r\n<p style=\"text-align: justify;\">*****************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Michel …. 74</strong></span></p>\r\n<p style=\"text-align: justify;\">My duties:-</p>\r\n<p style=\"text-align: justify;\">To be always ready to help</p>\r\n<p style=\"text-align: justify;\">About me</p>\r\n<p style=\"text-align: justify;\">I am a very happy man. I enjoy the company of nice people.</p>\r\n<p style=\"text-align: justify;\">What yoga means to me? How it has affected my life?</p>\r\n<p style=\"text-align: justify;\">Yoga is for me an extraordinary choice of movements and exercices created by people who knew the human body and soul.</p>\r\n<p style=\"text-align: justify;\">Two hours of yoga per week complement my daily exercices that I do since 50 years plus. My body appreciate yoga and I feel balanced.</p>\r\n<p style=\"text-align: justify;\">Marathon Runner</p>\r\n<p style=\"text-align: justify;\">Bénévole (mes tâches)\r\nÊtre toujours prêt à aider</p>\r\n<p style=\"text-align: justify;\">À propos de moi\r\nJe suis un homme très heureux. J\'aime la compagnie des gens sympathiques.</p>\r\n<p style=\"text-align: justify;\">Ce que le yoga signifie pour moi? Comment cela a affecté ma vie?</p>\r\n<p style=\"text-align: justify;\">Le yoga est pour moi un choix extraordinaire de mouvements et d\'exercices créés par des gens qui connaissaient le corps humain et l\'âme.\r\nDeux heures de yoga par semaine complètent mes exercices quotidiens que je fais depuis 50 ans et plus. Mon corps apprécie le yoga et je me sens équilibrée.</p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Bénévole : Mihaela Frandes</span></strong></p>\r\n<p style=\"text-align: justify;\">Mon rôle</p>\r\n<p style=\"text-align: justify;\">J’arrive chaque samedi matin à 8.30am à l’Académie Chambly pour accueillir les nouvelles personnes. Je leur demande de compléter une fiche d’inscription et leur explique un peu comment se déroulent les cours.</p>\r\n<p style=\"text-align: justify;\">À propos de moi</p>\r\n<p style=\"text-align: justify;\">J’ai commencé les cours de yoga offerts par Meera Trivedi et Vinesh Saxena en juin 2010 et depuis j’y suis toujours fidèle J’avoue que le samedi est ma journée de la semaine la plus heureuse. Depuis, je fais du yoga régulièrement. Je suis d’origine roumaine, ma formation est en biochimie et dans la vie quotidienne je me préoccupe beaucoup de ma nutrition et j’aime beaucoup la nature. En été  je fais du vélo et en hiver j’adore faire du ski de fond. J’aime beaucoup aider les gens et le yoga m’aide à accomplir le bonheur dans ma vie. Ma dernière passion est la préparation de pain au levain – faire du bon pain est pour moi un immense plaisir.</p>\r\n<p style=\"text-align: justify;\">Qu’est que yoga signifie pour moi. Comment a-t-elle affecte ma vie</p>\r\n<p style=\"text-align: justify;\">Le yoga a amélioré la flexibilité de mon corps et esprit ainsi que ma santé. J’adore faire du yoga et je sens que le yoga est une marche dans mon évolution.</p>\r\n<p style=\"text-align: justify;\">Volunteer</p>\r\n<p style=\"text-align: justify;\">My duties: I came every Saturday morning at 8.30 at Chambly Academy in Saint Lambert to accommodate the new peoples. I give them the form to fill-up and explain a little bit how we function here.</p>\r\n<p style=\"text-align: justify;\">About me: I started the yoga classes given by Meera Trivedi and Vinesh Saxena in July 2010 and since then I do yoga on a regular basis. Saturday is the happiest day of my week. I am Rumanian, I studied biochemistry and I am interested in nutrition, healthy eating, I try to come closer to nature. In summer I do a lot of bike and in winter I love the cross-country sky. I love helping people; yoga is helping me to maintain a happy mood. Now I’m in love with making sourdough bread, making bread makes me happy.</p>\r\n<p style=\"text-align: justify;\">What yoga means for me. How it has affected my life: Yoga gave me a happiness that I cannot explain; friends, a more conscious life, a flexible body, and a healthy body, a clear mind. I love doing yoga, and I am pretty sure that yoga is only a step in my evolution.</p>\r\n<p style=\"text-align: justify;\">******************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>From other participants</strong></span></p>\r\n<p style=\"text-align: justify;\">This yoga class is a precious time for me. I may arrive out of breath or lacking of energy, or a bit annoyed at my brain « monkey chatter » but I always leave rejuvenated physically, mentally and emotionally. Joining in, I am giving my whole body the royal treatment from head to toes, stretching out the kinks and limbering up muscles and joints I was not aware of. It is quality time I give to myself. When I am there, I have my own space. But there are people around me and I feel I belong, that I am surrounded by positive energy. The space we are in fills, it feels to me, with well being respect, silent communication. Thank you to all who make this possible. I was hooked the first time I went.</p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Charlene Olse</span></strong></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je passais des moments très difficiles suite à un deuil, mon amie m’a conseillé de faire du yoga.</p>\r\n<p style=\"text-align: justify;\">J’ai essayé une première séance et je me suis sentie vraiment bien, les mouvements accompagnés de la respiration fluide ont effectivement apaisé mon âme, mon esprit et mon corps et depuis je ne peux rater une séance. Je fais du yoga seule à la maison, mais je m’arrête au bout de 5 minutes, cependant du yoga en groupe avec la belle ambiance, la bonne motivation et l’encouragement de l’entraîneur m’a permis de bien vivre mon deuil et surtout de bien gérer mes sentiments et mes émotions.</p>\r\n<p style=\"text-align: justify;\">Un grand merci pour ce que vous faites pour le groupe de yoga.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Lynda</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga diminue mon stress, assouplit mon corps et lubrifie mes articulations. Certaines positions ou exercices libèrent des structures énergétiques associées à des mémoires antérieures. L’énergie circule plus librement dans mon corps et je me sens revivifié. J’apprécie aussi le fait que ce soit une activité non compétitive.</p>\r\n<p style=\"text-align: justify;\">Je remercie M. Saxena de sa très grande disponibilité ainsi que toute son équipe de bénévoles.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong> Marcel Baril</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga m’a apporté beaucoup de paix intérieure. J’aime la combinaison de l’exercice physique et le mental, le rire…. Cela équilibre mon moral, améliore mon corps physique, m’aide à  pratiquer la méditation et la relaxation et surtout à mieux respirer. J’aime beaucoup l’ambiance généreuse, le don de soi des bénévoles. Je crois de plus en plus à la bonté de l’être humain.</p>\r\n<p style=\"text-align: justify;\">Merci</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Colette</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Mon mari est décédé il y a trois ans. Je fus effondrée. Depuis ce temps je pratique le yoga avec Monsieur Saxena. Cet exercice m’a apporté l’équilibre physique et la paix de l’âme.</p>\r\n<p style=\"text-align: justify;\">Ginette Paradis</p>\r\n<p style=\"text-align: justify;\"><strong>******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je dois remercier Mr et Mme Saxena pout leur dévouement et leur disponibilité  apportés chaque samedi.</p>\r\n<p style=\"text-align: justify;\">Pour moi,ce que j\'aime le plus c\'est bien ses histoires qui m\'amênent a penser positivement,ensuite il y a les exercises</p>\r\n<p style=\"text-align: justify;\">qui aident a calmer le mental et a controler le stress,c\'est bien.</p>\r\n<p style=\"text-align: justify;\">Mais tant qu\'aux exercises d\'accupressions pour les sinus ,j\'en vois pas d\'effet immédiat, c\'est probablement a long</p>\r\n<p style=\"text-align: justify;\">terme que l\'effet se fait sentir.</p>\r\n<p style=\"text-align: justify;\">Les nouveaux mouvements ou exercises sont les bienvenues ,j\'en suis certain, pour la pluparts des participants.</p>\r\n<p style=\"text-align: justify;\">Apres deux heures de participations la position a l\'horizontale (shawaseen)ou repos est très bien appréciée.</p>\r\n<p style=\"text-align: justify;\">C\'est durant le reste de la journée qu\'on sent une certaine fatigue et qu\'il faut récupérer,en un mot c\'est sûrement</p>\r\n<p style=\"text-align: justify;\">bénifique pour la santé.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Renald Couture</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">What would I do without Yoga? it has helped me to live a fulfilling life!</p>\r\n<p style=\"text-align: justify;\">When I was 12 years old, I was one day about to sit down on a kitchen chair when my brother took it away from underneath me. I fell had on my coccyx and thought nothing more of it, thinking that my pride was hurt more than my back. But by the age of 18 I started getting persistent backaches, and from then on I became a \'back sufferer\'. By the age of 30 I wasn\'t able to wash a kitchen floor or do an hour\'s gardening without a backache for the rest of the day, and few days after. I wasn\'t even sure I could have children with such a bad back, so I did a series of adjustments over a year and a half at a chiropractor\'s, and tried acupuncture. Both helped somewhat, but certainly did not cure my condition. I did have two children and a full time job teaching, but backaches became a fact of life, always there in the background.</p>\r\n<p style=\"text-align: justify;\">I came across Yoga in my middle 30\'s but never had enough time to pursue it diligently. It was only after I retired that I started doing it seriously, and I now wish I had allowed no excuses to not do it consistently earlier. I now do Yoga for an hour every day, following the type of Mr. Saxena\'s exercises on Saturday mornings, and take exercises out of books. I have never felt better! Today at 68 I feel better that I did at 30. I can now do gardening all day, shovel snow, wash floors, and walk good long walks with no consequent pain. The injury to my back is still there, but my back mussels are now strong enough to support me in my activities.</p>\r\n<p style=\"text-align: justify;\">Doing the exercises is only part of my Yoga practice. I am careful to eat only food that is nutritious for my body, and I try to keep as much as possible a positive outlook on life.</p>\r\n<p style=\"text-align: justify;\">Yoga is a lifestyle - it takes care of every aspect of one\'s being, and I intend to keep well and healthy to my dying day.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Mary Brunet</strong></span></p>\r\n<strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong>\r\n\r\n</div>\r\n</div>','Témoignages de participants','','inherit','closed','closed','','31-revision-v1','','','2013-10-08 20:53:19','2013-10-09 00:53:19','',31,'http://divyayogamonteregie.org/french/?p=576',0,'revision','',0),(32,1,'2013-05-09 07:13:17','2013-05-09 11:13:17','','Testimony from Participants','','inherit','closed','closed','','31-revision-v1','','','2013-05-09 07:13:17','2013-05-09 11:13:17','',31,'http://divyayogamonteregie.org/french/?p=32',0,'revision','',0),(33,1,'2013-05-09 07:13:48','2013-05-09 11:13:48','&nbsp;\r\n<ul>\r\n	<li>I was always blaming myself for everything that was wrong within my family.Guilt was always present.Since I have been doing yoga I realized I want to be responsible for myself.My adult children must take care of themselves.I realizes that even my children could be toxic to me and therefore I have to distant myself. I am greatful to yoga for being aware and to live in the moment.</li>\r\n</ul>\r\n- J.Smith\r\n<ul>\r\n	<li>Happiness is the state of mind. Material things do not make a person happy. Little things and action e.g. assisting or helping people, giving love &amp; affection,showing empathy &amp; compassion can change somebody\'s life----Anonymous</li>\r\n</ul>\r\n<ul>\r\n	<li>I think when we realize that we  are part of everything we become free and move forward.---Michel Sclafani</li>\r\n</ul>\r\n<ul>\r\n	<li>I read that in UK in certain Prisons yoga has been offered to Prisoners.All those who participated in the session felt the benefit not only physically but also mentally and spiritually.Yoga is beginning to be seen as a form of therapy that is beneficial to prisoners too.----- M. Brunet</li>\r\n	<li>This is my fourth session of Divya Yoga and I wish I had started long time ago.It is excellent for the body to keep fit and supple. ---Anonymous</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><strong> French</strong></span>\r\n<ul>\r\n	<li>Il  faut savoir pardonner et avoir la paix intérieure.</li>\r\n</ul>\r\nAnonyme\r\n<ul>\r\n	<li>  Le 27 juillet, j’ai participé à une session de yoga pour la paix au Parc Olympique de Montréal.  Il y avait 2,500 personnes le matin et 2,500 personnes l’après-midi (celui auquel j’ai participé), tous habillés de blanc.  Quelle énergie, quelle expérience! Ce fut fabuleux ! À recommencer chaque année!</li>\r\n</ul>\r\n<div>\r\n\r\n<b><span style=\"text-decoration: underline;\">Francine Hardy</span></b>\r\n\r\n</div>\r\n<ul>\r\n	<li> L’histoire que tout commence par nos pensées.  « Ce qui se produit dépend de moi. » Que j’ai un certain contrôle, à partir du moment que je le décide,  sur mes pensées et sur les gestes que je pose.  «Je pense donc je suis ».</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Richard Morion</span></b>\r\n<ul>\r\n	<li>  « Vivons intensément le présent, car l’avenir est incertain. » Ce qu’a dit mon défunt mari.   Rien n’est permanent dans ce monde.</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Maroeun</span></b>\r\n<ul>\r\n	<li>On ne peut pas être heureux dans la vie si on ne sait pas apprécier ce que l’on a.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>  Donnez et vous recevrez.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>    « Mon Dieu, donne moi le pouvoir de changer les choses que je puisse changer, d’accepter les choses que je ne puisse pas changer et la sagesse de faire la différence. »</li>\r\n</ul>\r\nLa prière de sérénité que j’ai découvert assez récemment et que j’essaie de la faire vivre chaque jour.\r\n\r\nJe suis touchée et très reconnaissante à notre professeur qui depuis plus de 3 (trois) ans n’a jamais manqué les samedi matin pour donner ce cours merveilleux.»\r\n\r\n<b><span style=\"text-decoration: underline;\">Mariana Gaubie</span></b>\r\n<ul>\r\n	<li>       « L’histoire » qui m’a le plus touchée est définitivement celle où M. Saxena demandait au groupe qui voulait un 20$, sans condition, un 20$ tout neuf, sans pli. Je crois qu’une dizaine / quinzaine de personnes ont alors levé leur main.  Il a alors froissé le 20$ et reposé la même question au groupe.  Je crois qu’alors nous avons été seulement 2 ou 3 à lever notre main.  M. Saxena a alors dit : « c’est le même 20$, il a la même valeur et je vous l’offre sans condition ».  Seulement une personne de plus a levé la main. ….</li>\r\n</ul>\r\nPeu importe ce que les gens nous font, les mauvais « événements» qui nous arrivent, nous sommes les mêmes personnes.  Nous n’avons pas moins de valeur...\r\n\r\nCette histoire m’a beaucoup aidé et continuera de m’aider tout au long de ma vie. C’est un exemple qui a marqué mon imaginaire et auquel je peux me référer pour m’aider au besoin.  J’aime beaucoup ce genre d’histoire que M. Saxena nous raconte.\r\n\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li> Il y a des situations qui arrivent parfois dans la vie qui ne sont pas toujours facile à vivre.  Mais on doit continuer à avancer sans se retourner en arrière.  Dans mon cas j’ai pris la décision d’avancer et de continuer à évoluer tout en respectant les limites de mon corps et de mes pensées.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<h1><span style=\"text-decoration: underline;\"><strong> </strong></span></h1>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Partageons','','publish','closed','closed','','let-us-share','','','2013-10-08 20:56:45','2013-10-09 00:56:45','',0,'http://divyayogamonteregie.org/french/?page_id=33',0,'page','',0),(34,1,'2013-05-09 07:13:44','2013-05-09 11:13:44','','Let us share','','inherit','closed','closed','','33-revision-v1','','','2013-05-09 07:13:44','2013-05-09 11:13:44','',33,'http://divyayogamonteregie.org/french/?p=34',0,'revision','',0),(35,1,'2013-05-09 07:14:13','2013-05-09 11:14:13','Coming soon','galerie photos - publicités','','publish','closed','closed','','photo-gallery-publicity','','','2013-10-08 21:02:14','2013-10-09 01:02:14','',0,'http://divyayogamonteregie.org/french/?page_id=35',0,'page','',0),(36,1,'2013-05-09 07:14:09','2013-05-09 11:14:09','','Photo Gallery - Publicity','','inherit','closed','closed','','35-revision-v1','','','2013-05-09 07:14:09','2013-05-09 11:14:09','',35,'http://divyayogamonteregie.org/french/?p=36',0,'revision','',0),(39,1,'2013-05-09 07:15:55','2013-05-09 11:15:55','<p style=\"text-align: justify;\">These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards happiness, success and achieving our goals.</p>\r\n<p style=\"text-align: justify;\">These poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.</p>','Poèmes','','publish','closed','closed','','poem-and-story','','','2013-10-08 20:59:30','2013-10-09 00:59:30','',0,'http://divyayogamonteregie.org/french/?page_id=39',0,'page','',0),(40,1,'2013-05-09 07:15:06','2013-05-09 11:15:06','','Poem and story','','inherit','closed','closed','','39-revision-v1','','','2013-05-09 07:15:06','2013-05-09 11:15:06','',39,'http://divyayogamonteregie.org/french/?p=40',0,'revision','',0),(41,1,'2013-05-09 07:15:09','2013-05-09 11:15:09','','Poem and story','','inherit','closed','closed','','39-revision-v1','','','2013-05-09 07:15:09','2013-05-09 11:15:09','',39,'http://divyayogamonteregie.org/french/?p=41',0,'revision','',0),(42,1,'2013-05-09 07:16:46','2013-05-09 11:16:46','<p align=\"center\">Ayez des pensées positives,</p>\r\n<p align=\"center\">Car vos pensées se traduiront en paroles positives.</p>\r\n<p align=\"center\">Ayez des paroles positives,</p>\r\n<p align=\"center\">Car vos paroles se traduiront en actions positives.</p>\r\n<p align=\"center\">Ayez des actions positives,</p>\r\n<p align=\"center\">Car vos actions se transformeront en habitudes positives.</p>\r\n<p align=\"center\">Ayez des habitudes positives,</p>\r\n<p align=\"center\">Car vos habitudes se transformeront en style de vie.</p>\r\n<p align=\"center\">Ayez un style de vie positif,</p>\r\n<p align=\"center\">Car votre style de vie c’est votre avenir</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">**********</p>\r\n<p align=\"center\"></p>\r\n&nbsp;','nos pensées ','','publish','closed','closed','','our-thoughts','','','2013-09-21 21:03:44','2013-09-22 01:03:44','',39,'http://divyayogamonteregie.org/french/?page_id=42',0,'page','',0),(43,1,'2013-05-09 07:16:41','2013-05-09 11:16:41','<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\">Keep your thoughts positive,</p>\n<p align=\"center\">because thoughts become your words.</p>\n<p align=\"center\">Keep your words positive</p>\n<p align=\"center\">because words become your action.</p>\n<p align=\"center\">Keep your action positive</p>\n<p align=\"center\">Because your action becomes your habit.</p>\n<p align=\"center\">Keep your habit positive,</p>\n<p align=\"center\">because your habit becomes your lifestyle.</p>\n<p align=\"center\">Keep your life style positive,</p>\n<p align=\"center\">because your life style becomes your destiny.</p>','OUR THOUGHTS','','inherit','closed','closed','','42-revision-v1','','','2013-05-09 07:16:41','2013-05-09 11:16:41','',42,'http://divyayogamonteregie.org/french/?p=43',0,'revision','',0),(448,1,'2013-05-09 07:16:46','2013-05-09 11:16:46','<p align=\"center\">Keep your thoughts positive,</p>\r\n<p align=\"center\">because thoughts become your words.</p>\r\n<p align=\"center\">Keep your words positive</p>\r\n<p align=\"center\">because words become your action.</p>\r\n<p align=\"center\">Keep your action positive</p>\r\n<p align=\"center\">Because your action becomes your habit.</p>\r\n<p align=\"center\">Keep your habit positive,</p>\r\n<p align=\"center\">because your habit becomes your lifestyle.</p>\r\n<p align=\"center\">Keep your life style positive,</p>\r\n<p align=\"center\">because your life style becomes your destiny.</p>','OUR THOUGHTS','','inherit','closed','closed','','42-revision-v1','','','2013-05-09 07:16:46','2013-05-09 11:16:46','',42,'http://divyayogamonteregie.org/french/?p=448',0,'revision','',0),(45,1,'2013-05-09 07:19:27','2013-05-09 11:19:27','<p align=\"center\"><b>Promets-toi :</b></p>\r\n<p align=\"center\"> D’être tellement fort que rien ne pourra déranger ta paix d’esprit.</p>\r\n<p align=\"center\">De parler santé, bonheur et prospérité à toutes les personnes rencontrées.</p>\r\n<p align=\"center\">De faire en sorte que tous tes amis se sentiront importants.</p>\r\n<p align=\"center\">De voir le bon côté de toute chose afin que ton optimisme devienne réalité.</p>\r\n<p align=\"center\">De penser seulement à ce qu’il y a de meilleur, de travailler seulement pour ce qu’il y a de meilleur et d’aspirer seulement à ce qu’il y a de meilleur.</p>\r\n<p align=\"center\">D’être aussi enthousiaste du succès des autres que du tien.</p>\r\n<p align=\"center\">D’oublier les erreurs du passé et de concentrer tes énergies sur les accomplissements futurs.</p>\r\n<p align=\"center\">D’afficher une expression joyeuse en tout temps et de sourire à chaque personne rencontrée.</p>\r\n<p align=\"center\">D’utiliser tout ton temps à essayer de t’améliorer afin de ne pas avoir le temps de critiquer autrui.</p>\r\n<p align=\"center\">D’être trop solide pour t’inquiéter, trop noble pour t’enrager, trop fort pour avoir peur et trop heureux pour être troublé</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>','Promets-toi ','','publish','closed','closed','','promise-yourself','','','2013-09-21 21:13:41','2013-09-22 01:13:41','',39,'http://divyayogamonteregie.org/french/?page_id=45',0,'page','',0),(46,1,'2013-05-09 07:19:19','2013-05-09 11:19:19','<p align=\"center\"><b>\n</b>(one the most classic motivational poems)</p>\n<p align=\"center\"></p>\n<p align=\"center\">Promise yourself to be so strong that nothing can\ndisturb your peace of mind.</p>\n<p align=\"center\">To talk health, happiness, and prosperity to\nevery person you meet.</p>\n<p align=\"center\">To make all your friends feel like there is\nsomething in them.</p>\n<p align=\"center\">To look at the sunny side of everything and make your\noptimism come true.</p>\n<p align=\"center\">To think only of the best, to work only for the best,\nand expect only the best.</p>\n<p align=\"center\">To be just as enthusiastic about the success of others\nas you are about your own.</p>\n<p align=\"center\">To forget the mistakes of the past and press on the\ngreater achievements of the future.</p>\n<p align=\"center\">To wear a cheerful countenance at all times and give\nevery living person you meet a smile.</p>\n<p align=\"center\">To give so much time to the improvement of yourself\nthat you have no time to criticize others.</p>\n<p align=\"center\">To be too large for worry, too noble for anger, and too\nstrong for fear, and too happy to permit the\npresence of trouble.</p>','Promise Yourself','','inherit','closed','closed','','45-revision-v1','','','2013-05-09 07:19:19','2013-05-09 11:19:19','',45,'http://divyayogamonteregie.org/french/?p=46',0,'revision','',0),(47,1,'2013-05-09 07:19:27','2013-05-09 11:19:27','<p align=\"center\">(one the most classic motivational poems)</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Promise yourself to be so strong that nothing can\r\ndisturb your peace of mind.</p>\r\n<p align=\"center\">To talk health, happiness, and prosperity to\r\nevery person you meet.</p>\r\n<p align=\"center\">To make all your friends feel like there is\r\nsomething in them.</p>\r\n<p align=\"center\">To look at the sunny side of everything and make your\r\noptimism come true.</p>\r\n<p align=\"center\">To think only of the best, to work only for the best,\r\nand expect only the best.</p>\r\n<p align=\"center\">To be just as enthusiastic about the success of others\r\nas you are about your own.</p>\r\n<p align=\"center\">To forget the mistakes of the past and press on the\r\ngreater achievements of the future.</p>\r\n<p align=\"center\">To wear a cheerful countenance at all times and give\r\nevery living person you meet a smile.</p>\r\n<p align=\"center\">To give so much time to the improvement of yourself\r\nthat you have no time to criticize others.</p>\r\n<p align=\"center\">To be too large for worry, too noble for anger, and too\r\nstrong for fear, and too happy to permit the\r\npresence of trouble.</p>','Promise Yourself','','inherit','closed','closed','','45-revision-v1','','','2013-05-09 07:19:27','2013-05-09 11:19:27','',45,'http://divyayogamonteregie.org/french/?p=47',0,'revision','',0),(48,1,'2013-05-09 07:21:46','2013-05-09 11:21:46','<p style=\"text-align: center;\" align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: center;\" align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Au cours de notre vie,</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">certaines personnes nous feront mal et nous feront souffrir</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">cependant, nous devons apprendre à pardonner, à oublier, et, à ne pas garder rancune.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Au cours de notre vie nous ferons des erreurs,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Cependant, nous devons en tirer partie et grandir.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Au cours de notre vie nous aurons a vivre avec des regrets,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">mais nous devons apprendre à laisser le passé derrière nous</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">puisque nous ne pouvons rien y changer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Au cours de notre vie, nous perdrons des personnes à tout jamais,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">mais nous devons apprendre à laisser aller et poursuivre notre vie.</span></p>\r\n<p style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\">Au cours de notre vie, des embûches se trouveront sur notre chemin</span></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\nm within.','Au cours de notre vie,','','publish','closed','closed','','in-our-life','','','2013-09-21 20:54:08','2013-09-22 00:54:08','',39,'http://divyayogamonteregie.org/french/?page_id=48',0,'page','',0),(49,1,'2013-05-09 07:21:38','2013-05-09 11:21:38','<p align=\"center\">In life there are people that will hurt us and cause us pain,</p>\n<p align=\"center\">but we must learn to forgive and forget and not hold grudges.\n\nIn life there are mistakes we will make,\nbut we must learn from our wrongs and grow from them.\n\nIn life there are regrets we will have to live with,\nbut we must learn to leave the past behind and realize it is something we can\'t change.\n\nIn life there are people we will loose forever and can\'t have back,\nbut we must learn to let go &amp; move on.\n\nIn life there are going to be obstacles that will cause interference,\nbut we must learn to overcome these challenges and grow stronger.\n\nIn life there are fears that will hold us back from what we want,\nbut we must learn to fight them with the courage from within.</p>','In our life','','inherit','closed','closed','','48-revision-v1','','','2013-05-09 07:21:38','2013-05-09 11:21:38','',48,'http://divyayogamonteregie.org/french/?p=49',0,'revision','',0),(50,1,'2013-05-09 07:21:46','2013-05-09 11:21:46','<p align=\"center\">In life there are people that will hurt us and cause us pain,</p>\r\n<p align=\"center\">but we must learn to forgive and forget and not hold grudges.\r\n\r\nIn life there are mistakes we will make,\r\nbut we must learn from our wrongs and grow from them.\r\n\r\nIn life there are regrets we will have to live with,\r\nbut we must learn to leave the past behind and realize it is something we can\'t change.\r\n\r\nIn life there are people we will loose forever and can\'t have back,\r\nbut we must learn to let go &amp; move on.\r\n\r\nIn life there are going to be obstacles that will cause interference,\r\nbut we must learn to overcome these challenges and grow stronger.\r\n\r\nIn life there are fears that will hold us back from what we want,\r\nbut we must learn to fight them with the courage from within.</p>','In our life','','inherit','closed','closed','','48-revision-v1','','','2013-05-09 07:21:46','2013-05-09 11:21:46','',48,'http://divyayogamonteregie.org/french/?p=50',0,'revision','',0),(51,1,'2013-05-09 07:22:03','2013-05-09 11:22:03','<p style=\"text-align: center;\" align=\"center\">In life there are people that will hurt us and cause us pain,</p>\r\n<p style=\"text-align: center;\" align=\"center\">but we must learn to forgive and forget and not hold grudges.</p>\r\n<p style=\"text-align: center;\">In life there are mistakes we will make,\r\nbut we must learn from our wrongs and grow from them.</p>\r\n<p style=\"text-align: center;\">In life there are regrets we will have to live with,\r\nbut we must learn to leave the past behind and realize it is something we can\'t change.</p>\r\n<p style=\"text-align: center;\">In life there are people we will loose forever and can\'t have back,\r\nbut we must learn to let go &amp; move on.</p>\r\n<p style=\"text-align: center;\">In life there are going to be obstacles that will cause interference,\r\nbut we must learn to overcome these challenges and grow stronger.</p>\r\n<p style=\"text-align: center;\">In life there are fears that will hold us back from what we want,\r\nbut we must learn to fight them with the courage from within.</p>','In our life','','inherit','closed','closed','','48-revision-v1','','','2013-05-09 07:22:03','2013-05-09 11:22:03','',48,'http://divyayogamonteregie.org/french/?p=51',0,'revision','',0),(52,1,'2013-05-09 07:22:15','2013-05-09 11:22:15','<p style=\"text-align: center;\" align=\"center\">In life there are people that will hurt us and cause us pain,</p>\r\n<p style=\"text-align: center;\" align=\"center\">but we must learn to forgive and forget and not hold grudges.</p>\r\n<p style=\"text-align: center;\">In life there are mistakes we will make,\r\nbut we must learn from our wrongs and grow from them.</p>\r\n<p style=\"text-align: center;\">In life there are regrets we will have to live with,\r\nbut we must learn to leave the past behind and realize it is something we can\'t change.</p>\r\n<p style=\"text-align: center;\">In life there are people we will loose forever and can\'t have back,\r\nbut we must learn to let go &amp; move on.</p>\r\n<p style=\"text-align: center;\">In life there are going to be obstacles that will cause interference,\r\nbut we must learn to overcome these challenges and grow stronger.</p>\r\n<p style=\"text-align: center;\">In life there are fears that will hold us back from what we want,\r\nbut we must learn to fight them with the courage from within.</p>','In our life','','inherit','closed','closed','','48-revision-v1','','','2013-05-09 07:22:15','2013-05-09 11:22:15','',48,'http://divyayogamonteregie.org/french/?p=52',0,'revision','',0),(53,1,'2013-05-09 07:23:52','2013-05-09 11:23:52','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Tout est possible</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faites-vous confiance, etSouvenez-vous queTout est possible</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez en ce qui vous fait du bien.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez en ce qui vous rend heureux.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez aux rêves que vous avez toujours espéré voir se réaliser,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et mettez-toutes les chances de votre côté.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La vie ne fait aucune promesse</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Quant à ce qui vous arrivera.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous devez chercher vos propres idéaux et</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Faire en sorte que vous les atteigniez.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La Vie ne vous garantie rien d’avance.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Elle ne fait que vous accorder le temps pour faire vos choix et tenter votre chance, ainsi que pour découvrir votre destin en cours de route.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous acceptez de profiter des opportunités s’offrant à vous, et</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">De mettre à contribution vos talents,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">votre vie se meublera sans arrêts de moments spéciaux et de souvenirs mémorables.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Nul ne connaît les mystères de la vie, ni le sens profond de la Vie,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais pour ceux qui veulent</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croire à leurs rêves et en eux-mêmes,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La vie est un don précieux à l’intérieur duquel tout est possible.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>','Tout est possible','','publish','closed','closed','','anything-is-possible','','','2013-09-21 21:04:52','2013-09-22 01:04:52','',39,'http://divyayogamonteregie.org/french/?page_id=53',0,'page','',0),(54,1,'2013-05-09 07:23:43','2013-05-09 11:23:43','<p align=\"center\"></p>\n<p align=\"center\">Believe in Yourself,and Remember that Anything Is Possible</p>\n<p align=\"center\">Believe in what makes you feel good.\nBelieve in what makes you happy.\nBelieve in the dreams you\'ve always wanted to come true,\nand give them every chance to.</p>\n<p align=\"center\">Life holds no promisesas to what will come your way.\nYou must search for your own ideals\nand work towards reaching them.</p>\n<p align=\"center\">Life makes no guarantees as to what you\'ll have.\nIt just gives you time to make choices\nand to take chances\nand to discover whatever secrets might come your way.</p>\n<p align=\"center\">If you are willing to take the opportunities you are given\nand utilize the abilities you have,\nyou will constantly fill your life\nwith special moments and unforgettable times.</p>\n<p align=\"center\">No one knows the mysteries of life or its ultimate meaning,\nbut for those who are willing\nto believe in their dreams and in themselves,\nlife is a precious gift in which anything is possible.</p>\n<p align=\"center\">~ Dena DiIaconi ~</p>','Anything Is Possible','','inherit','closed','closed','','53-revision-v1','','','2013-05-09 07:23:43','2013-05-09 11:23:43','',53,'http://divyayogamonteregie.org/french/?p=54',0,'revision','',0),(55,1,'2013-05-09 07:24:50','2013-05-09 11:24:50','<p align=\"center\"><strong><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]--></strong>\r\n\r\n</p><p align=\"center\"><strong><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]--></strong>\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Faites-vous confiance et</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">vos rêves se réaliseront</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Sachez ce que vous pouvez et voulez faire dans la vie.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Fixez-vous des objectifs et travaillez d’arrache pied à les atteindre.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Efforcez-vous d’avoir du plaisir à chaque jour.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Usez de créativité dans l’expression de vos sentiments.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Regardez le monde d’un œil sage.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Cultivez votre sentiment de confiance.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Écoutez votre cœur et soyez fidèle à vos croyances.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Sachez que plus vous donnerez, plus vous recevrez en retour.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez en vous-même et vos rêves se réaliseront.</span></p>','Faites-vous confiance et  vos rêves se réaliseront','','publish','closed','closed','','believe-in-yourself','','','2013-09-21 20:50:48','2013-09-22 00:50:48','',39,'http://divyayogamonteregie.org/french/?page_id=55',0,'page','',0),(56,1,'2013-05-09 07:24:36','2013-05-09 11:24:36','<p align=\"center\"><b>Believe In Yourself And Your\nDreams Will Come True</b></p>\n<p align=\"center\">Know what you can and want to do in life.</p>\n<p align=\"center\">Set goals for yourself and work hard to achieve them.</p>\n<p align=\"center\">Strive to have fun every day.</p>\n<p align=\"center\">Use your creativity as a means of expressing your feelings.</p>\n<p align=\"center\">Be sensitive in viewing the world.</p>\n<p align=\"center\">Develop a sense of confidence.</p>\n<p align=\"center\">Be honest with yourself and with others.</p>\n<p align=\"center\">Follow your heart and adhere to your own truths.</p>\n<p align=\"center\">Know that the more you give the more you will receive.</p>\n<p align=\"center\">Believe in yourself and your dreams will come true</p>','Believe In Yourself ','','inherit','closed','closed','','55-revision-v1','','','2013-05-09 07:24:36','2013-05-09 11:24:36','',55,'http://divyayogamonteregie.org/french/?p=56',0,'revision','',0),(57,1,'2013-05-09 07:25:57','2013-05-09 11:25:57','<p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span>SI VOUS AVEZ UN RÊVE</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">N’attendez pas la venue d’une journée spéciale,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">puisqu’il sera peut-être trop tard dès le début de celle-ci.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vos décisions ne feront jamais l’unanimité de tous.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Soyez d’abord honnête avec vous-même en premier lieu, et</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">gardez à l’esprit que ce qui importe dans la vie est ce que vous faitesde votre vie</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">N’ayez pas peur de suivre vos désirs</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ils ne sont ni stupides ni égoïstes.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Prenez le temps de faire ce qui donne du sens à votre vie.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Abandonnez au passé vos craintes et regrets</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">puisqu’ ils lui appartiennent.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Évitez de troubler votre présent de choses qui ne peuvent changer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous n’avez pas plus de contrôle sur le passé et le futur</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que sur la fureur de vos impulsions.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">N’éteignez pas vos rêves et ne refoulez pas vos désirs</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous le faites, votre périple prendra fin.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">C’est au moment présent que vous pouvez vous permettre un nouveau départ et la poursuite de vos rêves,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">car en fin de compte, il ne vous restera que vos souvenirs.</span></p>\r\n<p align=\"center\"><span lang=\"FR\" style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\">Au crépuscule de votre vie, qu’il n’y ait ni excuses, ni explications, ni regrets</span></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\ns, no regrets!',' SI VOUS AVEZ UN RÊVE','','publish','closed','closed','','if-you-have-a-dream','','','2013-09-21 20:52:10','2013-09-22 00:52:10','',39,'http://divyayogamonteregie.org/french/?page_id=57',0,'page','',0),(58,1,'2013-05-09 07:25:42','2013-05-09 11:25:42','<p align=\"center\"><b>If You Have A Dream</b></p>\n<p align=\"center\">Don’t wait for some distant day to come,\nit may be too late before you’ve even begun.\nNot everyone will agree with all you decide.</p>\n<p align=\"center\">Be true to yourself first and foremost.\nThe only important thing in life is what you do\nwith the time you spend here on earth.</p>\n<p align=\"center\">Don’t be afraid to follow your desires,\nthey are not silly nor selfish.\nTake the time and do what makes you feel alive.</p>\n<p align=\"center\">Leave your fears and regrets in the past,\nfor this is where they belong.\nDon’t cloud today with things that can’t be undone.</p>\n<p align=\"center\">You have no more control over yesterday or tomorrow,\nthan you do the raging of your passions.\nDo not quiet these dreams nor quench your desires.</p>\n<p align=\"center\">For if you do, your journey is ended.\nYou have only today to begin anew and follow your dreams.\nFor in the end all we have are our memories.</p>\n<p align=\"center\">When the twilight comes to us, let there be,\nNo excuses, no explanations, no regrets!</p>','If You Have A Dream','','inherit','closed','closed','','57-revision-v1','','','2013-05-09 07:25:42','2013-05-09 11:25:42','',57,'http://divyayogamonteregie.org/french/?p=58',0,'revision','',0),(59,1,'2013-05-09 07:27:22','2013-05-09 11:27:22','<p align=\"center\"><span style=\"color: #0000ff;\"><strong><!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]--></strong></span>\r\n\r\n</p><p align=\"center\"><span style=\"color: #0000ff;\"><strong><!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]--></strong></span>\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Tu peux devenir ce que tu désires être</span></b></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Tu portes en toi</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">tout ton potentiel</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour atteindre ce que tu veux être</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">toute l\'énergie</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour atteindre ce que tu veux faire.</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Imagine toi tel que tu veux être</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faisant ce que tu veux faire</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et chaque jour fait un pas</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">en direction de ton rêve.</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et lorsque parfois cela semble</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ardu de poursuivre</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">reste fidèle à ton rêve</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un matin tu t\'éveilleras pour réaliser</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que tu es la personne dont tu as rêvé,</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faisant ce dont tu a rêvé,</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">simplement parce que tu as eu le courage</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">de croire en ton potentiel</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et de poursuivre ton rêve</span></p>\r\n<p align=\"center\"></p>','Tu peux devenir ce que tu désires être','','publish','closed','closed','','be-whatever-you-want-to-be','','','2013-09-21 20:48:17','2013-09-22 00:48:17','',39,'http://divyayogamonteregie.org/french/?page_id=59',0,'page','',0),(60,1,'2013-05-09 07:27:13','2013-05-09 11:27:13','<p align=\"center\"><strong>You Can Be Whatever </strong>\n<strong> You Want To Be!</strong></p>\n<p align=\"center\">There is inside you\nall of the potential\nto be whatever you want to be,\nall of the energy\nto do whatever you want to do.</p>\n<p align=\"center\">Imagine yourself as you would like to be,\ndoing what you want to do,\nand each day, take one step\ntowards your dream.</p>\n<p align=\"center\">And though at times it may seem too\ndifficult to continue,\nhold on to your dream.</p>\n<p align=\"center\">One morning you will awake to find\nthat you are the person you dreamed of,\ndoing what you wanted to do,\nsimply because you had the courage\nto believe in your potential\nand to hold on to your dream</p>','Be Whatever  You Want To Be !','','inherit','closed','closed','','59-revision-v1','','','2013-05-09 07:27:13','2013-05-09 11:27:13','',59,'http://divyayogamonteregie.org/french/?p=60',0,'revision','',0),(61,1,'2013-05-09 07:28:23','2013-05-09 11:28:23','<p align=\"center\"><strong><!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]--></strong>\r\n\r\n</p><p align=\"center\"><strong><!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]--></strong>\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">En toi se trouve la force d\'accomplir tes défis dans la vie</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Tu as plus de force que tu ne penses</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souviens-toi de rester debout</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque défis</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">t\'aidera à grandir</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque obstacle sur ta route</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">fortifiera ton esprit et ton âme</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque obstacle surmonté</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">enrichira ta connaissance de la vie.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Lorsque les problèmes pèsent de tout leur poids</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">sur tes épaules</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souviens toi</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que ployé sous le fardeau</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">tu peux rester droit et grand,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">car tu ne reçois jamais plus que tu ne peux recevoir</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et tu es plus fort que tu ne penses</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>','En toi se trouve la force d\'accomplir tes défis dans la vie','','publish','closed','closed','','within-you-is-the-strength-to-meet-lifes-challenges','','','2013-09-21 21:36:52','2013-09-22 01:36:52','',39,'http://divyayogamonteregie.org/french/?page_id=61',0,'page','',0),(62,1,'2013-05-09 07:28:18','2013-05-09 11:28:18','<p align=\"center\"><strong>Within You Is The Strength </strong>\n<strong> To Meet Life\'s Challenges!</strong></p>\n<p align=\"center\">You are stronger than you think,\nremember to stand tall.</p>\n<p align=\"center\">Every challenge in your life\nhelps you to grow.</p>\n<p align=\"center\">Every problem you encounter\nstrengthens your mind and your soul.</p>\n<p align=\"center\">Every trouble you overcome\nincreases your understanding of life.</p>\n<p align=\"center\">When all your troubles weigh\nheavily on your shoulders,\nremember that beneath the burden\nyou can stand tall,\nbecause you are never given\nmore than you can handle...\nand you are stronger than you think</p>','Within You Is The Strength To Meet Life\'s Challenges !','','inherit','closed','closed','','61-revision-v1','','','2013-05-09 07:28:18','2013-05-09 11:28:18','',61,'http://divyayogamonteregie.org/french/?p=62',0,'revision','',0),(63,1,'2013-05-09 07:29:12','2013-05-09 11:29:12','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Les rêves d\'aujourd\'hui sont les succès de demain</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne crains pas les espoirs élevés</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ou les plans qui semblent hors d\'atteinte.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La vie est faite pour en faire l\'expérience,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et chaque situation est une occasion</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">d\'apprendre et de grandir.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La motivation est un point de départ positif,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et l\'action te permet d\'avancer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un rêve est une esquisse</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">d\'un but qui n\'est pas encore atteint;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">la seule différence entre les deux</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">est l\'effort investi pour atteindre</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ce que tu espères accomplir.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Laisse toi guider par ton esprit et ton cœur;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">permet au pouvoir de ta volonté</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">de te mener à ton destin.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne compte pas les pas à franchir;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">fais seulement la somme des pas déjà parcourus,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et multiplie les par la foi, la confiance et l\'endurance.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Souviens toi toujours que</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour ceux qui persistent,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">les rêves d\'aujourd\'hui deviennent</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">les succès de demain.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>','Les rêves d\'aujourd\'hui sont les succès de demain','','publish','closed','closed','','todays-dreams-are-tomorrows-successes','','','2013-09-21 21:22:56','2013-09-22 01:22:56','',39,'http://divyayogamonteregie.org/french/?page_id=63',0,'page','',0),(64,1,'2013-05-09 07:29:09','2013-05-09 11:29:09','<p align=\"center\"><strong>Today\'s Dreams Are </strong>\n<strong> Tomorrow\'s Successes</strong></p>\n<p align=\"center\">Don\'t be afraid of high hopes\nor plans that seem to be out of reach.\nLife is meant to be experienced,\nand every situation allows for\nlearning and growth.</p>\n<p align=\"center\">Motivation is a positive starting point,\nand action places you on a forward path.\nA dream is a blueprint\nof a goal not yet achieved;\nthe only difference between the two\nis the effort involved in attaining\nwhat you hope to accomplish.</p>\n<p align=\"center\">Let your mind and heart urge you on;\nallow the power of your will\nto lead you to your destination.</p>\n<p align=\"center\">Don\'t count the steps ahead;\njust add up the total\nof steps already covered,\nand multiply it by\nfaith, confidence, and endurance.</p>\n<p align=\"center\">Always remember that\nfor those who persist,\ntoday\'s dreams are transformed\ninto tomorrow\'s successes.</p>\n<p align=\"center\">~ Kelly D. Caron ~</p>','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','63-revision-v1','','','2013-05-09 07:29:09','2013-05-09 11:29:09','',63,'http://divyayogamonteregie.org/french/?p=64',0,'revision','',0),(65,1,'2013-05-09 07:30:17','2013-05-09 11:30:17','<p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Seulement qu\'un</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Une chanson peut éblouir un moment</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un arbre peut commencer une forest</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un oiseau peut enchanter le printemps</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un sourire commence une amitié</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un applaudissment élève l\'âme</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Une étoile peut guider un bateau sur l\'océan</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un vote peut changer une nation</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un rayon de soleil illumine une pièce</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Une chandelle enlève la noirceur</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un rire va conquérir la tristesse</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un pas doit commencer chaque jour</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un mot doit commencer une prière</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un moment d\'espoir élèvera nos esprits</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un geste affectueux peut montrer de la compassion</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Une voix peut s\'exprimer avec sagesse</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un coeur peut connaître la vérité</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Une vie peut faire la différence</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Tu vois, cela dépend de toi!</span></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n&nbsp;','Seulement qu\'un','','publish','closed','closed','','just-one','','','2013-09-21 20:56:57','2013-09-22 00:56:57','',39,'http://divyayogamonteregie.org/french/?page_id=65',0,'page','',0),(66,1,'2013-05-09 07:29:45','2013-05-09 11:29:45','<p align=\"center\">\nOne song can spark a moment,\nOne tree can start a forest,\nOne bird can herald spring.</p>\n<p align=\"center\">One smile begins a friendship,\nOne handclasp lifts a soul.\nOne star can guide a ship at sea,\nOne vote can change a nation,\nOne sunbeam lights a room\nOne candle wipes out darkness,\nOne laugh will conquer gloom.</p>\n<p align=\"center\">One step must start each journey.\nOne word must start each prayer.\nOne hope will raise our spirits,\nOne touch can show you care.</p>\n<p align=\"center\">One voice can speak with wisdom,\nOne heart can know what\'s true,</p>\n<p align=\"center\">One life can make a difference,\nYou see, it\'s up to you!</p>','Just One   ','','inherit','closed','closed','','65-revision-v1','','','2013-05-09 07:29:45','2013-05-09 11:29:45','',65,'http://divyayogamonteregie.org/french/?p=66',0,'revision','',0),(67,1,'2013-05-09 07:32:40','2013-05-09 11:32:40','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Vous possédez l’énergie</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les semblables s’attirent</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous vous sentez vaincu, vous le serez</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous êtes fatigués, vous perdrez votre l’élan</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous concentrez votre attention sur la joie, la négativité n\'aura d\'autre choix que de reculer</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Décidez de rire face à l\'adversité</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Sachez que vous êtes assez puissant pour surpasser toutes les difficultés</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne laissez pas votre esprit vagabonder</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Soyez puissant</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Apprenez à vous connaître.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Décidez d\'être en contrôle de votre réalité.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Il n\'y a pas de victimes, sauf ceux qui ont renoncé à leur pouvoir.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous possédez l\'énergie de créer et de prendre le contrôle de votre destin.</span></p>','Vous possédez l’énergie','','publish','closed','closed','','you-possess-the-energy','','','2013-09-21 21:40:56','2013-09-22 01:40:56','',39,'http://divyayogamonteregie.org/french/?page_id=67',0,'page','',0),(68,1,'2013-05-09 07:31:53','2013-05-09 11:31:53','<p align=\"center\">Like attracts like.</p>\n<p align=\"center\">If you feel defeated, you will be.</p>\n<p align=\"center\">If you are weary, you will lose momentum.</p>\n<p align=\"center\">If you are of joyful focus, the negative will have no choice but to recede.</p>\n<p align=\"center\">Decide to laugh in the face of adversity.</p>\n<p align=\"center\">Know you are powerful enough to supersede all difficulty.</p>\n<p align=\"center\">Do not let your thoughts wander.</p>\n<p align=\"center\">Be powerful.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Know yourself.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Decide to be in control of your reality.</p>\n<p align=\"center\"></p>\n<p align=\"center\">There are no victims except those who have given up their power.</p>\n<p align=\"center\"></p>\n<p align=\"center\">You possess the energy, create and take control of your destiny</p>','You Possess The Energy','','inherit','closed','closed','','67-revision-v1','','','2013-05-09 07:31:53','2013-05-09 11:31:53','',67,'http://divyayogamonteregie.org/french/?p=68',0,'revision','',0),(483,1,'2013-05-09 07:32:40','2013-05-09 11:32:40','<p style=\"text-align: center;\" align=\"center\">Like attracts like.</p>\r\n<p style=\"text-align: center;\" align=\"center\">If you feel defeated, you will be.</p>\r\n<p style=\"text-align: center;\" align=\"center\">If you are weary, you will lose momentum.</p>\r\n<p style=\"text-align: center;\" align=\"center\">If you are of joyful focus, the negative will have no choice but to recede.</p>\r\n<p style=\"text-align: center;\" align=\"center\">Decide to laugh in the face of adversity.</p>\r\n<p style=\"text-align: center;\" align=\"center\">Know you are powerful enough to supersede all difficulty.</p>\r\n<p style=\"text-align: center;\" align=\"center\">Do not let your thoughts wander.</p>\r\n<p style=\"text-align: center;\" align=\"center\">Be powerful.</p>\r\n<p style=\"text-align: center;\" align=\"center\">Know yourself.</p>\r\n<p style=\"text-align: center;\" align=\"center\"> Decide to be in control of your reality.</p>\r\n<p style=\"text-align: center;\" align=\"center\">There are no victims except those who have given up their power.</p>\r\n<p style=\"text-align: center;\" align=\"center\">You possess the energy, create and take control of your destiny</p>','You Possess The Energy','','inherit','closed','closed','','67-revision-v1','','','2013-05-09 07:32:40','2013-05-09 11:32:40','',67,'http://divyayogamonteregie.org/french/?p=483',0,'revision','',0),(70,1,'2013-05-09 07:35:47','2013-05-09 11:35:47','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Aujourd’hui Je</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Aujourd’hui j’ai décidé,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Qu’il est temps de prendre contrôle.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Il n’y aura plus de ‘je m’assois’,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et j’attends ceci est mon but.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Aujourd’hui je vois de façon si claire,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je suis tout ce que j’ai.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si je veux que quelque chose s’accomplisse,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">C’est à moi de paver mon propre chemin.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Aujourd’hui d’établirais mon but,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et je travaillerais pour l’atteindre.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je suis fatigué d’avoir peur,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">C’est le temps pour que mes rêves deviennent réalités.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Aujourd’hui je suis assez heureux.</span></p>','Aujourd’hui Je','','publish','closed','closed','','today-i','','','2013-09-21 21:20:14','2013-09-22 01:20:14','',39,'http://divyayogamonteregie.org/french/?page_id=70',0,'page','',0),(71,1,'2013-05-09 07:35:35','2013-05-09 11:35:35','<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\">Today I have decided,</p>\n<p align=\"center\">that it\'s time to take control.</p>\n<p align=\"center\">There won\'t be anymore sitting,</p>\n<p align=\"center\">and waiting, this is my goal.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Today I see it so clearly,</p>\n<p align=\"center\">I am all that I have.</p>\n<p align=\"center\">If I want to get something done,</p>\n<p align=\"center\">it\'s up to me to pave my own path.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Today I will set my goal,</p>\n<p align=\"center\">and work to see it through.</p>\n<p align=\"center\">I\'m tired of being afraid,</p>\n<p align=\"center\">it\'s time for my dreams to come true.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Today I am quite happy,</p>','Today I','','inherit','closed','closed','','70-revision-v1','','','2013-05-09 07:35:35','2013-05-09 11:35:35','',70,'http://divyayogamonteregie.org/french/?p=71',0,'revision','',0),(72,1,'2013-05-09 07:36:36','2013-05-09 11:36:36','<p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Promettez-vous -maintenant</span></b><span lang=\"FR\" style=\"mso-ansi-language: FR;\">.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">De toutes les choses que vous pouvez faire,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">promettez-vous que vous allez essayer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ce n\'est même pas important de gagner,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">du moment que vous vous y appliquez.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Personne ne peut demander quelque chose de vous,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">il n\'y à que vous-même qui le pouvez.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous ne voulez pas passer à l\'action,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">c\'est vous qui serez laissé-pour-compte.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Alors ne vous permettez pas de passer,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">par dessus des moments importants.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous pourriez ne pas penser qu\'ils sont valables mais,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ils pourraient être vos ailes.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les expériences nous rendent entiers</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et font en sorte que la vie est plus accomplie.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et quand viendra le temps pour regarder à l’arrière,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ne vous laissez pas sentir que vous êtes sans compétences.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne vous permettez pas d\'arrêter,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">sans raisons apparentes.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Promettez-vous que vous allez essayer</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et affronterez toutes les saisons</span></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Of all the things you can do,</p>\r\n<p align=\"center\">promise yourself you will try.</p>\r\n<p align=\"center\">It doesn\'t even matter if you win,</p>\r\n<p align=\"center\">as long as you apply.</p>\r\n<p align=\"center\">No one can ask anything of you except yourself.</p>\r\n<p align=\"center\">If you don\'t want to make a move,</p>\r\n<p align=\"center\">it\'s you who\'ll be left out.</p>\r\n<p align=\"center\">So don\'t allow yourself to miss out on important things.</p>\r\n<p align=\"center\">You may not feel that they are worthy,</p>\r\n<p align=\"center\">yet they can turn out to be your wings.</p>\r\n<p align=\"center\">Experiences make us whole,</p>\r\n<p align=\"center\">and make life feel fulfilled.</p>\r\n<p align=\"center\">And when it\'s time to look back,</p>\r\n<p align=\"center\">don\'t let yourself feel unskilled.</p>\r\n<p align=\"center\">So don\'t allow yourself to stop,</p>\r\n<p align=\"center\">for no apparent reason.</p>\r\n<p align=\"center\">Promise yourself you will try,</p>\r\n<p align=\"center\">and take on any season.</p>','Promettez-vous -maintenant.','','publish','closed','closed','','promise-yourself-now','','','2013-09-21 21:50:43','2013-09-22 01:50:43','',39,'http://divyayogamonteregie.org/french/?page_id=72',0,'page','',0),(73,1,'2013-05-09 07:36:24','2013-05-09 11:36:24','<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\">Of all the things you can do,</p>\n<p align=\"center\">promise yourself you will try.</p>\n<p align=\"center\">It doesn\'t even matter if you win,</p>\n<p align=\"center\">as long as you apply.</p>\n<p align=\"center\"></p>\n<p align=\"center\">No one can ask anything of you except yourself.</p>\n<p align=\"center\">If you don\'t want to make a move,</p>\n<p align=\"center\">it\'s you who\'ll be left out.</p>\n<p align=\"center\"></p>\n<p align=\"center\">So don\'t allow yourself to miss out on important things.</p>\n<p align=\"center\">You may not feel that they are worthy,</p>\n<p align=\"center\">yet they can turn out to be your wings.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Experiences make us whole,</p>\n<p align=\"center\">and make life feel fulfilled.</p>\n<p align=\"center\">And when it\'s time to look back,</p>\n<p align=\"center\">don\'t let yourself feel unskilled.</p>\n<p align=\"center\"></p>\n<p align=\"center\">So don\'t allow yourself to stop,</p>\n<p align=\"center\">for no apparent reason.</p>\n<p align=\"center\">Promise yourself you will try,</p>\n<p align=\"center\">and take on any season.</p>','Promise Yourself-now.','','inherit','closed','closed','','72-revision-v1','','','2013-05-09 07:36:24','2013-05-09 11:36:24','',72,'http://divyayogamonteregie.org/french/?p=73',0,'revision','',0),(74,1,'2013-05-09 07:37:14','2013-05-09 11:37:14','<p align=\"center\"><!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Ma Zone De Confort</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'avais jadis une zone de confort d\'ou je savais que je ne pouvais echouer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les memes quatres murs et dur travaille etaient plutot comme en prison.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je voulais<span style=\"mso-spacerun: yes;\">  </span>tellement faire des choses que je n\'ai jamais faites,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais en demeurant dans ma zone de confort, faisant les cents pas sur le meme vieux plancher.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je disais etre tellement occupe avec les choses dans ma zone ,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais au fond de moi<span style=\"mso-spacerun: yes;\">  </span>je desirais quelque chose de special a moi.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je ne pouvais laisser ma vie s\'enfuir juste en regardant les autres gagner.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai retenu mon souffle ; j\'ai sorti a l\'exterieur et laisser debuter le changement.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai pris un pas, et avec une nouvelle force jamais sentie auparavant,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai embrasser ma zone de confort et lui<span style=\"mso-spacerun: yes;\">  </span>ai dit aurevoir, puis<span style=\"mso-spacerun: yes;\">  </span>j\'ai<span style=\"mso-spacerun: yes;\">  </span>ferme la porte et l\'a barree.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous etes dans une zone de confort, peur de l\'aventure,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souvenez-vous que tous les gagnants furrent a un certain temps remplis de doute.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un pas ou deux et la volonte peuvent realiser vous reves.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Allez chercher votre futur avec un sourire; le succes est la pour vous.</span></p>\r\n&nbsp;','Ma Zone De Confort','','publish','closed','closed','','my-comfort-zone','','','2013-09-21 21:12:25','2013-09-22 01:12:25','',39,'http://divyayogamonteregie.org/french/?page_id=74',0,'page','',0),(75,1,'2013-05-09 07:37:06','2013-05-09 11:37:06','<p align=\"center\">\nI used to have a comfort zone where I knew I wouldn\'t fail.\nThe same four walls and busywork were really more like jail.</p>\n<p align=\"center\">I longed so much to do the things I\'d never done before,\nBut stayed inside my comfort zone and paced the same old floor.</p>\n<p align=\"center\">I claimed to be so busy with the things inside the zone,\nBut deep inside I longed for something special of my own.</p>\n<p align=\"center\">I couldn\'t let my life go by just watching others win.\nI held my breath; I stepped outside and let the change begin.\nI took a step and with new strength I\'d never felt before,\nI kissed my comfort zone goodbye and closed and locked the door.</p>\n<p align=\"center\">If you\'re in a comfort zone, afraid to venture out,\nRemember that all winners were at one time filled with doubt.\nA step or two and will power can make your dreams come true.</p>\n<p align=\"center\">Reach for your future with a smile; success is there for you!</p>','My Comfort Zone','','inherit','closed','closed','','74-revision-v1','','','2013-05-09 07:37:06','2013-05-09 11:37:06','',74,'http://divyayogamonteregie.org/french/?p=75',0,'revision','',0),(76,1,'2013-05-09 07:37:55','2013-05-09 11:37:55','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Partez D\'ou Vous Etes</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Partez d\'ou vous etes et ne vous occupez pas du passe,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Le passee ne vous aidera pas a redemarrer de nouveau,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous l\'avez laisse enfin derriere vous</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Quoi, c\'est assez , c\'est termine, c\'est fini;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ceci est un autre chapitre dans ce livre,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">C\'est une autre race que vous avez plannifiee,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne donnez pas un autre regard a ces jours disparus,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Commencez d\'ou vous etes.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Le monde ne porterais pas attention a vos anciennes defaites</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous pouvez recommencer de nouveau et avoir du succes;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Le futur est votre temps, et le temps passe tres vite</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et il y a beaucoups d\'ouvrage, d\'effort et de stress;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Oubliez les difficultes enterrees et les desespoirs morts,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ceci est un exploit nouveau dans votre main,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les futur est a celui qui fait et<span style=\"mso-spacerun: yes;\">  </span>qui affronte ,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\">Commencez d\'ou vous etes.</p>','Partez D\'ou Vous Etes','','publish','closed','closed','','start-where-you-stand','','','2013-09-21 21:15:23','2013-09-22 01:15:23','',39,'http://divyayogamonteregie.org/french/?page_id=76',0,'page','',0),(77,1,'2013-05-09 07:37:46','2013-05-09 11:37:46','<p align=\"center\"><b>\n</b>By Berton Braley</p>\n<p align=\"center\">Start where you stand and never mind the past,\nThe past won\'t help you in beginning new,\nIf you have left it all behind at last\nWhy, that\'s enough, you\'re done with it, you\'re through;\nThis is another chapter in the book,\nThis is another race that you have planned,\nDon\'t give the vanished days a backward look,\nStart where you stand.</p>\n<p align=\"center\">The world won\'t care about your old defeats\nIf you can start anew and win success;\nThe future is your time, and time is fleet\nAnd there is much of work and strain and stress;\nForget the buried woes and dead despairs,\nHere is a brand-new trial right at hand,\nThe future is for him who does and dares,\nStart where you stand.</p>','Start Where You Stand','','inherit','closed','closed','','76-revision-v1','','','2013-05-09 07:37:46','2013-05-09 11:37:46','',76,'http://divyayogamonteregie.org/french/?p=77',0,'revision','',0),(109,1,'2013-05-09 00:01:06','2013-05-09 04:01:06','<span style=\"color: #0000ff;\">To make basic yoga practice easily accessible to everyone without charge.</span>\r\n\r\n<span style=\"color: #0000ff;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</span>\r\n\r\n<span style=\"color: #0000ff;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</span>\r\n\r\n<span style=\"color: #0000ff;\">After yoga super food i. e. grapes and banana are available for Yogies.</span>\r\n\r\n<span style=\"color: #0000ff;\">Yoga is a marvelous means of exercising, stretching, and freeing the body so it can be a healthy, long-lived, and vital instrument for the body,mind and soul. We also create an environment where people can interact for their betterment.</span>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-05-09 00:01:06','2013-05-09 04:01:06','',2,'http://divyayogamonteregie.org/french/?p=109',0,'revision','',0),(79,1,'2013-05-09 07:41:35','2013-05-09 11:41:35','<p style=\"text-align: justify;\">These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.</p>\r\n<p style=\"text-align: justify;\">These stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution</p>','Histoires','','publish','closed','closed','','stories','','','2013-10-08 20:58:37','2013-10-09 00:58:37','',0,'http://divyayogamonteregie.org/french/?page_id=79',0,'page','',0),(80,1,'2013-05-09 07:41:27','2013-05-09 11:41:27','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\n\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-v1','','','2013-05-09 07:41:27','2013-05-09 11:41:27','',79,'http://divyayogamonteregie.org/french/?p=80',0,'revision','',0),(488,1,'2013-07-09 20:13:49','2013-07-10 00:13:49','<p style=\"text-align: justify;\">These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.</p>\r\n<p style=\"text-align: justify;\">These stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution</p>','Stories','','inherit','closed','closed','','79-revision-v1','','','2013-07-09 20:13:49','2013-07-10 00:13:49','',79,'http://divyayogamonteregie.org/french/?p=488',0,'revision','',0),(82,1,'2013-05-09 07:41:35','2013-05-09 11:41:35','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-v1','','','2013-05-09 07:41:35','2013-05-09 11:41:35','',79,'http://divyayogamonteregie.org/french/?p=82',0,'revision','',0),(83,1,'2013-05-09 07:43:05','2013-05-09 11:43:05','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-v1','','','2013-05-09 07:43:05','2013-05-09 11:43:05','',79,'http://divyayogamonteregie.org/french/?p=83',0,'revision','',0),(84,1,'2013-05-09 07:43:58','2013-05-09 11:43:58','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-v1','','','2013-05-09 07:43:58','2013-05-09 11:43:58','',79,'http://divyayogamonteregie.org/french/?p=84',0,'revision','',0),(85,1,'2013-05-09 07:45:17','2013-05-09 11:45:17','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-v1','','','2013-05-09 07:45:17','2013-05-09 11:45:17','',79,'http://divyayogamonteregie.org/french/?p=85',0,'revision','',0),(86,1,'2013-05-09 07:46:06','2013-05-09 11:46:06','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-v1','','','2013-05-09 07:46:06','2013-05-09 11:46:06','',79,'http://divyayogamonteregie.org/french/?p=86',0,'revision','',0),(87,1,'2013-05-09 07:46:39','2013-05-09 11:46:39','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-v1','','','2013-05-09 07:46:39','2013-05-09 11:46:39','',79,'http://divyayogamonteregie.org/french/?p=87',0,'revision','',0),(88,1,'2013-05-09 07:47:19','2013-05-09 11:47:19','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-v1','','','2013-05-09 07:47:19','2013-05-09 11:47:19','',79,'http://divyayogamonteregie.org/french/?p=88',0,'revision','',0),(89,1,'2013-05-09 08:29:53','2013-05-09 12:29:53','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" /><!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Maman girafe et son petit</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Mettre une girafe au monde est une tâche difficile.<span style=\"mso-spacerun: yes;\">  </span>Le bébé de la girafe, lorsqu’il naît tombe sur le dos, généralement d’une hauteur de dix pieds.<span style=\"mso-spacerun: yes;\">  </span>En quelques secondes il se retourne et replie les jambes sous son corps.De cette position, Il observe le monde pour la première fois et il enlève les restants du<span style=\"mso-spacerun: yes;\">  </span>liquide amniotique<span style=\"mso-spacerun: yes;\">  </span>sur ses yeux et ses oreilles.<span style=\"mso-spacerun: yes;\">  </span>Puis, sans ménagement la girafe introduit son petit à la dure réalité de la vie.<span style=\"mso-spacerun: yes;\">  </span>Dans son livre «a view from the Zoo » Gary Richmond décrit comment un nouveau né girafe reçoit sa première leçon de vie.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La mère girafe baisse suffisamment la tête pour pouvoir brièvement l’observer.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Puis elle se positionne<span style=\"mso-spacerun: yes;\">  </span>au dessus de son veau.<span style=\"mso-spacerun: yes;\">  </span>Elle attend environ une minute et elle fait la chose la plus surprenante qui soit : elle balance sa longue jambe pour donner un coup de pied <span style=\"mso-spacerun: yes;\"> </span>à son bébé qui se retrouve la tête au dessus des genoux.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Ce procédé violent<span style=\"mso-spacerun: yes;\">  </span>se répète continuellement.<span style=\"mso-spacerun: yes;\">  </span>L’effort pour se lever est momentané.<span style=\"mso-spacerun: yes;\">  </span>Lorsque le bébé girafe se fatigue, la mère le frappe encore pour stimuler ses efforts.<span style=\"mso-spacerun: yes;\">  </span>Finalement, le bébé girafe réussit à se lever sur ses jambes branlantes.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Puis la<span style=\"mso-spacerun: yes;\">  </span>mère fait cette chose incroyable : elle le frappe et le fait retomber par terre.<span style=\"mso-spacerun: yes;\">  </span>Pourquoi?<span style=\"mso-spacerun: yes;\">  </span>Elle veut lui rappeler comment il a fait pour se lever.<span style=\"mso-spacerun: yes;\">  </span>Dans la nature, les bébés girafes doivent se lever le plus rapidement possible afin de rester avec le troupeau où ils seront en sécurité.<span style=\"mso-spacerun: yes;\">  </span>Les lions, hyènes, léopards, et chiens de chasse adorent les bébés girafes et réussiront à les attraper si les mères ne leur avaient pas appris à se relever rapidement. </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Irving stone a compris cela.<span style=\"mso-spacerun: yes;\">  </span>Il a consacré sa vie entière pour étudier et écrire des biographies de grands hommes tel que Michel-Ange, Vincent Van Gogh, Sigmund Freud et Charles Darwin.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">On lui a déjà demandé s’il y a avait un fil conducteur qui unissait tous ces gens exceptionnels.<span style=\"mso-spacerun: yes;\">  </span>Il a répondu : «  J’écris sur des gens qui dans leur vie avait une vision ou un rêve et qui ont travaillé pour essayer de l’accomplir. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Pendant des années, <span style=\"mso-spacerun: yes;\"> </span>tel des boxeurs,<span style=\"mso-spacerun: yes;\">  </span>ils ont reçu des coups, sont tombés, <span style=\"mso-spacerun: yes;\"> </span>on les <span style=\"mso-spacerun: yes;\"> </span>a calomnié <span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span>et leurs projets n’allaient nulle part.<span style=\"mso-spacerun: yes;\">  </span>Mais à chaque fois qu’ils sont tombés, ils se sont relevés. <span style=\"mso-spacerun: yes;\"> </span>On ne peut pas détruire ce genre de personne.<span style=\"mso-spacerun: yes;\">  </span>Et à la fin de leur vie, ils ont accompli une parcelle de ce qu’ils avaient prévu de faire ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n&nbsp;','Maman girafe et son petit','','publish','closed','closed','','giraffe-mother-and-baby','','','2013-10-05 21:08:07','2013-10-06 01:08:07','',79,'http://divyayogamonteregie.org/french/?page_id=89',0,'page','',0),(90,1,'2013-05-09 08:10:04','2013-05-09 12:10:04','','giraffle','','inherit','closed','closed','','giraffle','','','2013-05-09 08:10:04','2013-05-09 12:10:04','',89,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png',0,'attachment','image/png',0),(91,1,'2013-05-09 08:10:58','2013-05-09 12:10:58','','butterfly','','inherit','closed','closed','','butterfly','','','2013-05-09 08:10:58','2013-05-09 12:10:58','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/butterfly.png',0,'attachment','image/png',0),(94,1,'2013-05-09 08:28:18','2013-05-09 12:28:18','Bringing a giraffe in<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />to the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\r\n\r\nhow a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\r\n\r\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\r\n\r\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\r\n\r\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\r\n\r\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\r\n\r\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-v1','','','2013-05-09 08:28:18','2013-05-09 12:28:18','',89,'http://divyayogamonteregie.org/french/?p=94',0,'revision','',0),(92,1,'2013-05-09 08:12:12','2013-05-09 12:12:12','Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes <!--[if gte vml 1]><v:shapetype id=\"_x0000_t75\" coordsize=\"21600,21600\" o:spt=\"75\" o:preferrelative=\"t\"\n path=\"m@4@5l@4@11@9@11@9@5xe\" filled=\"f\" stroked=\"f\">\n <v:stroke joinstyle=\"miter\"></v:stroke>\n <v:formulas>\n  <v:f eqn=\"if lineDrawn pixelLineWidth 0\"></v:f>\n  <v:f eqn=\"sum @0 1 0\"></v:f>\n  <v:f eqn=\"sum 0 0 @1\"></v:f>\n  <v:f eqn=\"prod @2 1 2\"></v:f>\n  <v:f eqn=\"prod @3 21600 pixelWidth\"></v:f>\n  <v:f eqn=\"prod @3 21600 pixelHeight\"></v:f>\n  <v:f eqn=\"sum @0 0 1\"></v:f>\n  <v:f eqn=\"prod @6 1 2\"></v:f>\n  <v:f eqn=\"prod @7 21600 pixelWidth\"></v:f>\n  <v:f eqn=\"sum @8 21600 0\"></v:f>\n  <v:f eqn=\"prod @7 21600 pixelHeight\"></v:f>\n  <v:f eqn=\"sum @10 21600 0\"></v:f>\n </v:formulas>\n <v:path o:extrusionok=\"f\" gradientshapeok=\"t\" o:connecttype=\"rect\"></v:path>\n <o:lock v:ext=\"edit\" aspectratio=\"t\"></o:lock>\n</v:shapetype><v:shape id=\"_x0000_s1026\" type=\"#_x0000_t75\" alt=\"motivational\"\n style=\'position:absolute;margin-left:34.25pt;margin-top:16.4pt;width:95.25pt;\n height:112.5pt;z-index:251661824;mso-wrap-distance-left:0;\n mso-wrap-distance-right:0;mso-position-horizontal:right;\n mso-position-horizontal-relative:text;mso-position-vertical-relative:line\'\n o:allowoverlap=\"f\">\n <v:imagedata src=\"file:///C:\\Users\\JOCELY~1\\AppData\\Local\\Temp\\msohtmlclip1\\01\\clip_image001.jpg\"\n  o:title=\"giraffe\" cropleft=\"9102f\" cropright=\"10194f\"></v:imagedata>\n <w:wrap type=\"square\"></w:wrap>\n</v:shape>< ![endif]--><!--[if !vml]--><img alt=\"motivational\" src=\"file:///C:/Users/JOCELY~1/AppData/Local/Temp/msohtmlclip1/01/clip_image002.jpg\" width=\"127\" height=\"150\" align=\"right\" /><!--[endif]-->how a newborn giraffe learns its first lesson.\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\n\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\n\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\n\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\n\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\n\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-v1','','','2013-05-09 08:12:12','2013-05-09 12:12:12','',89,'http://divyayogamonteregie.org/french/?p=92',0,'revision','',0),(93,1,'2013-05-09 08:27:58','2013-05-09 12:27:58','Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes <!--[if gte vml 1]><v:shapetype id=\"_x0000_t75\" coordsize=\"21600,21600\" o:spt=\"75\" o:preferrelative=\"t\"\npath=\"m@4@5l@4@11@9@11@9@5xe\" filled=\"f\" stroked=\"f\">\n<v:stroke joinstyle=\"miter\"></v:stroke>\n<v:formulas>\n<v:f eqn=\"if lineDrawn pixelLineWidth 0\"></v:f>\n<v:f eqn=\"sum @0 1 0\"></v:f>\n<v:f eqn=\"sum 0 0 @1\"></v:f>\n<v:f eqn=\"prod @2 1 2\"></v:f>\n<v:f eqn=\"prod @3 21600 pixelWidth\"></v:f>\n<v:f eqn=\"prod @3 21600 pixelHeight\"></v:f>\n<v:f eqn=\"sum @0 0 1\"></v:f>\n<v:f eqn=\"prod @6 1 2\"></v:f>\n<v:f eqn=\"prod @7 21600 pixelWidth\"></v:f>\n<v:f eqn=\"sum @8 21600 0\"></v:f>\n<v:f eqn=\"prod @7 21600 pixelHeight\"></v:f>\n<v:f eqn=\"sum @10 21600 0\"></v:f>\n</v:formulas>\n<v:path o:extrusionok=\"f\" gradientshapeok=\"t\" o:connecttype=\"rect\"></v:path>\n<o:lock v:ext=\"edit\" aspectratio=\"t\"></o:lock>\n</v:shapetype><v:shape id=\"_x0000_s1026\" type=\"#_x0000_t75\" alt=\"motivational\"\nstyle=\'position:absolute;margin-left:34.25pt;margin-top:16.4pt;width:95.25pt;\nheight:112.5pt;z-index:251661824;mso-wrap-distance-left:0;\nmso-wrap-distance-right:0;mso-position-horizontal:right;\nmso-position-horizontal-relative:text;mso-position-vertical-relative:line\'\no:allowoverlap=\"f\">\n<v:imagedata src=\"file:///C:\\Users\\JOCELY~1\\AppData\\Local\\Temp\\msohtmlclip1\\01\\clip_image001.jpg\"\no:title=\"giraffe\" cropleft=\"9102f\" cropright=\"10194f\"></v:imagedata>\n<w:wrap type=\"square\"></w:wrap>\n</v:shape>< ![endif]--><!--[if !vml]--><img alt=\"motivational\" src=\"file:///C:/Users/JOCELY~1/AppData/Local/Temp/msohtmlclip1/01/clip_image002.jpg\" width=\"127\" height=\"150\" align=\"right\" /><!--[endif]-->how a newborn giraffe learns its first lesson.\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\n\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\n\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\n\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\n\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\n\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-v1','','','2013-05-09 08:27:58','2013-05-09 12:27:58','',89,'http://divyayogamonteregie.org/french/?p=93',0,'revision','',0),(95,1,'2013-05-09 08:28:58','2013-05-09 12:28:58','Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\n\nhow a newborn giraffe learns its first lesson.\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. <img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\n\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\n\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\n\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\n\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\n\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-v1','','','2013-05-09 08:28:58','2013-05-09 12:28:58','',89,'http://divyayogamonteregie.org/french/?p=95',0,'revision','',0),(96,1,'2013-05-09 08:29:16','2013-05-09 12:29:16','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\r\n\r\nhow a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\r\n\r\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\r\n\r\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\r\n\r\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\r\n\r\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\r\n\r\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-v1','','','2013-05-09 08:29:16','2013-05-09 12:29:16','',89,'http://divyayogamonteregie.org/french/?p=96',0,'revision','',0),(97,1,'2013-05-09 08:29:36','2013-05-09 12:29:36','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />\r\n\r\nBringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\r\n\r\nhow a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\r\n\r\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\r\n\r\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\r\n\r\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\r\n\r\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\r\n\r\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-v1','','','2013-05-09 08:29:36','2013-05-09 12:29:36','',89,'http://divyayogamonteregie.org/french/?p=97',0,'revision','',0),(98,1,'2013-05-09 07:15:55','2013-05-09 11:15:55','These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards success and achieving our goals.\r\n\r\nThese poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.','Poem and story','','inherit','closed','closed','','39-revision-v1','','','2013-05-09 07:15:55','2013-05-09 11:15:55','',39,'http://divyayogamonteregie.org/french/?p=98',0,'revision','',0),(99,1,'2013-05-09 07:47:40','2013-05-09 11:47:40','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-v1','','','2013-05-09 07:47:40','2013-05-09 11:47:40','',79,'http://divyayogamonteregie.org/french/?p=99',0,'revision','',0),(100,1,'2013-05-08 21:36:00','2013-05-08 21:36:00','<strong>Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n675 Green, St. Lambert , Quebec J4P1V9\r\n\r\n&nbsp;\r\n\r\nPut google maps\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://maps.google.ca/maps/empw?url=https:%2F%2Fmaps.google.ca%2Fmaps%3Ff%3Dq%26source%3Ds_q%26hl%3Den%26geocode%3D%26q%3D675%2BRue%2BGreen,%2BSaint-Lambert,%2BQuebec%2BJ4P1V9%26aq%3D0%26oq%3D675%2BGreen%2B,%2BSt.%2BLambert%2B,%2Bquebec%2BJ4P1V9%26sll%3D49.303974,-84.738438%26sspn%3D16.263009,43.286133%26vpsrc%3D0%26ie%3DUTF8%26hq%3D%26hnear%3D675%2BRue%2BGreen,%2BSaint-Lambert,%2BQu%25C3%25A9bec%2BJ4P%2B1V9%26t%3Dm%26z%3D14%26ll%3D45.509916,-73.504776%26output%3Dembed&amp;hl=en&amp;gl=ca\">Saint Lambert</a>\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-08 21:36:00','2013-05-08 21:36:00','',9,'http://divyayogamonteregie.org/french/?p=100',0,'revision','',0),(102,1,'2013-09-21 20:48:05','2013-09-22 00:48:05','<p align=\"center\"><span style=\"color: #0000ff;\"><strong><!--[if gte mso 9]><xml>\n<w:worddocument>\n<w:view>Normal</w:view>\n<w:zoom>0</w:zoom>\n<w:trackmoves></w:trackmoves>\n<w:trackformatting></w:trackformatting>\n<w:punctuationkerning></w:punctuationkerning>\n<w:validateagainstschemas></w:validateagainstschemas>\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n<w:donotpromoteqf></w:donotpromoteqf>\n<w:lidthemeother>EN-US</w:lidthemeother>\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n<w:compatibility>\n<w:breakwrappedtables></w:breakwrappedtables>\n<w:snaptogridincell></w:snaptogridincell>\n<w:wraptextwithpunct></w:wraptextwithpunct>\n<w:useasianbreakrules></w:useasianbreakrules>\n<w:dontgrowautofit></w:dontgrowautofit>\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\n<w:word11kerningpairs></w:word11kerningpairs>\n<w:cachedcolbalance></w:cachedcolbalance>\n</w:compatibility>\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n<m:mathpr>\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n<m:brkbin m:val=\"before\"></m:brkbin>\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\n<m:smallfrac m:val=\"off\"></m:smallfrac>\n<m:dispdef></m:dispdef>\n<m:lmargin m:val=\"0\"></m:lmargin>\n<m:rmargin m:val=\"0\"></m:rmargin>\n<m:defjc m:val=\"centerGroup\"></m:defjc>\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\n<m:intlim m:val=\"subSup\"></m:intlim>\n<m:narylim m:val=\"undOvr\"></m:narylim>\n</m:mathpr></w:worddocument>\n</xml>< ![endif]--></strong></span>\n\n</p><p align=\"center\"><span style=\"color: #0000ff;\"><strong><!--[if gte mso 9]><xml>\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\nLatentStyleCount=\"267\">\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n</w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>< ![endif]--></strong></span>\n\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Tu peux devenir ce que tu désires être</span></b></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Tu portes en toi</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">tout ton potentiel</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour atteindre ce que tu veux être</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">toute l\'énergie</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour atteindre ce que tu veux faire.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Imagine toi tel que tu veux être</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faisant ce que tu veux faire</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et chaque jour fait un pas</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">en direction de ton rêve.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et lorsque parfois cela semble</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ardu de poursuivre</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">reste fidèle à ton rêve</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un matin tu t\'éveilleras pour réaliser</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que tu es la personne dont tu as rêvé,</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faisant ce dont tu a rêvé,</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">simplement parce que tu as eu le courage</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">de croire en ton potentiel</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et de poursuivre ton rêve</span></p>\n<p align=\"center\"></p>','Tu peux devenir ce que tu désires être','','inherit','closed','closed','','59-autosave-v1','','','2013-09-21 20:48:05','2013-09-22 00:48:05','',59,'http://divyayogamonteregie.org/french/?p=102',0,'revision','',0),(380,1,'2013-05-09 07:14:13','2013-05-09 11:14:13','Coming soon','Photo Gallery - Publicity','','inherit','closed','closed','','35-revision-v1','','','2013-05-09 07:14:13','2013-05-09 11:14:13','',35,'http://divyayogamonteregie.org/french/?p=380',0,'revision','',0),(407,1,'2013-07-09 20:12:50','2013-07-10 00:12:50','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter  wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"450\" height=\"211\" /></a></p>\r\n<p style=\"text-align: justify;\"><b>Vegetarian Food- Served and shared on last Saturday of the month</b></p>\r\n<p style=\"text-align: justify;\">The vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.</p>\r\n<p style=\"text-align: justify;\">The Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time</p>\r\n<p style=\"text-align: justify;\">Then he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.</p>\r\n<p style=\"text-align: justify;\">The third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.</p>\r\n<p style=\"text-align: justify;\">It is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.</p>','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-07-09 20:12:50','2013-07-10 00:12:50','',190,'http://divyayogamonteregie.org/french/?p=407',0,'revision','',0),(104,1,'2013-07-09 20:22:46','2013-07-10 00:22:46','<div>\r\n<div>\r\n<p style=\"text-align: justify;\"><em><span style=\"text-decoration: underline;\"><strong>From volunteers</strong></span></em></p>\r\n<p style=\"text-align: justify;\"><em><strong>Monique</strong></em></p>\r\n<p style=\"text-align: justify;\">Suite à un accident de voiture survenu il y a plusieurs années, mon corps était dans une souffrance chronique, mon esprit était pris dans des blocages inconscients de perturbations, de découragement, de tourment, de peur, et d’angoisse.  Puis un jour, j’ai fait la découverte du yoga.</p>\r\n<p style=\"text-align: justify;\">Au début, lors de mes pratiques, je n’arrivais pas à synchroniser les mouvements, mon corps était rigide et tendu,  je n’étais pas concentrée.  Après un certain temps, j’ai abandonné  les cours en me disant que je n’y arriverai jamais, que mon corps ne pouvait pas suivre, j’avais trop mal, je n’avais pas la dextérité  pour faire les postures, ni la flexibilité, l’attention, la concentration, etc., etc.</p>\r\n<p style=\"text-align: justify;\">Un peu plus tard, j’ai vu une annonce dans le journal qu’il y avait des cours de yoga offerts gratuitement à St-Lambert.  J’ai décidé de faire un autre essai.  Puis voilà  que ma vie s’est transformée.  J’ai commencé le yoga une fois semaine. Après quelques semaines de pratique,  j’ai été approchée par le professeur de yoga pour être bénévole, pour accueillir les gens. J’ai accepté de m’engager dans cette belle aventure dont je fais toujours partie depuis déjà presque 3 ans. Depuis,  j’ai exploré différentes approches de yoga qui m’ont amenée à un changement positif de vie complète.  Une bonne hygiène alimentaire, une flexibilité de mon corps et de mon esprit, de mes attitudes et comportements. J’ai appris à  cultiver le calme mental et ma force vitale intérieure par les exercices de respiration et de méditation. J’ai amélioré mon équilibre mental et physique,  l’écoute de mon corps, ma concentration et ma mémoire, ma coordination et l’acceptation de ce qui est.</p>\r\n<p style=\"text-align: justify;\">Je vis maintenant mon quotidien dans un mieux-être. Il y a encore place à l’amélioration, mais chaque jour j’intègre un style de vie de yoga qui m’amène de plus en plus à faire l’expérience d’une paix intérieure.</p>\r\n<p style=\"text-align: justify;\">*****************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Michel …. 74</strong></span></p>\r\n<p style=\"text-align: justify;\">My duties:-</p>\r\n<p style=\"text-align: justify;\">To be always ready to help</p>\r\n<p style=\"text-align: justify;\">About me</p>\r\n<p style=\"text-align: justify;\">I am a very happy man. I enjoy the company of nice people.</p>\r\n<p style=\"text-align: justify;\">What yoga means to me? How it has affected my life?</p>\r\n<p style=\"text-align: justify;\">Yoga is for me an extraordinary choice of movements and exercices created by people who knew the human body and soul.</p>\r\n<p style=\"text-align: justify;\">Two hours of yoga per week complement my daily exercices that I do since 50 years plus. My body appreciate yoga and I feel balanced.</p>\r\n<p style=\"text-align: justify;\">Marathon Runner</p>\r\n<p style=\"text-align: justify;\">Bénévole (mes tâches)\r\nÊtre toujours prêt à aider</p>\r\n<p style=\"text-align: justify;\">À propos de moi\r\nJe suis un homme très heureux. J\'aime la compagnie des gens sympathiques.</p>\r\n<p style=\"text-align: justify;\">Ce que le yoga signifie pour moi? Comment cela a affecté ma vie?</p>\r\n<p style=\"text-align: justify;\">Le yoga est pour moi un choix extraordinaire de mouvements et d\'exercices créés par des gens qui connaissaient le corps humain et l\'âme.\r\nDeux heures de yoga par semaine complètent mes exercices quotidiens que je fais depuis 50 ans et plus. Mon corps apprécie le yoga et je me sens équilibrée.</p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Bénévole : Mihaela Frandes</span></strong></p>\r\n<p style=\"text-align: justify;\">Mon rôle</p>\r\n<p style=\"text-align: justify;\">J’arrive chaque samedi matin à 8.30am à l’Académie Chambly pour accueillir les nouvelles personnes. Je leur demande de compléter une fiche d’inscription et leur explique un peu comment se déroulent les cours.</p>\r\n<p style=\"text-align: justify;\">À propos de moi</p>\r\n<p style=\"text-align: justify;\">J’ai commencé les cours de yoga offerts par Meera Trivedi et Vinesh Saxena en juin 2010 et depuis j’y suis toujours fidèle J’avoue que le samedi est ma journée de la semaine la plus heureuse. Depuis, je fais du yoga régulièrement. Je suis d’origine roumaine, ma formation est en biochimie et dans la vie quotidienne je me préoccupe beaucoup de ma nutrition et j’aime beaucoup la nature. En été  je fais du vélo et en hiver j’adore faire du ski de fond. J’aime beaucoup aider les gens et le yoga m’aide à accomplir le bonheur dans ma vie. Ma dernière passion est la préparation de pain au levain – faire du bon pain est pour moi un immense plaisir.</p>\r\n<p style=\"text-align: justify;\">Qu’est que yoga signifie pour moi. Comment a-t-elle affecte ma vie</p>\r\n<p style=\"text-align: justify;\">Le yoga a amélioré la flexibilité de mon corps et esprit ainsi que ma santé. J’adore faire du yoga et je sens que le yoga est une marche dans mon évolution.</p>\r\n<p style=\"text-align: justify;\">Volunteer</p>\r\n<p style=\"text-align: justify;\">My duties: I came every Saturday morning at 8.30 at Chambly Academy in Saint Lambert to accommodate the new peoples. I give them the form to fill-up and explain a little bit how we function here.</p>\r\n<p style=\"text-align: justify;\">About me: I started the yoga classes given by Meera Trivedi and Vinesh Saxena in July 2010 and since then I do yoga on a regular basis. Saturday is the happiest day of my week. I am Rumanian, I studied biochemistry and I am interested in nutrition, healthy eating, I try to come closer to nature. In summer I do a lot of bike and in winter I love the cross-country sky. I love helping people; yoga is helping me to maintain a happy mood. Now I’m in love with making sourdough bread, making bread makes me happy.</p>\r\n<p style=\"text-align: justify;\">What yoga means for me. How it has affected my life: Yoga gave me a happiness that I cannot explain; friends, a more conscious life, a flexible body, and a healthy body, a clear mind. I love doing yoga, and I am pretty sure that yoga is only a step in my evolution.</p>\r\n<p style=\"text-align: justify;\">******************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>From other participants</strong></span></p>\r\n<p style=\"text-align: justify;\">This yoga class is a precious time for me. I may arrive out of breath or lacking of energy, or a bit annoyed at my brain « monkey chatter » but I always leave rejuvenated physically, mentally and emotionally. Joining in, I am giving my whole body the royal treatment from head to toes, stretching out the kinks and limbering up muscles and joints I was not aware of. It is quality time I give to myself. When I am there, I have my own space. But there are people around me and I feel I belong, that I am surrounded by positive energy. The space we are in fills, it feels to me, with well being respect, silent communication. Thank you to all who make this possible. I was hooked the first time I went.</p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Charlene Olse</span></strong></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je passais des moments très difficiles suite à un deuil, mon amie m’a conseillé de faire du yoga.</p>\r\n<p style=\"text-align: justify;\">J’ai essayé une première séance et je me suis sentie vraiment bien, les mouvements accompagnés de la respiration fluide ont effectivement apaisé mon âme, mon esprit et mon corps et depuis je ne peux rater une séance. Je fais du yoga seule à la maison, mais je m’arrête au bout de 5 minutes, cependant du yoga en groupe avec la belle ambiance, la bonne motivation et l’encouragement de l’entraîneur m’a permis de bien vivre mon deuil et surtout de bien gérer mes sentiments et mes émotions.</p>\r\n<p style=\"text-align: justify;\">Un grand merci pour ce que vous faites pour le groupe de yoga.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Lynda</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga diminue mon stress, assouplit mon corps et lubrifie mes articulations. Certaines positions ou exercices libèrent des structures énergétiques associées à des mémoires antérieures. L’énergie circule plus librement dans mon corps et je me sens revivifié. J’apprécie aussi le fait que ce soit une activité non compétitive.</p>\r\n<p style=\"text-align: justify;\">Je remercie M. Saxena de sa très grande disponibilité ainsi que toute son équipe de bénévoles.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong> Marcel Baril</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga m’a apporté beaucoup de paix intérieure. J’aime la combinaison de l’exercice physique et le mental, le rire…. Cela équilibre mon moral, améliore mon corps physique, m’aide à  pratiquer la méditation et la relaxation et surtout à mieux respirer. J’aime beaucoup l’ambiance généreuse, le don de soi des bénévoles. Je crois de plus en plus à la bonté de l’être humain.</p>\r\n<p style=\"text-align: justify;\">Merci</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Colette</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Mon mari est décédé il y a trois ans. Je fus effondrée. Depuis ce temps je pratique le yoga avec Monsieur Saxena. Cet exercice m’a apporté l’équilibre physique et la paix de l’âme.</p>\r\n<p style=\"text-align: justify;\">Ginette Paradis</p>\r\n<p style=\"text-align: justify;\"><strong>******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je dois remercier Mr et Mme Saxena pout leur dévouement et leur disponibilité  apportés chaque samedi.</p>\r\n<p style=\"text-align: justify;\">Pour moi,ce que j\'aime le plus c\'est bien ses histoires qui m\'amênent a penser positivement,ensuite il y a les exercises</p>\r\n<p style=\"text-align: justify;\">qui aident a calmer le mental et a controler le stress,c\'est bien.</p>\r\n<p style=\"text-align: justify;\">Mais tant qu\'aux exercises d\'accupressions pour les sinus ,j\'en vois pas d\'effet immédiat, c\'est probablement a long</p>\r\n<p style=\"text-align: justify;\">terme que l\'effet se fait sentir.</p>\r\n<p style=\"text-align: justify;\">Les nouveaux mouvements ou exercises sont les bienvenues ,j\'en suis certain, pour la pluparts des participants.</p>\r\n<p style=\"text-align: justify;\">Apres deux heures de participations la position a l\'horizontale (shawaseen)ou repos est très bien appréciée.</p>\r\n<p style=\"text-align: justify;\">C\'est durant le reste de la journée qu\'on sent une certaine fatigue et qu\'il faut récupérer,en un mot c\'est sûrement</p>\r\n<p style=\"text-align: justify;\">bénifique pour la santé.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Renald Couture</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">What would I do without Yoga? it has helped me to live a fulfilling life!</p>\r\n<p style=\"text-align: justify;\">When I was 12 years old, I was one day about to sit down on a kitchen chair when my brother took it away from underneath me. I fell had on my coccyx and thought nothing more of it, thinking that my pride was hurt more than my back. But by the age of 18 I started getting persistent backaches, and from then on I became a \'back sufferer\'. By the age of 30 I wasn\'t able to wash a kitchen floor or do an hour\'s gardening without a backache for the rest of the day, and few days after. I wasn\'t even sure I could have children with such a bad back, so I did a series of adjustments over a year and a half at a chiropractor\'s, and tried acupuncture. Both helped somewhat, but certainly did not cure my condition. I did have two children and a full time job teaching, but backaches became a fact of life, always there in the background.</p>\r\n<p style=\"text-align: justify;\">I came across Yoga in my middle 30\'s but never had enough time to pursue it diligently. It was only after I retired that I started doing it seriously, and I now wish I had allowed no excuses to not do it consistently earlier. I now do Yoga for an hour every day, following the type of Mr. Saxena\'s exercises on Saturday mornings, and take exercises out of books. I have never felt better! Today at 68 I feel better that I did at 30. I can now do gardening all day, shovel snow, wash floors, and walk good long walks with no consequent pain. The injury to my back is still there, but my back mussels are now strong enough to support me in my activities.</p>\r\n<p style=\"text-align: justify;\">Doing the exercises is only part of my Yoga practice. I am careful to eat only food that is nutritious for my body, and I try to keep as much as possible a positive outlook on life.</p>\r\n<p style=\"text-align: justify;\">Yoga is a lifestyle - it takes care of every aspect of one\'s being, and I intend to keep well and healthy to my dying day.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Mary Brunet</strong></span></p>\r\n<strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong>\r\n\r\n</div>\r\n</div>','Testimony from Participants','','inherit','closed','closed','','31-autosave-v1','','','2013-07-09 20:22:46','2013-07-10 00:22:46','',31,'http://divyayogamonteregie.org/french/?p=104',0,'revision','',0),(108,1,'2013-05-18 17:51:10','2013-05-18 21:51:10','','banner1','','inherit','closed','closed','','banner1','','','2013-05-18 17:51:10','2013-05-18 21:51:10','',2,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/banner1.jpg',0,'attachment','image/jpeg',0),(111,1,'2013-05-18 17:56:59','2013-05-18 21:56:59','http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/cropped-banner11.jpg','cropped-banner11.jpg','','inherit','closed','closed','','cropped-banner11-jpg','','','2013-05-18 17:56:59','2013-05-18 21:56:59','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/cropped-banner11.jpg',0,'attachment','image/jpeg',0),(300,1,'2013-05-18 17:53:06','2013-05-18 21:53:06','<span style=\"color: #0000ff;\">To make basic yoga practice easily accessible to everyone without charge.</span>\r\n\r\n<span style=\"color: #0000ff;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</span>\r\n\r\n<span style=\"color: #0000ff;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</span>\r\n\r\n<span style=\"color: #0000ff;\">After yoga super food i. e. grapes and banana are available for Yogies.</span>\r\n\r\n<span style=\"color: #0000ff;\">Yoga is a marvelous means of exercising, stretching, and freeing the body so it can be a healthy, long-lived, and vital instrument for the body,mind and soul. We also create an environment where people can interact for their betterment.</span>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-05-18 17:53:06','2013-05-18 21:53:06','',2,'http://divyayogamonteregie.org/french/?p=300',0,'revision','',0),(110,1,'2013-05-18 17:51:37','2013-05-18 21:51:37','<span style=\"color: #0000ff;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/banner1.jpg\"><img class=\"aligncenter size-medium wp-image-108\" alt=\"banner1\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/banner1-300x62.jpg\" width=\"300\" height=\"62\" /></a>To make basic yoga practice easily accessible to everyone without charge.</span>\r\n\r\n<span style=\"color: #0000ff;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</span>\r\n\r\n<span style=\"color: #0000ff;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</span>\r\n\r\n<span style=\"color: #0000ff;\">After yoga super food i. e. grapes and banana are available for Yogies.</span>\r\n\r\n<span style=\"color: #0000ff;\">Yoga is a marvelous means of exercising, stretching, and freeing the body so it can be a healthy, long-lived, and vital instrument for the body,mind and soul. We also create an environment where people can interact for their betterment.</span>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-05-18 17:51:37','2013-05-18 21:51:37','',2,'http://divyayogamonteregie.org/french/?p=110',0,'revision','',0),(371,1,'2013-07-09 20:06:46','2013-07-10 00:06:46','<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p>\r\n<p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\r\n<p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\r\n<p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p>\r\n<p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-07-09 20:06:46','2013-07-10 00:06:46','',2,'http://divyayogamonteregie.org/french/?p=371',0,'revision','',0),(262,1,'2013-06-19 17:37:43','2013-06-19 21:37:43','','Dill fenugreek tofu rice.','','inherit','closed','closed','','dill-fenugreek-tofu-rice','','','2013-06-19 17:37:43','2013-06-19 21:37:43','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/Dill-fenugreek-tofu-rice..jpg',0,'attachment','image/jpeg',0),(114,1,'2013-05-18 18:52:20','2013-05-18 22:52:20','','Divya Yogo','','inherit','closed','closed','','cropped-banner111-jpg','','','2013-05-18 18:52:20','2013-05-18 22:52:20','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/cropped-banner111.jpg',0,'attachment','image/jpeg',0),(265,1,'2013-06-19 17:37:57','2013-06-19 21:37:57','','Rhubarb Sauce.','','inherit','closed','closed','','rhubarb-sauce','','','2013-06-19 17:37:57','2013-06-19 21:37:57','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/Rhubarb-Sauce..jpg',0,'attachment','image/jpeg',0),(263,1,'2013-06-19 17:37:44','2013-06-19 21:37:44','','Lima beans','','inherit','closed','closed','','lima-beans','','','2013-06-19 17:37:44','2013-06-19 21:37:44','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/Lima-beans.jpg',0,'attachment','image/jpeg',0),(264,1,'2013-06-19 17:37:45','2013-06-19 21:37:45','','Pumkin','','inherit','closed','closed','','pumkin','','','2013-06-19 17:37:45','2013-06-19 21:37:45','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/Pumkin.jpg',0,'attachment','image/jpeg',0),(115,1,'2013-05-18 18:59:31','2013-05-18 22:59:31','http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/cropped-banner2.jpg','cropped-banner2.jpg','','inherit','closed','closed','','cropped-banner2-jpg','','','2013-05-18 18:59:31','2013-05-18 22:59:31','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/cropped-banner2.jpg',0,'attachment','image/jpeg',0),(116,1,'2013-05-18 19:00:04','2013-05-18 23:00:04','','Conference','','inherit','closed','closed','','cropped-banner3-jpg','','','2013-05-18 19:00:04','2013-05-18 23:00:04','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/cropped-banner3.jpg',0,'attachment','image/jpeg',0),(441,1,'2013-09-19 19:28:48','2013-09-19 23:28:48','Chaque dernier Samedi du mois nous avons un conférencier de 11.00 à 11.45','Conférence','','inherit','closed','closed','','440-revision-v1','','','2013-09-19 19:28:48','2013-09-19 23:28:48','',440,'http://divyayogamonteregie.org/french/?p=441',0,'revision','',0),(117,1,'2013-05-18 19:00:32','2013-05-18 23:00:32','http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/cropped-banner4.jpg','cropped-banner4.jpg','','inherit','closed','closed','','cropped-banner4-jpg','','','2013-05-18 19:00:32','2013-05-18 23:00:32','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/cropped-banner4.jpg',0,'attachment','image/jpeg',0),(118,1,'2013-05-18 19:00:50','2013-05-18 23:00:50','','Conference','Chaque dernier Samedi du mois nous avons un conférencier de 11.00 à 11.45','inherit','closed','closed','','cropped-banner5-jpg','','','2013-05-18 19:00:50','2013-05-18 23:00:50','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/cropped-banner5.jpg',0,'attachment','image/jpeg',0),(119,1,'2013-05-18 19:06:26','2013-05-18 23:06:26','http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/cropped-banner7.jpg','cropped-banner7.jpg','','inherit','closed','closed','','cropped-banner7-jpg','','','2013-05-18 19:06:26','2013-05-18 23:06:26','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/cropped-banner7.jpg',0,'attachment','image/jpeg',0),(120,1,'2013-05-08 22:44:58','2013-05-08 22:44:58','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n<br />\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-revision-v1','','','2013-05-08 22:44:58','2013-05-08 22:44:58','',1,'http://divyayogamonteregie.org/french/?p=120',0,'revision','',0),(126,1,'2013-05-18 22:51:09','2013-05-19 02:51:09','<strong>[codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:51:09','2013-05-19 02:51:09','',9,'http://divyayogamonteregie.org/french/?p=126',0,'revision','',0),(127,1,'2013-05-18 22:51:59','2013-05-19 02:51:59','<strong>[codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:51:59','2013-05-19 02:51:59','',9,'http://divyayogamonteregie.org/french/?p=127',0,'revision','',0),(128,1,'2013-05-18 22:52:31','2013-05-19 02:52:31','<strong>[codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:52:31','2013-05-19 02:52:31','',9,'http://divyayogamonteregie.org/french/?p=128',0,'revision','',0),(129,1,'2013-05-18 22:53:48','2013-05-19 02:53:48','<strong>[codepeople-post-map][codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:53:48','2013-05-19 02:53:48','',9,'http://divyayogamonteregie.org/french/?p=129',0,'revision','',0),(130,1,'2013-05-18 22:55:58','2013-05-19 02:55:58','<strong>[codepeople-post-map][codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:55:58','2013-05-19 02:55:58','',9,'http://divyayogamonteregie.org/french/?p=130',0,'revision','',0),(131,1,'2013-05-18 22:58:14','2013-05-19 02:58:14','<div>Saturday 9h-11h</div>\r\n<div>675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada</div>\r\n<div><strong>[codepeople-post-map]</strong></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>and</strong>\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:58:14','2013-05-19 02:58:14','',9,'http://divyayogamonteregie.org/french/?p=131',0,'revision','',0),(176,1,'2013-06-10 21:22:08','2013-06-11 01:22:08','<b>36A Appreciation</b>\n\nThis is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.\n\nOne young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.\n\nThe director asked, \"Did you obtain any scholarships in school?\"\n\nThe youth answered, \"None.\"\n\nThe director asked, \"Was it your father who paid for your school fees?\"\n\nThe youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"\n\nThe director asked, \"Where did your mother work?\"\n\nThe youth answered, \"My mother worked as laundry woman.\"\n\nThe director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.\n\nThe director asked, \"Have you ever helped your mother wash the clothes before?\"\n\nThe youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"\n\nThe director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"\n\nThe youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.\n\nThe youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.\n\nThis was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.\n\nAfter finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.\n\nThat night, mother and son talked for a very long time.\n\nNext morning, the youth went to the director\'s office.\n\nThe Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"\n\nThe youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"\n\nThe Director asked, \"Please tell me your feelings.\"\n\nThe youth said:\n<ol start=\"1\">\n	<li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li>\n	<li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li>\n	<li>I have come to appreciate the importance and value of family relationships.</li>\n</ol>\nThe director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"\n\nLater on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously','','','inherit','closed','closed','','175-revision-v1','','','2013-06-10 21:22:08','2013-06-11 01:22:08','',175,'http://divyayogamonteregie.org/french/?p=176',0,'revision','',0),(134,1,'2013-06-10 20:04:15','2013-06-11 00:04:15','','The story of the butterfly.','','inherit','closed','closed','','133-revision-v1','','','2013-06-10 20:04:15','2013-06-11 00:04:15','',133,'http://divyayogamonteregie.org/french/?p=134',0,'revision','',0),(135,1,'2013-06-10 20:10:06','2013-06-11 00:10:06','<p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Depuis des années, un vieux fermier avait labouré<span style=\"mso-spacerun: yes;\">  </span>un de ses terrains autour d’une <span style=\"mso-spacerun: yes;\"> </span>grosse roche.<span style=\"mso-spacerun: yes;\">  </span>Il avait brisé plusieurs socs de charrue, ce qui avait pour effet d’augmenter sa hargne de la roche au fil des ans.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un jour, après avoir brisé un autre soc et se souvenant tout le trouble que la roche lui avait causé au cours des années,<span style=\"mso-spacerun: yes;\">  </span>finalement il décida d’agir pour régler le problème.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Lorsqu’il<span style=\"mso-spacerun: yes;\">  </span>mit<span style=\"mso-spacerun: yes;\">  </span>la pince à levier sous la roche, il fut étonné de constater qu’il y avait seulement <span style=\"mso-spacerun: yes;\"> </span>une épaisseur d’environ de six<span style=\"mso-spacerun: yes;\">  </span>pouces et qu’il pouvait facilement la briser avec un marteau.<span style=\"mso-spacerun: yes;\">  </span>Pendant qu’il ramassait les morceaux, il souriait en pensant à tout le trouble que la roche lui avait causé pendant toutes ces années et la facilité à laquelle <span style=\"mso-spacerun: yes;\"> </span>il a pu facilement s’en débarrasser.</span></p>','La roche','','publish','closed','closed','','the-rock','','','2013-10-05 21:41:25','2013-10-06 01:41:25','',79,'http://divyayogamonteregie.org/french/?page_id=135',0,'page','',0),(136,1,'2013-06-10 20:09:11','2013-06-11 00:09:11','An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.\n\nAfter breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.\n\nWhen he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to ged rid of it sooner.','The Rock','','inherit','closed','closed','','135-revision-v1','','','2013-06-10 20:09:11','2013-06-11 00:09:11','',135,'http://divyayogamonteregie.org/french/?p=136',0,'revision','',0),(137,1,'2013-06-10 20:12:23','2013-06-11 00:12:23','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Ne jamais abandonner</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Winston Churchill a refait trois fois sa huitième année parce qu’il avait des problèmes en anglais.<span style=\"mso-spacerun: yes;\">  </span>Ironiquement, plusieurs années plus tard</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">l’université d’Oxford l’a invité afin qu’il adresse le discours d’ouverture.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il est arrivé avec les objets le caractérisant.<span style=\"mso-spacerun: yes;\">  </span>Churchill avait toujours avec lui, partout où il allait, un chapeau, une cane et un cigare.<span style=\"mso-spacerun: yes;\">  </span>Lorsqu’il s’est approché du lutrin, la foule s’est levée et l’a applaudi chaleureusement.<span style=\"mso-spacerun: yes;\">  </span>Avec une dignité sans pareil, il a calmé la foule et est resté très sûr de lui-même devant ses admirateurs.<span style=\"mso-spacerun: yes;\">  </span>Retirant son cigare et plaçant soigneusement son chapeau sur le lutrin, Churchill a regardé l’audience qui était en attente.<span style=\"mso-spacerun: yes;\">  </span>D’une voix<span style=\"mso-spacerun: yes;\">  </span>autoritaire Churchill cria : « n’abandonnez jamais ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Plusieurs secondes se sont écoulées avant qu’il se lève sur le bout de ses pieds et répète : « n’abandonnez <span style=\"mso-spacerun: yes;\"> </span>jamais ».<span style=\"mso-spacerun: yes;\">  </span>Ses paroles étaient retentissantes.<span style=\"mso-spacerun: yes;\">  </span>Il y a eu un silence assourdissant lorsque que Churchill<span style=\"mso-spacerun: yes;\">  </span>prit son chapeau ,son cigare, s’appuya sur sa cane et quitta la scène.<span style=\"mso-spacerun: yes;\">  </span>Son discours d’ouverture était terminé.</span></p>','Ne jamais abandonner','','publish','closed','closed','','never-give-up','','','2013-10-05 21:11:36','2013-10-06 01:11:36','',79,'http://divyayogamonteregie.org/french/?page_id=137',0,'page','',0),(138,1,'2013-06-10 20:11:44','2013-06-11 00:11:44','Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.\n\nHe arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"\n\nSeveral seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished','Never give up','','inherit','closed','closed','','137-revision-v1','','','2013-06-10 20:11:44','2013-06-11 00:11:44','',137,'http://divyayogamonteregie.org/french/?p=138',0,'revision','',0),(139,1,'2013-06-10 20:13:44','2013-06-11 00:13:44','<p class=\"MsoNormal\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/hospital_window.png\"><img class=\"aligncenter size-full wp-image-141\" alt=\"hospital_window\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/hospital_window.png\" width=\"300\" height=\"200\" /></a><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Deux <span style=\"mso-spacerun: yes;\"> </span>hommes, sérieusement malades, étaient alités dans la même chambre d’hôpital. Un des deux hommes avait la permission de s’asseoir dans son lit une heure par jour dans l’après-midi afin de l’aider à drainer ses poumons.<span style=\"mso-spacerun: yes;\">  </span>Son lit était à côté de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>L’autre homme devait passer toute la journée allongé sur le dos.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les deux hommes parlaient pendant des heures.<span style=\"mso-spacerun: yes;\">  </span>Ils parlaient de leur femme, de leur famille, de leur maison, leurs emplois, leur engagement dans le service militaire, les endroits qu’ils avaient visités durant leurs vacances.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Et tous les après-midi, lorsque l’homme près de la fenêtre pouvait s’asseoir,<span style=\"mso-spacerun: yes;\">  </span>il passait son temps à décrire à son voisin de chambre tout ce qu’il voyait .<span style=\"mso-spacerun: yes;\">  </span>Peu à peu, l’ homme dans l’autre lit commença à vivre pour cette période d’une heure où son monde s’élargissait et s’égayait par la description des activités, des couleurs de l’extérieur.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">On pouvait voir de la fenêtre un parc avec un beau lac.<span style=\"mso-spacerun: yes;\">  </span>Les canards et les cygnes se baignaient dans l’eau pendant que les enfants faisaient fonctionner leur petit voilier. Les jeunes amoureux marchaient main dans la main parmi les fleurs de toutes les couleurs de l’arc en ciel.<span style=\"mso-spacerun: yes;\">  </span>Des<span style=\"mso-spacerun: yes;\">  </span>grands arbres matures embellissaient le paysage, et on pouvait<span style=\"mso-spacerun: yes;\">  </span>apercevoir au loin la silhouette de la ville.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Lorsque l’homme de la fenêtre décrivait tous les charmants détails, l’homme de l’autre côté de la chambre fermait les yeux et imaginait la scène.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Par <span style=\"mso-spacerun: yes;\"> </span>une journée chaude, dans l’ après-midi, l’homme près de la fenêtre décrivait le défilé d’une parade qui passait à proximité.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Même si l’autre homme ne pouvait entendre l’orchestre, il pouvait l’imaginer pendant<span style=\"mso-spacerun: yes;\">  </span>qu’on lui décrivait la scène.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les jours et les semaines passèrent.<span style=\"mso-spacerun: yes;\">  </span>Un matin l’infirmière qui apportait l’eau pour leur bain <span style=\"mso-spacerun: yes;\"> </span>trouva le corps sans vie de l’homme près de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>Il était mort paisiblement dans son lit.<span style=\"mso-spacerun: yes;\">  </span>Elle était triste et appela les préposés afin qu’ils viennent chercher le corps.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Lorsqu’il jugea le moment opportun, l’autre homme demanda s’il pouvait être transféré près de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>L’infirmière était heureuse de le changer de place, et lorsqu’elle fut certaine qu’il soit confortable, elle le laissa seul dans la chambre.<span style=\"mso-spacerun: yes;\">  </span>Lentement, péniblement, il se redressa pour jeter un coup d’œil vers l’extérieur.<span style=\"mso-spacerun: yes;\">  </span>Enfin, il aurait la joie de voir par lui-même.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il s’étira pour voir de l’autre côté du lit, vers la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>Il faisait face à un mur blanc.<span style=\"mso-spacerun: yes;\">  </span>L’homme demanda à l’infirmière pourquoi son compagnon de chambre avait décrit<span style=\"mso-spacerun: yes;\">  </span>l’extérieur aussi magnifique.<span style=\"mso-spacerun: yes;\">  </span>L’infirmière lui a répondu que l’homme était aveugle et qu’il ne pouvait voir l’autre côté de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>Elle dit;<span style=\"mso-spacerun: yes;\">  </span>« Peut-être qu’il a juste voulu vous encourager ».</span></p>\r\n&nbsp;',' La fenêtre d’hôpital','','publish','closed','closed','','the-hospital-window','','','2013-10-05 21:30:06','2013-10-06 01:30:06','',79,'http://divyayogamonteregie.org/french/?page_id=139',0,'page','',0),(140,1,'2013-06-10 20:13:41','2013-06-11 00:13:41','&nbsp;\n\nTwo men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.\n\nThe men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.\n\nAnd every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.\n\nThe window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.\n\nAs the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.\n\nOne warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.\n\nDays and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.\n\nAs soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.\n\nHe strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"','The hospital window','','inherit','closed','closed','','139-revision-v1','','','2013-06-10 20:13:41','2013-06-11 00:13:41','',139,'http://divyayogamonteregie.org/french/?p=140',0,'revision','',0),(141,1,'2013-06-10 20:14:31','2013-06-11 00:14:31','','hospital_window','','inherit','closed','closed','','hospital_window','','','2013-06-10 20:14:31','2013-06-11 00:14:31','',139,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/hospital_window.png',0,'attachment','image/png',0),(529,1,'2013-07-09 20:56:43','2013-07-10 00:56:43','<a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/hospital_window.png\"><img class=\"aligncenter size-full wp-image-141\" alt=\"hospital_window\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/hospital_window.png\" width=\"300\" height=\"200\" /></a>\r\n<p style=\"text-align: justify;\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.</p>\r\n<p style=\"text-align: justify;\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.</p>\r\n<p style=\"text-align: justify;\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.</p>\r\n<p style=\"text-align: justify;\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.</p>\r\n<p style=\"text-align: justify;\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.</p>\r\n<p style=\"text-align: justify;\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.</p>\r\n<p style=\"text-align: justify;\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.</p>\r\n<p style=\"text-align: justify;\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.</p>\r\n<p style=\"text-align: justify;\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"</p>','The hospital window','','inherit','closed','closed','','139-revision-v1','','','2013-07-09 20:56:43','2013-07-10 00:56:43','',139,'http://divyayogamonteregie.org/french/?p=529',0,'revision','',0),(143,1,'2013-06-10 20:13:44','2013-06-11 00:13:44','&nbsp;\r\n\r\nTwo men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.\r\n\r\nThe men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.\r\n\r\nAnd every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.\r\n\r\nThe window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.\r\n\r\nAs the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.\r\n\r\nOne warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.\r\n\r\nDays and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.\r\n\r\nAs soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.\r\n\r\nHe strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"','The hospital window','','inherit','closed','closed','','139-revision-v1','','','2013-06-10 20:13:44','2013-06-11 00:13:44','',139,'http://divyayogamonteregie.org/french/?p=143',0,'revision','',0),(390,1,'2013-05-09 07:13:48','2013-05-09 11:13:48','Coming soon','Let us share','','inherit','closed','closed','','33-revision-v1','','','2013-05-09 07:13:48','2013-05-09 11:13:48','',33,'http://divyayogamonteregie.org/french/?p=390',0,'revision','',0),(145,1,'2013-06-10 20:18:44','2013-06-11 00:18:44','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]--><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Une vieille</span></span> <span class=\"hps\">histoire est racontée</span> <span class=\"hps\">concernant un roi</span> <span class=\"hps\">en Afrique</span> <span class=\"hps\">qui avait un</span> <span class=\"hps\">ami d’enfance.</span> <span class=\"hps\">L\'ami</span> <span class=\"hps\">avait l\'habitude</span> <span class=\"hps\">de commenter</span> <span class=\"hps\">chaque situation qui</span> <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>se produisait dans sa vie</span> <span class=\"hps\">(positive ou négative</span>) en disant: «C’est <span class=\"hps\">bien</span>!»\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\r\n<span class=\"hps\">Un jour, le</span> <span class=\"hps\">roi</span> <span class=\"hps\">et son ami</span> <span class=\"hps\">étaient partis pour une expédition de chasse</span>. <span class=\"hps\">L\'ami</span> devait <span class=\"hps\">charger </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">les munitions et préparer les</span> <span class=\"hps\">armes</span> <span class=\"hps\">pour le roi.</span> <span class=\"hps\">Il </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">avait apparemment</span> <span class=\"hps\">fait une erreur</span> <span class=\"hps\">dans la préparation de</span> <span class=\"hps\">l\'un des</span> <span class=\"hps\">fusils</span>, puisqu’<span class=\"hps\">après avoir pris</span> <span class=\"hps\">le pistolet</span> <span class=\"hps\">de son ami</span>, le roi <span class=\"hps\">en tirant a fait éclater </span>son pouce. <span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">En examinant la</span> <span class=\"hps\">situation,</span> <span class=\"hps\">l\'ami</span> <span style=\"mso-spacerun: yes;\"> </span>a <span class=\"hps\">fait la remarque</span> <span class=\"hps\">comme d\'habitude,</span> <span class=\"hps\">\"C\'est bien!</span>\" <span class=\"hps\">Ce à quoi le</span> <span class=\"hps\">roi répondit</span>: «Non, <span class=\"hps\">ce n\'est pas bien</span>!\" <span class=\"hps\">Et a envoyé son ami</span> <span class=\"hps\">en prison.</span>\r\n\r\n<span class=\"hps\">Environ un an</span> <span class=\"hps\">plus tard,</span> <span class=\"hps\">le roi</span> <span class=\"hps\">chassait dans</span> <span class=\"hps\">une zone</span> <span class=\"hps\">qu\'il</span> <span class=\"hps\">aurait dû savoir comme étant dangereuse</span>. <span style=\"mso-spacerun: yes;\"> </span>Des <span class=\"hps\">cannibales</span> <span class=\"hps\">l\'ont capturé</span> <span class=\"hps\">et emmené</span> <span class=\"hps\">dans leur village.</span> <span class=\"hps\">Ils lui ont attaché</span> <span class=\"hps\">les mains,</span> <span class=\"hps\">empilés</span> <span class=\"hps\">un peu de bois</span>, <span class=\"hps\">et l’ont attaché à un poteau</span>. <span class=\"hps\">Lorsqu’ ils</span> <span class=\"hps\">s\'approchèrent pour allumer le feu</span>, ils<span style=\"mso-spacerun: yes;\">  </span>remarquèrent qu’il manquait un pouce <span class=\"hps\">au roi.</span> <span class=\"hps\">Étant</span> <span class=\"hps\">superstitieux</span>, <span class=\"hps\">ils</span> <span class=\"hps\">ne mangeaient jamais </span>une personne <span class=\"hps\">qui</span> <span class=\"hps\">lui manquait un membre</span>. Ils ont <span class=\"hps\">alors</span> <span class=\"hps\">détaché le</span> <span class=\"hps\">roi,</span> <span class=\"hps\">et l’ont </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span>remis sur la route</span></span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">.\r\n\r\n<span class=\"hps\">Lorsqu’il est revenu</span> <span class=\"hps\">à la maison, il</span> <span class=\"hps\">s’est souvenu </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">de l’incident</span> <span class=\"hps\">qui a causé la perte de</span> <span class=\"hps\">son pouce et a ressenti du remords</span> <span class=\"hps\">dans la façon dont il avait traité</span> <span class=\"hps\">son ami.</span> <span class=\"hps\">Il</span> <span class=\"hps\">s\'est immédiatement rendu</span> <span class=\"hps\">à la prison pour</span> lui <span class=\"hps\">parler :</span><span style=\"mso-spacerun: yes;\">  </span><span class=\"hps\">\"</span>Tu avais raison,» dit-il, <span class=\"hps\">\"</span>C’était une bonne chose que <span class=\"hps\">j’ai perdu mon pouce</span>.\" <span class=\"hps\">Et</span> <span class=\"hps\">il se mit à</span> raconter à son <span class=\"hps\">ami</span> <span class=\"hps\">ce qui</span> <span class=\"hps\">venait de se produire</span>. <span class=\"hps\">\"</span>Et<span class=\"hps\"> je suis très</span> <span class=\"hps\">désolé de t’avoir</span> <span class=\"hps\">laissé en prison</span> <span class=\"hps\">si longtemps.</span> <span class=\"hps\">C’est méchant de ma part d’avoir fait</span> <span class=\"hps\">cela. \"</span>\r\n\r\n<span class=\"hps\">«Non»,</span> <span class=\"hps\">répondit son ami</span>: «C\'est bien<span class=\"hps\">!</span><span class=\"atn\">\" \"</span>Que veux-tu dire par c’est bien ? Pourquoi cela serait une bonne chose de t’avoir incarcéré pendant un an ? »<span style=\"mso-spacerun: yes;\">  </span>« Si tu ne m’avais pas mis en prison, j’aurais été avec toi. »</span></p>','C\'est bien','','publish','closed','closed','','this-is-good','','','2013-10-05 21:58:52','2013-10-06 01:58:52','',79,'http://divyayogamonteregie.org/french/?page_id=145',0,'page','',0),(146,1,'2013-06-10 20:18:26','2013-06-11 00:18:26','An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"\n\nOne day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.\n\nAbout a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.\n\nAs he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"\n\n\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"','THis is good','','inherit','closed','closed','','145-revision-v1','','','2013-06-10 20:18:26','2013-06-11 00:18:26','',145,'http://divyayogamonteregie.org/french/?p=146',0,'revision','',0),(147,1,'2013-06-10 20:20:03','2013-06-11 00:20:03','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">C’était une fois, un petit garçon qui avait mauvais caractère.<span style=\"mso-spacerun: yes;\">  </span>Son père lui donna un sac de clous et lui demanda qu’à chaque fois qu’il perdrait patience, il devrait enfoncer un clou dans la clôture.<span style=\"mso-spacerun: yes;\">  </span>La première journée, l’enfant a enfoncé 37 clous dans la clôture.<span style=\"mso-spacerun: yes;\">  </span>Après quelques semaines, il a appris à contrôler sa colère, le nombre de clous enfoncés dans la clôture a graduellement diminué.<span style=\"mso-spacerun: yes;\">  </span>Il s’est aperçu qu’il était plus facile de contrôler son mauvais caractère que d’enfoncer des clous dans la clôture.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Finalement, une journée arriva sans que le garçon se soit mis en colère. </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il en a parlé à son père qui lui a suggéré d’enlever un clou chaque jour qu’il ne perdra pas contrôle de lui-même.<span style=\"mso-spacerun: yes;\">  </span>Les journées ont passé jusqu’au jour où le jeune garçon a pu dire à son père que tous les clous étaient enlevés.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<span lang=\"FR-CA\" style=\"font-size: 12.0pt; font-family: \'Arial\',\'sans-serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR-CA; mso-fareast-language: FR; mso-bidi-language: AR-SA;\">Le père a pris son fils par la main jusqu’à <span style=\"mso-spacerun: yes;\"> </span>la clôture.<span style=\"mso-spacerun: yes;\">  </span>Il lui a dit : « tu as bien travaillé mon garçon, mais regarde les trous que tu as fait.<span style=\"mso-spacerun: yes;\">  </span>La clôture ne sera plus jamais comme avant.<span style=\"mso-spacerun: yes;\">  </span>Lorsque tu parles à quelqu’un avec de la colère, cela laisse un trou, tout comme ceci. »<span style=\"mso-spacerun: yes;\">  </span>Tu peux poignarder une personne, et par la suite retirer le couteau.<span style=\"mso-spacerun: yes;\">  </span>Peu importe le nombre de fois que tu t’excuseras, la blessure sera marquée à jamais.<span style=\"mso-spacerun: yes;\">  </span>La prochaine fois, assure-toi d’être en contrôle de toi-même avant de dire des paroles que tu pourrais regretter par la suite.</span>','La clôture','','publish','closed','closed','','the-fence','','','2013-10-05 21:23:48','2013-10-06 01:23:48','',79,'http://divyayogamonteregie.org/french/?page_id=147',0,'page','',0),(148,1,'2013-06-10 20:19:58','2013-06-11 00:19:58','There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.\n\nFinally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.\n\nThe father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.','The fence','','inherit','closed','closed','','147-revision-v1','','','2013-06-10 20:19:58','2013-06-11 00:19:58','',147,'http://divyayogamonteregie.org/french/?p=148',0,'revision','',0),(522,1,'2013-07-09 20:54:06','2013-07-10 00:54:06','<p style=\"text-align: justify;\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.</p>\r\n<p style=\"text-align: justify;\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.</p>\r\n<p style=\"text-align: justify;\">The father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.</p>','The fence','','inherit','closed','closed','','147-revision-v1','','','2013-07-09 20:54:06','2013-07-10 00:54:06','',147,'http://divyayogamonteregie.org/french/?p=522',0,'revision','',0),(150,1,'2013-06-10 20:22:33','2013-06-11 00:22:33','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Secoue-toi et relève-toi</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">C’est l’histoire d’un fermier qui avait une vieille mule.<span style=\"mso-spacerun: yes;\">  </span>La mule est tombée dans le puits du fermier.<span style=\"mso-spacerun: yes;\">  </span>Le fermier a entendu le braiement de la mule – ou quel que soit le son que peuvent faire les mules qui tombent dans des puits.<span style=\"mso-spacerun: yes;\">  </span>Après avoir analysé la situation, le fermier était triste pour la mule, mais décida que ni la mule ni le puits ne valaient la peine d’être sauvés.<span style=\"mso-spacerun: yes;\">  </span>Il a rassemblé ses voisins pour leur raconter ce qui s’était passé et leur a demandé de l’aider à transporter de la terre pour enterrer la vieille mule dans le puits et ainsi<span style=\"mso-spacerun: yes;\">  </span>mettre fin à ses souffrances.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Au début, la vieille mule était hystérique. <span style=\"mso-spacerun: yes;\"> </span>Mais à mesure que <span style=\"mso-spacerun: yes;\"> </span>le fermier et les voisins lançaient de <span style=\"mso-spacerun: yes;\"> </span>la terre sur son dos, une idée lui a traversé l’esprit.<span style=\"mso-spacerun: yes;\">  </span>Elle a réalisé qu’à chaque fois qu’une pelletée de terre lui tombait sur le dos, elle pouvait se secouer pour faire tomber la terre et monter dessus.<span style=\"mso-spacerun: yes;\">  </span>C’est ce qu’a fait la vieille mule, pelletée après pelletée.<span style=\"mso-spacerun: yes;\">  </span>Pour s’encourager, elle se disait en elle-même : secoue-toi et relève-toi, secoue-toi et relève- toi, secoue-toi et relève-toi.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<span lang=\"FR-CA\" style=\"font-size: 12.0pt; font-family: \'Arial\',\'sans-serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR-CA; mso-fareast-language: FR; mso-bidi-language: AR-SA;\">Malgré la situation qui semblait désespérée, malgré la douleur que chaque pelletée lui infligeait, la vieille mule n’a pas succombé à la panique.<span style=\"mso-spacerun: yes;\">  </span>Elle a simplement continué à se secouer et <span style=\"mso-spacerun: yes;\"> </span>à se relever.<span style=\"mso-spacerun: yes;\">  </span>Qu’est-ce qui est arrivé!<span style=\"mso-spacerun: yes;\">  </span>Ça n’a pas pris de temps que la vieille mule épuisée, meurtrie est sortie triomphante<span style=\"mso-spacerun: yes;\">  </span>du puits.<span style=\"mso-spacerun: yes;\">  </span>Ce qui devait être un enterrement s’est transformé en une bénédiction.<span style=\"mso-spacerun: yes;\">  </span>Tout cela à cause de la façon dont elle a pris en main l’adversité</span>','Secoue-toi et relève-toi','','publish','closed','closed','','shake-it-off-and-step-up','','','2013-10-05 21:13:10','2013-10-06 01:13:10','',79,'http://divyayogamonteregie.org/french/?page_id=150',0,'page','',0),(151,1,'2013-06-10 20:22:09','2013-06-11 00:22:09','This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.\n\nInitially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.\n\nNo matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.','Shake it off and step up','','inherit','closed','closed','','150-revision-v1','','','2013-06-10 20:22:09','2013-06-11 00:22:09','',150,'http://divyayogamonteregie.org/french/?p=151',0,'revision','',0),(152,1,'2013-06-10 20:24:26','2013-06-11 00:24:26','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\">By Remez Sasson</p>\r\n<p class=\"MsoNormal\"></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un jour, un yogi et son disciple arrivaient dans une grande ville.<span style=\"mso-spacerun: yes;\">  </span>Ils n’avaient pas d’argent sur eux et ils avaient besoin de manger et <span style=\"mso-spacerun: yes;\"> </span>de trouver un endroit pour dormir.<span style=\"mso-spacerun: yes;\">  </span>Le disciple était certain qu’ils devraient mendier pour avoir de la nourriture et<span style=\"mso-spacerun: yes;\">  </span>la nuit venue, dormir dans un parc.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Il y a un grand parc non loin d’ici.<span style=\"mso-spacerun: yes;\">  </span>On pourra dormir là-bas cette nuit » déclara le disciple.<span style=\"mso-spacerun: yes;\">  </span></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« À l’extérieur ? « demanda le yoga.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Oui. » répondit l’étudiant.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le yogi sourit et dit : « Non, ce soir nous allons coucher dans un hôtel et manger à cet endroit ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">  L’étudiant était étonné et s’exclama « On ne peut pas payer. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Viens et assieds-toi » a déclaré le yogi.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les deux se sont assis par terre et le yogi a dit : « lorsque ta pensée se concentre intensément sur un sujet quelconque, tu obtiens un résultat ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le yogi a fermé les yeux et a commencé à méditer avec une pleine concentration.<span style=\"mso-spacerun: yes;\">  </span>Après environ 10 minutes, il s’est levé, a commencé à marcher et son disciple l’a suivi.<span style=\"mso-spacerun: yes;\">  </span>Ils ont marché plusieurs rues et boulevards jusqu’à ce qu’ils arrivent à l’hôtel.<span style=\"mso-spacerun: yes;\">  </span></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Viens, entrons à l’intérieur »<span style=\"mso-spacerun: yes;\">  </span>dit le yogi à son disciple.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">En posant le pied dans l’entrée, un homme vêtu élégamment s’est approché d’eux.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Je suis le gérant de l’hôtel, vous semblez être des voyageurs, et j’imagine que vous n’avez pas d’argent.<span style=\"mso-spacerun: yes;\">  </span>Aimeriez-vous travaillez dans la cuisine et en échange, je vous nourrirez et logerez. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Parfait » a répondu le yogi.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le disciple perplexe demanda : «  Avez-vous utilisez de la magie?<span style=\"mso-spacerun: yes;\">  </span>Comment avez-vous fait? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le yogi sourit et dit : « Je voulais te montrer comment fonctionne le pouvoir de notre pensée. Si tu penses intensément , avec une grande concentration à un souhait <span style=\"mso-spacerun: yes;\"> </span>que tu veux<span style=\"mso-spacerun: yes;\">  </span>réaliser et que ton esprit n’apporte pas de résistance à l’objet de tes pensées, celle-ci se concrétisera ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Le secret est de se concentrer, visualiser, voir les détails, avoir la foi et projeter mentalement et émotionnellement l’énergie dans la scène imaginée.<span style=\"mso-spacerun: yes;\">  </span>Ce sont les pré-requis généraux.<span style=\"mso-spacerun: yes;\">  </span>Quand ton esprit est vide de toutes pensées et que tu permets<span style=\"mso-spacerun: yes;\">  </span>à une seule<span style=\"mso-spacerun: yes;\">  </span>de surgir, cela te procure un très grand pouvoir.<span style=\"mso-spacerun: yes;\">  </span>On devrait être attentif à nos pensées.<span style=\"mso-spacerun: yes;\">  </span>Une forte concentration est très puissante et exerce une grande influence ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le disciple regarda son professeur et lui dit : «  je réalise que je dois me concentrer davantage afin d’être en mesure d’utiliser ce pouvoir ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«Oui, c’est la première étape».</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Le pouvoir de nos pensées','','publish','closed','closed','','the-power-of-thoughts','','','2013-10-05 21:36:41','2013-10-06 01:36:41','',79,'http://divyayogamonteregie.org/french/?page_id=152',0,'page','',0),(153,1,'2013-06-10 20:24:06','2013-06-11 00:24:06','By Remez Sasson\n\nOne day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.\n\n\"There is a big park not far from here. We can sleep there at night\", said the disciple.\n\"In the open air?\" Asked the yogi.\n\"Yes\", responded the student.\n\nThe yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".\n\nThe student was amazed and exclaimed, \"We cannot afford that!\"\n\"Come and sit down\", said the yogi.\n\nThey both sat down on the ground, and the yogi said:\n\"When you focus your mind intently on any subject, it comes to pass.\"\n\nThe yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.\n\n\"Come, let\'s enter inside\", the yogi said to his disciple.\n\nThey just set foot in the entrance, when a well-dressed man approached them.\n\n\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"\n\n\"Fine\", the yogi responded.\n\nThe disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"\n\nThe yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"\n\n\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"\n\nThe disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"\n\n\"Yes, this is the first step\", the yogi replied.\n\n16A The Elephant and the Fly\n\nBy Remez Sasson\n\nA disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.\n\nHe asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"\n\nThe teacher looked at the disciple, smiled and said:\n\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"\n\nThis was repeated several times. Then the elephant asked the fly:\n\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"\n\nThe fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"\n\nThe elephant stopped eating and said:\n\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"\n\nUpon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:\n\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"\n\n\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"','The power of thoughts','','inherit','closed','closed','','152-revision-v1','','','2013-06-10 20:24:06','2013-06-11 00:24:06','',152,'http://divyayogamonteregie.org/french/?p=153',0,'revision','',0),(356,1,'2013-07-09 21:47:41','2013-07-10 01:47:41','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’éléphant et la mouche</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Un étudiant et son professeur marchaient dans la forêt.<span style=\"mso-spacerun: yes;\">  </span>L’étudiant<span style=\"mso-spacerun: yes;\">  </span>était distrait à cause de l’agitation de ses pensées.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il a demandé à son professeur : Pourquoi la plupart des gens ont l’esprit agité, et seulement quelques personnes sont calmes d’esprit ?</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Le professeur a regardé son disciple en souriant et lui a dit : «  Je vais te raconter une histoire.<span style=\"mso-spacerun: yes;\">  </span>Un éléphant était debout et mangeait les feuilles d’un arbre.<span style=\"mso-spacerun: yes;\">  </span>Une petite mouche est arrivée, a volé<span style=\"mso-spacerun: yes;\">  </span>et bourdonné près de son oreille.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’éléphant l’a chassé avec ses grandes oreilles.<span style=\"mso-spacerun: yes;\">  </span>Alors la mouche est revenue et l’éléphant l’a chassé à nouveau.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">La même action s’est répétée à plusieurs reprises.<span style=\"mso-spacerun: yes;\">  </span>Puis l’éléphant a demandé à la mouche : Pourquoi es-tu aussi agitée et bruyante?»  « Pourquoi tu n’es pas capable de rester en place un moment ? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">La mouche a répondu : «  Je suis attirée par tout ce que je vois, j’entends ou je sens. Mes cinq sens et tout ce qui se déroule autour de moi m’amènent constamment dans toutes les directions et je suis incapable de résister.<span style=\"mso-spacerun: yes;\">  </span>Toi, comment fais-tu pour rester sur place et être si calme ? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’éléphant a arrêté de manger et a dit :</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">« Mes cinq sens</span></span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> <span class=\"hps\">ne m’empêchent pas de me concentrer.</span> <span class=\"hps\">Je suis</span> <span class=\"hps\">en contrôle de</span> <span class=\"hps\">mon attention</span> <span class=\"hps\">et je peux</span> <span class=\"hps\">la diriger</span> <span class=\"hps\">là où</span> <span class=\"hps\">je veux.</span> <span class=\"hps\">Cela m\'aide à</span> faire le focus <span class=\"hps\">dans</span> <span class=\"hps\">ce que j’accomplis ; </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">je peux </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">garder mon</span> <span class=\"hps\">esprit concentré</span> <span class=\"hps\">et calme.</span> <span class=\"hps\">Présentement </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">je mange</span>, je suis <span class=\"hps\">complètement absorbé dans ce que je fais.</span><span style=\"mso-spacerun: yes;\">  </span><span class=\"hps\">De cette façon,</span> <span class=\"hps\">je peux profiter de</span> <span class=\"hps\">ma nourriture et</span> <span style=\"mso-spacerun: yes;\"> </span>ainsi mieux mastiquer<span class=\"hps\">.</span> <span class=\"hps\">Je contrôle</span> <span class=\"hps\">mon attention</span>, <span class=\"hps\">et non</span> <span class=\"hps\">l\'inverse</span>, <span class=\"hps\">et cela</span> <span class=\"hps\">m\'aide à rester</span> <span class=\"hps\">calme</span>. »</span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">En entendant ces mots, le disciple a ouvert grand les yeux et a souri.<span style=\"mso-spacerun: yes;\">  </span>Il a dit à son professeur : « Je comprends.<span style=\"mso-spacerun: yes;\">  </span>Mon esprit sera constamment en agitation si mes cinq sens sont sollicités par tout se qui se passe autour de moi.<span style=\"mso-spacerun: yes;\">  </span>D’autre part, si je maîtrise mes cinq sens en étant capable de faire abstraction de ce qui m’entoure, mon esprit deviendra calme et je serai en mesure de maîtriser toute forme d’agitation.</span></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span>\r\n</span><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\"</span></span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Tu as raison», répondit <span class=\"hps\">le professeur</span>, <span class=\"hps\">«L\'esprit</span> <span class=\"hps\">est agité et</span> <span class=\"hps\">se pose sur ce qui attire l’attention</span>. <span class=\"hps\">Contrôle ton</span> <span class=\"hps\">attention</span>, <span class=\"hps\">et</span> <span class=\"hps\">tu contrôleras</span> <span class=\"hps\">ton esprit.</span> <span class=\"hps\">\"</span></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','L’éléphant et la mouche','','publish','closed','closed','','the-elephant-and-the-fly','','','2013-10-05 21:21:22','2013-10-06 01:21:22','',79,'http://divyayogamonteregie.org/french/?page_id=356',0,'page','',0),(154,1,'2013-06-10 20:26:42','2013-06-11 00:26:42','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">La rencontre du pêcheur Mexicain avec le MBA de Havard.<span style=\"mso-spacerun: yes;\">  </span>Qu’est-ce qui est vraiment important dans la vie?</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un homme d’affaires Américain était sur le quai d’un<span style=\"mso-spacerun: yes;\">  </span>village pittoresque de pêcheurs dans le sud du Mexique et observait un jeune <span style=\"mso-spacerun: yes;\"> </span>Mexicain qui pêchait dans son petit bateau amarré au quai.<span style=\"mso-spacerun: yes;\">  </span>Il y avait plusieurs gros thons jaunes dans son petit bateau.<span style=\"mso-spacerun: yes;\">  </span>Appréciant la chaleur de ce début d’après-midi, l’Américain a complimenté le Mexicain sur la qualité de son poisson.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’Américain lui demanda : « Combien de temps cela t’a pris pour les attraper? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Oh, quelques heures »<span style=\"mso-spacerun: yes;\">  </span>lui a répondu le pêcheur Mexicain.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« <span style=\"mso-spacerun: yes;\">  </span>Pourquoi tu ne restes pas plus longtemps pour attraper plus de poissons » lui a demandé l’homme d’affaires Américain.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Avec ce que j’ai attrapé c’est plus que suffisant pour subvenir aux besoins de ma famille » lui répliqua le Mexicain.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’homme d’affaires lui dit sérieusement : «  Mais qu’est ce que tu fais le restant de ton temps? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">En souriant, le Mexicain lui répondit : « Je me couche tard, je joue avec mes enfants, je regarde des parties de baseball , je fais une sieste avec ma femme.<span style=\"mso-spacerun: yes;\">  </span>Parfois en soirée je prends une marche jusqu’au village pour voir mes amis, jouer de la guitare, chanter quelques chansons… »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’homme d’affaires Américain l’a interrompu impatiemment : « Écoutes, j’ai un MBA de l’université Havard et je peux t’aider à faire plus de profits.<span style=\"mso-spacerun: yes;\">  </span>Tu peux commencer à pêcher un peu plus longtemps chaque jour.<span style=\"mso-spacerun: yes;\">  </span>Tu pourras alors vendre les surplus de poissons que tu attraperas.<span style=\"mso-spacerun: yes;\">  </span>Avec le surplus d’argent, tu pourras t’acheter un plus gros bateau.<span style=\"mso-spacerun: yes;\">  </span>Avec les revenus supplémentaires que t’apporteras ce plus gros bateau, dans peu de temps tu pourras t’acheter un second bateau, puis un troisième, jusqu’à ce que tu puisses avoir une flotte complète de bateaux de pêche.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Fier de ses déductions rapides, l’Américain a commencé à élaborer un plan qui rapporterait encore plus de profits.<span style=\"mso-spacerun: yes;\">  </span>« Au lieu de vendre tes poissons à un intermédiaire, tu pourrais les vendre directement au fabriquant ou encore ouvrir ta propre conserverie.<span style=\"mso-spacerun: yes;\">  </span>Éventuellement tu pourrais être responsable du produit, de la production et de la distribution.<span style=\"mso-spacerun: yes;\">  </span>Tu pourrais quitter ton petit village côtier pour aller vivre à Mexico, ou possiblement Los Angeles ou New York où tu pourrais éventuellement accroitre ton entreprise. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">N’ayant jamais eu ce type de pensée, le pêcheur Mexicain demanda : « Mais combien ce temps cela prendra »?</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après un rapide calcul mental, le MBA de Harvard répondit : « À peu près 15 à 20 ans, peut être un peu moins si tu travailles très fort ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Et puis après senor? » demanda le pêcheur.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Pourquoi ? C’est la meilleure partie » a répondu l’homme d’affaires en riant.<span style=\"mso-spacerun: yes;\">  </span>Quand ce sera le bon moment, tu pourras vendre ta compagnie et devenir très riche.<span style=\"mso-spacerun: yes;\">  </span>Tu feras des millions. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Millions ? Vraiment? Qu’est que je ferai avec tout cet argent? » a demandé le pêcheur avec incrédibilité.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Avec vanité l’homme d’affaires répondit, « et puis tu pourras prendre ta retraite avec tout l’argent que auras fait.<span style=\"mso-spacerun: yes;\">  </span>Tu pourras déménager dans un petit village typique côtier où tu pourras dormir tard, jouer avec tes petits enfants, regarder des parties de baseball , faire une sieste avec ta femme.<span style=\"mso-spacerun: yes;\">  </span>Tu pourras faire une promenade en soirée jusqu’ au village où tu pourras jouer de la guitare, chanter comme bon te semble avec tes amis ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La morale de cette histoire : Sache ce qui est vraiment important dans la vie et tu<span style=\"mso-spacerun: yes;\">  </span>t’apercevras que c’est beaucoup plus près que tu le penses.</span></p>','La rencontre du pêcheur Mexicain avec le MBA de Havard.  Qu’est-ce qui est vraiment important dans la vie?','','publish','closed','closed','','the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life','','','2013-10-05 21:16:48','2013-10-06 01:16:48','',79,'http://divyayogamonteregie.org/french/?page_id=154',0,'page','',0),(155,1,'2013-06-10 20:25:27','2013-06-11 00:25:27','','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','154-revision-v1','','','2013-06-10 20:25:27','2013-06-11 00:25:27','',154,'http://divyayogamonteregie.org/french/?p=155',0,'revision','',0),(156,1,'2013-06-10 20:28:21','2013-06-11 00:28:21','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Une valeur</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un conférencier de renom <span style=\"mso-spacerun: yes;\"> </span>a débuté son séminaire en levant dans les airs un billet de 20$.<span style=\"mso-spacerun: yes;\">  </span>Il a demandé aux 200 personnes présentes dans la salle : « Qui voudrait ce billet de 20$? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Quelques personnes ont commencé à lever leur main.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> Il a dit : « Je vais donner ce 20$ à quelqu’un d’entre vous, mais avant laissez- moi faire ceci. »<span style=\"mso-spacerun: yes;\">  </span>Il a froissé le billet.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors demandé : «  Qui le veut encore ? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il y avait encore des mains levées dans les airs.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Bon, qu’est-ce qui se passe si je fais ceci? » Et il a jeté le billet par terre et a pilé dessus avec ses chaussures.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il l’a ramassé tout fripé et sale et a dit « qui est-ce qui le veut maintenant ?»</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"><span style=\"mso-spacerun: yes;\"> </span>Il y avait encore des mains dans les airs.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Mes amis, vous venez tous d’apprendre une leçon très importante.<span style=\"mso-spacerun: yes;\">  </span>Peu importe ce que j’ai fait avec l’argent, vous le vouliez quand même parce que sa valeur n’a pas changé.<span style=\"mso-spacerun: yes;\">  </span>Il valait toujours 20$. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Plusieurs fois dans notre vie, on est abandonné, froissé, <span style=\"mso-spacerun: yes;\"> </span>trainé dans la boue <span style=\"mso-spacerun: yes;\"> </span>à cause de nos décisions ou découlant de notre façon d’agir dans certaines circonstances.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">On croit que l’on vaut moins.<span style=\"mso-spacerun: yes;\">  </span>Cependant, peu importe ce qui arrive ou ce qui se produira vous ne perdrez jamais votre valeur.<span style=\"mso-spacerun: yes;\">  </span>Vous avez une âme divine, vous êtes spécial.<span style=\"mso-spacerun: yes;\">  </span>Ne l’oubliez jamais.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','Une valeur','','publish','closed','closed','','a-value','','','2013-10-05 20:52:05','2013-10-06 00:52:05','',79,'http://divyayogamonteregie.org/french/?page_id=156',0,'page','',0),(161,1,'2013-06-10 20:29:42','2013-06-11 00:29:42','A <b>Happiness</b>\n\nWhen I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.\n\nI wrote down \'happy\'. They told me I didn\'t understand the assignment, and I told them they didn\'t understand life.\n\n26A <b>Wise Saint</b>\n\n&nbsp;\n\nThere once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.\n\nSo the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.\n\n\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.\n\n\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.\n\nThe man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"\n\nAnd thus, the sage healed two people that day.','The Happiness','','inherit','closed','closed','','160-revision-v1','','','2013-06-10 20:29:42','2013-06-11 00:29:42','',160,'http://divyayogamonteregie.org/french/?p=161',0,'revision','',0),(159,1,'2013-06-10 20:28:10','2013-06-11 00:28:10','<b></b>\n\nA well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"\n\nHands started going up.\n\nHe said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.\n\nHe then asked, \"Who still wants it?\"\n\nStill the hands were up in the air.\n\n\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.\n\nHe picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.\n\n\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.\n\nMany times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.\n\nWe feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You are special - Don\'t ever forget it!','A value','','inherit','closed','closed','','156-revision-v1','','','2013-06-10 20:28:10','2013-06-11 00:28:10','',156,'http://divyayogamonteregie.org/french/?p=159',0,'revision','',0),(160,1,'2013-06-10 20:29:52','2013-06-11 00:29:52','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Lorsque j’avais cinq <span style=\"mso-spacerun: yes;\"> </span>ans, ma mère me disait toujours que le bonheur était la clé de la vie.<span style=\"mso-spacerun: yes;\">  </span>Lorsque j’ai commencé l’école, on m’a demandé ce que je voulais faire plus tard.<span style=\"mso-spacerun: yes;\">  </span></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> J’ai écrit « heureux ». On m’a dit que je n’avais pas compris le devoir, je leur ai répondu qu’ils n’avaient pas compris la vie.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','Le bonheur','','publish','closed','closed','','the-happiness','','','2013-10-05 21:26:17','2013-10-06 01:26:17','',79,'http://divyayogamonteregie.org/french/?page_id=160',0,'page','',0),(547,1,'2013-07-09 22:08:03','2013-07-10 02:08:03','<p style=\"text-align: justify;\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.</p>\r\n<p style=\"text-align: justify;\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.</p>\r\n<p style=\"text-align: justify;\">\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.</p>\r\n<p style=\"text-align: justify;\">\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.</p>\r\n<p style=\"text-align: justify;\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"</p>\r\n<p style=\"text-align: justify;\">And thus, the sage healed two people that day.</p>','Wise Saint ','','inherit','closed','closed','','352-revision-v1','','','2013-07-09 22:08:03','2013-07-10 02:08:03','',352,'http://divyayogamonteregie.org/french/?p=547',0,'revision','',0),(162,1,'2013-06-10 20:31:35','2013-06-11 00:31:35','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">A propos de</span></span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> <span class=\"hps\">la nature cachée</span> <span class=\"hps\">de l\'Atman</span> <span class=\"hps\">[</span>l\'âme]:\r\n\r\n<span class=\"hps\">«Nous sommes comme</span> <span class=\"hps\">un roi,</span> <span class=\"hps\">qui</span> <span class=\"hps\">en devenant victime d\'amnésie,</span> <span class=\"hps\">met</span> <span class=\"hps\">son royaume</span> <span class=\"hps\">en lambeaux</span>, ne sachant pas <span class=\"hps\">qui il est vraiment</span>. <span class=\"hps\">Nous sommes comme un</span> <span class=\"hps\">lionceau</span> <span class=\"hps\">qui, après avoir</span> <span class=\"hps\">perdu</span> <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>sa mère</span> <span class=\"hps\">à la naissance,</span> <span class=\"hps\">grandit</span> <span class=\"hps\">par</span> <span class=\"hps\">accident</span> <span class=\"hps\">chez les</span> <span class=\"hps\">moutons qui le</span> <span class=\"hps\">prennent en pâturage</span> <span class=\"hps\">et</span><span style=\"mso-spacerun: yes;\">  </span>croyant <span class=\"hps\">qu\'il est</span> un des leurs, bêle <span class=\"hps\">comme eux</span>. \"- <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>Thème de</span> <span class=\"hps\">la littérature hindoue</span>.\r\n\r\n<span class=\"hps\">Une grosse lionne</span> était <span class=\"hps\">avec son lionceau à</span> <span class=\"hps\">la recherche d’une proie</span> <span class=\"hps\">lorsqu’ elle aperçut un troupeau de moutons</span>. <span class=\"hps\">Elle sauta</span> <span class=\"hps\">sur eux</span> <span class=\"hps\">et <span style=\"mso-spacerun: yes;\"> </span>succomba </span>sous l’<span class=\"hps\">effort.</span> <span class=\"hps\">Mais</span> <span class=\"hps\">le lionceau</span> <span class=\"hps\">n’avait plus</span> sa <span class=\"hps\">mère.</span> <span class=\"hps\">Les moutons</span> <span class=\"hps\">ont pris</span> <span class=\"hps\">soin du lionceau et l’ont amené avec eux. </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">Il</span> <span class=\"hps\">a grandi</span> <span class=\"hps\">avec eux ;</span> il <span class=\"hps\">mangeait de l\'herbe</span>, <span class=\"hps\">et</span> <span class=\"hps\">bêlait</span> <span class=\"hps\">comme un mouton</span>. <span class=\"hps\">Avec le temps</span>, il est devenu <span class=\"hps\">un grand lion</span>, <span class=\"hps\">à maturité</span>, <span class=\"hps\">et <span style=\"mso-spacerun: yes;\"> </span>il</span> <span class=\"hps\">bêlait encore et</span> <span class=\"hps\">pensait qu’il était</span> <span class=\"hps\">un mouton.</span>\r\n\r\n<span class=\"hps\">Un jour,</span> <span class=\"hps\">un autre</span> <span class=\"hps\">lion</span> <span class=\"hps\">est venu</span> <span class=\"hps\">à la recherche de</span> <span class=\"hps\">proies</span>, <span class=\"hps\">et</span> <span class=\"hps\">a été étonné</span> <span class=\"hps\">de constater qu’il y avait un lion au milieu du</span> <span class=\"hps\">troupeau de moutons</span> <span class=\"hps\">et qu’il réagissait tout comme eux à l’approche du danger.</span> <span class=\"hps\">Il a essayé</span> <span class=\"hps\">de s\'approcher du</span> <span class=\"hps\">mouton</span><span class=\"atn\">-</span>lion <span class=\"hps\">pour lui faire savoir qu’ il n’était pas</span> <span class=\"hps\">un mouton</span>, mais bien <span class=\"hps\">un lion, mais</span> <span class=\"hps\">celui-ci s\'est enfuit</span> <span class=\"hps\">à son approche.</span>\r\n\r\n<span class=\"hps\">Il a attendu le <span style=\"mso-spacerun: yes;\"> </span>moment opportun jusqu’au </span><span style=\"mso-spacerun: yes;\"> </span>jour où il a <span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">trouvé</span> <span class=\"hps\">le mouton</span><span class=\"atn\">-</span>lion <span class=\"hps\">endormi.</span> <span class=\"hps\">Il s\'approcha en lui disant: «Tu </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">es un</span> <span class=\"hps\">lion.</span>\"\r\n\r\n<span class=\"hps\">\"</span>Je suis un <span class=\"hps\">mouton</span>\" a dit en pleurant <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>et</span> <span class=\"hps\">bêlant</span> <span class=\"hps\">l\'autre</span> <span class=\"hps\">lion</span>, <span class=\"hps\">ne voulant pas</span> <span class=\"hps\">le croire.</span>\r\n\r\n<span class=\"hps\">Le</span> <span class=\"hps\">lion l’a traîné</span> <span class=\"hps\">vers</span> <span class=\"hps\">un lac</span> <span class=\"hps\">et a dit: «</span>Regarde, <span class=\"hps\">il ya</span> <span class=\"hps\">mon reflet</span> <span class=\"hps\">et le tien.</span>\"\r\n\r\n<span class=\"hps\">Puis, vint la comparaison.</span> <span class=\"hps\">Le</span> <span class=\"hps\">lion qui</span> <span class=\"hps\">bêlait</span> <span class=\"hps\">regarda l’autre lion</span> <span class=\"hps\">et</span> <span class=\"hps\">ensuite</span> <span class=\"hps\">son</span> <span class=\"hps\">propre</span> <span class=\"hps\">reflet</span>, <span class=\"hps\">et puis surgit l’idée</span> <span class=\"hps\">qu’il était un</span> <span class=\"hps\">lion.</span> <span class=\"hps\">Le</span> <span class=\"hps\">lion</span> <span class=\"hps\">rugit</span>, <span class=\"hps\">son bêlement</span> <span class=\"hps\">avait disparu.</span> <span class=\"hps\">[</span>Adapté <span class=\"hps\">d\'un conte de</span> <span class=\"hps\">Vivekananda</span> <span class=\"hps\">à</span> <span class=\"hps\">la conférence «</span>La <span class=\"hps\">vraie nature</span> <span class=\"hps\">de l\'homme»</span>, <span class=\"hps\">donnée à Londres vers</span> <span class=\"hps\">1899</span>.]\r\n\r\n<span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">\"</span>Vous êtes <span class=\"hps\">des lions</span>. <span class=\"hps\">.</span> <span class=\"hps\">.</span> <span class=\"hps\">et c’est parfait</span>. \"- <span class=\"hps\">Swami</span> <span class=\"hps\">Vivekananda</span></span></p>','Le lion-mouton','','publish','closed','closed','','the-sheep-and-the-lion','','','2013-10-05 21:43:30','2013-10-06 01:43:30','',79,'http://divyayogamonteregie.org/french/?page_id=162',0,'page','',0),(163,1,'2013-06-10 20:30:13','2013-06-11 00:30:13','','image008','','inherit','closed','closed','','image008','','','2013-06-10 20:30:13','2013-06-11 00:30:13','',200,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image008.jpg',0,'attachment','image/jpeg',0),(164,1,'2013-06-10 20:30:15','2013-06-11 00:30:15','','image014','','inherit','closed','closed','','image014','','','2013-06-10 20:30:15','2013-06-11 00:30:15','',213,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014.jpg',0,'attachment','image/jpeg',0),(165,1,'2013-06-10 20:30:17','2013-06-11 00:30:17','','image002','','inherit','closed','closed','','image002','','','2013-06-10 20:30:17','2013-06-11 00:30:17','',192,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image002.jpg',0,'attachment','image/jpeg',0),(166,1,'2013-06-10 20:30:18','2013-06-11 00:30:18','','image004','','inherit','closed','closed','','image004','','','2013-06-10 20:30:18','2013-06-11 00:30:18','',192,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image004.jpg',0,'attachment','image/jpeg',0),(167,1,'2013-06-10 20:30:20','2013-06-11 00:30:20','','image006','','inherit','closed','closed','','image006','','','2013-06-10 20:30:20','2013-06-11 00:30:20','',194,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image006.jpg',0,'attachment','image/jpeg',0),(168,1,'2013-06-10 20:30:21','2013-06-11 00:30:21','','image010','','inherit','closed','closed','','image010','','','2013-06-10 20:30:21','2013-06-11 00:30:21','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image010.jpg',0,'attachment','image/jpeg',0),(169,1,'2013-06-10 20:30:25','2013-06-11 00:30:25','','Organic Salad','','inherit','closed','closed','','image012','','','2013-06-10 20:30:25','2013-06-11 00:30:25','',204,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012.jpg',0,'attachment','image/jpeg',0),(170,1,'2013-06-10 20:31:04','2013-06-11 00:31:04','A The Sheep-Lion\n\nAbout the hidden nature of Atman [Soul]:\n\n\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.\n\nA LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.\n\nOne day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.\n\nHowever, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"\n<table width=\"180\" border=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td></td>\n</tr>\n<tr>\n<td>\"I gather: \"A lion is . . . ahh, perfect!\"\"</td>\n</tr>\n</tbody>\n</table>\n\"I am a sheep,\" cried and bleated the other lion, and could not believe otherwise.\n\nThe lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"\n\nThen came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]\n\n? \"You are lions . . . and perfect.\" - Swami Vivekananda','The sheep','','inherit','closed','closed','','162-revision-v1','','','2013-06-10 20:31:04','2013-06-11 00:31:04','',162,'http://divyayogamonteregie.org/french/?p=170',0,'revision','',0),(171,1,'2013-06-10 20:34:56','2013-06-11 00:34:56','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Deux grenouilles – une grosse et une petite – ont sauté dans un seau de lait.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Les côtés du seau étaient brillants et lisses.<span style=\"mso-spacerun: yes;\">  </span>Les grenouilles nageaient en rond en étant incapables de sortir du seau, et à toutes les fois qu’elles essayaient de sortir la bouche pour respirer, elles retournaient au fond.<span style=\"mso-spacerun: yes;\">  </span>Elles ont continué à nager et haleter jusqu’au moment où la grosse grenouille a abandonné et s’est noyé.<span style=\"mso-spacerun: yes;\">  </span>Alors la petite grenouille s’est dit :</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">«  Bon, je vais essayer de m’accrocher le plus longtemps que j’en suis capable. »</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Elle est restée pendant des heures, quand soudainement elle a senti quelque chose de solide sous ses pieds : le lait s’était changé en beurre.<span style=\"mso-spacerun: yes;\">  </span>La petite grenouille a sauté à l’extérieur du seau.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Yogananda a dit : «  Soyez comme la petite grenouille.<span style=\"mso-spacerun: yes;\">  </span>Essayez de combattre par tous les moyens possibles. »</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Essayez de bien surmonter vos difficultés sinon vous risquez votre perte. </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>','Les deux grenouilles en difficulté','','publish','closed','closed','','the-two-frogs-in-trouble','','','2013-10-05 21:56:47','2013-10-06 01:56:47','',79,'http://divyayogamonteregie.org/french/?page_id=171',0,'page','',0),(172,1,'2013-06-10 20:34:48','2013-06-11 00:34:48','TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,\n\n\"Well, well. I will hang on as long as I can, too.\"\n\nIt kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!\n\n? <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i>\n\n? <i>Churn your difficulty well or it may be to your loss.</i>','The two Frogs in Trouble','','inherit','closed','closed','','171-revision-v1','','','2013-06-10 20:34:48','2013-06-11 00:34:48','',171,'http://divyayogamonteregie.org/french/?p=172',0,'revision','',0),(173,1,'2013-06-10 20:42:52','2013-06-11 00:42:52','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">S’il vous plaît, ne vous tenez pas trop près des arbres, vous serez incapable d’apprécier la forêt…</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Quelques années avant que l’ouragan Katrina dévaste la Nouvelle Orléans, une automobile dispendieuse s’est arrêtée au sommet de la rivière Mississippi et un homme richement vêtu est sorti de la voiture.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il est monté sur une plate-forme qui se trouvait au dessus du rail sous un pont <span style=\"mso-spacerun: yes;\"> </span>et il s’apprêtait à sauter sur la chaussée.<span style=\"mso-spacerun: yes;\">  </span>Les autos ont commencé à s’arrêter et il y a eu une congestion à des miles de distance.<span style=\"mso-spacerun: yes;\">  </span>La police est arrivée sur les lieux avec le service des incendies, les ministres et les professionnels de la santé mentale.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Ils ont commencé à parler à l’homme en lui demandant de ne pas sauter.<span style=\"mso-spacerun: yes;\">  </span>Ils lui ont dit que ses chances de mourir seraient faibles; <span style=\"mso-spacerun: yes;\"> </span>il se briserait probablement des côtes et serait paralysé pour le restant de sa vie.<span style=\"mso-spacerun: yes;\">  </span>À environ un mille plus loin, dans le trafic, il y avait un vieux camion avec des tondeuses à gazon, des râteaux et des pelles.<span style=\"mso-spacerun: yes;\">  </span>Un vieux<span style=\"mso-spacerun: yes;\">  </span>jardinier descendit du camion et marcha vers <span style=\"mso-spacerun: yes;\"> </span>la foule qui était rassemblée.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il s’est fait un chemin parmi la foule, regarda sur le côté et cria à l’homme sur la corniche : « Hey, je dois aller travailler.<span style=\"mso-spacerun: yes;\">  </span>Sois tu sautes ou tu descends du pont.<span style=\"mso-spacerun: yes;\">  </span>Si tu décides de ne pas sauter,<span style=\"mso-spacerun: yes;\">  </span>cela ira mieux demain ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après ce commentaire, l’homme monta sur le pont.<span style=\"mso-spacerun: yes;\">  </span>La police le captura et l’installa sur le siège arrière de la voiture.<span style=\"mso-spacerun: yes;\">  </span>Le jardinier retourna à son camion pour attendre que les automobiles circulent à nouveau.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le ministre a demandé au pompier : «  Qui était-ce ? » Le pompier déclara : « Il a dit qu’il devait aller travailler. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le policier expliqua aux journalistes que tout au long du parcours vers l’hôpital l’homme disait : « cela ira mieux demain».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<span lang=\"FR-CA\" style=\"font-size: 12.0pt; font-family: \'Arial\',\'sans-serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR-CA; mso-fareast-language: FR; mso-bidi-language: AR-SA;\">On doit nécessairement imaginer le futur, avoir un avenir.</span>','Cela ira mieux demain','','publish','closed','closed','','tomorrow-is-going-to-be-better','','','2013-10-05 22:01:12','2013-10-06 02:01:12','',79,'http://divyayogamonteregie.org/french/?page_id=173',0,'page','',0),(174,1,'2013-06-10 20:39:13','2013-06-11 00:39:13','Please do not stand too close to the trees! You will not be able to enjoy the forest...\n\nA few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.\n\nHe climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.\n\nThey began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.\n\nHe made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"\n\nWith that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.\n\nThe minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"\n\nThe police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"\n\nOne must see a future, to have a future','Tomorrow is going to be better','','inherit','closed','closed','','173-revision-v1','','','2013-06-10 20:39:13','2013-06-11 00:39:13','',173,'http://divyayogamonteregie.org/french/?p=174',0,'revision','',0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (175,1,'2013-06-10 21:22:48','2013-06-11 01:22:48','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’appréciation\r\n</span><span lang=\"FR\" style=\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\r\n</span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Voici un message important pour notre société moderne. Nous semblons avoir perdu nos repères et notre sens de l’orientation.</span></p>\r\nUn jeune homme ayant d’excellentes références académiques postule pour un poste de direction dans une grande entreprise. Ayant réussi<span style=\"mso-spacerun: yes;\">  </span>sa première entrevue, le directeur lui fait passer <span style=\"mso-spacerun: yes;\"> </span>la dernière étape d’ entrevue. <span style=\"mso-spacerun: yes;\"> </span>En parcourant le <span style=\"mso-spacerun: yes;\"> </span>CV du jeune homme, le directeur constate que ses réalisations académiques <span style=\"mso-spacerun: yes;\"> </span>avaient été <span style=\"mso-spacerun: yes;\"> </span>excellentes tout au long de son parcours, de l\'école secondaire jusqu\'à ses recherches de troisième cycle. <span style=\"mso-spacerun: yes;\"> </span>Jamais de défaillances, toujours d’excellents <span style=\"mso-spacerun: yes;\"> </span>résultats à tous les ans.\r\n\r\nLe directeur lui <span style=\"mso-spacerun: yes;\"> </span>a demandé: « Avez-vous obtenu des bourses d\'études\r\n<p class=\"MsoNormal\" style=\"margin-left: 2.25pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">à l\'école? »</span></p>\r\nLe jeune homme répondit: « Non ».\r\n\r\nLe directeur a demandé: « Est-ce que c’est votre père qui a payé pour vos frais de scolarité ? \"\r\n\r\nLe jeune homme répondit: « Mon père est décédé quand j\'avais un an, c\'est ma mère qui a payé mes frais de scolarité. \"\r\n\r\nLe directeur a demandé: «<span style=\"mso-spacerun: yes;\">  </span>Quel était le travail de votre mère ?\"\r\n\r\nLe jeune homme répondit: « Ma mère travaillait dans une buanderie.\"\r\n\r\nLe directeur a demandé au jeune homme de lui montrer ses mains. <span style=\"mso-spacerun: yes;\"> </span>Elles étaient lisses et parfaites. .\r\n\r\nLe directeur a demandé: « Auparavant, avez-vous déjà aidé votre mère à laver les vêtements ? \"\r\n\r\nLe jeune homme répondit: « Jamais, ma mère a toujours voulu que j\'étudie et que je lise beaucoup de livres. Et puis, ma mère peut laver plus rapidement les vêtements que moi. \"\r\n\r\nLe directeur dit: « J\'ai une demande à vous faire. Lorsque vous reviendrez aujourd\'hui, allez nettoyer les mains de votre mère, et puis revenez me voir demain matin. \"\r\n\r\nLe jeune homme avait l’impression <span style=\"mso-spacerun: yes;\"> </span>que ses chances de décrocher l\'emploi étaient bonnes. Lorsqu’in revint chez lui, il demanda joyeusement à sa <span style=\"mso-spacerun: yes;\"> </span>mère de lui laisser <span style=\"mso-spacerun: yes;\"> </span>nettoyer les mains. Sa mère se sentait mal à l’aise. Elle montra ses mains au jeune homme, tout en étant heureuse mais<span style=\"mso-spacerun: yes;\">  </span>aussi avec des sentiments mitigés.\r\n\r\nIl nettoya <span style=\"mso-spacerun: yes;\"> </span>lentement les mains de sa mère. Il s’est mis à pleurer en le faisant.<span style=\"mso-spacerun: yes;\">  </span>Pour la première fois, il remarqua que les mains de sa mère étaient très ridées, et avec plein de contusions. Quelques ecchymoses étaient tellement douloureuses que sa mère trembla lorsqu’il les nettoya.\r\n\r\nPour la première fois,<span style=\"mso-spacerun: yes;\">  </span>il réalisait que ses études avaient été payées par le travail de ces mains qui nettoyaient des vêtements à tous les jours.<span style=\"mso-spacerun: yes;\">  </span>Les ecchymoses représentaient le prix que sa mère avait dû payer pour l’excellence des ses résultats, son diplôme et assurer sa réussite future.\r\n\r\nAprès avoir terminé le nettoyage des mains de sa mère, le jeune homme a lavé à sa place, en silence,<span style=\"mso-spacerun: yes;\">  </span>le restant des vêtements.\r\n\r\nLe soir, la mère et le fils ont discuté ensemble pendant un <span style=\"mso-spacerun: yes;\"> </span>très long moment.\r\n\r\nLe lendemain matin, le jeune homme s\'est rendu au bureau du directeur.\r\n\r\nLe directeur a remarqué les larmes dans les yeux du jeune, <span style=\"mso-spacerun: yes;\"> </span>il lui a demandé: «Pouvez-vous me dire ce que vous avez fait et appris hier chez-vous ? \"\r\n\r\nLe jeune homme répondit: « J\'ai nettoyé les mains de ma mère et terminé de laver <span style=\"mso-spacerun: yes;\"> </span>tous les autres vêtements qui restaient à faire. <span style=\"mso-spacerun: yes;\"> </span>\"\r\n\r\nLe directeur a demandé: « Quels sont vos impressions? \"\r\n\r\nLe jeune homme lui dit:\r\n\r\n<span style=\"mso-tab-count: 1;\">          </span> 1-  Je sais maintenant ce <span style=\"mso-spacerun: yes;\"> </span>que signifie <span style=\"mso-spacerun: yes;\"> </span>l’appréciation. <span style=\"mso-spacerun: yes;\"> </span>Sans ma mère, je\r\n<p class=\"MsoNormal\" style=\"margin-left: 2.25pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\">             </span><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\">  </span>n’aurais pas réussi.\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">2-  En travaillant ensemble et en aidant ma mère, j’ai réalisé à quel point il peut<span style=\"mso-spacerun: yes;\">  </span>être ardu et difficile d’obtenir quelque chose.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\">   </span>   </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">3- Je me suis aperçu de l’importance des relations familiales et d’en apprécier sa richesse.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\r\nLe directeur répliqua : «C\'est ce que je recherche chez un administrateur. Je veux engager une personne qui peut apprécier l\'aide des autres, une personne qui est capable de faire preuve de compassion envers le travail des autres, et une personne qui ne ferait pas de l\'argent son unique but dans la vie. Vous êtes embauché. \"</span></p>\r\nPar la suite, ce jeune homme a travaillé avec ardeur et il a eu le respect de ses subordonnés. Chaque employé a travaillé assidument et en équipe. La performance de l\'entreprise s’est améliorée considérablement.\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>','L’appréciation','','publish','closed','closed','','the-appriciation','','','2013-10-05 21:19:28','2013-10-06 01:19:28','',79,'http://divyayogamonteregie.org/french/?page_id=175',0,'page','',0),(177,1,'2013-06-10 21:24:47','2013-06-11 01:24:47','<p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Motiver</span><span lang=\"FR\" style=\"mso-ansi-language: FR;\">\r\n\r\n</span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il ya cette histoire d\'un célèbre chercheur <span style=\"mso-spacerun: yes;\"> </span>qui avait fait plusieurs découvertes médicales très importantes. Il était interviewé par un journaliste qui lui a demandé pourquoil était <span style=\"mso-spacerun: yes;\"> </span>beaucoup plus créatif que la majorité des personnes. Qu\'est-ce qui le différenciait tant des autres?\r\n\r\nIl a répondu que selon lui, cela provenait d\'une expérience qu’il avait eu avec sa mère vers l’âge de deux ans. Il avait essayé de sortir une bouteille de lait du réfrigérateur, lorsque celle-ci lui a glissé des mains et est tombée par terre, déversant tout son contenu sur le sol de la cuisine – produisant <span style=\"mso-spacerun: yes;\"> </span>une véritable mer de lait!\r\n\r\nQuand sa mère entra dans la cuisine, au lieu de hurler après lui, en lui faisant un sermon ou en le punissant, elle lui dit : \" Robert , quel beau dégât que tu as fait ! J\'ai rarement vu une énorme flaque de lait comme celle-ci. Eh bien, puisque <span style=\"mso-spacerun: yes;\"> </span>le mal est déjà fait, est-ce que tu voudrais jouer dans le lait pendant quelques minutes avant de le nettoyer? \"\r\n\r\nIl a fait comme elle a proposé. Après quelques minutes, sa mère lui a dit : «Tu sais Robert, lorsque tu fais un dégât comme celui-ci, tu dois par la suite nettoyer et remettre tout en ordre. Alors, comment veux-tu faire? Nous pourrions utiliser une éponge, une serviette, ou une vadrouille. Que préfères-tu? \"\r\n\r\nIl a choisi l\'éponge et ensemble ils ont nettoyé le lait renversé.\r\n\r\nSa mère lui a alors dit: « Tu sais, ce qui vient de se produire <span style=\"mso-spacerun: yes;\"> </span>ici est une expérience ratée dans la façon d’apporter efficacement une grosse bouteille de lait avec deux mains minuscules. Sortons dans la cour arrière et remplis la bouteille avec de l\'eau et essaies de trouver un moyen de la transporter sans la laisser tomber. \"\r\n\r\nLe petit garçon a appris que s\'il saisissait la bouteille <span style=\"mso-spacerun: yes;\"> </span>près du goulot avec ses deux mains, il pouvait l’apporter sans la laisser tomber. C’est à ce moment que ce scientifique de renom a su<span style=\"mso-spacerun: yes;\">  </span>qu\'il ne devait pas craindre de faire des erreurs. Au contraire, il a appris que les erreurs étaient des opportunités d\'apprendre quelque chose de nouveau, ce qui est le fondement de toutes les expériences scientifiques. Même si l\'expérience « ne fonctionne pas», généralement <span style=\"mso-spacerun: yes;\"> </span>nous apprennons quand même quelque chose.</span></p>',' Motiver','','publish','closed','closed','','the-motivate','','','2013-10-05 20:47:54','2013-10-06 00:47:54','',79,'http://divyayogamonteregie.org/french/?page_id=177',0,'page','',0),(178,1,'2013-06-10 21:24:22','2013-06-11 01:24:22','38A <b>Motivate</b>\n\nThere is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?\n\nHe responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!\n\nWhen his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"\n\nIndeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"\n\nHe chose the sponge and together they cleaned up the spilled milk.\n\nHis mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"\n\nThe little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.','The ','','inherit','closed','closed','','177-revision-v1','','','2013-06-10 21:24:22','2013-06-11 01:24:22','',177,'http://divyayogamonteregie.org/french/?p=178',0,'revision','',0),(179,1,'2013-06-10 21:27:02','2013-06-11 01:27:02','<p style=\"text-align: justify;\">\r\n<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">C’est peut-être moi le problème et pas les autres.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un homme craignait que sa femme n’entendait pas aussi bien qu’avant et croyait qu’elle avait besoin d’un appareil auditif.<span style=\"mso-spacerun: yes;\">  </span>Ne sachant pas trop comment lui en faire part, il a contacté le médecin de famille pour discuter du problème.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le médecin lui a proposé de faire un test informel<span style=\"mso-spacerun: yes;\">  </span>qui pour lui donner un aperçu de sa perte auditive.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Voici ce que tu dois faire », lui a dit le médecin, reste à environ 40 pieds d’elle et parle-lui d’un ton normal et vois si elle t’entend.<span style=\"mso-spacerun: yes;\">  </span>Sinon, avance toi à 30 pieds, puis à 20, jusqu’au moment qu’elle te réponde ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Ce soir là, sa femme était en train de préparer le souper dans la cuisine et le mari se trouvait dans la salle à dîner.<span style=\"mso-spacerun: yes;\">  </span>Il s’est dit «  je suis environ à 40 pieds, on va voir ce qui se produira ».<span style=\"mso-spacerun: yes;\">  </span>Alors, d’un ton de voix normal il lui a demandé, « chérie, qu’est-ce que l’on mange pour souper? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Aucune réponse.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le mari s’est rapproché de la cuisine, à environ 30 pieds de sa femme et a répété la question, « chérie, qu’est-ce que l’on mange pour souper? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Encore aucune réponse.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors avancé <span style=\"mso-spacerun: yes;\"> </span>dans la salle à dîner jusqu’à environ 20 pieds de sa femme et lui posa la question : «chérie, qu’est-ce que l’on mange pour souper? ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Encore une fois aucune réponse.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors avancé jusqu’à la porte de la cuisine, à environ 10 pieds.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Chérie qu’est-ce que l’on mange pour souper? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Encore une fois aucune réponse.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors marché jusqu’à côté d’elle.<span style=\"mso-spacerun: yes;\">  </span>« Chérie, c’est quoi le souper ? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« James pour la cinquième fois, je t’ai dit des fèves de Lima. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le problème n’est pas toujours avec les autres personnes comme nous avons tendance à le croire;<span style=\"mso-spacerun: yes;\">  </span>il fait peut-être partie de nous-mêmes.</span></p>','  C’est peut-être moi le problème et pas les autres.','','publish','closed','closed','','a-problem-may-be-me-not-other','','','2013-10-05 20:50:00','2013-10-06 00:50:00','',79,'http://divyayogamonteregie.org/french/?page_id=179',0,'page','',0),(180,1,'2013-06-10 21:27:00','2013-06-11 01:27:00','<b>\n</b><b>\n</b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.\n\nThe Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.\n\nHere\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"\n\nThat evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"\n\nNo response.\n\nSo the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"\n\nStill no response.\n\nNext he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"\n\nAgain he gets no response.\n\nSo he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"\n\nAgain there is no response.\n\nSo he walks right up behind her. \"Honey, what\'s for dinner?\"\n\n\"James, for the FIFTH time I\'ve said, CHICKEN!\"\n\n<b>The problem may not be with the other person as we always think, could be very much within us!</b>\n\n&nbsp;','A problem may be me not other ','','inherit','closed','closed','','179-revision-v1','','','2013-06-10 21:27:00','2013-06-11 01:27:00','',179,'http://divyayogamonteregie.org/french/?p=180',0,'revision','',0),(376,1,'2013-07-28 14:06:38','2013-07-28 18:06:38','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-revision-v1','','','2013-07-28 14:06:38','2013-07-28 18:06:38','',1,'http://divyayogamonteregie.org/french/?p=376',0,'revision','',0),(372,1,'2013-05-18 19:18:21','2013-05-18 23:18:21','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-revision-v1','','','2013-05-18 19:18:21','2013-05-18 23:18:21','',1,'http://divyayogamonteregie.org/french/?p=372',0,'revision','',0),(373,1,'2013-07-28 14:05:47','2013-07-28 18:05:47','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-revision-v1','','','2013-07-28 14:05:47','2013-07-28 18:05:47','',1,'http://divyayogamonteregie.org/french/?p=373',0,'revision','',0),(374,1,'2013-07-28 14:03:51','2013-07-28 18:03:51','<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p>\r\n<p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\r\n<p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\r\n<p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p>\r\n<p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-07-28 14:03:51','2013-07-28 18:03:51','',2,'http://divyayogamonteregie.org/french/?p=374',0,'revision','',0),(375,1,'2013-07-28 14:07:07','2013-07-28 18:07:07','<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p>\r\n<p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\r\n<p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\r\n<p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p>\r\n<p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-07-28 14:07:07','2013-07-28 18:07:07','',2,'http://divyayogamonteregie.org/french/?p=375',0,'revision','',0),(183,1,'2013-06-10 21:34:11','2013-06-11 01:34:11','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Parfois on oublie…</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">De se rappeler d’être gentil</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Par une belle journée, un vieil homme âgé de 75 ans était assis avec son fils lorsqu’il <span style=\"mso-spacerun: yes;\"> </span>lui demanda ce qu’il y avait sur le bord de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>Il était incapable de distinguer ce qu’il y avait à cause d’un problème de vision.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Son fils lui a répondu : « C’est une corneille. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">À cause de son âge avancé, le vieil homme a oublié la réponse et lui a reposé la même question.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le fils dit à nouveau: « c’est une corneille. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Cet échange a duré environ sept à huit<span style=\"mso-spacerun: yes;\">  </span>minutes lorsque le fils est devenu impatient et lui a répondu avec colère.<span style=\"mso-spacerun: yes;\">  </span>« Pourquoi tu répètes toujours la même question encore et encore ?»</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le vieil homme, les larmes aux yeux, lui<span style=\"mso-spacerun: yes;\">  </span>a dit: « Mon fils ne soit pas en colère.<span style=\"mso-spacerun: yes;\">  </span>À l’âge de 4 ans, tu m’as posé la même question une quarantaine de fois et je ne me suis jamais fâché ».</span></p>','Parfois on oublie…  De se rappeler d’être gentil','','publish','closed','closed','','sometimes-we-forget-remember-to-be-kind','','','2013-10-05 21:14:54','2013-10-06 01:14:54','',79,'http://divyayogamonteregie.org/french/?page_id=183',0,'page','',0),(184,1,'2013-06-10 21:33:36','2013-06-11 01:33:36','<b>Sometimes We Forget... Remember To Be Kind</b>\n\nOn a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.\n\nHis son replied, \"That is the crow.\"\n\nDue to his age, the older man forgot and asked again.\n\nHis son again replied the same thing, \"That is the crow.\"\n\nThis exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"\n\nThe old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry','','','inherit','closed','closed','','183-revision-v1','','','2013-06-10 21:33:36','2013-06-11 01:33:36','',183,'http://divyayogamonteregie.org/french/?p=184',0,'revision','',0),(185,1,'2013-06-10 21:35:47','2013-06-11 01:35:47','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Le début d’une nouvelle année</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Trois fermiers s’étaient rencontrés pour évaluer et partager leurs expériences de la dernière année.<span style=\"mso-spacerun: yes;\">  </span>Chacun d’eux possédait et cultivait un terrain de 100 mètres carrés.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">À la fin de la rencontre, le premier fermier a dit : « La situation a été très difficile et le sera davantage l’an prochain ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le second a répliqué : « Tu as parfaitement raison. <span style=\"mso-spacerun: yes;\"> </span>En fait, après avoir travaillé très fort toute l’année, du lever au coucher du soleil, en enlevant toutes les dépenses, <span style=\"mso-spacerun: yes;\"> </span>j’ai seulement récolté 1% de profit . »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Calculant ses chiffres, le premier fermier a répondu : j’estime que mes profits sont identiques aux tiens, c’est-à-dire 1%.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les deux ont regardé le troisième fermier et lui ont demandé : «  Combien de profit <span style=\"mso-spacerun: yes;\"> </span>as-tu fait cette année? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le troisième fermier leur a répondu gentiment : «  Messieurs, avec tout le respect que je vous dois, j’ai<span style=\"mso-spacerun: yes;\">  </span>eu un profit de 5% cette année. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa réponse fut suivie d’un long moment de silence…</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Comment? <span style=\"mso-spacerun: yes;\"> </span>5 % de profit ?<span style=\"mso-spacerun: yes;\">  </span>C’est impossible !!! Comment as-tu fait??? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Très facile , avec un simple calcul de base » a répondu le premier fermier.<span style=\"mso-spacerun: yes;\">  </span>«  J’ai fait le même 1% de profit tout comme vous…plus le 4% qui représente l’immense plaisir à apprécier le paysage, à <span style=\"mso-spacerun: yes;\"> </span>traire mes vaches et d’être bien dans ma ferme.<span style=\"mso-spacerun: yes;\">  </span>Ce qui donne un profit total de 5%. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La morale de cette histoire : Chacun de nous doit prendre soin de sa ferme (correspondant <span style=\"mso-spacerun: yes;\"> </span>à 10 pieds carrés) afin de recevoir le maximum de profit tout en appréciant chaque moment de notre travail et de notre vie.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','Le début d’une nouvelle année','','publish','closed','closed','','beginning-a-new-year','','','2013-10-05 21:09:48','2013-10-06 01:09:48','',79,'http://divyayogamonteregie.org/french/?page_id=185',0,'page','',0),(186,1,'2013-06-10 21:35:22','2013-06-11 01:35:22','Three farmers gathered to evaluate and share their experiences from 2008. Each had a square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for 2009.\"\n\nThe second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"\n\nCalculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"\n\nThe two of them looked at the third farmer and asked, \"How much profit did you make during 2008?\"\n\nThe third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during 2008.\"\n\nThat was followed by a long silence...\n\n\"How come? 5% profit?? That is impossible!!!! How did you do that???\"\n\n\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"\n\n<b>Moral Of the Story:</b> All of us have to take care of our farm (that is our square meter in this 2009) and get the maximum profit while enjoying every instant of our lives and work!!!','Beginning A New Year','','inherit','closed','closed','','185-revision-v1','','','2013-06-10 21:35:22','2013-06-11 01:35:22','',185,'http://divyayogamonteregie.org/french/?p=186',0,'revision','',0),(187,1,'2013-06-10 21:38:21','2013-06-11 01:38:21','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"><span style=\"mso-spacerun: yes;\">  </span></span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il était une fois un <span style=\"mso-spacerun: yes;\"> </span>riche roi qui avait quatre femmes.<span style=\"mso-spacerun: yes;\">  </span>Il aimait beaucoup la quatrième femme et la ornait de belles robes et la traitait avec délicatesse.<span style=\"mso-spacerun: yes;\">  </span>Il ne lui donnait que ce qu’il y avait de mieux.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il aimait aussi beaucoup sa troisième femme et l’exhibait aux royaumes avoisinants. Cependant il craignait qu’un jour elle le quitte pour un autre.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il aimait aussi sa seconde femme.<span style=\"mso-spacerun: yes;\">  </span>Elle était sa confidente, toujours gentille, attentionnée et patiente avec lui.<span style=\"mso-spacerun: yes;\">  </span>Peu importe le problème qu’il avait, il pouvait se confier à elle afin qu’elle l’aide à surmonter ses difficultés.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa première femme était très fidèle et avait beaucoup contribué au maintien de sa richesse et de son royaume.<span style=\"mso-spacerun: yes;\">  </span>Cependant, il ne l’aimait pas malgré l’amour inconditionnel qu’elle lui vouait.<span style=\"mso-spacerun: yes;\">   </span>Il lui portait peu d’attention. </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un jour le roi est tombé malade et il savait qu’il ne lui restait plus longtemps à vivre.<span style=\"mso-spacerun: yes;\">  </span>Alors il demanda à sa quatrième femme : « Je t’ai aimé, je t’ai procuré <span style=\"mso-spacerun: yes;\"> </span>de très beaux vêtements et j’ai bien pris soin de toi.<span style=\"mso-spacerun: yes;\">  </span>Maintenant que je vais mourir, veux-tu me suivre? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Il n’en est pas question » qu’elle lui répondit et s’en alla s’en dire un mot.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa réponse a été comme un couteau droit au cœur.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le triste roi a demandé à sa troisième femme : « Je t’ai aimé toute ma vie.<span style=\"mso-spacerun: yes;\">  </span>Maintenant que je vais mourir, veux-tu me suivre et me tenir compagnie? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Non » répondit sa troisième femme.<span style=\"mso-spacerun: yes;\">  </span>« La vie est trop bonne.<span style=\"mso-spacerun: yes;\">  </span>Lorsque vous serez mort, je vais me remarier ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Son cœur se serra et se frigorifia.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors demandé à sa deuxième femme, « Je suis toujours allé vers toi, lorsque j’avais besoin d’aide et tu as toujours été à mes côtés.<span style=\"mso-spacerun: yes;\">  </span>Lorsque je mourrai, est-ce que tu voudras me suivre et me tenir compagnie? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Je suis désolée, je ne peux pas t’aider cette fois-ci » répondit la deuxième femme.<span style=\"mso-spacerun: yes;\">  </span>Tout ce que je peux faire, c’est de t’accompagner jusqu’à ta pierre tombale ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa réponse fut comme un coup de tonnerre et le roi était dévasté.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il entendit alors une voix qui lui dit : « je vais tout laisser et te suivre peu importe ou tu iras ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le roi leva les yeux et découvrit sa première femme.<span style=\"mso-spacerun: yes;\">  </span>Elle était très maigre parce qu’elle souffrait de malnutrition.<span style=\"mso-spacerun: yes;\">  </span>Grandement attristé le roi dit : «  J’aurai dû prendre soin de toi lorsque je le pouvais.. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 4<sup>ème</sup> femme représente notre corps physique.<span style=\"mso-spacerun: yes;\">  </span>Peu importe le temps et l’effort que l’on met à le garder beau, <span style=\"mso-spacerun: yes;\"> </span>il nous quittera un jour.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 3<sup>ème</sup> femme représente nos possessions, notre statut, notre richesse.<span style=\"mso-spacerun: yes;\">  </span>Lorsque nous mourons, tout cela<span style=\"mso-spacerun: yes;\">  </span>ira aux autres.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 2<sup>ème</sup> femme représente notre famille et nos amis. Peu importe leur proximité et leur lien envers nous, <span style=\"mso-spacerun: yes;\"> </span>à notre mort, ils pourront nous accompagner au maximum <span style=\"mso-spacerun: yes;\"> </span>jusqu’à la pierre tombale.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 1<sup>ère</sup> femme représente notre âme, qui est souvent négligée par la poursuite de la richesse, du pouvoir et des plaisirs de l’ego.<span style=\"mso-spacerun: yes;\">  </span>Cependant, notre âme <span style=\"mso-spacerun: yes;\"> </span>nous suivra peu importe où nous irons.<span style=\"mso-spacerun: yes;\">  </span>Alors, il est important dès maintenant de la cultiver, la renforcer et la chérir.<span style=\"mso-spacerun: yes;\">  </span>C’est le plus beau cadeau que nous avons à offrir au monde.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>',' Le roi et ses quatre femmes','','publish','closed','closed','','the-king-with-four-wives','','','2013-10-05 21:32:31','2013-10-06 01:32:31','',79,'http://divyayogamonteregie.org/french/?page_id=187',0,'page','',0),(188,1,'2013-06-10 21:37:52','2013-06-11 01:37:52','<b>The King With Four Wives </b>\n\nOnce upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.\n\nHe also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.\n\nHe also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.\n\nThe king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.\n\nOne day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"\n\n\"No way!\" replied the 4th wife and she walked away without another word.\n\nHer answer cut like a sharp knife right into his heart.\n\n&nbsp;\n\nThe sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"\n\n\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"\n\nHis heart sank and turned cold.\n\nHe then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"\n\n\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"\n\nHer answer came like a bolt of thunder and the King was devastated.\n\nThen a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"\n\nThe king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"\n\nOur 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.\n\nOur 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.\n\nOur 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.\n\nOur 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.\n\n<b>The Rabbit and The Turtle Race </b>\n\nRemember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.\n\nWell, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.\n\nThe race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.\n\nThe Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.\n\nThe Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.\n\nAfter some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.\n\nThe story does not end here.\n\nAfter the first race, the Rabbit learned that he lost it because of his laziness.\n\nAfter second race, the Turtle learned that he lost the race because his opponent was actually good at running.\n\nAfter the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.\n\nThe Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.\n\nWhile running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.\n\n<b>What did they learn?</b>\n\nThey both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.\n\n--- <b>Written in 2008 by Sanjeev Kumar Singh --- India</b>','The king with four wives','','inherit','closed','closed','','187-revision-v1','','','2013-06-10 21:37:52','2013-06-11 01:37:52','',187,'http://divyayogamonteregie.org/french/?p=188',0,'revision','',0),(346,1,'2013-07-09 21:01:39','2013-07-10 01:01:39','<span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Rappelez-vous la fameuse course lapin-tortue (tortue et et le lièvre?)</span>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Nous savons tous qu’à la fin de l’histoire le lièvre n’a pas réussi de gagner la course contre la tortue.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Bien, ce n’est pas exactement la fin de l’histoire .<span style=\"mso-spacerun: yes;\">  </span>Après une défaite cuisante devant la tortue, le lapin décida de faire une autre course.<span style=\"mso-spacerun: yes;\">  </span>Cette fois-ci, <span style=\"mso-spacerun: yes;\"> </span>il décida de ne pas faire de sieste.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La course commença, et rapidement, <span style=\"mso-spacerun: yes;\"> </span>le lièvre était déjà très loin de la vue de la tortue et des spectateurs.<span style=\"mso-spacerun: yes;\">  </span>Cette fois-ci, <span style=\"mso-spacerun: yes;\"> </span>il n’a pas arrêté et a battu la tortue avec un grand écart.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La tortue a perdu la course cette fois-ci, mais elle n’a jamais abandonné. Elle <span style=\"mso-spacerun: yes;\"> </span>a voulu se reprendre en défiant à nouveau le lièvre sur un autre sentier de course.<span style=\"mso-spacerun: yes;\">  </span>Le lièvre, très confiant, a accepté le défi.<span style=\"mso-spacerun: yes;\">  </span>Il connaissait la raison pour laquelle il avait perdu <span style=\"mso-spacerun: yes;\"> </span>la première course : à cause de sa paresse.<span style=\"mso-spacerun: yes;\">  </span>Il avait gagné la seconde course parce qu’il a été capable de travailler son point faible.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La troisième course commença.<span style=\"mso-spacerun: yes;\">  </span>Le lièvre, comme d’habitude, disparu très vite.<span style=\"mso-spacerun: yes;\">  </span>Tout le monde riait de la tortue mais le lièvre n’a pas voulu arrêter pour regarder derrière lui et <span style=\"mso-spacerun: yes;\"> </span>a continué à courir aussi vite qu’il le pouvait.<span style=\"mso-spacerun: yes;\">  </span>Il voulait battre la tortue par une plus grande avance que lors de la dernière course.<span style=\"mso-spacerun: yes;\">  </span>Soudainement, apparut une rivière.<span style=\"mso-spacerun: yes;\">  </span>Il était incapable d’imaginer comment la traverser et il a été obligé d’arrêter.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après un laps de temps, la tortue a atteint la rivière et très confiante,<span style=\"mso-spacerun: yes;\">  </span>elle a plongé.<span style=\"mso-spacerun: yes;\">  </span>Elle a nagé beaucoup plus rapidement que si elle avait couru.<span style=\"mso-spacerun: yes;\">  </span>En peu de temps, elle a traversé la rivière et s’est rendu jusqu’à la ligne d’arrivée pendant que lièvre, impuissant,<span style=\"mso-spacerun: yes;\">  </span>l’a regardé <span style=\"mso-spacerun: yes;\"> </span>gagner la course.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’histoire ne se termine pas là.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après la première course, le lièvre a appris qu’il a perdu par sa paresse.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après la deuxième course, la tortue appris qu’elle a perdu parce que son adversaire était vraiment très bon.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après la troisième course, le lièvre a appris qu’il n’est pas suffisant d’être rapide; il faut aussi utiliser son cerveau pour pouvoir <span style=\"mso-spacerun: yes;\"> </span>terminer la tâche.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le lièvre et la tortue décidèrent de courir à nouveau.<span style=\"mso-spacerun: yes;\">  </span>Cette fois-ci ils ne faisaient que courir, pas de course.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Pendant qu’ils couraient,<span style=\"mso-spacerun: yes;\">  </span>jusqu’à ce qu’ils atteignent la rivière, le lièvre a transporté la tortue sur son dos.<span style=\"mso-spacerun: yes;\">  </span>Lorsqu’il a fallu traverser la rivière, la tortue a transporté le lapin sur son dos.<span style=\"mso-spacerun: yes;\">  </span>Après avoir traversé la rivière, le lièvre a de nouveau mis la tortue sur son dos et les deux sont arrivés au fil d’arrivée en un temps record.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Qu’ont-ils appris?</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Ils ont tous deux appris qu’en travaillant en équipe ils pourraient terminer la tâche beaucoup plus rapidement et pourraient tous les deux<span style=\"mso-spacerun: yes;\">  </span>profiter de la récompense.<span style=\"mso-spacerun: yes;\">  </span>Lorsqu’ils étaient en compétition l’un contre l’autre, seulement un des deux pouvait gagner en perdant beaucoup de temps et d’énergie.</span></p>\r\ntime &amp; energy.','  La course entre le lapin et la tortue','','publish','closed','closed','','the-rabbit-and-the-turtle-race','','','2013-10-05 21:39:27','2013-10-06 01:39:27','',79,'http://divyayogamonteregie.org/french/?page_id=346',0,'page','',0),(189,1,'2013-10-05 21:31:47','2013-10-06 01:31:47','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"><span style=\"mso-spacerun: yes;\">  </span></span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il était une fois un <span style=\"mso-spacerun: yes;\"> </span>riche roi qui avait quatre femmes.<span style=\"mso-spacerun: yes;\">  </span>Il aimait beaucoup la quatrième femme et la ornait de belles robes et la traitait avec délicatesse.<span style=\"mso-spacerun: yes;\">  </span>Il ne lui donnait que ce qu’il y avait de mieux.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il aimait aussi beaucoup sa troisième femme et l’exhibait aux royaumes avoisinants. Cependant il craignait qu’un jour elle le quitte pour un autre.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il aimait aussi sa seconde femme.<span style=\"mso-spacerun: yes;\">  </span>Elle était sa confidente, toujours gentille, attentionnée et patiente avec lui.<span style=\"mso-spacerun: yes;\">  </span>Peu importe le problème qu’il avait, il pouvait se confier à elle afin qu’elle l’aide à surmonter ses difficultés.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa première femme était très fidèle et avait beaucoup contribué au maintien de sa richesse et de son royaume.<span style=\"mso-spacerun: yes;\">  </span>Cependant, il ne l’aimait pas malgré l’amour inconditionnel qu’elle lui vouait.<span style=\"mso-spacerun: yes;\">   </span>Il lui portait peu d’attention. </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un jour le roi est tombé malade et il savait qu’il ne lui restait plus longtemps à vivre.<span style=\"mso-spacerun: yes;\">  </span>Alors il demanda à sa quatrième femme : « Je t’ai aimé, je t’ai procuré <span style=\"mso-spacerun: yes;\"> </span>de très beaux vêtements et j’ai bien pris soin de toi.<span style=\"mso-spacerun: yes;\">  </span>Maintenant que je vais mourir, veux-tu me suivre? »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Il n’en est pas question » qu’elle lui répondit et s’en alla s’en dire un mot.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa réponse a été comme un couteau droit au cœur.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le triste roi a demandé à sa troisième femme : « Je t’ai aimé toute ma vie.<span style=\"mso-spacerun: yes;\">  </span>Maintenant que je vais mourir, veux-tu me suivre et me tenir compagnie? »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Non » répondit sa troisième femme.<span style=\"mso-spacerun: yes;\">  </span>« La vie est trop bonne.<span style=\"mso-spacerun: yes;\">  </span>Lorsque vous serez mort, je vais me remarier ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Son cœur se serra et se frigorifia.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors demandé à sa deuxième femme, « Je suis toujours allé vers toi, lorsque j’avais besoin d’aide et tu as toujours été à mes côtés.<span style=\"mso-spacerun: yes;\">  </span>Lorsque je mourrai, est-ce que tu voudras me suivre et me tenir compagnie? »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Je suis désolée, je ne peux pas t’aider cette fois-ci » répondit la deuxième femme.<span style=\"mso-spacerun: yes;\">  </span>Tout ce que je peux faire, c’est de t’accompagner jusqu’à ta pierre tombale ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa réponse fut comme un coup de tonnerre et le roi était dévasté.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il entendit alors une voix qui lui dit : « je vais tout laisser et te suivre peu importe ou tu iras ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le roi leva les yeux et découvrit sa première femme.<span style=\"mso-spacerun: yes;\">  </span>Elle était très maigre parce qu’elle souffrait de malnutrition.<span style=\"mso-spacerun: yes;\">  </span>Grandement attristé le roi dit : «  J’aurai dû prendre soin de toi lorsque je le pouvais.. »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 4<sup>ème</sup> femme représente notre corps physique.<span style=\"mso-spacerun: yes;\">  </span>Peu importe le temps et l’effort que l’on met à le garder beau, <span style=\"mso-spacerun: yes;\"> </span>il nous quittera un jour.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 3<sup>ème</sup> femme représente nos possessions, notre statut, notre richesse.<span style=\"mso-spacerun: yes;\">  </span>Lorsque nous mourons, tout cela<span style=\"mso-spacerun: yes;\">  </span>ira aux autres.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 2<sup>ème</sup> femme représente notre famille et nos amis. Peu importe leur proximité et leur lien envers nous, <span style=\"mso-spacerun: yes;\"> </span>à notre mort, ils pourront nous accompagner au maximum <span style=\"mso-spacerun: yes;\"> </span>jusqu’à la pierre tombale.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 1<sup>ère</sup> femme représente notre âme, qui est souvent négligée par la poursuite de la richesse, du pouvoir et des plaisirs de l’ego.<span style=\"mso-spacerun: yes;\">  </span>Cependant, notre âme <span style=\"mso-spacerun: yes;\"> </span>nous suivra peu importe où nous irons.<span style=\"mso-spacerun: yes;\">  </span>Alors, il est important dès maintenant de la cultiver, la renforcer et la chérir.<span style=\"mso-spacerun: yes;\">  </span>C’est le plus beau cadeau que nous avons à offrir au monde.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>',' Le roi et ses quatre femmes','','inherit','closed','closed','','187-autosave-v1','','','2013-10-05 21:31:47','2013-10-06 01:31:47','',187,'http://divyayogamonteregie.org/french/?p=189',0,'revision','',0),(345,1,'2013-06-10 21:38:21','2013-06-11 01:38:21','Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.\r\n\r\nHe also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.\r\n\r\nHe also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.\r\n\r\nThe king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.\r\n\r\nOne day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"\r\n\r\n\"No way!\" replied the 4th wife and she walked away without another word.\r\n\r\nHer answer cut like a sharp knife right into his heart.\r\n\r\n&nbsp;\r\n\r\nThe sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"\r\n\r\n\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"\r\n\r\nHis heart sank and turned cold.\r\n\r\nHe then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"\r\n\r\n\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"\r\n\r\nHer answer came like a bolt of thunder and the King was devastated.\r\n\r\nThen a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"\r\n\r\nThe king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"\r\n\r\nOur 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.\r\n\r\nOur 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.\r\n\r\nOur 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.\r\n\r\nOur 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.\r\n\r\n<b>The Rabbit and The Turtle Race </b>\r\n\r\nRemember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.\r\n\r\nWell, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.\r\n\r\nThe race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.\r\n\r\nThe Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.\r\n\r\nThe Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.\r\n\r\nAfter some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.\r\n\r\nThe story does not end here.\r\n\r\nAfter the first race, the Rabbit learned that he lost it because of his laziness.\r\n\r\nAfter second race, the Turtle learned that he lost the race because his opponent was actually good at running.\r\n\r\nAfter the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.\r\n\r\nThe Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.\r\n\r\nWhile running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.\r\n\r\n<b>What did they learn?</b>\r\n\r\nThey both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.\r\n\r\n--- <b>Written in 2008 by Sanjeev Kumar Singh --- India</b>','The king with four wives','','inherit','closed','closed','','187-revision-v1','','','2013-06-10 21:38:21','2013-06-11 01:38:21','',187,'http://divyayogamonteregie.org/french/?p=345',0,'revision','',0),(190,1,'2013-06-10 21:45:08','2013-06-11 01:45:08','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter  wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"450\" height=\"211\" /></a></p>\r\n<b>De la nourriture végétarienne est servie et partagée chaque dernier Samedi du mois</b>\r\n\r\nLes plats végétariens principaux sont faits par Meera Trivedi cependant les membres de notre communauté de yoga peuvent aussi apporter des aliments/fruits etc… pour le partage.\r\n\r\nLe meilleur choix d’aliments est de type cru. A l’origine, les premiers hommes avaient l’habitude de manger des fruits.\r\n\r\nPar la suite, ils ont inventé le feu et ont commencé à utiliser la cuisson. Cela a donné un goût différent aux aliments qu’ils aimaient et mangeaient. Les aliments cuits ont moins de valeur que les aliments crus parce que leur valeur nutritionnelle est perdue dans la cuisson.\r\n\r\nLe troisième type d’aliments est celui mis en conserve, dans lesquels les industries ajoutent des préservatifs afin d’en conserver la couleur. La nourriture doit être digérée dans notre corps et non pas conservée. Malgré que nous rincions les aliments, les préservatifs ne sont pas enlevés à 100%. Les préservatifs sont néfastes pour notre système. Voilà la raison pour laquelle il est préférable de manger des aliments frais plutôt que de manger des aliments cuits et de chercher à éviter les aliments en conserve qui sont vendus pour des raisons de commodité.\r\n\r\nIl est bon de passer du temps dans la cuisine et de cuisiner de bons aliments nutritifs pour la famille. La nourriture doit avoir beaucoup d’arôme parce que les arômes rafraîchissent l’esprit. Les herbes aromatiques doivent être ajoutées aux aliments après la cuisson dans le but d’avoir leur plein effet. Nous devrions manger moins de sel et réduire/diminuer les sucres transformés. À la place, nous devrions manger différents types de fruits chaque jour.\r\n<p style=\"text-align: justify;\"> </p>','Recettes Végétariennes','','publish','closed','closed','','some-vegetarian-recipes','','','2013-09-17 17:47:29','2013-09-17 21:47:29','',0,'http://divyayogamonteregie.org/french/?page_id=190',0,'page','',0),(191,1,'2013-06-10 21:44:24','2013-06-11 01:44:24','<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\n\nThe vegetarian main dishes are made by Meera Trivedi. The  members of our yoga community also bring food items/fruits etc for sharing.\n\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\n\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\n\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\n\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarianrecipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-10 21:44:24','2013-06-11 01:44:24','',190,'http://divyayogamonteregie.org/french/?p=191',0,'revision','',0),(192,1,'2013-06-10 21:52:51','2013-06-11 01:52:51','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image004.jpg\"><img class=\"aligncenter  wp-image-166\" alt=\"image004\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image004-300x168.jpg\" width=\"600\" height=\"836\" /></a><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"background: none repeat scroll 0% 0% white; text-align: center;\"><span style=\"text-decoration: underline;\"><b><span lang=\"FR\" style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; text-decoration: underline;\">Salade de pommes de terre épicées ou Aloo bhujiya</span></b></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ingrédients:</span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1/2 Kilo de pommes de terre pelée, bouillies et coupées en 8 morceaux</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 à ½ <span style=\"mso-spacerun: yes;\"> </span>cuillère <span style=\"mso-spacerun: yes;\"> </span>de sel.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 cuillère à thé de curcuma</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 à 4 cuillères à thé d’huile végétale. Huile</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 1/2 cuillère de graine de cumin</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Piment fort broyé<span style=\"mso-spacerun: yes;\">  </span>1 1/2 cuillère à thé ou moins</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Asafetida poudre composée<span style=\"mso-spacerun: yes;\">  </span>est égale à la taille d’un pois chiche</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mangue<span style=\"mso-spacerun: yes;\">   </span>Poudre 2 cuillères à thé</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Feuilles de coriandre coupées finement 20 grammes pour garniture.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ou</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Feuilles d’aneth coupées finement.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mettre une casserole sur la cuisinière. Ajouter l’huile selon vos habitudes alimentaires (1 cuillère à thé ou 4 cuillères à thé) ajouter les graines de cumin dans l’huile chaude. Laissez-les brunir. Ajouter l’asafetida et ajouter le curcuma, laisser sa couleur changer un peu. Puis ajouter toutes les pommes de terre dans ce mélange. Ajouter le sel, le piment rouge broyé et la coriandre coupée finement<span style=\"mso-spacerun: yes;\">  </span>et mélanger à la main délicatement jusqu’à ce que tout soit coloré uniformément.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Votre salade est prête à être servie.</span></p>','Salade de pommes de terre épicées ou Aloo bhujiya','','publish','closed','closed','','spicy-potato-salad-or-aloo-bhujiya','','','2013-09-17 19:00:13','2013-09-17 23:00:13','',190,'http://divyayogamonteregie.org/french/?page_id=192',0,'page','',0),(193,1,'2013-06-10 21:52:20','2013-06-11 01:52:20','<strong>Spicy Potato salad or Aloo Bhujiya</strong>\n\n<strong>Ingredients:</strong>\n\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\n\n1 to 1/2 Tea spoon salt.\n\n1 tea spoon turmeric\n\n1 Tea spoon to 4 table spoon vegetable. Oil\n\n1 1/2 teaspoon cumin seed\n\nCrushed hot pepper 1 1/2 tea spoon or less\n\nAsafetida compound powder  is equal to 1 Chick pea\'s size\n\nMango Powder 2 tea spoon\n\n&nbsp;\n\nVery fine ct coriander leaves  20 grams coriander to g arnish.\n\nOr\n\nFine cut dill leaves.\n\n&nbsp;\n\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\n\nYour salad is ready to serve.','Spicy potato salad or Al','','inherit','closed','closed','','192-revision-v1','','','2013-06-10 21:52:20','2013-06-11 01:52:20','',192,'http://divyayogamonteregie.org/french/?p=193',0,'revision','',0),(194,1,'2013-06-10 21:56:22','2013-06-11 01:56:22','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-line-height-alt: 18.0pt; mso-outline-level: 1; background: white;\"><b><span style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-fareast-language: EN-CA;\">Salade de multi grains germés</span></b></p>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image006.jpg\"><img class=\"aligncenter  wp-image-167\" alt=\"image006\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image006-300x168.jpg\" width=\"600\" height=\"242\" /></a><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: left;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Les protéines sont meilleures sous leur forme crue alors la Salade de grains germés est la meilleure salade.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 Grammes de lentilles jaunes entières</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 Grammes de lentilles rouges entières</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 Grammes de lentilles vertes entières </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 Grammes de haricots rouges</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 Grammes de pois chiches</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 grammes de pois chiches Bengal gram</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 grammes d’amandes</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 grammes de haricots noirs</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">200 grammes de raisins </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Feuilles de coriandre ¼ paquet.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ajouter autant de grains que vous le désirez. Mesurer la totalité avec une tasse à mesurer et estimer la quantité. Parce cela<span style=\"mso-spacerun: yes;\">  </span>gonfle jusqu’à 3 fois après la germination.. Alors réduiser ou ajouter pour obtenir la quantité désirée à la fin.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mettre tous les grains, excepté les raisins, dans <span style=\"mso-spacerun: yes;\"> </span>1.1/2 fois le volume de grains dans l’eau. Changer l’eau après 12 heures<span style=\"mso-spacerun: yes;\">  </span>.  Après 24 heures, mettre dans une serviette humide et couvrer-les de tous les coins de sorte qu’il y a peu de pression sur eux. Mettre tout cela dans un pot.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Si possible garder le pot dans un endroit sombre afin que les graines germent dans l’obscurité (sous le sol de manière juste). Ne pas les mettre dans un endroit éclairé. Continuer de les rincer à toutes les 12 heures. De cette façon vous leur donnez de l’eau fraîche qui nettoie pour éviter que la viscosité se développe. Pour une bonne germination cela est nécessaire. Mais si vous l’oubliez pour une période de 36 heures cela est correct aussi.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Selon la saison et la température de la maison .Cela sera bien germé en dedans de<span style=\"mso-spacerun: yes;\">  </span>4 à 7 jours. Cela dépend aussi de la longueur des germinations que vous voulez avoir. Durant l’été si vous les trempez le mercredi vous aurez de bonnes germinations le samedi matin. <span style=\"mso-spacerun: yes;\"> </span>Mais en hiver, si vous les débuter le Lundi Matin<span style=\"mso-spacerun: yes;\">  </span>elles seront prêtes le Samedi Matin.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Lorsque les germinations ont poussé de la façon qui vous convienne, rincer les raisins et mélanger-les avec les grains germés. Et ajouter les feuilles de<span style=\"mso-spacerun: yes;\">  </span>coriandre coupées finement. Vous pouvez ajouter quelques gouttes de jus <span style=\"mso-spacerun: yes;\"> </span>de citron frais aussi.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Pour une germination rapide en hiver, vous pouvez placer le pot au-dessus du réfrigérateur.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Une autre façon de manger les grains germés est de couper un oignon très fin et de l’ajouter au mélange. Ajouter un peu de sel et quelques gouttes de jus de citron frais. Vous pouvez ajouter les feuilles de coriandre mais pas les raisins.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Salade de multi grains germés','','publish','closed','closed','','sprouted-multi-grain-salad','','','2013-09-17 19:03:20','2013-09-17 23:03:20','',190,'http://divyayogamonteregie.org/french/?page_id=194',0,'page','',0),(195,1,'2013-06-10 21:56:10','2013-06-11 01:56:10','Protein is best in raw form So sprouted salad is the best salad.\n\n50 Grams of whole yellow lentil\n\n50 Grams of whole red lentil\n\n50 Grams of whole green lentil\n\n50 Grams of red kidney beans\n\n50 Grams of Chick peas\n\n50 grams of Bengal gram\n\n50 grams of Almond\n\n50 grams of black beans\n\n200 grams of raisins\n\nCoriander leaves ¼ of the bunch.\n\nadd as many grains you like. Measure the total with a measuring cup and estimate the amount. Because it swells up 3 times after sprouting.. So reduce or add the amount you will need at the end.\n\nAll the grains except raisins in 1.1/2 times of grains volume in water. Change the water after 12 hours.   After24 hours  put them in a wet towel and cover them from all around in a manner so that there is little bit of pressure on them too . put this whole thing is a pot.\n\nIf possible keep the pot at a dark place as seeds germinate in dark under the soil so just don’t put them at a well lighted area. Keep them rinsing after 12 hours.  In this way you are providing them fresh water and cleaning if any mucilaginous growth is starting. For good sprouting it is necessary. But if you forget for 36 hours too it is ok.\n\nAccording to season and temperature of your home. It will be well  sprouted within 4 to 7 days.  Depends on how long sprout do you want. In summer if you soak in water on Wednesday you will get good sprouted grains on Saturday morning. But in winter if you do on Monday Morning you will get on Saturday Morning.\n\nWhen it is sprouted the way you want rinse the raisins and mix them with the sprouted grains. And add the coriander levees after cutting very fine. You can add a few drops of fresh lemon juice too.\n\nFor fast sprouting in winter you can put your pot above the fridge.\n\nAnother way of eating the sprouted grains is cut one onion very fine  and mix them. Add a little bit of salt and few drops of fresh lemon juice. You can add coriander leaves but not resins.','Sprouted multi grain Salad','','inherit','closed','closed','','194-revision-v1','','','2013-06-10 21:56:10','2013-06-11 01:56:10','',194,'http://divyayogamonteregie.org/french/?p=195',0,'revision','',0),(197,1,'2013-09-17 18:59:37','2013-09-17 22:59:37','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image004.jpg\"><img class=\"aligncenter  wp-image-166\" alt=\"image004\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image004-300x168.jpg\" width=\"600\" height=\"836\" /></a><!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n</p><p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:10.0pt;\n	font-family:\"Times New Roman\",\"serif\";}\n</style>\n< ![endif]-->\n\n</p><p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n</p><p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:10.0pt;\n	font-family:\"Times New Roman\",\"serif\";}\n</style>\n< ![endif]-->\n\n</p><p class=\"MsoNormal\" style=\"background: none repeat scroll 0% 0% white; text-align: center;\"><span style=\"text-decoration: underline;\"><b><span lang=\"FR\" style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; text-decoration: underline;\">Salade de pommes de terre épicées ou Aloo bhujiya</span></b></span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ingrédients:</span></b></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1/2 Kilo de pommes de terre pelée, bouillies et coupées en 8 morceaux</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 à ½ <span style=\"mso-spacerun: yes;\"> </span>cuillère <span style=\"mso-spacerun: yes;\"> </span>de sel.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 cuillère à thé de curcuma</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 à 4 cuillères à thé d’huile végétale. Huile</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 1/2 cuillère de graine de cumin</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Piment fort broyé<span style=\"mso-spacerun: yes;\">  </span>1 1/2 cuillère à thé ou moins</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Asafetida poudre composée<span style=\"mso-spacerun: yes;\">  </span>est égale à la taille d’un pois chiche</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mangue<span style=\"mso-spacerun: yes;\">   </span>Poudre 2 cuillères à thé</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Feuilles de coriandre coupées finement 20 grammes pour garniture.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ou</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Feuilles d’aneth coupées finement.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mettre une casserole sur la cuisinière. Ajouter l’huile selon vos habitudes alimentaires (1 cuillère à thé ou 4 cuillères à thé) ajouter les graines de cumin dans l’huile chaude. Laissez-les brunir. Ajouter l’asafetida et ajouter le curcuma, laisser sa couleur changer un peu. Puis ajouter toutes les pommes de terre dans ce mélange. Ajouter le sel, le piment rouge broyé et la coriandre coupée finement<span style=\"mso-spacerun: yes;\">  </span>et mélanger à la main délicatement jusqu’à ce que tout soit coloré uniformément.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Votre salade est prête à être servie.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center; line-height: 26.4pt; background: #F9F9F9;\" align=\"center\"><a title=\"Semantic Personal Publishing Platform\" href=\"http://wordpress.org/\"><b><span style=\"font-size: 9.0pt; font-family: \'Helvetica\',\'sans-serif\'; color: #555555; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">Proudly powered by WordPress</span></b></a></p>\n&nbsp;','Salade de pommes de terre épicées ou Aloo bhujiya','','inherit','closed','closed','','192-autosave-v1','','','2013-09-17 18:59:37','2013-09-17 22:59:37','',192,'http://divyayogamonteregie.org/french/?p=197',0,'revision','',0),(198,1,'2013-06-10 21:52:51','2013-06-11 01:52:51','<strong>Ingredients:</strong>\r\n\r\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\r\n\r\n1 to 1/2 Tea spoon salt.\r\n\r\n1 tea spoon turmeric\r\n\r\n1 Tea spoon to 4 table spoon vegetable. Oil\r\n\r\n1 1/2 teaspoon cumin seed\r\n\r\nCrushed hot pepper 1 1/2 tea spoon or less\r\n\r\nAsafetida compound powder  is equal to 1 Chick pea\'s size\r\n\r\nMango Powder 2 tea spoon\r\n\r\n&nbsp;\r\n\r\nVery fine ct coriander leaves  20 grams coriander to g arnish.\r\n\r\nOr\r\n\r\nFine cut dill leaves.\r\n\r\n&nbsp;\r\n\r\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\r\n\r\nYour salad is ready to serve.','Spicy potato salad or Aloo bhujiya ','','inherit','closed','closed','','192-revision-v1','','','2013-06-10 21:52:51','2013-06-11 01:52:51','',192,'http://divyayogamonteregie.org/french/?p=198',0,'revision','',0),(230,1,'2013-06-10 22:04:30','2013-06-11 02:04:30','<a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image002.jpg\"><img class=\"aligncenter size-medium wp-image-165\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image002-300x168.jpg\" width=\"300\" height=\"168\" /></a>\r\n\r\n<strong>Ingredients:</strong>\r\n\r\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\r\n\r\n1 to 1/2 Tea spoon salt.\r\n\r\n1 tea spoon turmeric\r\n\r\n1 Tea spoon to 4 table spoon vegetable. Oil\r\n\r\n1 1/2 teaspoon cumin seed\r\n\r\nCrushed hot pepper 1 1/2 tea spoon or less\r\n\r\nAsafetida compound powder  is equal to 1 Chick pea\'s size\r\n\r\nMango Powder 2 tea spoon\r\n\r\n&nbsp;\r\n\r\nVery fine ct coriander leaves  20 grams coriander to g arnish.\r\n\r\nOr\r\n\r\nFine cut dill leaves.\r\n\r\n&nbsp;\r\n\r\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\r\n\r\nYour salad is ready to serve.','Spicy potato salad or Aloo bhujiya ','','inherit','closed','closed','','192-revision-v1','','','2013-06-10 22:04:30','2013-06-11 02:04:30','',192,'http://divyayogamonteregie.org/french/?p=230',0,'revision','',0),(199,1,'2013-06-10 22:16:33','2013-06-11 02:16:33','','image001','','inherit','closed','closed','','image001','','','2013-06-10 22:16:33','2013-06-11 02:16:33','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image001.jpg',0,'attachment','image/jpeg',0),(200,1,'2013-06-11 19:52:54','2013-06-11 23:52:54','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image008.jpg\"><img class=\"aligncenter  wp-image-163\" alt=\"image008\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image008-300x168.jpg\" width=\"600\" height=\"336\" /></a><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: center;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><b><i><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ingrédients:-</span></span></i></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 tasse de riz Basmati </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 tasses d’eau</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 ½ cuillère à thé de sel</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">100 Grammes de noix d’acajou grillées</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 grosses pommes de terre pelées</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ chou-fleur</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 grosses carottes pelées</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 tasse de petits pois verts<span style=\"mso-spacerun: yes;\">  </span>surgelés</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ cuillère à thé de graines de cumin</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">3-4 piments<span style=\"mso-spacerun: yes;\">  </span>rouges fort séchés coupés en petits morceaux.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 cuillère à thé de curcuma</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 cuillères à table d’huile</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 pincée de <span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span>Asephatida composé</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ bouquet de feuilles de coriandre.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Couper<span style=\"mso-spacerun: yes;\">  </span>chou-fleur, carottes et pommes de terre en morceaux de petites bouchées et rincer les abondamment.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Couper la coriandre en petits morceaux et rincer ensuite en eau profonde parce qu’elle contient de la terre et du sable en eau profonde laisser la et les feuilles vont flotter à la surface.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Rincer 2 fois le riz Basmati à fond. Pour enlever l’excès d’amidon.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mettre la casserole sur la cuisinière.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ajouter l’huile dans la poêle.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Placer le feu à 6</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ajouter les graines de cumin dans l’huile. Quand il tourne un peu brun, ajouter l’asaphatida et le piment rouge séché. Jusqu’à présent les graines de cumin doivent être brun foncé. Maintenant ajouter le curcuma et remuer et ajouter les légumes sauf les pois et la coriandre. Remuer et ajouter le riz, sel, noix d’acajou et 2 tasses d’eau.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Placer le feu élevé et couvrir jusqu’à ébullition. Quand ça bout, tourner le feu <span style=\"mso-spacerun: yes;\"> </span>à 7. Lorsqu’il n’y a plus d’eau dans le<span style=\"mso-spacerun: yes;\">  </span>fond <span style=\"mso-spacerun: yes;\"> </span>, éteigner et couvrer le. 5 minutes plus tard, utiliser une fourchette pour détacher le riz et laisser la vapeur<span style=\"mso-spacerun: yes;\">  </span>s’échapper . De cette façon chaque grain de riz restera séparé. Maintenant ajouter les pois verts congelés et la coriandre et conserver votre poêle à demi-couverte de cette façon la couleur verte va rester<span style=\"mso-spacerun: yes;\">  </span>verte .</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Votre<span style=\"mso-spacerun: yes;\">  </span>taharee est prêt à servir.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Si vous aimez, vous pouvez ajouter des morceaux d’olives noires. Elles vont donner une belle couleur à votre <span style=\"mso-spacerun: yes;\"> </span>Taharee.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">La nourriture a <span style=\"mso-spacerun: yes;\"> </span>4 fonctions.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1. Remplir votre estomac.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2. Vous donner de l’énergie</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">3. Vous rend heureux par son apparence &amp;</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4. Rafraîchit votre humeur par son arôme</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Faites- moi savoir si votre famille a commencé à manger dans la bonne humeur ou pas?</span></p>\r\n&nbsp;\r\n<p style=\"text-align: left;\"></p>','Taharee ou riz Frit ','','publish','closed','closed','','taharee-or-stir-fried-rice','','','2013-09-17 19:08:28','2013-09-17 23:08:28','',190,'http://divyayogamonteregie.org/french/?page_id=200',0,'page','',0),(201,1,'2013-06-11 19:50:12','2013-06-11 23:50:12','Ingrediants:-\n\n1 cup of Basmati rice\n\n2 cups of water\n\n1 ½ tea spoon of salt\n\n100 Grams of roasted Cashew nuts\n\n2 big  peeled potato\n\n½ Cauliflower\n\n2 big peeled Carrot\n\n1 Cup of green frozen  peas\n\n½ tea spoon of Cumin seeds\n\n3-4 Red dried hot pepper cut into small pieces.\n\n1 teaspoon of Turmeric\n\n2 Table Spoon of oil\n\n1 pinch of Asephatida compound\n\n½ bunch of coriander leaves.\n\n&nbsp;\n\nCut cauliflower, carrot and potato  into bite size and rinse them thoroughly.\n\nCut the coriander into fine pieces and rinse then in deep water because it contains soil and sands in deep water the soil and settle and the leaves will float on the surface.\n\nRinse two times basmati rice 2 times thoroughly. To remove excess of starch.\n\n&nbsp;\n\nPut pan on the stove.\n\nAdd oil into the pan.\n\nPut the stove into 6\n\nAdd cumin seeds into the oil. When it turns a little bit of brown add asaphatida and red hot dried pepper. Till now the cumin seeds have to be dark brown. Now add turmeric and stir it and add vegetables except peas and coriander. Stir it and add rice, salt, cashew nuts and 2 cups of water.\n\n&nbsp;\n\nTurn the stove to high and cover it with the lid and let it come to the boil. When it comes to boil turn it to 7. When you see that these is not water in the bottom. Turn it off and cover it . 5 minutes after use the fork to loosen the rice and let the extra vapor go away so that each grain of rice stays separate. Now add frozen peas and  coriander and keep your pot half covered so that The green color stays green.\n\n&nbsp;\n\nYour taharee is ready to be served.\n\nIF you like you can add  cut black olives. They will give a nice color to your Taharee.\n\n&nbsp;\n\nFood has 4 functions.\n\n1. Fill your stomach.\n\n2. Give you energy\n\n3. Make you happy by look &amp;\n\n4. Refresh your mood by aroma\n\nLet me know if your family started eating in happy mood or not?','Taharee or Stir Fried rice','','inherit','closed','closed','','200-revision-v1','','','2013-06-11 19:50:12','2013-06-11 23:50:12','',200,'http://divyayogamonteregie.org/french/?p=201',0,'revision','',0),(202,1,'2013-06-11 19:56:18','2013-06-11 23:56:18','<b><span style=\"text-decoration: underline;\"> </span></b>\r\n<h1><span style=\"text-decoration: underline;\"><b>Urad ou lentilles blanches à l’aneth et gingembre.</b></span></h1>\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><b> </b></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLentilles blanches  250 grammes\r\n\r\nEau 1250 ml (5 fois les lentilles)\r\n\r\nCurcuma 1 cuillère à  thé\r\n\r\nSel  1 ½ cuillère à thé ou au goût\r\n\r\nGingembre râpé 1 ½ pouce\r\n\r\nAneth ¼ pqt  bien lavé en eau profonde ,  coupé fin\r\n\r\nLentilles : rincer  deux fois car vous ne savez pas par combien de mains d’hommes il a passé avant d’être entre vos mains.\r\n\r\nMettre dans une marmite, Ajouter sel, Ajouter curcuma,  Ajouter l’eau, Mettre la marmite sur la cuisinière à feu moyen,Mettre le sifflet  et laisser le sifflet  souffler pendant 2 minutes.Lorsque refroidi, ouvrir la marmite. Ajouter l’aneth et le gingembre.Si vous le désirez, faites sauter avec 1 cuillère d’huile, ¼ cuillère gingembre et ¼ cuillère à thé de piment fort .Sinon, c’est prêt à servir sans avoir à le faire sauter.Celui qui est montré sur la photo est fait avec 3 X fois d’eau au lieu de 5 X fois.\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022.jpg\"><img class=\"aligncenter size-medium wp-image-225\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022-300x168.jpg\" width=\"450\" height=\"252\" /></a></span></b>\r\n\r\n&nbsp;\r\n\r\n.',' Urad ou lentilles blanches a l\'aneth et gingembra.','','publish','closed','closed','','urad-or-white-lentil-with-dill-and-ginger','','','2013-09-17 18:02:29','2013-09-17 22:02:29','',190,'http://divyayogamonteregie.org/french/?page_id=202',0,'page','',0),(203,1,'2013-06-11 19:56:08','2013-06-11 23:56:08','<b><span style=\"text-decoration: underline;\"> </span></b>\n\n&nbsp;\n\nWhite lentil 250 grams\n\nWater 1250 ml (5 times of lentil)\n\nTurmeric 1 tea spoon\n\nSalt 1 ½ tea spoon or according to taste\n\nGrated Ginger 1 ½ inch\n\nFine cut well washed in deep water Dill ¼ bundle/\n\nRinse the lentil twice because you don’t know how man hands it has changed till it is in your hands.\n\nPut it on the cooker\n\nAdd salt\n\nAdd turmeric\n\nAdd water\n\nPut the cooker on stove and put it on medium heat.\n\nLit the whistle to blow for 2 minutes.\n\nWhen it cools open the cooker. Add the dill and ginger.\n\nIf you like stir fry with one spoon of oil ¼ spoon of ginger and ¼ tea spoon of  Hot pepper . If not it is ready to be served without even stir frying.\n\nThe one shown in the picture is with 3 times water  not 5 times.',' Urad or white lentil with di and Ginger.','','inherit','closed','closed','','202-revision-v1','','','2013-06-11 19:56:08','2013-06-11 23:56:08','',202,'http://divyayogamonteregie.org/french/?p=203',0,'revision','',0),(204,1,'2013-06-11 19:58:44','2013-06-11 23:58:44','<p style=\"text-align: center;\">\r\n<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: center;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-line-height-alt: 18.0pt; mso-outline-level: 1; background: white;\"><b><span style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-fareast-language: EN-CA;\">Salade Organique</span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; text-align: center; background: white;\" align=\"center\"><i><span style=\"text-decoration: underline;\"><span style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: green; mso-fareast-language: EN-CA;\">Salade Organique</span></span></i></p>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter  wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"600\" height=\"336\" /></a><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: center;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 boîte de salade Bio</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">5-6 fonds d’artichaut</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1  paquet de tomates cerise</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Demi-oignon coupé en rondelles séparées.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Huile amande 2 cuillères à thé</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Poivre noir 1 cuillère à cuillère à thé</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Sel<span style=\"mso-spacerun: yes;\">   </span>½ cuillère à thé</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Amandes effilées 2 cuillères à soupe</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Salade en morceau 1 tasse</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Piment rouge 1</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Piment jaune<span style=\"mso-spacerun: yes;\">   </span>1</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Rincer la salade en eau profonde 2 fois.  (C’est nécessaire de rincer les salades organiques ou les aliments organiques parce que le fumier organique est généralement fait par les excréments d’animaux ou d’aliments crus). Mettez-le sur une serviette pendant 5 minutes et couvrir toutes les parties afin que l’eau supplémentaire soit absorbée par la serviette. Ajouter les autres ingrédients dans<span style=\"mso-spacerun: yes;\">  </span>un<span style=\"mso-spacerun: yes;\">   </span>bol. La salade est prête à server.</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n&nbsp;','Salade Organique','','publish','closed','closed','','204-2','','','2013-09-17 18:56:23','2013-09-17 22:56:23','',190,'http://divyayogamonteregie.org/french/?page_id=204',0,'page','',0),(205,1,'2013-06-11 19:58:34','2013-06-11 23:58:34','<b>Organic  Salad</b>\n\n1 box of Organic Salad\n\n5-6 Artichoke bottom\n\n1  pack Cherry Tomato\n\nHalf onion cut round and each ring separated.\n\nAlmond oil  2 tea spoon\n\nBlack pepper 1 tea spoon\n\nSalt ½ tea spoon\n\nAlmond chips 2 table spoon\n\nSalary bite size cut 1 cup\n\nRed pigment 1\n\nYellow pigment 1\n\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','.','','inherit','closed','closed','','204-revision-v1','','','2013-06-11 19:58:34','2013-06-11 23:58:34','',204,'http://divyayogamonteregie.org/french/?p=205',0,'revision','',0),(206,1,'2013-09-17 18:55:29','2013-09-17 22:55:29','<p style=\"text-align: center;\"><span style=\"color: #008000;\"><em><span style=\"text-decoration: underline;\">Organic  Salad</span></em></span></p>\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter  wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"600\" height=\"336\" /></a><!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n</p><p style=\"text-align: center;\"><!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:10.0pt;\n	font-family:\"Times New Roman\",\"serif\";}\n</style>\n< ![endif]-->\n\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 boîte de salade Bio</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">5-6 fonds d’artichaut</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1  paquet de tomates cerise</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Demi-oignon coupé en rondelles séparées.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Huile amande 2 cuillères à thé</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Poivre noir 1 cuillère à cuillère à thé</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Sel<span style=\"mso-spacerun: yes;\">   </span>½ cuillère à thé</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Amandes effilées 2 cuillères à soupe</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Salade en morceau 1 tasse</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Piment rouge 1</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Piment jaune<span style=\"mso-spacerun: yes;\">   </span>1</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Rincer la salade en eau profonde 2 fois.  (C’est nécessaire de rincer les salades organiques ou les aliments organiques parce que le fumier organique est généralement fait par les excréments d’animaux ou d’aliments crus). Mettez-le sur une serviette pendant 5 minutes et couvrir toutes les parties afin que l’eau supplémentaire soit absorbée par la serviette. Ajouter les autres ingrédients dans<span style=\"mso-spacerun: yes;\">  </span>un<span style=\"mso-spacerun: yes;\">   </span>bol. La salade est prête à server.</span></p>\n<p style=\"text-align: left;\"></p>\n&nbsp;','Organic Salad','','inherit','closed','closed','','204-autosave-v1','','','2013-09-17 18:55:29','2013-09-17 22:55:29','',204,'http://divyayogamonteregie.org/french/?p=206',0,'revision','',0),(207,1,'2013-06-11 19:58:44','2013-06-11 23:58:44','<b>Organic  Salad</b>\r\n\r\n1 box of Organic Salad\r\n\r\n5-6 Artichoke bottom\r\n\r\n1  pack Cherry Tomato\r\n\r\nHalf onion cut round and each ring separated.\r\n\r\nAlmond oil  2 tea spoon\r\n\r\nBlack pepper 1 tea spoon\r\n\r\nSalt ½ tea spoon\r\n\r\nAlmond chips 2 table spoon\r\n\r\nSalary bite size cut 1 cup\r\n\r\nRed pigment 1\r\n\r\nYellow pigment 1\r\n\r\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','.','','inherit','closed','closed','','204-revision-v1','','','2013-06-11 19:58:44','2013-06-11 23:58:44','',204,'http://divyayogamonteregie.org/french/?p=207',0,'revision','',0),(208,1,'2013-06-11 20:00:46','2013-06-12 00:00:46','<b>Organic  Salad</b>\r\n\r\n1 box of Organic Salad\r\n\r\n5-6 Artichoke bottom\r\n\r\n1  pack Cherry Tomato\r\n\r\nHalf onion cut round and each ring separated.\r\n\r\nAlmond oil  2 tea spoon\r\n\r\nBlack pepper 1 tea spoon\r\n\r\nSalt ½ tea spoon\r\n\r\nAlmond chips 2 table spoon\r\n\r\nSalary bite size cut 1 cup\r\n\r\nRed pigment 1\r\n\r\nYellow pigment 1   <a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter size-medium wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"300\" height=\"168\" /></a>\r\n\r\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','.','','inherit','closed','closed','','204-revision-v1','','','2013-06-11 20:00:46','2013-06-12 00:00:46','',204,'http://divyayogamonteregie.org/french/?p=208',0,'revision','',0),(209,1,'2013-06-11 20:12:27','2013-06-12 00:12:27','&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image003.jpg\"><img class=\"aligncenter  wp-image-253\" style=\"border: 1px solid black; margin: 1px;\" alt=\"image003\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image003-300x204.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n<b>Rouleau de biscuit avec confiture</b>\r\n\r\n<b><i><span style=\"text-decoration: underline;\">Ingrédients:</span></i></b>\r\n<p align=\"center\"> </p>\r\n<i>1 paquet de biscuits pour le thé -200 g</i>\r\n\r\n<i>1 paquet de beurre mou 125 g</i>\r\n\r\n<i>1 pot de confiture 300 g</i>\r\n\r\n<i>150 g noix de grenoble hâchées</i>\r\n\r\n<i> Mélanger la confiture avec la moitié des noix hachées.</i>\r\n\r\n<i>Enduire chaque biscuit avec du beurre et de la confiture et coller un à l’autre avec le reste du mélange. </i>\r\n\r\n<i>Envelopper dans du papier aluminium et mettre au réfrigérateur pendant 30 minutes\r\n\r\n</i>\r\n\r\n<i>Une fois que le rouleau commence à se raffermir, le rouler dans le reste des noix de grenoble .</i>\r\n\r\n<i>Nous allons remettre le rouleau quelques heures au réfrigérateur.</i>\r\n\r\n<i> Ce qui est bien, c’est de le préparer en soirée et  le manger le lendemain.</i>','Rouleau de biscuit avec confiture.','','publish','closed','closed','','biscuit-roll-with-jam','','','2013-09-17 18:07:45','2013-09-17 22:07:45','',190,'http://divyayogamonteregie.org/french/?page_id=209',0,'page','',0),(210,1,'2013-06-11 20:11:45','2013-06-12 00:11:45','<b><i><span style=\"text-decoration: underline;\">Ingredients:</span></i></b>\n\n<i>1 package tea biscuits -200 g</i>\n\n<i>1 package butter-soft 125 g</i>\n\n<i>1 jar- jam 300 g</i>\n\n<i>150 g ground walnuts</i>\n\n<i> Blending jam with half the chopped walnuts.</i>\n\n<i>Smear each biscuit with butter and jam and paste the other. With the rest of the mixture and smear countries.\nWrap in foil and put in the fridge for 30 minutes.</i>\n\n<i>Once the roll is tight little roll it in the remaining chopped walnuts.</i>\n\n<i>We\'re going to put the roll a few hours in the refrigerator.</i>\n\n<i> It\'s nice to make in the evening and eat the next day.</i>\n\n&nbsp;\n\n&nbsp;','Biscuit roll with jam','','inherit','closed','closed','','209-revision-v1','','','2013-06-11 20:11:45','2013-06-12 00:11:45','',209,'http://divyayogamonteregie.org/french/?p=210',0,'revision','',0),(211,1,'2013-06-11 20:15:22','2013-06-12 00:15:22','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-line-height-alt: 18.0pt; mso-outline-level: 1; background: white;\"><b><span lang=\"FR\" style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Fèves de Lima (Prebranac)</span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Nom local pour haricot et fèves des pays Balkan</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">ingrédients:</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">450 grammes de grosses fèves de Lima\r\n1kg oignons jaunes en dés\r\n1 tasse huile végétale\r\n2 feuilles de laurier\r\n2 cuillères à table de paprika\r\nSel et poivre</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Laver les fèves et les faire tremper dans l’eau froide toute la nuit.\r\nÉgoutter et rincer, puis placer les fèves dans une poêle et couvrir d’eau.\r\nAjouter le sel et porter à ébullition. Réduire le feu et mijoter de <span style=\"mso-spacerun: yes;\"> </span>1.5 h à\r\n2 <span style=\"mso-spacerun: yes;\"> </span>h .\r\nÉgoutter les fèves et mettre de côté.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Couper les oignons en cubes et les faire frire dans l’huile végétale. Vers la fin de cuisson, ajouter le paprika, sel et poivre. Mélanger les oignons et les fèves de lima et placer dans un plat allant au four et cuire pendant 1 heure à 350 degré.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Les sauces ajoutent du goût au <span style=\"mso-spacerun: yes;\"> </span>plat .<span style=\"mso-spacerun: yes;\">  </span>Alors voici quelques recettes pour rendre vos plats savoureux.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Les sauces ne doivent pas être mangées régulièrement et en grande quantité parce qu’avec le citron nous devons ajouter beaucoup de sel ce qui n’est pas bon. <span style=\"mso-spacerun: yes;\"> </span>Ce type de sauce vous pouvez le garder une semaine au réfrigérateur.</span></p>',' Feves de Lima (Prebranac)','','publish','closed','closed','','lima-beans-prebranac','','','2013-09-17 18:54:05','2013-09-17 22:54:05','',190,'http://divyayogamonteregie.org/french/?page_id=211',0,'page','',0),(212,1,'2013-06-11 20:14:46','2013-06-12 00:14:46','<b></b>Local name for beans and puts Balkan countries\n\ningredients:\n\n450 gr large lima beans\n1kg diced yellow onion\n1 cup vegetable oil\n2 bay leaves\n2 c. tablespoon paprika\nSalt and pepper\n\nWash beans and soak in cold water overnight.\nDrain and rinse, then put the beans in a saucepan and cover with water.\nAdd salt and bring to a boil. Reduce heat and simmer for 1.5 h at\n2 h.\nDrain the beans and set aside.\n\nCut the onions into cubes and fry in vegetable oil. At the end of the\ncooking, add the paprika, salt and pepper. Stir in onion and\nlima beans and place in an ovenproof dish and bake for 1 hour at 350\n\nSauce brings taste in to meals. So here are some recopies for  making your meal  tasty.\n\n&nbsp;\n\nsauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in your refrigerator.','Lima beans (Prebranac)','','inherit','closed','closed','','211-revision-v1','','','2013-06-11 20:14:46','2013-06-12 00:14:46','',211,'http://divyayogamonteregie.org/french/?p=212',0,'revision','',0),(213,1,'2013-06-11 20:27:54','2013-06-12 00:27:54','<b><span lang=\"FR\" style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Différentes sortes de sauces aromatiques ou chatni</span></b>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> Le mot<span style=\"mso-spacerun: yes;\">  </span>Chatni provient du verbe Chatna qui signifie lécher</span></b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">. On le consomme en petite quantité car la plupart des chatni ou sauces sont faites à partir du jus de citron a<b>lors pour enlever son goût aigre</b> nous devons ajouter plus de sel. C’est pourquoi son léchage est mieux <b>par rapport</b> à en manger en grande quantité.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1. Sauce à l’oignon.</span></span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ingrédients</span></span></b><b></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 oignons\r\nJus <span style=\"mso-spacerun: yes;\"> </span>de <span style=\"mso-spacerun: yes;\"> </span>3 <span style=\"mso-spacerun: yes;\"> </span>citrons\r\n½ <span style=\"mso-spacerun: yes;\"> </span>cuillère à thé de sel <span style=\"mso-spacerun: yes;\"> </span>ou au goût\r\n4 piments rouges forts.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Après avoir épluché et coupé, tout mettre au mélangeur avec le jus extraits de 3 citrons. Votre sauce est prête à servir.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2. Sauce à la mangue</span></span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 grosses mangues ( vert <span style=\"mso-spacerun: yes;\"> </span>ou peu mûres)\r\n4 piments verts forts\r\n1 cuillère thé sel\r\n4 cuillère table huile d’olive</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Peler les mangues et retirer les noyaux. Mettre au mélangeur. Ajouter tous les autres ingrédients excepté l’huile. Bien mélanger. Mettre dans une bouteille. Ajouter l’huile d’olive.\r\nVous pouvez ajouter de la menthe pour lui donner une saveur agréable.\r\nSi les mangues sont complètement vertes, vous pouvez ajouter un peu de sucre.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; text-decoration: underline;\">3. Sauce aux arachides.</span></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</span></b></a></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 cuillères à table d’arachides\r\n1/2 cuillère à thé de sel\r\n8 cuillères à tables de yogourt nature\r\n3 poivrons rouges or 1/2 cuillère à thé de poudre de piment rouge.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Passer<span style=\"mso-spacerun: yes;\">  </span>au mélangeur jusqu’à une pâte fine. Votre sauce est prête à servir.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4. Sauce à la coriandre</span></span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=4IZFNI1rGrE</span></b></a><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\r\n</span></span></b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\r\n1 bouquet de coriandre bien coupée et lavée.\r\n3-4 <span style=\"mso-spacerun: yes;\"> </span>piments <span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span>fort</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Jus de 2-3 citrons frais\r\n1/2 <span style=\"mso-spacerun: yes;\">  </span>cuillère <span style=\"mso-spacerun: yes;\"> </span>thé de Sel</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mélanger le sel <span style=\"mso-spacerun: yes;\">  </span>, feuilles de coriandre and jus de citrons dans un mélangeur. Si vous le trouvez trop amer, vous pouvez ajouter plus de jus de citron.\r\nVotre sauce est prête à servir.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">La coriandre est un antiseptique et le citron frais est bon pour le fonctionnement des reins. Les sauces ne doivent pas être consommées régulièrement et en grande quantité parce qu’avec le citron il faut ajouter beaucoup de sel ce qui n’est pas bon. Ce genre de sauce peut être conservée une semaine au réfrigérateur.</span></p>\r\n<p style=\"text-align: center;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">5. Sauce Yogourt </span></span></b><b></b><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ litre de yogourt nature</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼ cuillère thé sel</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼   cuillère thé de poudre de piment fort</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼ cuillère thé de graines de cumin rôties en poudre</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Lorsque vous n’avez pas de sauce et que vous avez besoin de sauce pour manger avec n’importe quoi. Ceci est la sauce la plus rapide à préparer à la maison.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Sur la cuisinière, placer la poêle et ajouter 100 grammes de graines de cumin. Mettre<span style=\"mso-spacerun: yes;\">  </span>à<span style=\"mso-spacerun: yes;\">  </span>feu<span style=\"mso-spacerun: yes;\">  </span>moyen . Les graines vont commencer à faire du bruit, continuer à mélanger jusqu’à ce qu’elles deviennent brunes. Arrêter de les rôtir, arrêter le feu, laisser les continuer de cuire et attendre 5 minutes. Passer les au moulin à café. Conserver les dans un contenant de salière ou poivrière pour un usage quotidien. Toujours conserver les graines de cumin rôties à portée de la main au même endroit que la salière et la poivrière.  </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ceci est la sauce la plus santé que vous pouvez faire en 5 minutes.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> Ajouter le sel, graines de cumin rôties et <span style=\"mso-spacerun: yes;\"> </span>la poudre de piment rouge dans le yogourt, mélangez-les et votre sauce est prête<span style=\"mso-spacerun: yes;\">  </span><span style=\"mso-spacerun: yes;\"> </span>.</span></p>\r\n\r\n<h1 class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span style=\"text-decoration: underline;\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; text-decoration: underline;\">6. Sauce à la menthe ou chatni  </span></b></span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\r\n</span></h1>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=gLwHF7OdeY0</span></a></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Un paquet de feuilles de menthe bien lavées.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 citrons</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 piments forts</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 cuillère thé de sel.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mélanger le tout. Votre sauce est prête pour rafraîchir votre humeur et augmenter votre appétit</span></p>\r\n&nbsp;','Différentes sortes de sauces aromatiques ou chatni','','publish','closed','closed','','different-kind-of-fresh-aromatic-sauses-or-chatni','','','2013-09-17 18:50:43','2013-09-17 22:50:43','',190,'http://divyayogamonteregie.org/french/?page_id=213',0,'page','',0),(214,1,'2013-06-11 20:27:35','2013-06-12 00:27:35','&nbsp;\n\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> of eating in large quantity. \n\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\n\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\n\n2 onions\n3 Lemon juice\n1/2 tea spoon salt or according to your taste\n4 Red hot peppers.\n\n\nAfter peeling and cutting blend all the things into along with the lemon juice\nextracted from 3 lemons. Your sauce is ready to serve.\n\n&nbsp;\n\n&nbsp;\n\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\n\n4 big mangoes ( green pr little bit ripening)\n4 Hot green peppers\n1 tea spoon of salt\n4 table spoon of olive oil\n\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\nYou can add mint into this to give a nice flavor.\nIf mangoes are totally green you can add little bit of sugar.\n\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.</span></b>\n\n<b><span style=\"text-decoration: underline;\"> </span></b>\n\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a> </span></b>\n\n&nbsp;\n\n4 table spoon of peanuts\n1/2 tea spoon of salt\n8 tablespoon of natural plain yogurt\n3 red peppers or 1/2 tea spoon of red pepper powder.\n\nBlend them in blender like fine paste. Your sauce is ready to serve.\n\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce</span></b>\n\n<b><span style=\"text-decoration: underline;\"> </span></b>\n\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\n</span></b>\n1 bunch of coriander leaves well cut and washed.\n3-4 hot pepper\n\n2-3 fresh big lemons juice\n1/2 tea spoon of Salt\n\n\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\ncan add more lemon in it.\nYour sauce is ready to serve.\n\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in\nyour refrigerator.\n\n<b><span style=\"text-decoration: underline;\"> </span></b>\n\n<b><span style=\"text-decoration: underline;\">5. Yogourt sauce</span></b>\n\n<b><span style=\"text-decoration: underline;\"> </span></b>½ l of  plain yogourt\n\n¼ tea spoon of salt\n\n¼   tea spoon of Red hot pepper powder\n\n¼ tea spoon of roasted cumin seeds powder\n\n&nbsp;\n\n&nbsp;\n\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\n\n&nbsp;\n\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\n\n&nbsp;\n\nThis is the healthiest sauce you can make within 5 minutes.\n\n&nbsp;\n\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\n\n&nbsp;\n\n&nbsp;\n\n<b>6. Mint sauce or chatni</b>\n\n&nbsp;\n\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\n\nOne pack of well washed Mint leaves.\n\n2 lemons 4 hot pepper 1 tea spoon salt. All blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-revision-v1','','','2013-06-11 20:27:35','2013-06-12 00:27:35','',213,'http://divyayogamonteregie.org/french/?p=214',0,'revision','',0),(293,1,'2013-06-23 13:47:29','2013-06-23 17:47:29','','20130315_99_2','','inherit','closed','closed','','20130315_99_2','','','2013-06-23 13:47:29','2013-06-23 17:47:29','',25,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20130315_99_2.jpg',0,'attachment','image/jpeg',0),(218,1,'2013-06-15 21:33:21','2013-06-16 01:33:21','','image002','','inherit','closed','closed','','image002-2','','','2013-06-15 21:33:21','2013-06-16 01:33:21','',190,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021.jpg',0,'attachment','image/jpeg',0),(220,1,'2013-06-10 21:45:08','2013-06-11 01:45:08','<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-10 21:45:08','2013-06-11 01:45:08','',190,'http://divyayogamonteregie.org/french/?p=220',0,'revision','',0),(223,1,'2013-06-15 21:38:00','2013-06-16 01:38:00','&nbsp;\r\n\r\n<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 21:38:00','2013-06-16 01:38:00','',190,'http://divyayogamonteregie.org/french/?p=223',0,'revision','',0),(221,1,'2013-06-15 21:36:31','2013-06-16 01:36:31','<a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter size-medium wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"300\" height=\"141\" /></a>\r\n\r\n<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 21:36:31','2013-06-16 01:36:31','',190,'http://divyayogamonteregie.org/french/?p=221',0,'revision','',0),(222,1,'2013-06-15 21:37:30','2013-06-16 01:37:30','<a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter size-medium wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"300\" height=\"141\" /></a>\r\n<p style=\"text-align: justify;\"><b>Vegetarian Food- Served and shared on last Saturday of the month</b></p>\r\n<p style=\"text-align: justify;\">The vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.</p>\r\n<p style=\"text-align: justify;\">The Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time</p>\r\n<p style=\"text-align: justify;\">Then he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.</p>\r\n<p style=\"text-align: justify;\">The third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.</p>\r\n<p style=\"text-align: justify;\">It is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.</p>','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 21:37:30','2013-06-16 01:37:30','',190,'http://divyayogamonteregie.org/french/?p=222',0,'revision','',0),(411,1,'2013-06-15 21:54:59','2013-06-16 01:54:59','<b><span style=\"text-decoration: underline;\"> <a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022.jpg\"><img class=\"aligncenter size-medium wp-image-225\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022-300x168.jpg\" width=\"450\" height=\"252\" /></a></span></b>\r\n\r\n&nbsp;\r\n\r\nWhite lentil 250 grams\r\n\r\nWater 1250 ml (5 times of lentil)\r\n\r\nTurmeric 1 tea spoon\r\n\r\nSalt 1 ½ tea spoon or according to taste\r\n\r\nGrated Ginger 1 ½ inch\r\n\r\nFine cut well washed in deep water Dill ¼ bundle/\r\n\r\nRinse the lentil twice because you don’t know how man hands it has changed till it is in your hands.\r\n\r\nPut it on the cooker\r\n\r\nAdd salt\r\n\r\nAdd turmeric\r\n\r\nAdd water\r\n\r\nPut the cooker on stove and put it on medium heat.\r\n\r\nLit the whistle to blow for 2 minutes.\r\n\r\nWhen it cools open the cooker. Add the dill and ginger.\r\n\r\nIf you like stir fry with one spoon of oil ¼ spoon of ginger and ¼ tea spoon of  Hot pepper . If not it is ready to be served without even stir frying.\r\n\r\nThe one shown in the picture is with 3 times water  not 5 times.',' Urad or white lentil with Dill and Ginger.','','inherit','closed','closed','','202-revision-v1','','','2013-06-15 21:54:59','2013-06-16 01:54:59','',202,'http://divyayogamonteregie.org/french/?p=411',0,'revision','',0),(225,1,'2013-06-15 21:52:49','2013-06-16 01:52:49','','image002','','inherit','closed','closed','','image002-3','','','2013-06-15 21:52:49','2013-06-16 01:52:49','',202,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022.jpg',0,'attachment','image/jpeg',0),(226,1,'2013-06-11 19:56:18','2013-06-11 23:56:18','<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n&nbsp;\r\n\r\nWhite lentil 250 grams\r\n\r\nWater 1250 ml (5 times of lentil)\r\n\r\nTurmeric 1 tea spoon\r\n\r\nSalt 1 ½ tea spoon or according to taste\r\n\r\nGrated Ginger 1 ½ inch\r\n\r\nFine cut well washed in deep water Dill ¼ bundle/\r\n\r\nRinse the lentil twice because you don’t know how man hands it has changed till it is in your hands.\r\n\r\nPut it on the cooker\r\n\r\nAdd salt\r\n\r\nAdd turmeric\r\n\r\nAdd water\r\n\r\nPut the cooker on stove and put it on medium heat.\r\n\r\nLit the whistle to blow for 2 minutes.\r\n\r\nWhen it cools open the cooker. Add the dill and ginger.\r\n\r\nIf you like stir fry with one spoon of oil ¼ spoon of ginger and ¼ tea spoon of  Hot pepper . If not it is ready to be served without even stir frying.\r\n\r\nThe one shown in the picture is with 3 times water  not 5 times.',' Urad or white lentil with Dill and Ginger.','','inherit','closed','closed','','202-revision-v1','','','2013-06-11 19:56:18','2013-06-11 23:56:18','',202,'http://divyayogamonteregie.org/french/?p=226',0,'revision','',0),(227,1,'2013-06-15 21:53:14','2013-06-16 01:53:14','<b><span style=\"text-decoration: underline;\"> <a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022.jpg\"><img class=\"aligncenter size-medium wp-image-225\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022-300x168.jpg\" width=\"300\" height=\"168\" /></a></span></b>\r\n\r\n&nbsp;\r\n\r\nWhite lentil 250 grams\r\n\r\nWater 1250 ml (5 times of lentil)\r\n\r\nTurmeric 1 tea spoon\r\n\r\nSalt 1 ½ tea spoon or according to taste\r\n\r\nGrated Ginger 1 ½ inch\r\n\r\nFine cut well washed in deep water Dill ¼ bundle/\r\n\r\nRinse the lentil twice because you don’t know how man hands it has changed till it is in your hands.\r\n\r\nPut it on the cooker\r\n\r\nAdd salt\r\n\r\nAdd turmeric\r\n\r\nAdd water\r\n\r\nPut the cooker on stove and put it on medium heat.\r\n\r\nLit the whistle to blow for 2 minutes.\r\n\r\nWhen it cools open the cooker. Add the dill and ginger.\r\n\r\nIf you like stir fry with one spoon of oil ¼ spoon of ginger and ¼ tea spoon of  Hot pepper . If not it is ready to be served without even stir frying.\r\n\r\nThe one shown in the picture is with 3 times water  not 5 times.',' Urad or white lentil with Dill and Ginger.','','inherit','closed','closed','','202-revision-v1','','','2013-06-15 21:53:14','2013-06-16 01:53:14','',202,'http://divyayogamonteregie.org/french/?p=227',0,'revision','',0),(228,1,'2013-06-15 21:41:37','2013-06-16 01:41:37','<a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter size-medium wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"300\" height=\"141\" /></a>\r\n\r\n<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 21:41:37','2013-06-16 01:41:37','',190,'http://divyayogamonteregie.org/french/?p=228',0,'revision','',0),(229,1,'2013-06-15 22:01:04','2013-06-16 02:01:04','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter  wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"450\" height=\"211\" /></a></p>\r\n<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 22:01:04','2013-06-16 02:01:04','',190,'http://divyayogamonteregie.org/french/?p=229',0,'revision','',0),(231,1,'2013-06-15 22:08:51','2013-06-16 02:08:51','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image002.jpg\"><img class=\"aligncenter  wp-image-165\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image002-300x168.jpg\" width=\"500\" height=\"242\" /></a></p>\r\n<strong>Ingredients:</strong>\r\n\r\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\r\n\r\n1 to 1/2 Tea spoon salt.\r\n\r\n1 tea spoon turmeric\r\n\r\n1 Tea spoon to 4 table spoon vegetable. Oil\r\n\r\n1 1/2 teaspoon cumin seed\r\n\r\nCrushed hot pepper 1 1/2 tea spoon or less\r\n\r\nAsafetida compound powder  is equal to 1 Chick pea\'s size\r\n\r\nMango Powder 2 tea spoon\r\n\r\n&nbsp;\r\n\r\nVery fine ct coriander leaves  20 grams coriander to g arnish.\r\n\r\nOr\r\n\r\nFine cut dill leaves.\r\n\r\n&nbsp;\r\n\r\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\r\n\r\nYour salad is ready to serve.','Spicy potato salad or Aloo bhujiya ','','inherit','closed','closed','','192-revision-v1','','','2013-06-15 22:08:51','2013-06-16 02:08:51','',192,'http://divyayogamonteregie.org/french/?p=231',0,'revision','',0),(232,1,'2013-09-17 19:02:47','2013-09-17 23:02:47','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:10.0pt;\n	font-family:\"Times New Roman\",\"serif\";}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-line-height-alt: 18.0pt; mso-outline-level: 1; background: white;\"><b><span style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-fareast-language: EN-CA;\">Salade de multi grains germés</span></b></p>\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image006.jpg\"><img class=\"aligncenter  wp-image-167\" alt=\"image006\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image006-300x168.jpg\" width=\"600\" height=\"242\" /></a></p>\n&nbsp;\n\n&nbsp;\n\nP','Salade de multi grains germés','','inherit','closed','closed','','194-autosave-v1','','','2013-09-17 19:02:47','2013-09-17 23:02:47','',194,'http://divyayogamonteregie.org/french/?p=232',0,'revision','',0),(233,1,'2013-06-10 21:56:22','2013-06-11 01:56:22','Protein is best in raw form So sprouted salad is the best salad.\r\n\r\n50 Grams of whole yellow lentil\r\n\r\n50 Grams of whole red lentil\r\n\r\n50 Grams of whole green lentil\r\n\r\n50 Grams of red kidney beans\r\n\r\n50 Grams of Chick peas\r\n\r\n50 grams of Bengal gram\r\n\r\n50 grams of Almond\r\n\r\n50 grams of black beans\r\n\r\n200 grams of raisins\r\n\r\nCoriander leaves ¼ of the bunch.\r\n\r\nadd as many grains you like. Measure the total with a measuring cup and estimate the amount. Because it swells up 3 times after sprouting.. So reduce or add the amount you will need at the end.\r\n\r\nAll the grains except raisins in 1.1/2 times of grains volume in water. Change the water after 12 hours.   After24 hours  put them in a wet towel and cover them from all around in a manner so that there is little bit of pressure on them too . put this whole thing is a pot.\r\n\r\nIf possible keep the pot at a dark place as seeds germinate in dark under the soil so just don’t put them at a well lighted area. Keep them rinsing after 12 hours.  In this way you are providing them fresh water and cleaning if any mucilaginous growth is starting. For good sprouting it is necessary. But if you forget for 36 hours too it is ok.\r\n\r\nAccording to season and temperature of your home. It will be well  sprouted within 4 to 7 days.  Depends on how long sprout do you want. In summer if you soak in water on Wednesday you will get good sprouted grains on Saturday morning. But in winter if you do on Monday Morning you will get on Saturday Morning.\r\n\r\nWhen it is sprouted the way you want rinse the raisins and mix them with the sprouted grains. And add the coriander levees after cutting very fine. You can add a few drops of fresh lemon juice too.\r\n\r\nFor fast sprouting in winter you can put your pot above the fridge.\r\n\r\nAnother way of eating the sprouted grains is cut one onion very fine  and mix them. Add a little bit of salt and few drops of fresh lemon juice. You can add coriander leaves but not resins.','Sprouted multi grain Salad','','inherit','closed','closed','','194-revision-v1','','','2013-06-10 21:56:22','2013-06-11 01:56:22','',194,'http://divyayogamonteregie.org/french/?p=233',0,'revision','',0),(234,1,'2013-09-17 19:07:05','2013-09-17 23:07:05','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image008.jpg\"><img class=\"aligncenter  wp-image-163\" alt=\"image008\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image008-300x168.jpg\" width=\"600\" height=\"336\" /></a><!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n</p><p style=\"text-align: center;\"><!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:10.0pt;\n	font-family:\"Times New Roman\",\"serif\";}\n</style>\n< ![endif]-->\n\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><b><i><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ingrédients:-</span></span></i></b></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 tasse de riz Basmati </span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 tasses d’eau</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 ½ cuillère à thé de sel</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">100 Grammes de noix d’acajou grillées</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 grosses pommes de terre pelées</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ chou-fleur</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 grosses carottes pelées</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 tasse de petits pois verts<span style=\"mso-spacerun: yes;\">  </span>surgelés</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ cuillère à thé de graines de cumin</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">3-4 piments<span style=\"mso-spacerun: yes;\">  </span>rouges fort séchés coupés en petits morceaux.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 cuillère à thé de curcuma</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 cuillères à table d’huile</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 pincée de <span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span>Asephatida composé</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ bouquet de feuilles de coriandre.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Couper<span style=\"mso-spacerun: yes;\">  </span>chou-fleur, carottes et pommes de terre en morceaux de petites bouchées et rincer les abondamment.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Couper la coriandre en petits morceaux et rincer ensuite en eau profonde parce qu’elle contient de la terre et du sable en eau profonde laisser la et les feuilles vont flotter à la surface.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Rincer 2 fois le riz Basmati à fond. Pour enlever l’excès d’amidon.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mettre la casserole sur la cuisinière.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ajouter l’huile dans la poêle.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Placer le feu à 6</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ajouter les graines de cumin dans l’huile. Quand il tourne un peu brun, ajouter l’asaphatida et le piment rouge séché. Jusqu’à présent les graines de cumin doivent être brun foncé. Maintenant ajouter le curcuma et remuer et ajouter les légumes sauf les pois et la coriandre. Remuer et ajouter le riz, sel, noix d’acajou et 2 tasses d’eau.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Placer le feu élevé et couvrir jusqu’à ébullition. Quand ça bout, tourner le feu <span style=\"mso-spacerun: yes;\"> </span>à 7. Lorsqu’il n’y a plus d’eau dans le<span style=\"mso-spacerun: yes;\">  </span>fond <span style=\"mso-spacerun: yes;\"> </span>, éteigner et couvrer le. 5 minutes plus tard, utiliser une fourchette pour détacher le riz et laisser la vapeur<span style=\"mso-spacerun: yes;\">  </span>s’échapper . De cette façon chaque grain de riz restera séparé. Maintenant ajouter les pois verts congelés et la coriandre et conserver votre poêle à demi-couverte de cette façon la couleur verte va rester<span style=\"mso-spacerun: yes;\">  </span>verte .</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Votre<span style=\"mso-spacerun: yes;\">  </span>taharee est prêt à servir.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Si vous aimez, vous pouvez ajouter des morceaux d’olives noires. Elles vont donner une belle couleur à votre <span style=\"mso-spacerun: yes;\"> </span>Taharee.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">La nourriture a <span style=\"mso-spacerun: yes;\"> </span>4 fonctions.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1. Remplir votre estomac.</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2. Vous donner de l’énergie</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">3. Vous rend heureux par son apparence &amp;</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4. Rafraîchit votre humeur par son arôme</span></p>\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Faites- moi savoir si votre famille a commencé à manger dans la bonne humeur ou pas?</span></p>\n&nbsp;\n<p style=\"text-align: left;\"></p>','Taharee ou riz Frit ','','inherit','closed','closed','','200-autosave-v1','','','2013-09-17 19:07:05','2013-09-17 23:07:05','',200,'http://divyayogamonteregie.org/french/?p=234',0,'revision','',0),(235,1,'2013-06-11 19:52:54','2013-06-11 23:52:54','<span style=\"text-decoration: underline;\"><em><strong>Ingredients:-</strong></em></span>\r\n\r\n1 cup of Basmati rice\r\n\r\n2 cups of water\r\n\r\n1 ½ tea spoon of salt\r\n\r\n100 Grams of roasted Cashew nuts\r\n\r\n2 big  peeled potato\r\n\r\n½ Cauliflower\r\n\r\n2 big peeled Carrot\r\n\r\n1 Cup of green frozen  peas\r\n\r\n½ tea spoon of Cumin seeds\r\n\r\n3-4 Red dried hot pepper cut into small pieces.\r\n\r\n1 teaspoon of Turmeric\r\n\r\n2 Table Spoon of oil\r\n\r\n1 pinch of Asephatida compound\r\n\r\n½ bunch of coriander leaves.\r\n\r\n&nbsp;\r\n\r\nCut cauliflower, carrot and potato  into bite size and rinse them thoroughly.\r\n\r\nCut the coriander into fine pieces and rinse then in deep water because it contains soil and sands in deep water the soil and settle and the leaves will float on the surface.\r\n\r\nRinse two times basmati rice 2 times thoroughly. To remove excess of starch.\r\n\r\n&nbsp;\r\n\r\nPut pan on the stove.\r\n\r\nAdd oil into the pan.\r\n\r\nPut the stove into 6\r\n\r\nAdd cumin seeds into the oil. When it turns a little bit of brown add asaphatida and red hot dried pepper. Till now the cumin seeds have to be dark brown. Now add turmeric and stir it and add vegetables except peas and coriander. Stir it and add rice, salt, cashew nuts and 2 cups of water.\r\n\r\n&nbsp;\r\n\r\nTurn the stove to high and cover it with the lid and let it come to the boil. When it comes to boil turn it to 7. When you see that these is not water in the bottom. Turn it off and cover it . 5 minutes after use the fork to loosen the rice and let the extra vapor go away so that each grain of rice stays separate. Now add frozen peas and  coriander and keep your pot half covered so that The green color stays green.\r\n\r\n&nbsp;\r\n\r\nYour taharee is ready to be served.\r\n\r\nIF you like you can add  cut black olives. They will give a nice color to your Taharee.\r\n\r\n&nbsp;\r\n\r\nFood has 4 functions.\r\n\r\n1. Fill your stomach.\r\n\r\n2. Give you energy\r\n\r\n3. Make you happy by look &amp;\r\n\r\n4. Refresh your mood by aroma\r\n\r\nLet me know if your family started eating in happy mood or not?','Taharee or Stir Fried rice','','inherit','closed','closed','','200-revision-v1','','','2013-06-11 19:52:54','2013-06-11 23:52:54','',200,'http://divyayogamonteregie.org/french/?p=235',0,'revision','',0),(236,1,'2013-09-17 18:51:46','2013-09-17 22:51:46','<b><span lang=\"FR\" style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Différentes sortes de sauces aromatiques ou chatni</span></b>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> Le mot<span style=\"mso-spacerun: yes;\">  </span>Chatni provient du verbe Chatna qui signifie lécher</span></b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">. On le consomme en petite quantité car la plupart des chatni ou sauces sont faites à partir du jus de citron a<b>lors pour enlever son goût aigre</b> nous devons ajouter plus de sel. C’est pourquoi son léchage est mieux <b>par rapport</b> à en manger en grande quantité.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1. Sauce à l’oignon.</span></span></b></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ingrédients</span></span></b><b></b></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 oignons\nJus <span style=\"mso-spacerun: yes;\"> </span>de <span style=\"mso-spacerun: yes;\"> </span>3 <span style=\"mso-spacerun: yes;\"> </span>citrons\n½ <span style=\"mso-spacerun: yes;\"> </span>cuillère à thé de sel <span style=\"mso-spacerun: yes;\"> </span>ou au goût\n4 piments rouges forts.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Après avoir épluché et coupé, tout mettre au mélangeur avec le jus extraits de 3 citrons. Votre sauce est prête à servir.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2. Sauce à la mangue</span></span></b></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 grosses mangues ( vert <span style=\"mso-spacerun: yes;\"> </span>ou peu mûres)\n4 piments verts forts\n1 cuillère thé sel\n4 cuillère table huile d’olive</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Peler les mangues et retirer les noyaux. Mettre au mélangeur. Ajouter tous les autres ingrédients excepté l’huile. Bien mélanger. Mettre dans une bouteille. Ajouter l’huile d’olive.\nVous pouvez ajouter de la menthe pour lui donner une saveur agréable.\nSi les mangues sont complètement vertes, vous pouvez ajouter un peu de sucre.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; text-decoration: underline;\">3. Sauce aux arachides.</span></span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</span></b></a></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 cuillères à table d’arachides\n1/2 cuillère à thé de sel\n8 cuillères à tables de yogourt nature\n3 poivrons rouges or 1/2 cuillère à thé de poudre de piment rouge.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Passer<span style=\"mso-spacerun: yes;\">  </span>au mélangeur jusqu’à une pâte fine. Votre sauce est prête à servir.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4. Sauce à la coriandre</span></span></b></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=4IZFNI1rGrE</span></b></a><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\n</span></span></b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\n1 bouquet de coriandre bien coupée et lavée.\n3-4 <span style=\"mso-spacerun: yes;\"> </span>piments <span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span>fort</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Jus de 2-3 citrons frais\n1/2 <span style=\"mso-spacerun: yes;\">  </span>cuillère <span style=\"mso-spacerun: yes;\"> </span>thé de Sel</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mélanger le sel <span style=\"mso-spacerun: yes;\">  </span>, feuilles de coriandre and jus de citrons dans un mélangeur. Si vous le trouvez trop amer, vous pouvez ajouter plus de jus de citron.\nVotre sauce est prête à servir.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">La coriandre est un antiseptique et le citron frais est bon pour le fonctionnement des reins. Les sauces ne doivent pas être consommées régulièrement et en grande quantité parce qu’avec le citron il faut ajouter beaucoup de sel ce qui n’est pas bon. Ce genre de sauce peut être conservée une semaine au réfrigérateur.</span></p>\n<p style=\"text-align: center;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">5. Sauce Yogourt </span></span></b><b></b><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ litre de yogourt nature</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼ cuillère thé sel</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼   cuillère thé de poudre de piment fort</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼ cuillère thé de graines de cumin rôties en poudre</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Lorsque vous n’avez pas de sauce et que vous avez besoin de sauce pour manger avec n’importe quoi. Ceci est la sauce la plus rapide à préparer à la maison.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Sur la cuisinière, placer la poêle et ajouter 100 grammes de graines de cumin. Mettre<span style=\"mso-spacerun: yes;\">  </span>à<span style=\"mso-spacerun: yes;\">  </span>feu<span style=\"mso-spacerun: yes;\">  </span>moyen . Les graines vont commencer à faire du bruit, continuer à mélanger jusqu’à ce qu’elles deviennent brunes. Arrêter de les rôtir, arrêter le feu, laisser les continuer de cuire et attendre 5 minutes. Passer les au moulin à café. Conserver les dans un contenant de salière ou poivrière pour un usage quotidien. Toujours conserver les graines de cumin rôties à portée de la main au même endroit que la salière et la poivrière.  </span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ceci est la sauce la plus santé que vous pouvez faire en 5 minutes.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> Ajouter le sel, graines de cumin rôties et <span style=\"mso-spacerun: yes;\"> </span>la poudre de piment rouge dans le yogourt, mélangez-les et votre sauce est prête<span style=\"mso-spacerun: yes;\">  </span><span style=\"mso-spacerun: yes;\"> </span>.</span></p>\n\n<h1 class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span style=\"text-decoration: underline;\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; text-decoration: underline;\">6. Sauce à la menthe ou chatni  </span></b></span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\n</span></h1>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=gLwHF7OdeY0</span></a></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Un paquet de feuilles de menthe bien lavées.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 citrons</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 piments forts</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 cuillère thé de sel.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mélanger le tout. Votre sauce est prête pour rafraîchir votre humeur et augmenter votre appétit</span></p>\n&nbsp;','Différentes sortes de sauces aromatiques ou chatni','','inherit','closed','closed','','213-autosave-v1','','','2013-09-17 18:51:46','2013-09-17 22:51:46','',213,'http://divyayogamonteregie.org/french/?p=236',0,'revision','',0),(237,1,'2013-06-15 22:09:13','2013-06-16 02:09:13','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image002.jpg\"><img class=\"aligncenter  wp-image-165\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image002-300x168.jpg\" width=\"500\" height=\"242\" /></a></p>\r\n<strong>Ingredients:</strong>\r\n\r\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\r\n\r\n1 to 1/2 Tea spoon salt.\r\n\r\n1 tea spoon turmeric\r\n\r\n1 Tea spoon to 4 table spoon vegetable. Oil\r\n\r\n1 1/2 teaspoon cumin seed\r\n\r\nCrushed hot pepper 1 1/2 tea spoon or less\r\n\r\nAsafetida compound powder  is equal to 1 Chick pea\'s size\r\n\r\nMango Powder 2 tea spoon\r\n\r\n&nbsp;\r\n\r\nVery fine ct coriander leaves  20 grams coriander to g arnish.\r\n\r\nOr\r\n\r\nFine cut dill leaves.\r\n\r\n&nbsp;\r\n\r\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\r\n\r\nYour salad is ready to serve.','Spicy potato salad or Aloo bhujiya ','','inherit','closed','closed','','192-revision-v1','','','2013-06-15 22:09:13','2013-06-16 02:09:13','',192,'http://divyayogamonteregie.org/french/?p=237',0,'revision','',0),(444,1,'2013-06-15 22:28:27','2013-06-16 02:28:27','<h2 align=\"center\"><span style=\"color: #0000ff;\"><em><strong>Believe in Yourself,and Remember that Anything Is Possible</strong></em></span></h2>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Believe in what makes you feel good.</span>\r\n<span style=\"color: #0000ff;\"> Believe in what makes you happy.</span>\r\n<span style=\"color: #0000ff;\"> Believe in the dreams you\'ve always wanted to come true,</span>\r\n<span style=\"color: #0000ff;\"> and give them every chance to.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Life holds no promises to what will come your way.</span>\r\n<span style=\"color: #0000ff;\"> You must search for your own ideals</span>\r\n<span style=\"color: #0000ff;\"> and work towards reaching them.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Life makes no guarantees as to what you\'ll have.</span>\r\n<span style=\"color: #0000ff;\"> It just gives you time to make choices</span>\r\n<span style=\"color: #0000ff;\"> and to take chances</span>\r\n<span style=\"color: #0000ff;\"> and to discover whatever secrets might come your way.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">If you are willing to take the opportunities you are given</span>\r\n<span style=\"color: #0000ff;\"> and utilize the abilities you have,</span>\r\n<span style=\"color: #0000ff;\"> you will constantly fill your life</span>\r\n<span style=\"color: #0000ff;\"> with special moments and unforgettable times.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">No one knows the mysteries of life or its ultimate meaning,</span>\r\n<span style=\"color: #0000ff;\"> but for those who are willing</span>\r\n<span style=\"color: #0000ff;\"> to believe in their dreams and in themselves,</span>\r\n<span style=\"color: #0000ff;\"> life is a precious gift in which anything is possible.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">~ Dena DiIaconi ~</span></p>','Anything Is Possible','','inherit','closed','closed','','53-revision-v1','','','2013-06-15 22:28:27','2013-06-16 02:28:27','',53,'http://divyayogamonteregie.org/french/?p=444',0,'revision','',0),(239,1,'2013-05-09 07:23:52','2013-05-09 11:23:52','<p align=\"center\">Believe in Yourself,and Remember that Anything Is Possible</p>\r\n<p align=\"center\">Believe in what makes you feel good.\r\nBelieve in what makes you happy.\r\nBelieve in the dreams you\'ve always wanted to come true,\r\nand give them every chance to.</p>\r\n<p align=\"center\">Life holds no promisesas to what will come your way.\r\nYou must search for your own ideals\r\nand work towards reaching them.</p>\r\n<p align=\"center\">Life makes no guarantees as to what you\'ll have.\r\nIt just gives you time to make choices\r\nand to take chances\r\nand to discover whatever secrets might come your way.</p>\r\n<p align=\"center\">If you are willing to take the opportunities you are given\r\nand utilize the abilities you have,\r\nyou will constantly fill your life\r\nwith special moments and unforgettable times.</p>\r\n<p align=\"center\">No one knows the mysteries of life or its ultimate meaning,\r\nbut for those who are willing\r\nto believe in their dreams and in themselves,\r\nlife is a precious gift in which anything is possible.</p>\r\n<p align=\"center\">~ Dena DiIaconi ~</p>','Anything Is Possible','','inherit','closed','closed','','53-revision-v1','','','2013-05-09 07:23:52','2013-05-09 11:23:52','',53,'http://divyayogamonteregie.org/french/?p=239',0,'revision','',0),(240,1,'2013-05-09 07:27:22','2013-05-09 11:27:22','<p align=\"center\"><strong>You Can Be Whatever </strong>\r\n<strong> You Want To Be!</strong></p>\r\n<p align=\"center\">There is inside you\r\nall of the potential\r\nto be whatever you want to be,\r\nall of the energy\r\nto do whatever you want to do.</p>\r\n<p align=\"center\">Imagine yourself as you would like to be,\r\ndoing what you want to do,\r\nand each day, take one step\r\ntowards your dream.</p>\r\n<p align=\"center\">And though at times it may seem too\r\ndifficult to continue,\r\nhold on to your dream.</p>\r\n<p align=\"center\">One morning you will awake to find\r\nthat you are the person you dreamed of,\r\ndoing what you wanted to do,\r\nsimply because you had the courage\r\nto believe in your potential\r\nand to hold on to your dream</p>','Be Whatever  You Want To Be !','','inherit','closed','closed','','59-revision-v1','','','2013-05-09 07:27:22','2013-05-09 11:27:22','',59,'http://divyayogamonteregie.org/french/?p=240',0,'revision','',0),(242,1,'2013-06-15 22:30:49','2013-06-16 02:30:49','<p align=\"center\"><span style=\"color: #0000ff;\"><strong>You Can Be Whatever </strong></span>\r\n<span style=\"color: #0000ff;\"> <strong> You Want To Be!</strong></span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">There is inside you</span>\r\n<span style=\"color: #0000ff;\"> all of the potential</span>\r\n<span style=\"color: #0000ff;\"> to be whatever you want to be,</span>\r\n<span style=\"color: #0000ff;\"> all of the energy</span>\r\n<span style=\"color: #0000ff;\"> to do whatever you want to do.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Imagine yourself as you would like to be,</span>\r\n<span style=\"color: #0000ff;\"> doing what you want to do,</span>\r\n<span style=\"color: #0000ff;\"> and each day, take one step</span>\r\n<span style=\"color: #0000ff;\"> towards your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">And though at times it may seem too</span>\r\n<span style=\"color: #0000ff;\"> difficult to continue,</span>\r\n<span style=\"color: #0000ff;\"> hold on to your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">One morning you will awake to find</span>\r\n<span style=\"color: #0000ff;\"> that you are the person you dreamed of,</span>\r\n<span style=\"color: #0000ff;\"> doing what you wanted to do,</span>\r\n<span style=\"color: #0000ff;\"> simply because you had the courage</span>\r\n<span style=\"color: #0000ff;\"> to believe in your potential</span>\r\n<span style=\"color: #0000ff;\"> and to hold on to your dream</span></p>','Be Whatever  You Want To Be !','','inherit','closed','closed','','59-revision-v1','','','2013-06-15 22:30:49','2013-06-16 02:30:49','',59,'http://divyayogamonteregie.org/french/?p=242',0,'revision','',0),(241,1,'2013-06-15 22:30:01','2013-06-16 02:30:01','<p align=\"center\"><span style=\"color: #0000ff;\"><strong>You Can Be Whatever </strong></span>\r\n<span style=\"color: #0000ff;\"> <strong> You Want To Be!</strong></span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">There is inside you</span>\r\n<span style=\"color: #0000ff;\"> all of the potential</span>\r\n<span style=\"color: #0000ff;\"> to be whatever you want to be,</span>\r\n<span style=\"color: #0000ff;\"> all of the energy</span>\r\n<span style=\"color: #0000ff;\"> to do whatever you want to do.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Imagine yourself as you would like to be,</span>\r\n<span style=\"color: #0000ff;\"> doing what you want to do,</span>\r\n<span style=\"color: #0000ff;\"> and each day, take one step</span>\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #0000ff; text-decoration: underline;\"> towards your dream.</span></strong></span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">And though at times it may seem too</span>\r\n<span style=\"color: #0000ff;\"> difficult to continue,</span>\r\n<span style=\"color: #0000ff;\"> hold on to your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">One morning you will awake to find</span>\r\n<span style=\"color: #0000ff;\"> that you are the person you dreamed of,</span>\r\n<span style=\"color: #0000ff;\"> doing what you wanted to do,</span>\r\n<span style=\"color: #0000ff;\"> simply because you had the courage</span>\r\n<span style=\"color: #0000ff;\"> to believe in your potential</span>\r\n<span style=\"color: #0000ff;\"> and to hold on to your dream</span></p>','Be Whatever  You Want To Be !','','inherit','closed','closed','','59-revision-v1','','','2013-06-15 22:30:01','2013-06-16 02:30:01','',59,'http://divyayogamonteregie.org/french/?p=241',0,'revision','',0),(243,1,'2013-06-15 22:42:39','2013-06-16 02:42:39','<p align=\"center\"><span style=\"color: #0000ff;\"><strong>You Can Be Whatever </strong></span>\r\n<span style=\"color: #0000ff;\"> <strong> You Want To Be!</strong></span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">There is inside you</span>\r\n<span style=\"color: #0000ff;\"> all of the potential</span>\r\n<span style=\"color: #0000ff;\"> to be whatever you want to be,</span>\r\n<span style=\"color: #0000ff;\"> all of the energy</span>\r\n<span style=\"color: #0000ff;\"> to do whatever you want to do.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Imagine yourself as you would like to be,</span>\r\n<span style=\"color: #0000ff;\"> doing what you want to do,</span>\r\n<span style=\"color: #0000ff;\"> and each day, take one step</span>\r\n<span style=\"color: #0000ff;\"> towards your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">And though at times it may seem too</span>\r\n<span style=\"color: #0000ff;\"> difficult to continue,</span>\r\n<span style=\"color: #0000ff;\"> hold on to your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">One morning you will awake to find</span>\r\n<span style=\"color: #0000ff;\"> that you are the person you dreamed of,</span>\r\n<span style=\"color: #0000ff;\"> doing what you wanted to do,</span>\r\n<span style=\"color: #0000ff;\"> simply because you had the courage</span>\r\n<span style=\"color: #0000ff;\"> to believe in your potential</span>\r\n<span style=\"color: #0000ff;\"> and to hold on to your dream</span></p>','Be Whatever  You Want To Be !','','inherit','closed','closed','','59-revision-v1','','','2013-06-15 22:42:39','2013-06-16 02:42:39','',59,'http://divyayogamonteregie.org/french/?p=243',0,'revision','',0),(244,1,'2013-06-11 20:01:33','2013-06-12 00:01:33','<b>Organic  Salad</b>\r\n\r\n1 box of Organic Salad\r\n\r\n5-6 Artichoke bottom\r\n\r\n1  pack Cherry Tomato\r\n\r\nHalf onion cut round and each ring separated.\r\n\r\nAlmond oil  2 tea spoon\r\n\r\nBlack pepper 1 tea spoon\r\n\r\nSalt ½ tea spoon\r\n\r\nAlmond chips 2 table spoon\r\n\r\nSalary bite size cut 1 cup\r\n\r\nRed pigment 1\r\n\r\nYellow pigment 1   <a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter size-medium wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"300\" height=\"168\" /></a>\r\n\r\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','Organic Salad','','inherit','closed','closed','','204-revision-v1','','','2013-06-11 20:01:33','2013-06-12 00:01:33','',204,'http://divyayogamonteregie.org/french/?p=244',0,'revision','',0),(246,1,'2013-06-15 22:57:10','2013-06-16 02:57:10','<p style=\"text-align: center;\"><span style=\"color: #008000;\"><em><span style=\"text-decoration: underline;\">Organic  Salad</span></em></span></p>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter  wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n&nbsp;\r\n\r\n1 box of Organic Salad\r\n\r\n5-6 Artichoke bottom\r\n\r\n1  pack Cherry Tomato\r\n\r\nHalf onion cut round and each ring separated.\r\n\r\nAlmond oil  2 tea spoon\r\n\r\nBlack pepper 1 tea spoon\r\n\r\nSalt ½ tea spoon\r\n\r\nAlmond chips 2 table spoon\r\n\r\nSalary bite size cut 1 cup\r\n\r\nRed pigment 1\r\n\r\nYellow pigment 1\r\n\r\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','Organic Salad','','inherit','closed','closed','','204-revision-v1','','','2013-06-15 22:57:10','2013-06-16 02:57:10','',204,'http://divyayogamonteregie.org/french/?p=246',0,'revision','',0),(245,1,'2013-06-15 22:55:11','2013-06-16 02:55:11','<b>Organic  Salad</b>\r\n\r\n<a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter size-medium wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"300\" height=\"168\" /></a>\r\n\r\n&nbsp;\r\n\r\n1 box of Organic Salad\r\n\r\n5-6 Artichoke bottom\r\n\r\n1  pack Cherry Tomato\r\n\r\nHalf onion cut round and each ring separated.\r\n\r\nAlmond oil  2 tea spoon\r\n\r\nBlack pepper 1 tea spoon\r\n\r\nSalt ½ tea spoon\r\n\r\nAlmond chips 2 table spoon\r\n\r\nSalary bite size cut 1 cup\r\n\r\nRed pigment 1\r\n\r\nYellow pigment 1   <a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter size-medium wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"300\" height=\"168\" /></a>\r\n\r\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','Organic Salad','','inherit','closed','closed','','204-revision-v1','','','2013-06-15 22:55:11','2013-06-16 02:55:11','',204,'http://divyayogamonteregie.org/french/?p=245',0,'revision','',0),(249,1,'2013-06-15 23:16:22','2013-06-16 03:16:22','&nbsp;\r\n\r\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> of eating in large quantity.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\r\n\r\n2 onions\r\n3 Lemon juice\r\n1/2 tea spoon salt or according to your taste\r\n4 Red hot peppers.\r\n\r\nAfter peeling and cutting blend all the things into along with the lemon juice\r\nextracted from 3 lemons. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\r\n\r\n4 big mangoes ( green pr little bit ripening)\r\n4 Hot green peppers\r\n1 tea spoon of salt\r\n4 table spoon of olive oil\r\n\r\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\r\nYou can add mint into this to give a nice flavor.\r\nIf mangoes are totally green you can add little bit of sugar.\r\n\r\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a> </span></b>\r\n\r\n&nbsp;\r\n\r\n4 table spoon of peanuts\r\n1/2 tea spoon of salt\r\n8 tablespoon of natural plain yogurt\r\n3 red peppers or 1/2 tea spoon of red pepper powder.\r\n\r\nBlend them in blender like fine paste. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\r\n</span></b>\r\n1 bunch of coriander leaves well cut and washed.\r\n3-4 hot pepper\r\n\r\n2-3 fresh big lemons juice\r\n1/2 tea spoon of Salt\r\n\r\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\r\ncan add more lemon in it.\r\nYour sauce is ready to serve.\r\n\r\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\r\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in\r\nyour refrigerator.\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\">5. Yogourt sauce</span></b>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n&nbsp;\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>½ l of  plain yogourt\r\n\r\n¼ tea spoon of salt\r\n\r\n¼   tea spoon of Red hot pepper powder\r\n\r\n¼ tea spoon of roasted cumin seeds powder\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\r\n\r\n&nbsp;\r\n\r\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\r\n\r\n&nbsp;\r\n\r\nThis is the healthiest sauce you can make within 5 minutes.\r\n\r\n&nbsp;\r\n\r\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>6. Mint sauce or chatni</b>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\r\n\r\nOne pack of well washed Mint leaves.\r\n\r\n2 lemons\r\n\r\n4 hot pepper\r\n\r\n1 tea spoon salt.\r\n\r\nAll blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-revision-v1','','','2013-06-15 23:16:22','2013-06-16 03:16:22','',213,'http://divyayogamonteregie.org/french/?p=249',0,'revision','',0),(247,1,'2013-06-11 20:27:54','2013-06-12 00:27:54','&nbsp;\r\n\r\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> of eating in large quantity. \r\n\r\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\r\n\r\n2 onions\r\n3 Lemon juice\r\n1/2 tea spoon salt or according to your taste\r\n4 Red hot peppers.\r\n\r\n\r\nAfter peeling and cutting blend all the things into along with the lemon juice\r\nextracted from 3 lemons. Your sauce is ready to serve.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\r\n\r\n4 big mangoes ( green pr little bit ripening)\r\n4 Hot green peppers\r\n1 tea spoon of salt\r\n4 table spoon of olive oil\r\n\r\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\r\nYou can add mint into this to give a nice flavor.\r\nIf mangoes are totally green you can add little bit of sugar.\r\n\r\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a> </span></b>\r\n\r\n&nbsp;\r\n\r\n4 table spoon of peanuts\r\n1/2 tea spoon of salt\r\n8 tablespoon of natural plain yogurt\r\n3 red peppers or 1/2 tea spoon of red pepper powder.\r\n\r\nBlend them in blender like fine paste. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\r\n</span></b>\r\n1 bunch of coriander leaves well cut and washed.\r\n3-4 hot pepper\r\n\r\n2-3 fresh big lemons juice\r\n1/2 tea spoon of Salt\r\n\r\n\r\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\r\ncan add more lemon in it.\r\nYour sauce is ready to serve.\r\n\r\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\r\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in\r\nyour refrigerator.\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\">5. Yogourt sauce</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>½ l of  plain yogourt\r\n\r\n¼ tea spoon of salt\r\n\r\n¼   tea spoon of Red hot pepper powder\r\n\r\n¼ tea spoon of roasted cumin seeds powder\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\r\n\r\n&nbsp;\r\n\r\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\r\n\r\n&nbsp;\r\n\r\nThis is the healthiest sauce you can make within 5 minutes.\r\n\r\n&nbsp;\r\n\r\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>6. Mint sauce or chatni</b>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\r\n\r\nOne pack of well washed Mint leaves.\r\n\r\n2 lemons\r\n\r\n4 hot pepper\r\n\r\n1 tea spoon salt.\r\n\r\nAll blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-revision-v1','','','2013-06-11 20:27:54','2013-06-12 00:27:54','',213,'http://divyayogamonteregie.org/french/?p=247',0,'revision','',0),(250,1,'2013-06-15 23:18:37','2013-06-16 03:18:37','&nbsp;\r\n\r\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> of eating in large quantity.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\r\n\r\n2 onions\r\n3 Lemon juice\r\n1/2 tea spoon salt or according to your taste\r\n4 Red hot peppers.\r\n\r\nAfter peeling and cutting blend all the things into along with the lemon juice\r\nextracted from 3 lemons. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\r\n\r\n4 big mangoes ( green pr little bit ripening)\r\n4 Hot green peppers\r\n1 tea spoon of salt\r\n4 table spoon of olive oil\r\n\r\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\r\nYou can add mint into this to give a nice flavor.\r\nIf mangoes are totally green you can add little bit of sugar.\r\n\r\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.\r\n</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a></span></b>\r\n\r\n4 table spoon of peanuts\r\n1/2 tea spoon of salt\r\n8 tablespoon of natural plain yogurt\r\n3 red peppers or 1/2 tea spoon of red pepper powder.\r\n\r\nBlend them in blender like fine paste. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce\r\n</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\r\n</span></b>\r\n1 bunch of coriander leaves well cut and washed.\r\n3-4 hot pepper\r\n\r\n2-3 fresh big lemons juice\r\n1/2 tea spoon of Salt\r\n\r\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\r\ncan add more lemon in it.\r\nYour sauce is ready to serve.\r\n\r\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\r\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in your refrigerator.\r\n\r\n<b><span style=\"text-decoration: underline;\"> 5. Yogourt sauce</span></b>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n<p style=\"text-align: center;\"></p>\r\n<b></b>½ l of  plain yogourt\r\n\r\n¼ tea spoon of salt\r\n\r\n¼   tea spoon of Red hot pepper powder\r\n\r\n¼ tea spoon of roasted cumin seeds powder\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\r\n\r\n&nbsp;\r\n\r\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\r\n\r\n&nbsp;\r\n\r\nThis is the healthiest sauce you can make within 5 minutes.\r\n\r\n&nbsp;\r\n\r\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>6. Mint sauce or chatni</b>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\r\n\r\nOne pack of well washed Mint leaves.\r\n\r\n2 lemons\r\n\r\n4 hot pepper\r\n\r\n1 tea spoon salt.\r\n\r\nAll blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-revision-v1','','','2013-06-15 23:18:37','2013-06-16 03:18:37','',213,'http://divyayogamonteregie.org/french/?p=250',0,'revision','',0),(248,1,'2013-06-15 23:08:41','2013-06-16 03:08:41','&nbsp;\r\n\r\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> of eating in large quantity.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\r\n\r\n2 onions\r\n3 Lemon juice\r\n1/2 tea spoon salt or according to your taste\r\n4 Red hot peppers.\r\n\r\nAfter peeling and cutting blend all the things into along with the lemon juice\r\nextracted from 3 lemons. Your sauce is ready to serve.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\r\n\r\n4 big mangoes ( green pr little bit ripening)\r\n4 Hot green peppers\r\n1 tea spoon of salt\r\n4 table spoon of olive oil\r\n\r\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\r\nYou can add mint into this to give a nice flavor.\r\nIf mangoes are totally green you can add little bit of sugar.\r\n\r\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a> </span></b>\r\n\r\n&nbsp;\r\n\r\n4 table spoon of peanuts\r\n1/2 tea spoon of salt\r\n8 tablespoon of natural plain yogurt\r\n3 red peppers or 1/2 tea spoon of red pepper powder.\r\n\r\nBlend them in blender like fine paste. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\r\n</span></b>\r\n1 bunch of coriander leaves well cut and washed.\r\n3-4 hot pepper\r\n\r\n2-3 fresh big lemons juice\r\n1/2 tea spoon of Salt\r\n\r\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\r\ncan add more lemon in it.\r\nYour sauce is ready to serve.\r\n\r\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\r\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in\r\nyour refrigerator.\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\">5. Yogourt sauce</span></b>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n&nbsp;\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>½ l of  plain yogourt\r\n\r\n¼ tea spoon of salt\r\n\r\n¼   tea spoon of Red hot pepper powder\r\n\r\n¼ tea spoon of roasted cumin seeds powder\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\r\n\r\n&nbsp;\r\n\r\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\r\n\r\n&nbsp;\r\n\r\nThis is the healthiest sauce you can make within 5 minutes.\r\n\r\n&nbsp;\r\n\r\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>6. Mint sauce or chatni</b>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\r\n\r\nOne pack of well washed Mint leaves.\r\n\r\n2 lemons\r\n\r\n4 hot pepper\r\n\r\n1 tea spoon salt.\r\n\r\nAll blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-revision-v1','','','2013-06-15 23:08:41','2013-06-16 03:08:41','',213,'http://divyayogamonteregie.org/french/?p=248',0,'revision','',0),(251,1,'2013-05-09 07:13:29','2013-05-09 11:13:29','Coming soon','Testimony from Participants','','inherit','closed','closed','','31-revision-v1','','','2013-05-09 07:13:29','2013-05-09 11:13:29','',31,'http://divyayogamonteregie.org/french/?p=251',0,'revision','',0),(252,1,'2013-06-15 23:34:40','2013-06-16 03:34:40','<div>\r\n<div>\r\n\r\n<em><span style=\"text-decoration: underline;\"><strong>From volunteers</strong></span></em>\r\n\r\n<em><strong>Monique</strong></em>\r\n\r\nSuite à un accident de voiture survenu il y a plusieurs années, mon corps était dans une souffrance chronique, mon esprit était pris dans des blocages inconscients de perturbations, de découragement, de tourment, de peur, et d’angoisse.  Puis un jour, j’ai fait la découverte du yoga.\r\n\r\nAu début, lors de mes pratiques, je n’arrivais pas à synchroniser les mouvements, mon corps était rigide et tendu,  je n’étais pas concentrée.  Après un certain temps, j’ai abandonné  les cours en me disant que je n’y arriverai jamais, que mon corps ne pouvait pas suivre, j’avais trop mal, je n’avais pas la dextérité  pour faire les postures, ni la flexibilité, l’attention, la concentration, etc., etc.\r\n\r\nUn peu plus tard, j’ai vu une annonce dans le journal qu’il y avait des cours de yoga offerts gratuitement à St-Lambert.  J’ai décidé de faire un autre essai.  Puis voilà  que ma vie s’est transformée.  J’ai commencé le yoga une fois semaine. Après quelques semaines de pratique,  j’ai été approchée par le professeur de yoga pour être bénévole, pour accueillir les gens. J’ai accepté de m’engager dans cette belle aventure dont je fais toujours partie depuis déjà presque 3 ans. Depuis,  j’ai exploré différentes approches de yoga qui m’ont amenée à un changement positif de vie complète.  Une bonne hygiène alimentaire, une flexibilité de mon corps et de mon esprit, de mes attitudes et comportements. J’ai appris à  cultiver le calme mental et ma force vitale intérieure par les exercices de respiration et de méditation. J’ai amélioré mon équilibre mental et physique,  l’écoute de mon corps, ma concentration et ma mémoire, ma coordination et l’acceptation de ce qui est.\r\n\r\nJe vis maintenant mon quotidien dans un mieux-être. Il y a encore place à l’amélioration, mais chaque jour j’intègre un style de vie de yoga qui m’amène de plus en plus à faire l’expérience d’une paix intérieure.\r\n\r\n*****************************<wbr></wbr>******************************<wbr></wbr>******************\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Michel …. 74</strong></span>\r\n\r\nMy duties:-\r\n\r\nTo be always ready to help\r\n\r\nAbout me\r\n\r\nI am a very happy man. I enjoy the company of nice people.\r\n\r\nWhat yoga means to me? How it has affected my life?\r\n\r\nYoga is for me an extraordinary choice of movements and exercices created by people who knew the human body and soul.\r\n\r\nTwo hours of yoga per week complement my daily exercices that I do since 50 years plus. My body appreciate yoga and I feel balanced.\r\n\r\nMarathon Runner\r\n\r\nBénévole (mes tâches)\r\nÊtre toujours prêt à aider\r\n\r\nÀ propos de moi\r\nJe suis un homme très heureux. J\'aime la compagnie des gens sympathiques.\r\n\r\nCe que le yoga signifie pour moi? Comment cela a affecté ma vie?\r\n\r\nLe yoga est pour moi un choix extraordinaire de mouvements et d\'exercices créés par des gens qui connaissaient le corps humain et l\'âme.\r\nDeux heures de yoga par semaine complètent mes exercices quotidiens que je fais depuis 50 ans et plus. Mon corps apprécie le yoga et je me sens équilibrée.\r\n\r\n<strong><span style=\"text-decoration: underline;\"> ******************************<wbr></wbr>******************************<wbr></wbr>******************</span></strong>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Bénévole : Mihaela Frandes</span></strong>\r\n\r\nMon rôle\r\n\r\nJ’arrive chaque samedi matin à 8.30am à l’Académie Chambly pour accueillir les nouvelles personnes. Je leur demande de compléter une fiche d’inscription et leur explique un peu comment se déroulent les cours.\r\n\r\nÀ propos de moi\r\n\r\nJ’ai commencé les cours de yoga offerts par Meera Trivedi et Vinesh Saxena en juin 2010 et depuis j’y suis toujours fidèle J’avoue que le samedi est ma journée de la semaine la plus heureuse. Depuis, je fais du yoga régulièrement. Je suis d’origine roumaine, ma formation est en biochimie et dans la vie quotidienne je me préoccupe beaucoup de ma nutrition et j’aime beaucoup la nature. En été  je fais du vélo et en hiver j’adore faire du ski de fond. J’aime beaucoup aider les gens et le yoga m’aide à accomplir le bonheur dans ma vie. Ma dernière passion est la préparation de pain au levain – faire du bon pain est pour moi un immense plaisir.\r\n\r\n&nbsp;\r\n\r\nQu’est que yoga signifie pour moi. Comment a-t-elle affecte ma vie\r\n\r\nLe yoga a amélioré la flexibilité de mon corps et esprit ainsi que ma santé. J’adore faire du yoga et je sens que le yoga est une marche dans mon évolution.\r\n\r\n&nbsp;\r\n\r\nVolunteer\r\n\r\nMy duties: I came every Saturday morning at 8.30 at Chambly Academy in Saint Lambert to accommodate the new peoples. I give them the form to fill-up and explain a little bit how we function here.\r\n\r\nAbout me: I started the yoga classes given by Meera Trivedi and Vinesh Saxena in July 2010 and since then I do yoga on a regular basis. Saturday is the happiest day of my week. I am Rumanian, I studied biochemistry and I am interested in nutrition, healthy eating, I try to come closer to nature. In summer I do a lot of bike and in winter I love the cross-country sky. I love helping people; yoga is helping me to maintain a happy mood. Now I’m in love with making sourdough bread, making bread makes me happy.\r\n\r\nWhat yoga means for me. How it has affected my life: Yoga gave me a happiness that I cannot explain; friends, a more conscious life, a flexible body, and a healthy body, a clear mind. I love doing yoga, and I am pretty sure that yoga is only a step in my evolution.\r\n\r\n******************************<wbr></wbr>******************************<wbr></wbr>******************\r\n\r\n<span style=\"text-decoration: underline;\"><strong>From other participants</strong></span>\r\n\r\nThis yoga class is a precious time for me. I may arrive out of breath or lacking of energy, or a bit annoyed at my brain « monkey chatter » but I always leave rejuvenated physically, mentally and emotionally. Joining in, I am giving my whole body the royal treatment from head to toes, stretching out the kinks and limbering up muscles and joints I was not aware of. It is quality time I give to myself. When I am there, I have my own space. But there are people around me and I feel I belong, that I am surrounded by positive energy. The space we are in fills, it feels to me, with well being respect, silent communication. Thank you to all who make this possible. I was hooked the first time I went.\r\n\r\n<strong><span style=\"text-decoration: underline;\">Charlene Olse</span></strong>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nJe passais des moments très difficiles suite à un deuil, mon amie m’a conseillé de faire du yoga.\r\n\r\nJ’ai essayé une première séance et je me suis sentie vraiment bien, les mouvements accompagnés de la respiration fluide ont effectivement apaisé mon âme, mon esprit et mon corps et depuis je ne peux rater une séance. Je fais du yoga seule à la maison, mais je m’arrête au bout de 5 minutes, cependant du yoga en groupe avec la belle ambiance, la bonne motivation et l’encouragement de l’entraîneur m’a permis de bien vivre mon deuil et surtout de bien gérer mes sentiments et mes émotions.\r\n\r\nUn grand merci pour ce que vous faites pour le groupe de yoga.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Lynda</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nLe yoga diminue mon stress, assouplit mon corps et lubrifie mes articulations. Certaines positions ou exercices libèrent des structures énergétiques associées à des mémoires antérieures. L’énergie circule plus librement dans mon corps et je me sens revivifié. J’apprécie aussi le fait que ce soit une activité non compétitive.\r\n\r\nJe remercie M. Saxena de sa très grande disponibilité ainsi que toute son équipe de bénévoles.\r\n\r\n<span style=\"text-decoration: underline;\"><strong> Marcel Baril</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nLe yoga m’a apporté beaucoup de paix intérieure. J’aime la combinaison de l’exercice physique et le mental, le rire…. Cela équilibre mon moral, améliore mon corps physique, m’aide à  pratiquer la méditation et la relaxation et surtout à mieux respirer. J’aime beaucoup l’ambiance généreuse, le don de soi des bénévoles. Je crois de plus en plus à la bonté de l’être humain.\r\n\r\nMerci\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Colette</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nMon mari est décédé il y a trois ans. Je fus effondrée. Depuis ce temps je pratique le yoga avec Monsieur Saxena. Cet exercice m’a apporté l’équilibre physique et la paix de l’âme.\r\n\r\nGinette Paradis\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nJe dois remercier Mr et Mme Saxena pout leur dévouement et leur disponibilité  apportés chaque samedi.\r\n\r\nPour moi,ce que j\'aime le plus c\'est bien ses histoires qui m\'amênent a penser positivement,ensuite il y a les exercises\r\n\r\nqui aident a calmer le mental et a controler le stress,c\'est bien.\r\n\r\nMais tant qu\'aux exercises d\'accupressions pour les sinus ,j\'en vois pas d\'effet immédiat, c\'est probablement a long\r\n\r\nterme que l\'effet se fait sentir.\r\n\r\nLes nouveaux mouvements ou exercises sont les bienvenues ,j\'en suis certain, pour la pluparts des participants.\r\n\r\nApres deux heures de participations la position a l\'horizontale (shawaseen)ou repos est très bien appréciée.\r\n\r\nC\'est durant le reste de la journée qu\'on sent une certaine fatigue et qu\'il faut récupérer,en un mot c\'est sûrement\r\n\r\nbénifique pour la santé.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Renald Couture</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>-----------------\r\n\r\nWhat would I do without Yoga? it has helped me to live a fulfilling life!\r\n\r\nWhen I was 12 years old, I was one day about to sit down on a kitchen chair when my brother took it away from underneath me. I fell had on my coccyx and thought nothing more of it, thinking that my pride was hurt more than my back. But by the age of 18 I started getting persistent backaches, and from then on I became a \'back sufferer\'. By the age of 30 I wasn\'t able to wash a kitchen floor or do an hour\'s gardening without a backache for the rest of the day, and few days after. I wasn\'t even sure I could have children with such a bad back, so I did a series of adjustments over a year and a half at a chiropractor\'s, and tried acupuncture. Both helped somewhat, but certainly did not cure my condition. I did have two children and a full time job teaching, but backaches became a fact of life, always there in the background.\r\n\r\nI came across Yoga in my middle 30\'s but never had enough time to pursue it diligently. It was only after I retired that I started doing it seriously, and I now wish I had allowed no excuses to not do it consistently earlier. I now do Yoga for an hour every day, following the type of Mr. Saxena\'s exercises on Saturday mornings, and take exercises out of books. I have never felt better! Today at 68 I feel better that I did at 30. I can now do gardening all day, shovel snow, wash floors, and walk good long walks with no consequent pain. The injury to my back is still there, but my back mussels are now strong enough to support me in my activities.\r\n\r\nDoing the exercises is only part of my Yoga practice. I am careful to eat only food that is nutritious for my body, and I try to keep as much as possible a positive outlook on life.\r\n\r\nYoga is a lifestyle - it takes care of every aspect of one\'s being, and I intend to keep well and healthy to my dying day.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Mary Brunet</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------\r\n\r\n</div>\r\n</div>','Testimony from Participants','','inherit','closed','closed','','31-revision-v1','','','2013-06-15 23:34:40','2013-06-16 03:34:40','',31,'http://divyayogamonteregie.org/french/?p=252',0,'revision','',0),(253,1,'2013-06-16 00:58:25','2013-06-16 04:58:25','','image003','','inherit','closed','closed','','image003','','','2013-06-16 00:58:25','2013-06-16 04:58:25','',209,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image003.jpg',0,'attachment','image/jpeg',0),(254,1,'2013-09-17 18:07:36','2013-09-17 22:07:36','&nbsp;\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image003.jpg\"><img class=\"aligncenter  wp-image-253\" style=\"border: 1px solid black; margin: 1px;\" alt=\"image003\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image003-300x204.jpg\" width=\"600\" height=\"336\" /></a></p>\n<b>Rouleau de biscuit avec confiture</b>\n\n<b><i><span style=\"text-decoration: underline;\">Ingrédients:</span></i></b>\n<p align=\"center\"> </p>\n<i>1 paquet de biscuits pour le thé -200 g</i>\n\n<i>1 paquet de beurre mou 125 g</i>\n\n<i>1 pot de confiture 300 g</i>\n\n<i>150 g noix de grenoble hâchées</i>\n\n<i> Mélanger la confiture avec la moitié des noix hachées.</i>\n\n<i>Enduire chaque biscuit avec du beurre et de la confiture et coller un à l’autre avec le reste du mélange. </i>\n\n<i>Envelopper dans du papier aluminium et mettre au réfrigérateur pendant 30 minutes\n\n</i>\n\n<i>Une fois que le rouleau commence à se raffermir, le rouler dans le reste des noix de grenoble .</i>\n\n<i>Nous allons remettre le rouleau quelques heures au réfrigérateur.</i>\n\n<i> Ce qui est bien, c’est de le préparer en soirée et  le manger le lendemain.</i>','Rouleau de biscuit avec confiture.','','inherit','closed','closed','','209-autosave-v1','','','2013-09-17 18:07:36','2013-09-17 22:07:36','',209,'http://divyayogamonteregie.org/french/?p=254',0,'revision','',0),(255,1,'2013-06-11 20:12:27','2013-06-12 00:12:27','<b><i><span style=\"text-decoration: underline;\">Ingredients:</span></i></b>\r\n\r\n<i>1 package tea biscuits -200 g</i>\r\n\r\n<i>1 package butter-soft 125 g</i>\r\n\r\n<i>1 jar- jam 300 g</i>\r\n\r\n<i>150 g ground walnuts</i>\r\n\r\n<i> Blending jam with half the chopped walnuts.</i>\r\n\r\n<i>Smear each biscuit with butter and jam and paste the other. With the rest of the mixture and smear countries.\r\nWrap in foil and put in the fridge for 30 minutes.</i>\r\n\r\n<i>Once the roll is tight little roll it in the remaining chopped walnuts.</i>\r\n\r\n<i>We\'re going to put the roll a few hours in the refrigerator.</i>\r\n\r\n<i> It\'s nice to make in the evening and eat the next day.</i>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Biscuit roll with jam','','inherit','closed','closed','','209-revision-v1','','','2013-06-11 20:12:27','2013-06-12 00:12:27','',209,'http://divyayogamonteregie.org/french/?p=255',0,'revision','',0),(291,1,'2013-06-19 18:38:41','2013-06-19 22:38:41','','Divya Yoga Monteregie','','inherit','closed','closed','','banner_aum','','','2013-06-19 18:38:41','2013-06-19 22:38:41','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/banner_aum.jpg',0,'attachment','image/jpeg',0),(292,1,'2013-06-19 18:40:06','2013-06-19 22:40:06','http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/cropped-banner_aum1.jpg','cropped-banner_aum1.jpg','','inherit','closed','closed','','cropped-banner_aum1-jpg','','','2013-06-19 18:40:06','2013-06-19 22:40:06','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/cropped-banner_aum1.jpg',0,'attachment','image/jpeg',0),(294,1,'2013-06-23 13:50:35','2013-06-23 17:50:35','','20130601_99_1','','inherit','closed','closed','','20130601_99_1','','','2013-06-23 13:50:35','2013-06-23 17:50:35','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20130601_99_1.jpg',0,'attachment','image/jpeg',0),(295,1,'2013-06-23 13:57:17','2013-06-23 17:57:17','','Meera\'s kitchen','','inherit','closed','closed','','meeras-kitchen','','','2013-06-23 13:57:17','2013-06-23 17:57:17','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/Meeras-kitchen.jpg',0,'attachment','image/jpeg',0),(297,1,'2013-05-08 21:19:24','2013-05-08 21:19:24','<strong>Vinesh Saxena</strong> is yoga instructor trained by Patanjali yoga peeth. He has been practicing yoga since his childhood. Mr. Saxena is “self made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarship while he was student. He holds a Masters degree in Engineering and Masters in business administration along with an Accounting designation. He has worked a long time in engineering and has taught on part time basis in Concordia and McGill universities.\r\n\r\nHe retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his web site of foundation he also describes “Seven simple principals of life” if people follow these principals they can gain control of their life, be happy and self sufficient beings.\r\n\r\nAs a second objective of the foundation he also challenges to find answers to unanswered questions. i.e. “is there a soul” “Is there life after death”  “Does God exist”\r\n\r\nWith continuing theme of “help the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people.\r\n\r\n&nbsp;\r\n\r\n<strong>Meera Trivedi</strong> is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.\r\n\r\nShe believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.','Instructors','','inherit','closed','closed','','6-revision-v1','','','2013-05-08 21:19:24','2013-05-08 21:19:24','',6,'http://divyayogamonteregie.org/french/?p=297',0,'revision','',0),(266,1,'2013-06-19 17:38:39','2013-06-19 21:38:39','','20121123_48','','inherit','closed','closed','','20121123_48','','','2013-06-19 17:38:39','2013-06-19 21:38:39','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_48.jpg',0,'attachment','image/jpeg',0),(267,1,'2013-06-19 17:38:53','2013-06-19 21:38:53','','20121123_50','','inherit','closed','closed','','20121123_50','','','2013-06-19 17:38:53','2013-06-19 21:38:53','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_50.jpg',0,'attachment','image/jpeg',0),(268,1,'2013-06-19 17:39:24','2013-06-19 21:39:24','','20121123_49','','inherit','closed','closed','','20121123_49','','','2013-06-19 17:39:24','2013-06-19 21:39:24','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_49.jpg',0,'attachment','image/jpeg',0),(269,1,'2013-06-19 17:39:37','2013-06-19 21:39:37','','20121123_51','','inherit','closed','closed','','20121123_51','','','2013-06-19 17:39:37','2013-06-19 21:39:37','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_51.jpg',0,'attachment','image/jpeg',0),(270,1,'2013-06-19 17:39:49','2013-06-19 21:39:49','','20121123_46','','inherit','closed','closed','','20121123_46','','','2013-06-19 17:39:49','2013-06-19 21:39:49','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_46.jpg',0,'attachment','image/jpeg',0),(271,1,'2013-06-19 17:40:03','2013-06-19 21:40:03','','Bien se nourrir','','inherit','closed','closed','','20121123_44','','','2013-06-19 17:40:03','2013-06-19 21:40:03','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_44.jpg',0,'attachment','image/jpeg',0),(272,1,'2013-06-19 17:40:17','2013-06-19 21:40:17','','20121123_40','','inherit','closed','closed','','20121123_40','','','2013-06-19 17:40:17','2013-06-19 21:40:17','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_40.jpg',0,'attachment','image/jpeg',0),(273,1,'2013-06-19 17:40:32','2013-06-19 21:40:32','','20121123_39','','inherit','closed','closed','','20121123_39','','','2013-06-19 17:40:32','2013-06-19 21:40:32','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_39.jpg',0,'attachment','image/jpeg',0),(274,1,'2013-06-19 17:40:47','2013-06-19 21:40:47','','20121123_41','','inherit','closed','closed','','20121123_41','','','2013-06-19 17:40:47','2013-06-19 21:40:47','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_41.jpg',0,'attachment','image/jpeg',0),(275,1,'2013-06-19 17:41:07','2013-06-19 21:41:07','','20121123_43','','inherit','closed','closed','','20121123_43','','','2013-06-19 17:41:07','2013-06-19 21:41:07','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_43.jpg',0,'attachment','image/jpeg',0),(276,1,'2013-06-19 17:41:26','2013-06-19 21:41:26','','20121123_36','','inherit','closed','closed','','20121123_36','','','2013-06-19 17:41:26','2013-06-19 21:41:26','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_36.jpg',0,'attachment','image/jpeg',0),(277,1,'2013-06-19 17:41:43','2013-06-19 21:41:43','','20121123_33','','inherit','closed','closed','','20121123_33','','','2013-06-19 17:41:43','2013-06-19 21:41:43','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_33.jpg',0,'attachment','image/jpeg',0),(278,1,'2013-06-19 17:41:56','2013-06-19 21:41:56','','20121123_34','','inherit','closed','closed','','20121123_34','','','2013-06-19 17:41:56','2013-06-19 21:41:56','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_34.jpg',0,'attachment','image/jpeg',0),(279,1,'2013-06-19 17:42:13','2013-06-19 21:42:13','','20121123_31','','inherit','closed','closed','','20121123_31','','','2013-06-19 17:42:13','2013-06-19 21:42:13','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_31.jpg',0,'attachment','image/jpeg',0),(280,1,'2013-06-19 17:42:30','2013-06-19 21:42:30','','20121123_32','','inherit','closed','closed','','20121123_32','','','2013-06-19 17:42:30','2013-06-19 21:42:30','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_32.jpg',0,'attachment','image/jpeg',0),(281,1,'2013-06-19 17:42:42','2013-06-19 21:42:42','','20121123_30','','inherit','closed','closed','','20121123_30','','','2013-06-19 17:42:42','2013-06-19 21:42:42','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_30.jpg',0,'attachment','image/jpeg',0),(282,1,'2013-06-19 17:42:58','2013-06-19 21:42:58','','20121123_25','','inherit','closed','closed','','20121123_25','','','2013-06-19 17:42:58','2013-06-19 21:42:58','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_25.jpg',0,'attachment','image/jpeg',0),(283,1,'2013-06-19 17:43:17','2013-06-19 21:43:17','','20121123_24','','inherit','closed','closed','','20121123_24','','','2013-06-19 17:43:17','2013-06-19 21:43:17','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_24.jpg',0,'attachment','image/jpeg',0),(284,1,'2013-06-19 17:49:52','2013-06-19 21:49:52','','20121123_24','','inherit','closed','closed','','20121123_24-2','','','2013-06-19 17:49:52','2013-06-19 21:49:52','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_241.jpg',0,'attachment','image/jpeg',0),(285,1,'2013-06-19 17:53:18','2013-06-19 21:53:18','','20121123_18','','inherit','closed','closed','','20121123_18','','','2013-06-19 17:53:18','2013-06-19 21:53:18','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/20121123_18.jpg',0,'attachment','image/jpeg',0),(286,1,'2013-06-19 18:07:16','2013-06-19 22:07:16','','Bien se nourrir','De la nourriture végétarienne est servie et partagée chaque dernier Samedi du mois','inherit','closed','closed','','food1','','','2013-06-19 18:07:16','2013-06-19 22:07:16','',1,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/food1.jpg',0,'attachment','image/jpeg',0),(287,1,'2013-06-19 18:07:33','2013-06-19 22:07:33','','food7','','inherit','closed','closed','','food7','','','2013-06-19 18:07:33','2013-06-19 22:07:33','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/food7.jpg',0,'attachment','image/jpeg',0),(333,1,'2013-06-10 20:22:33','2013-06-11 00:22:33','This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.\r\n\r\nInitially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.\r\n\r\nNo matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.','Shake it off and step up','','inherit','closed','closed','','150-revision-v1','','','2013-06-10 20:22:33','2013-06-11 00:22:33','',150,'http://divyayogamonteregie.org/french/?p=333',0,'revision','',0),(290,1,'2013-06-19 18:26:50','2013-06-19 22:26:50','','IMG_4135','','inherit','closed','closed','','img_4135','','','2013-06-19 18:26:50','2013-06-19 22:26:50','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/IMG_4135.jpg',0,'attachment','image/jpeg',0),(298,1,'2013-07-09 16:53:25','2013-07-09 20:53:25','<strong>Vinesh Saxena</strong> is yoga instructor trained by Patanjali yoga peeth. He has been practicing yoga since his childhood. Mr. Saxena is “self made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarship while he was student. He holds a Masters degree in Engineering and Masters in business administration along with an Accounting designation. He has worked a long time in engineering and has taught on part time basis in Concordia and McGill universities.\r\n\r\nHe retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his web site of foundation he also describes “Seven simple principals of life” if people follow these principals they can gain control of their life, be happy and self sufficient beings.\r\n\r\nAs a second objective of the foundation he also challenges to find answers to unanswered questions. i.e. “is there a soul” “Is there life after death”  “Does God exist”\r\n\r\nWith continuing theme of “help the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .\r\n\r\n&nbsp;\r\n\r\n<strong>Meera Trivedi</strong> is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.\r\n\r\nShe believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.','Instructors','','inherit','closed','closed','','6-revision-v1','','','2013-07-09 16:53:25','2013-07-09 20:53:25','',6,'http://divyayogamonteregie.org/french/?p=298',0,'revision','',0),(299,1,'2013-05-08 22:07:32','2013-05-09 02:07:32','<h6><span style=\"color: #0000ff;\">Every last Saturday of the month we invite a guest speaker who is related to Alternative way of healing. He talks to the people for 30 minutes.And then 15 minutes question answer period. After that we have brunch. Which is vegetarian.</span></h6>','Month end conferences','','inherit','closed','closed','','25-revision-v1','','','2013-05-08 22:07:32','2013-05-09 02:07:32','',25,'http://divyayogamonteregie.org/french/?p=299',0,'revision','',0),(301,1,'2013-05-18 22:59:14','2013-05-19 02:59:14','<div><strong>Saturday 9h-11h</strong></div>\r\n<div>675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada</div>\r\n<div><strong>[codepeople-post-map]</strong></div>\r\n&nbsp;\r\n\r\n<strong>and</strong>\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:59:14','2013-05-19 02:59:14','',9,'http://divyayogamonteregie.org/french/?p=301',0,'revision','',0),(302,1,'2013-05-08 22:25:35','2013-05-08 22:25:35','Every Saturday morning from 9.00 to 11.00 am we practice Divya Yoga- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with positive affirmations, wise stories, motivational poem and our mantra. Yoga is a complete lifestyle\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.30 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is cooking for us amazing Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, movitated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then      counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, gingers, arms, hips, knees and feet.\r\nWe do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.\r\nWe also do <b>Super Brain yoga</b> to stimulate brain cells. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>\r\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong></span>\r\n<span style=\"color: #0000ff;\"><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></span></p>','What we do !','','inherit','closed','closed','','12-revision-v1','','','2013-05-08 22:25:35','2013-05-08 22:25:35','',12,'http://divyayogamonteregie.org/french/?p=302',0,'revision','',0),(303,1,'2013-07-09 17:43:02','2013-07-09 21:43:02','Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with word of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.\r\nWe do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.\r\nWe also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>\r\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong></span>\r\n<span style=\"color: #0000ff;\"><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></span></p>','What we do !','','inherit','closed','closed','','12-revision-v1','','','2013-07-09 17:43:02','2013-07-09 21:43:02','',12,'http://divyayogamonteregie.org/french/?p=303',0,'revision','',0),(304,1,'2013-05-09 08:31:02','2013-05-09 12:31:02','These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards success and achieving our goals.\r\n\r\nThese poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.','Poems','','inherit','closed','closed','','39-revision-v1','','','2013-05-09 08:31:02','2013-05-09 12:31:02','',39,'http://divyayogamonteregie.org/french/?p=304',0,'revision','',0),(305,1,'2013-07-09 17:51:11','2013-07-09 21:51:11','These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards happiness, success and achieving our goals.\r\n\r\nThese poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.','Poems','','inherit','closed','closed','','39-revision-v1','','','2013-07-09 17:51:11','2013-07-09 21:51:11','',39,'http://divyayogamonteregie.org/french/?p=305',0,'revision','',0),(492,1,'2013-07-09 20:33:32','2013-07-10 00:33:32','<p style=\"text-align: justify;\"><b>\r\n</b><b>\r\n</b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</p>\r\n<p style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p>\r\n<p style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p>\r\n<p style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">No response.</p>\r\n<p style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">Still no response.</p>\r\n<p style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">Again he gets no response.</p>\r\n<p style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">Again there is no response.</p>\r\n<p style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p>\r\n<p style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></p>\r\n&nbsp;','A problem may be me not other ','','inherit','closed','closed','','179-revision-v1','','','2013-07-09 20:33:32','2013-07-10 00:33:32','',179,'http://divyayogamonteregie.org/french/?p=492',0,'revision','',0),(307,1,'2013-06-10 21:27:02','2013-06-11 01:27:02','<b>\r\n</b><b>\r\n</b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.\r\n\r\nThe Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.\r\n\r\nHere\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"\r\n\r\nThat evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"\r\n\r\nNo response.\r\n\r\nSo the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"\r\n\r\nStill no response.\r\n\r\nNext he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"\r\n\r\nAgain he gets no response.\r\n\r\nSo he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"\r\n\r\nAgain there is no response.\r\n\r\nSo he walks right up behind her. \"Honey, what\'s for dinner?\"\r\n\r\n\"James, for the FIFTH time I\'ve said, CHICKEN!\"\r\n\r\n<b>The problem may not be with the other person as we always think, could be very much within us!</b>\r\n\r\n&nbsp;','A problem may be me not other ','','inherit','closed','closed','','179-revision-v1','','','2013-06-10 21:27:02','2013-06-11 01:27:02','',179,'http://divyayogamonteregie.org/french/?p=307',0,'revision','',0),(308,1,'2013-07-09 20:34:47','2013-07-10 00:34:47','<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p>\r\n<p style=\"text-align: justify;\">Hands started going up.</p>\r\n<p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p>\r\n<p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p>\r\n<p style=\"text-align: justify;\">Still the hands were up in the air.</p>\r\n<p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p>\r\n<p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p>\r\n<p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p>\r\n<p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p>\r\n<p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>','A value','','inherit','closed','closed','','156-autosave-v1','','','2013-07-09 20:34:47','2013-07-10 00:34:47','',156,'http://divyayogamonteregie.org/french/?p=308',0,'revision','',0),(309,1,'2013-06-10 20:28:21','2013-06-11 00:28:21','<b></b>\r\n\r\nA well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"\r\n\r\nHands started going up.\r\n\r\nHe said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.\r\n\r\nHe then asked, \"Who still wants it?\"\r\n\r\nStill the hands were up in the air.\r\n\r\n\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.\r\n\r\nHe picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.\r\n\r\n\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.\r\n\r\nMany times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.\r\n\r\nWe feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You are special - Don\'t ever forget it!','A value','','inherit','closed','closed','','156-revision-v1','','','2013-06-10 20:28:21','2013-06-11 00:28:21','',156,'http://divyayogamonteregie.org/french/?p=309',0,'revision','',0),(499,1,'2013-07-09 20:35:55','2013-07-10 00:35:55','<p style=\"text-align: justify;\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"</p>\r\n<p style=\"text-align: justify;\">The second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"</p>\r\n<p style=\"text-align: justify;\">Calculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"</p>\r\n<p style=\"text-align: justify;\">The two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"</p>\r\n<p style=\"text-align: justify;\">The third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"</p>\r\n<p style=\"text-align: justify;\">That was followed by a long silence...</p>\r\n<p style=\"text-align: justify;\">\"How come? 5% profit?? That is impossible!!!! How did you do that???\"</p>\r\n<p style=\"text-align: justify;\">\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"</p>\r\n<p style=\"text-align: justify;\"><b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!</p>','Beginning A New Year','','inherit','closed','closed','','185-revision-v1','','','2013-07-09 20:35:55','2013-07-10 00:35:55','',185,'http://divyayogamonteregie.org/french/?p=499',0,'revision','',0),(311,1,'2013-06-10 21:35:47','2013-06-11 01:35:47','Three farmers gathered to evaluate and share their experiences from 2008. Each had a square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for 2009.\"\r\n\r\nThe second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"\r\n\r\nCalculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"\r\n\r\nThe two of them looked at the third farmer and asked, \"How much profit did you make during 2008?\"\r\n\r\nThe third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during 2008.\"\r\n\r\nThat was followed by a long silence...\r\n\r\n\"How come? 5% profit?? That is impossible!!!! How did you do that???\"\r\n\r\n\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"\r\n\r\n<b>Moral Of the Story:</b> All of us have to take care of our farm (that is our square meter in this 2009) and get the maximum profit while enjoying every instant of our lives and work!!!','Beginning A New Year','','inherit','closed','closed','','185-revision-v1','','','2013-06-10 21:35:47','2013-06-11 01:35:47','',185,'http://divyayogamonteregie.org/french/?p=311',0,'revision','',0),(312,1,'2013-07-09 18:05:13','2013-07-09 22:05:13','Three farmers gathered to evaluate and share their experiences from 2008. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"\r\n\r\nThe second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"\r\n\r\nCalculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"\r\n\r\nThe two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"\r\n\r\nThe third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"\r\n\r\nThat was followed by a long silence...\r\n\r\n\"How come? 5% profit?? That is impossible!!!! How did you do that???\"\r\n\r\n\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"\r\n\r\n<b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!','Beginning A New Year','','inherit','closed','closed','','185-revision-v1','','','2013-07-09 18:05:13','2013-07-09 22:05:13','',185,'http://divyayogamonteregie.org/french/?p=312',0,'revision','',0),(500,1,'2013-07-09 20:38:09','2013-07-10 00:38:09','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />\r\n<p style=\"text-align: justify;\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes</p>\r\n<p style=\"text-align: justify;\">how a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.</p>\r\n<p style=\"text-align: justify;\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.</p>\r\n<p style=\"text-align: justify;\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.</p>\r\n<p style=\"text-align: justify;\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.</p>\r\n<p style=\"text-align: justify;\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.</p>\r\n<p style=\"text-align: justify;\">\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"</p>','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-v1','','','2013-07-09 20:38:09','2013-07-10 00:38:09','',89,'http://divyayogamonteregie.org/french/?p=500',0,'revision','',0),(314,1,'2013-05-09 08:29:53','2013-05-09 12:29:53','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />\r\n\r\nBringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\r\n\r\nhow a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\r\n\r\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\r\n\r\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\r\n\r\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\r\n\r\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\r\n\r\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-v1','','','2013-05-09 08:29:53','2013-05-09 12:29:53','',89,'http://divyayogamonteregie.org/french/?p=314',0,'revision','',0),(679,1,'2014-09-15 20:29:03','2014-09-16 00:29:03','<div>\r\n\r\n<b>Horaire et Lieu</b>\r\n\r\n<b>Chaque Samedi 9h-11h toute l’année durant</b>\r\n\r\n675 Rue Green, Saint-Lambert, QCJ4P 1V9, Canada\r\n\r\nGym de Chambly Academy\r\n\r\n<b>              </b>\r\n\r\n<b>Mercredi  6:30 to 7:30 Sept-Juin (quand Terry Fox est ouvert)</b>\r\n<div>\r\n\r\n1648 rue Langevin, Saint- Hubert, Québec J4T 1X7\r\n\r\n</div>\r\n</div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>','Horaire et Lieu','','inherit','open','closed','','9-revision-v1','','','2014-09-15 20:29:03','2014-09-16 00:29:03','',9,'http://divyayogamonteregie.org/french/?p=679',0,'revision','',0),(402,1,'2013-09-17 17:32:04','2013-09-17 21:32:04','<div>\r\n\r\n<b>Horaire et Lieu</b>\r\n\r\n<b>Chaque Samedi 9h-11h toute l’année durant</b>\r\n\r\n675 Rue Green, Saint-Lambert, QCJ4P 1V9, Canada\r\n\r\nGym de Chambly Academy\r\n\r\n<b>              </b>\r\n\r\n<b>Jeudi  6:30 to 7:30 Sept-Juin (quand Terry Fox est ouvert)</b>\r\n<div>\r\n\r\n1648 rue Langevin, Saint- Hubert, Québec J4T 1X7\r\n\r\n</div>\r\n</div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>\r\n<div> </div>','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-09-17 17:32:04','2013-09-17 21:32:04','',9,'http://divyayogamonteregie.org/french/?p=402',0,'revision','',0),(403,1,'2013-07-09 20:16:06','2013-07-10 00:16:06','<p style=\"text-align: justify;\">Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p>\r\n<p style=\"text-align: justify;\">Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p>\r\n<p style=\"text-align: justify;\">If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p>\r\n<p style=\"text-align: justify;\">Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">Please see below a short description of exercises that we practice every Saturday.</p>\r\n\r\n<ol>\r\n	<li style=\"text-align: justify;\"><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li style=\"text-align: justify;\"><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li style=\"text-align: justify;\"><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li>\r\n	<li style=\"text-align: justify;\"><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li style=\"text-align: justify;\"><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li>\r\n	<li style=\"text-align: justify;\"><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li style=\"text-align: justify;\"><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li style=\"text-align: justify;\"><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.\r\nWe do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li style=\"text-align: justify;\"><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.\r\nWe also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li style=\"text-align: justify;\"><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li style=\"text-align: justify;\"><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li style=\"text-align: justify;\"><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>\r\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong></span>\r\n<span style=\"color: #0000ff;\"><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></span></p>','What we do !','','inherit','closed','closed','','12-revision-v1','','','2013-07-09 20:16:06','2013-07-10 00:16:06','',12,'http://divyayogamonteregie.org/french/?p=403',0,'revision','',0),(316,1,'2013-07-09 20:08:45','2013-07-10 00:08:45','<p style=\"text-align: justify;\">These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards happiness, success and achieving our goals.</p>\r\n<p style=\"text-align: justify;\">These poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.</p>','Poems','','inherit','closed','closed','','39-autosave-v1','','','2013-07-09 20:08:45','2013-07-10 00:08:45','',39,'http://divyayogamonteregie.org/french/?p=316',0,'revision','',0),(445,1,'2013-05-09 07:24:50','2013-05-09 11:24:50','<p align=\"center\"><strong>Believe In Yourself And Your </strong>\r\n<strong> Dreams Will Come True</strong></p>\r\n<p align=\"center\">Know what you can and want to do in life.</p>\r\n<p align=\"center\">Set goals for yourself and work hard to achieve them.</p>\r\n<p align=\"center\">Strive to have fun every day.</p>\r\n<p align=\"center\">Use your creativity as a means of expressing your feelings.</p>\r\n<p align=\"center\">Be sensitive in viewing the world.</p>\r\n<p align=\"center\">Develop a sense of confidence.</p>\r\n<p align=\"center\">Be honest with yourself and with others.</p>\r\n<p align=\"center\">Follow your heart and adhere to your own truths.</p>\r\n<p align=\"center\">Know that the more you give the more you will receive.</p>\r\n<p align=\"center\">Believe in yourself and your dreams will come true</p>','Believe In Yourself ','','inherit','closed','closed','','55-revision-v1','','','2013-05-09 07:24:50','2013-05-09 11:24:50','',55,'http://divyayogamonteregie.org/french/?p=445',0,'revision','',0),(318,1,'2013-07-09 16:54:23','2013-07-09 20:54:23','<strong>Vinesh Saxena</strong> is yoga instructor trained by Patanjali yoga peeth. He has been practicing yoga since his childhood. Mr. Saxena is “self made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarship while he was student. He holds a Masters degree in Engineering and Masters in business administration along with an Accounting designation. He has worked a long time in engineering and has taught on part time basis in Concordia and McGill universities.\r\n\r\nHe retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his web site of foundation he also describes “Seven simple principals of life” if people follow these principals they can gain control of their life, be happy and self sufficient beings.\r\n\r\nAs a second objective of the foundation he also challenges to find answers to unanswered questions. i.e. “is there a soul” “Is there life after death”  “Does God exist”\r\n\r\nWith continuing theme of “help the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .\r\n\r\n&nbsp;\r\n\r\n<strong>Meera Trivedi</strong> is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.\r\n\r\nShe believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.','Instructors','','inherit','closed','closed','','6-revision-v1','','','2013-07-09 16:54:23','2013-07-09 20:54:23','',6,'http://divyayogamonteregie.org/french/?p=318',0,'revision','',0),(319,1,'2013-07-09 17:13:31','2013-07-09 21:13:31','<span style=\"color: #0000ff;\">To make basic yoga practice easily accessible to everyone without charge.</span>\r\n\r\n<span style=\"color: #0000ff;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</span>\r\n\r\n<span style=\"color: #0000ff;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</span>\r\n\r\n<span style=\"color: #0000ff;\">After yoga super food i. e. grapes and banana are available for Yogies.</span>\r\n\r\n<span style=\"color: #0000ff;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</span>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-07-09 17:13:31','2013-07-09 21:13:31','',2,'http://divyayogamonteregie.org/french/?p=319',0,'revision','',0),(321,1,'2013-07-09 17:04:54','2013-07-09 21:04:54','<h6><span style=\"color: #0000ff;\">Every last Saturday of the month we invite a guest speaker to talk on a relevant topic related to our mission. He talks to the people for 30-45 minutes.And then 15 minutes question answer period. After that we have vegetarian brunch.\r\n</span></h6>','Month end conferences','','inherit','closed','closed','','25-revision-v1','','','2013-07-09 17:04:54','2013-07-09 21:04:54','',25,'http://divyayogamonteregie.org/french/?p=321',0,'revision','',0),(320,1,'2013-07-09 20:05:01','2013-07-10 00:05:01','<p style=\"text-align: justify;\"><span style=\"color: #0000ff;\">To make basic yoga practice easily accessible to everyone without charge.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #0000ff;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #0000ff;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #0000ff;\">After yoga super food i. e. grapes and banana are available for Yogies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #0000ff;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</span></p>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-07-09 20:05:01','2013-07-10 00:05:01','',2,'http://divyayogamonteregie.org/french/?p=320',0,'revision','',0),(322,1,'2013-07-09 17:53:42','2013-07-09 21:53:42','These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards happiness, success and achieving our goals.\r\n\r\nThese poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.','Poems','','inherit','closed','closed','','39-revision-v1','','','2013-07-09 17:53:42','2013-07-09 21:53:42','',39,'http://divyayogamonteregie.org/french/?p=322',0,'revision','',0),(323,1,'2013-06-15 22:01:25','2013-06-16 02:01:25','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter  wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"450\" height=\"211\" /></a></p>\r\n<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 22:01:25','2013-06-16 02:01:25','',190,'http://divyayogamonteregie.org/french/?p=323',0,'revision','',0),(324,1,'2013-05-09 08:32:02','2013-05-09 12:32:02','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-v1','','','2013-05-09 08:32:02','2013-05-09 12:32:02','',79,'http://divyayogamonteregie.org/french/?p=324',0,'revision','',0),(325,1,'2013-07-09 17:49:10','2013-07-09 21:49:10','Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.\r\nWe do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.\r\nWe also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>\r\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong></span>\r\n<span style=\"color: #0000ff;\"><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></span></p>','What we do !','','inherit','closed','closed','','12-revision-v1','','','2013-07-09 17:49:10','2013-07-09 21:49:10','',12,'http://divyayogamonteregie.org/french/?p=325',0,'revision','',0),(327,1,'2013-07-09 17:56:52','2013-07-09 21:56:52','<b>\r\n</b><b>\r\n</b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.\r\n\r\nThe Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.\r\n\r\nHere\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"\r\n\r\nThat evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"\r\n\r\nNo response.\r\n\r\nSo the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"\r\n\r\nStill no response.\r\n\r\nNext he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"\r\n\r\nAgain he gets no response.\r\n\r\nSo he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"\r\n\r\nAgain there is no response.\r\n\r\nSo he walks right up behind her. \"Honey, what\'s for dinner?\"\r\n\r\n\"James, for the FIFTH time I\'ve said, Lima Beans!\"\r\n\r\n<b>The problem may not be with the other person as we always think, could be very much within us!</b>\r\n\r\n&nbsp;','A problem may be me not other ','','inherit','closed','closed','','179-revision-v1','','','2013-07-09 17:56:52','2013-07-09 21:56:52','',179,'http://divyayogamonteregie.org/french/?p=327',0,'revision','',0),(326,1,'2013-06-15 23:34:59','2013-06-16 03:34:59','<div>\r\n<div>\r\n\r\n<em><span style=\"text-decoration: underline;\"><strong>From volunteers</strong></span></em>\r\n\r\n<em><strong>Monique</strong></em>\r\n\r\nSuite à un accident de voiture survenu il y a plusieurs années, mon corps était dans une souffrance chronique, mon esprit était pris dans des blocages inconscients de perturbations, de découragement, de tourment, de peur, et d’angoisse.  Puis un jour, j’ai fait la découverte du yoga.\r\n\r\nAu début, lors de mes pratiques, je n’arrivais pas à synchroniser les mouvements, mon corps était rigide et tendu,  je n’étais pas concentrée.  Après un certain temps, j’ai abandonné  les cours en me disant que je n’y arriverai jamais, que mon corps ne pouvait pas suivre, j’avais trop mal, je n’avais pas la dextérité  pour faire les postures, ni la flexibilité, l’attention, la concentration, etc., etc.\r\n\r\nUn peu plus tard, j’ai vu une annonce dans le journal qu’il y avait des cours de yoga offerts gratuitement à St-Lambert.  J’ai décidé de faire un autre essai.  Puis voilà  que ma vie s’est transformée.  J’ai commencé le yoga une fois semaine. Après quelques semaines de pratique,  j’ai été approchée par le professeur de yoga pour être bénévole, pour accueillir les gens. J’ai accepté de m’engager dans cette belle aventure dont je fais toujours partie depuis déjà presque 3 ans. Depuis,  j’ai exploré différentes approches de yoga qui m’ont amenée à un changement positif de vie complète.  Une bonne hygiène alimentaire, une flexibilité de mon corps et de mon esprit, de mes attitudes et comportements. J’ai appris à  cultiver le calme mental et ma force vitale intérieure par les exercices de respiration et de méditation. J’ai amélioré mon équilibre mental et physique,  l’écoute de mon corps, ma concentration et ma mémoire, ma coordination et l’acceptation de ce qui est.\r\n\r\nJe vis maintenant mon quotidien dans un mieux-être. Il y a encore place à l’amélioration, mais chaque jour j’intègre un style de vie de yoga qui m’amène de plus en plus à faire l’expérience d’une paix intérieure.\r\n\r\n*****************************<wbr></wbr>******************************<wbr></wbr>******************\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Michel …. 74</strong></span>\r\n\r\nMy duties:-\r\n\r\nTo be always ready to help\r\n\r\nAbout me\r\n\r\nI am a very happy man. I enjoy the company of nice people.\r\n\r\nWhat yoga means to me? How it has affected my life?\r\n\r\nYoga is for me an extraordinary choice of movements and exercices created by people who knew the human body and soul.\r\n\r\nTwo hours of yoga per week complement my daily exercices that I do since 50 years plus. My body appreciate yoga and I feel balanced.\r\n\r\nMarathon Runner\r\n\r\nBénévole (mes tâches)\r\nÊtre toujours prêt à aider\r\n\r\nÀ propos de moi\r\nJe suis un homme très heureux. J\'aime la compagnie des gens sympathiques.\r\n\r\nCe que le yoga signifie pour moi? Comment cela a affecté ma vie?\r\n\r\nLe yoga est pour moi un choix extraordinaire de mouvements et d\'exercices créés par des gens qui connaissaient le corps humain et l\'âme.\r\nDeux heures de yoga par semaine complètent mes exercices quotidiens que je fais depuis 50 ans et plus. Mon corps apprécie le yoga et je me sens équilibrée.\r\n\r\n<strong><span style=\"text-decoration: underline;\"> ******************************<wbr></wbr>******************************<wbr></wbr>******************</span></strong>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Bénévole : Mihaela Frandes</span></strong>\r\n\r\nMon rôle\r\n\r\nJ’arrive chaque samedi matin à 8.30am à l’Académie Chambly pour accueillir les nouvelles personnes. Je leur demande de compléter une fiche d’inscription et leur explique un peu comment se déroulent les cours.\r\n\r\nÀ propos de moi\r\n\r\nJ’ai commencé les cours de yoga offerts par Meera Trivedi et Vinesh Saxena en juin 2010 et depuis j’y suis toujours fidèle J’avoue que le samedi est ma journée de la semaine la plus heureuse. Depuis, je fais du yoga régulièrement. Je suis d’origine roumaine, ma formation est en biochimie et dans la vie quotidienne je me préoccupe beaucoup de ma nutrition et j’aime beaucoup la nature. En été  je fais du vélo et en hiver j’adore faire du ski de fond. J’aime beaucoup aider les gens et le yoga m’aide à accomplir le bonheur dans ma vie. Ma dernière passion est la préparation de pain au levain – faire du bon pain est pour moi un immense plaisir.\r\n\r\n&nbsp;\r\n\r\nQu’est que yoga signifie pour moi. Comment a-t-elle affecte ma vie\r\n\r\nLe yoga a amélioré la flexibilité de mon corps et esprit ainsi que ma santé. J’adore faire du yoga et je sens que le yoga est une marche dans mon évolution.\r\n\r\n&nbsp;\r\n\r\nVolunteer\r\n\r\nMy duties: I came every Saturday morning at 8.30 at Chambly Academy in Saint Lambert to accommodate the new peoples. I give them the form to fill-up and explain a little bit how we function here.\r\n\r\nAbout me: I started the yoga classes given by Meera Trivedi and Vinesh Saxena in July 2010 and since then I do yoga on a regular basis. Saturday is the happiest day of my week. I am Rumanian, I studied biochemistry and I am interested in nutrition, healthy eating, I try to come closer to nature. In summer I do a lot of bike and in winter I love the cross-country sky. I love helping people; yoga is helping me to maintain a happy mood. Now I’m in love with making sourdough bread, making bread makes me happy.\r\n\r\nWhat yoga means for me. How it has affected my life: Yoga gave me a happiness that I cannot explain; friends, a more conscious life, a flexible body, and a healthy body, a clear mind. I love doing yoga, and I am pretty sure that yoga is only a step in my evolution.\r\n\r\n******************************<wbr></wbr>******************************<wbr></wbr>******************\r\n\r\n<span style=\"text-decoration: underline;\"><strong>From other participants</strong></span>\r\n\r\nThis yoga class is a precious time for me. I may arrive out of breath or lacking of energy, or a bit annoyed at my brain « monkey chatter » but I always leave rejuvenated physically, mentally and emotionally. Joining in, I am giving my whole body the royal treatment from head to toes, stretching out the kinks and limbering up muscles and joints I was not aware of. It is quality time I give to myself. When I am there, I have my own space. But there are people around me and I feel I belong, that I am surrounded by positive energy. The space we are in fills, it feels to me, with well being respect, silent communication. Thank you to all who make this possible. I was hooked the first time I went.\r\n\r\n<strong><span style=\"text-decoration: underline;\">Charlene Olse</span></strong>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nJe passais des moments très difficiles suite à un deuil, mon amie m’a conseillé de faire du yoga.\r\n\r\nJ’ai essayé une première séance et je me suis sentie vraiment bien, les mouvements accompagnés de la respiration fluide ont effectivement apaisé mon âme, mon esprit et mon corps et depuis je ne peux rater une séance. Je fais du yoga seule à la maison, mais je m’arrête au bout de 5 minutes, cependant du yoga en groupe avec la belle ambiance, la bonne motivation et l’encouragement de l’entraîneur m’a permis de bien vivre mon deuil et surtout de bien gérer mes sentiments et mes émotions.\r\n\r\nUn grand merci pour ce que vous faites pour le groupe de yoga.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Lynda</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nLe yoga diminue mon stress, assouplit mon corps et lubrifie mes articulations. Certaines positions ou exercices libèrent des structures énergétiques associées à des mémoires antérieures. L’énergie circule plus librement dans mon corps et je me sens revivifié. J’apprécie aussi le fait que ce soit une activité non compétitive.\r\n\r\nJe remercie M. Saxena de sa très grande disponibilité ainsi que toute son équipe de bénévoles.\r\n\r\n<span style=\"text-decoration: underline;\"><strong> Marcel Baril</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nLe yoga m’a apporté beaucoup de paix intérieure. J’aime la combinaison de l’exercice physique et le mental, le rire…. Cela équilibre mon moral, améliore mon corps physique, m’aide à  pratiquer la méditation et la relaxation et surtout à mieux respirer. J’aime beaucoup l’ambiance généreuse, le don de soi des bénévoles. Je crois de plus en plus à la bonté de l’être humain.\r\n\r\nMerci\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Colette</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nMon mari est décédé il y a trois ans. Je fus effondrée. Depuis ce temps je pratique le yoga avec Monsieur Saxena. Cet exercice m’a apporté l’équilibre physique et la paix de l’âme.\r\n\r\nGinette Paradis\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nJe dois remercier Mr et Mme Saxena pout leur dévouement et leur disponibilité  apportés chaque samedi.\r\n\r\nPour moi,ce que j\'aime le plus c\'est bien ses histoires qui m\'amênent a penser positivement,ensuite il y a les exercises\r\n\r\nqui aident a calmer le mental et a controler le stress,c\'est bien.\r\n\r\nMais tant qu\'aux exercises d\'accupressions pour les sinus ,j\'en vois pas d\'effet immédiat, c\'est probablement a long\r\n\r\nterme que l\'effet se fait sentir.\r\n\r\nLes nouveaux mouvements ou exercises sont les bienvenues ,j\'en suis certain, pour la pluparts des participants.\r\n\r\nApres deux heures de participations la position a l\'horizontale (shawaseen)ou repos est très bien appréciée.\r\n\r\nC\'est durant le reste de la journée qu\'on sent une certaine fatigue et qu\'il faut récupérer,en un mot c\'est sûrement\r\n\r\nbénifique pour la santé.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Renald Couture</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>-----------------\r\n\r\nWhat would I do without Yoga? it has helped me to live a fulfilling life!\r\n\r\nWhen I was 12 years old, I was one day about to sit down on a kitchen chair when my brother took it away from underneath me. I fell had on my coccyx and thought nothing more of it, thinking that my pride was hurt more than my back. But by the age of 18 I started getting persistent backaches, and from then on I became a \'back sufferer\'. By the age of 30 I wasn\'t able to wash a kitchen floor or do an hour\'s gardening without a backache for the rest of the day, and few days after. I wasn\'t even sure I could have children with such a bad back, so I did a series of adjustments over a year and a half at a chiropractor\'s, and tried acupuncture. Both helped somewhat, but certainly did not cure my condition. I did have two children and a full time job teaching, but backaches became a fact of life, always there in the background.\r\n\r\nI came across Yoga in my middle 30\'s but never had enough time to pursue it diligently. It was only after I retired that I started doing it seriously, and I now wish I had allowed no excuses to not do it consistently earlier. I now do Yoga for an hour every day, following the type of Mr. Saxena\'s exercises on Saturday mornings, and take exercises out of books. I have never felt better! Today at 68 I feel better that I did at 30. I can now do gardening all day, shovel snow, wash floors, and walk good long walks with no consequent pain. The injury to my back is still there, but my back mussels are now strong enough to support me in my activities.\r\n\r\nDoing the exercises is only part of my Yoga practice. I am careful to eat only food that is nutritious for my body, and I try to keep as much as possible a positive outlook on life.\r\n\r\nYoga is a lifestyle - it takes care of every aspect of one\'s being, and I intend to keep well and healthy to my dying day.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Mary Brunet</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------\r\n\r\n</div>\r\n</div>','Testimony from Participants','','inherit','closed','closed','','31-revision-v1','','','2013-06-15 23:34:59','2013-06-16 03:34:59','',31,'http://divyayogamonteregie.org/french/?p=326',0,'revision','',0),(328,1,'2013-07-09 17:59:13','2013-07-09 21:59:13','&nbsp;\r\n\r\nA well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"\r\n\r\nHands started going up.\r\n\r\nHe said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.\r\n\r\nHe then asked, \"Who still wants it?\"\r\n\r\nStill the hands were up in the air.\r\n\r\n\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.\r\n\r\nHe picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.\r\n\r\n\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.\r\n\r\nMany times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.\r\n\r\nWe feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!','A value','','inherit','closed','closed','','156-revision-v1','','','2013-07-09 17:59:13','2013-07-09 21:59:13','',156,'http://divyayogamonteregie.org/french/?p=328',0,'revision','',0),(329,1,'2013-07-09 18:09:47','2013-07-09 22:09:47','Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"\r\n\r\nThe second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"\r\n\r\nCalculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"\r\n\r\nThe two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"\r\n\r\nThe third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"\r\n\r\nThat was followed by a long silence...\r\n\r\n\"How come? 5% profit?? That is impossible!!!! How did you do that???\"\r\n\r\n\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"\r\n\r\n<b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!','Beginning A New Year','','inherit','closed','closed','','185-revision-v1','','','2013-07-09 18:09:47','2013-07-09 22:09:47','',185,'http://divyayogamonteregie.org/french/?p=329',0,'revision','',0),(330,1,'2013-07-09 18:18:29','2013-07-09 22:18:29','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />\r\n\r\nBringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\r\n\r\nhow a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\r\n\r\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\r\n\r\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\r\n\r\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\r\n\r\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\r\n\r\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-v1','','','2013-07-09 18:18:29','2013-07-09 22:18:29','',89,'http://divyayogamonteregie.org/french/?p=330',0,'revision','',0),(331,1,'2013-06-10 20:12:23','2013-06-11 00:12:23','Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.\r\n\r\nHe arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"\r\n\r\nSeveral seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished','Never give up','','inherit','closed','closed','','137-revision-v1','','','2013-06-10 20:12:23','2013-06-11 00:12:23','',137,'http://divyayogamonteregie.org/french/?p=331',0,'revision','',0),(498,1,'2013-07-09 20:39:53','2013-07-10 00:39:53','<p style=\"text-align: justify;\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.</p>\r\n<p style=\"text-align: justify;\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"</p>\r\n<p style=\"text-align: justify;\">Several seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished</p>','Never give up','','inherit','closed','closed','','137-revision-v1','','','2013-07-09 20:39:53','2013-07-10 00:39:53','',137,'http://divyayogamonteregie.org/french/?p=498',0,'revision','',0),(509,1,'2013-07-09 20:47:58','2013-07-10 00:47:58','<p style=\"text-align: justify;\">This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.</p>\r\n<p style=\"text-align: justify;\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.</p>\r\n<p style=\"text-align: justify;\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.</p>','Shake it off and step up','','inherit','closed','closed','','150-revision-v1','','','2013-07-09 20:47:58','2013-07-10 00:47:58','',150,'http://divyayogamonteregie.org/french/?p=509',0,'revision','',0),(335,1,'2013-06-10 21:34:11','2013-06-11 01:34:11','On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.\r\n\r\nHis son replied, \"That is the crow.\"\r\n\r\nDue to his age, the older man forgot and asked again.\r\n\r\nHis son again replied the same thing, \"That is the crow.\"\r\n\r\nThis exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"\r\n\r\nThe old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry','Sometimes We Forget... Remember To Be Kind','','inherit','closed','closed','','183-revision-v1','','','2013-06-10 21:34:11','2013-06-11 01:34:11','',183,'http://divyayogamonteregie.org/french/?p=335',0,'revision','',0),(511,1,'2013-07-09 20:49:32','2013-07-10 00:49:32','<p style=\"text-align: justify;\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.</p>\r\n<p style=\"text-align: justify;\">His son replied, \"That is the crow.\"</p>\r\n<p style=\"text-align: justify;\">Due to his age, the older man forgot and asked again.</p>\r\n<p style=\"text-align: justify;\">His son again replied the same thing, \"That is the crow.\"</p>\r\n<p style=\"text-align: justify;\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"</p>\r\n<p style=\"text-align: justify;\">The old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry</p>','Sometimes We Forget... Remember To Be Kind','','inherit','closed','closed','','183-revision-v1','','','2013-07-09 20:49:32','2013-07-10 00:49:32','',183,'http://divyayogamonteregie.org/french/?p=511',0,'revision','',0),(337,1,'2013-06-10 20:26:42','2013-06-11 00:26:42','A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.\r\n\r\n\"How long did it take you to catch them?\" the American casually asked.\r\n\r\n\"Oh, a few hours,\" the Mexican fisherman replied.\r\n\r\n\"Why don\'t you stay out longer and catch more fish?\" the American businessman then asked.\r\n\r\nThe Mexican warmly replied, \"With this I have more than enough to support my family\'s needs.\"\r\n\r\nThe businessman then became serious, \"But what do you do with the rest of your time?\"\r\n\r\nResponding with a smile, the Mexican fisherman answered, \"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\"\r\n\r\nThe American businessman impatiently interrupted, \"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\"\r\n\r\nProud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\"\r\n\r\nHaving never thought of such things, the Mexican fisherman asked, \"But how long will all this take?\"\r\n\r\nAfter a rapid mental calculation, the Harvard MBA pronounced, \"Probably about 15-20 years, maybe less if you work really hard.\"\r\n\r\n\"And then what, señor?\" asked the fisherman.\r\n\r\n\"Why, that\'s the best part!\" answered the businessman with a laugh. \"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\"\r\n\r\n\"Millions? Really? What would I do with it all?\" asked the young fisherman in disbelief.\r\n\r\nThe businessman boasted, \"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\"\r\nThe moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think</strong>','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','154-revision-v1','','','2013-06-10 20:26:42','2013-06-11 00:26:42','',154,'http://divyayogamonteregie.org/french/?p=337',0,'revision','',0),(513,1,'2013-07-09 20:50:54','2013-07-10 00:50:54','<p style=\"text-align: justify;\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.</p>\r\n<p style=\"text-align: justify;\">\"How long did it take you to catch them?\" the American casually asked.</p>\r\n<p style=\"text-align: justify;\">\"Oh, a few hours,\" the Mexican fisherman replied.</p>\r\n<p style=\"text-align: justify;\">\"Why don\'t you stay out longer and catch more fish?\" the American businessman then asked.</p>\r\n<p style=\"text-align: justify;\">The Mexican warmly replied, \"With this I have more than enough to support my family\'s needs.\"</p>\r\n<p style=\"text-align: justify;\">The businessman then became serious, \"But what do you do with the rest of your time?\"</p>\r\n<p style=\"text-align: justify;\">Responding with a smile, the Mexican fisherman answered, \"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\"</p>\r\n<p style=\"text-align: justify;\">The American businessman impatiently interrupted, \"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\"</p>\r\n<p style=\"text-align: justify;\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\"</p>\r\n<p style=\"text-align: justify;\">Having never thought of such things, the Mexican fisherman asked, \"But how long will all this take?\"</p>\r\n<p style=\"text-align: justify;\">After a rapid mental calculation, the Harvard MBA pronounced, \"Probably about 15-20 years, maybe less if you work really hard.\"</p>\r\n<p style=\"text-align: justify;\">\"And then what, señor?\" asked the fisherman.</p>\r\n<p style=\"text-align: justify;\">\"Why, that\'s the best part!\" answered the businessman with a laugh. \"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\"</p>\r\n<p style=\"text-align: justify;\">\"Millions? Really? What would I do with it all?\" asked the young fisherman in disbelief.</p>\r\n<p style=\"text-align: justify;\">The businessman boasted, \"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\"\r\nThe moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think</strong></p>','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','154-revision-v1','','','2013-07-09 20:50:54','2013-07-10 00:50:54','',154,'http://divyayogamonteregie.org/french/?p=513',0,'revision','',0),(339,1,'2013-06-10 21:22:48','2013-06-11 01:22:48','This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.\r\n\r\nOne young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.\r\n\r\nThe director asked, \"Did you obtain any scholarships in school?\"\r\n\r\nThe youth answered, \"None.\"\r\n\r\nThe director asked, \"Was it your father who paid for your school fees?\"\r\n\r\nThe youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"\r\n\r\nThe director asked, \"Where did your mother work?\"\r\n\r\nThe youth answered, \"My mother worked as laundry woman.\"\r\n\r\nThe director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.\r\n\r\nThe director asked, \"Have you ever helped your mother wash the clothes before?\"\r\n\r\nThe youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"\r\n\r\nThe director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"\r\n\r\nThe youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.\r\n\r\nThe youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.\r\n\r\nThis was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.\r\n\r\nAfter finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.\r\n\r\nThat night, mother and son talked for a very long time.\r\n\r\nNext morning, the youth went to the director\'s office.\r\n\r\nThe Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"\r\n\r\nThe youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"\r\n\r\nThe Director asked, \"Please tell me your feelings.\"\r\n\r\nThe youth said:\r\n<ol start=\"1\">\r\n	<li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li>\r\n	<li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li>\r\n	<li>I have come to appreciate the importance and value of family relationships.</li>\r\n</ol>\r\nThe director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"\r\n\r\nLater on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously','The appriciation ','','inherit','closed','closed','','175-revision-v1','','','2013-06-10 21:22:48','2013-06-11 01:22:48','',175,'http://divyayogamonteregie.org/french/?p=339',0,'revision','',0),(516,1,'2013-07-09 20:52:23','2013-07-10 00:52:23','<p style=\"text-align: justify;\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.</p>\r\n<p style=\"text-align: justify;\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Did you obtain any scholarships in school?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"None.\"</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Was it your father who paid for your school fees?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Where did your mother work?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"My mother worked as laundry woman.\"</p>\r\n<p style=\"text-align: justify;\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Have you ever helped your mother wash the clothes before?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"</p>\r\n<p style=\"text-align: justify;\">The director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"</p>\r\n<p style=\"text-align: justify;\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.</p>\r\n<p style=\"text-align: justify;\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.</p>\r\n<p style=\"text-align: justify;\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.</p>\r\n<p style=\"text-align: justify;\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.</p>\r\n<p style=\"text-align: justify;\">That night, mother and son talked for a very long time.</p>\r\n<p style=\"text-align: justify;\">Next morning, the youth went to the director\'s office.</p>\r\n<p style=\"text-align: justify;\">The Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"</p>\r\n<p style=\"text-align: justify;\">The Director asked, \"Please tell me your feelings.\"</p>\r\n<p style=\"text-align: justify;\">The youth said:</p>\r\n\r\n<ol style=\"text-align: justify;\" start=\"1\">\r\n	<li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li>\r\n	<li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li>\r\n	<li>I have come to appreciate the importance and value of family relationships.</li>\r\n</ol>\r\n<p style=\"text-align: justify;\">The director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"</p>\r\n<p style=\"text-align: justify;\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously</p>','The appriciation ','','inherit','closed','closed','','175-revision-v1','','','2013-07-09 20:52:23','2013-07-10 00:52:23','',175,'http://divyayogamonteregie.org/french/?p=516',0,'revision','',0),(341,1,'2013-06-10 20:20:03','2013-06-11 00:20:03','There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.\r\n\r\nFinally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.\r\n\r\nThe father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.','The fence','','inherit','closed','closed','','147-revision-v1','','','2013-06-10 20:20:03','2013-06-11 00:20:03','',147,'http://divyayogamonteregie.org/french/?p=341',0,'revision','',0),(342,1,'2013-06-10 20:29:52','2013-06-11 00:29:52','<b></b>\r\n\r\nWhen I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.\r\n\r\nI wrote down \'happy\'. They told me I didn\'t understand the assignment, and I told them they didn\'t understand life.\r\n<b></b>\r\n\r\n&nbsp;\r\n\r\nThere once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.\r\n\r\nSo the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.\r\n\r\n\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.\r\n\r\n\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.\r\n\r\nThe man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"\r\n\r\nAnd thus, the sage healed two people that day.','The Happiness','','inherit','closed','closed','','160-revision-v1','','','2013-06-10 20:29:52','2013-06-11 00:29:52','',160,'http://divyayogamonteregie.org/french/?p=342',0,'revision','',0),(525,1,'2013-07-09 21:34:17','2013-07-10 01:34:17','<p style=\"text-align: justify;\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.</p>\r\n<p style=\"text-align: justify;\">I wrote down \'happy\'. They told me I didn\'t understand the assignment, and I told them they didn\'t understand life.\r\n<b></b></p>\r\n&nbsp;','The Happiness','','inherit','closed','closed','','160-revision-v1','','','2013-07-09 21:34:17','2013-07-10 01:34:17','',160,'http://divyayogamonteregie.org/french/?p=525',0,'revision','',0),(352,1,'2013-07-09 21:37:27','2013-07-10 01:37:27','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt; text-indent: 35.4pt;\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Un saint judicieux</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il était une fois un judicieux sage<span style=\"mso-spacerun: yes;\">  </span>qui flânait à la campagne.<span style=\"mso-spacerun: yes;\">  </span>Une journée qu’il passait près d’un village, une femme s’approcha de lui pour lui dire qu’il y avait à proximité un enfant malade.<span style=\"mso-spacerun: yes;\">  </span>Elle l’a supplié d’aider l’enfant.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Alors le sage alla au village et une foule se rassembla autour de lui; pour un tel homme c’était un événement plutôt rare.<span style=\"mso-spacerun: yes;\">  </span>Une femme lui a emmené l’enfant malade et il a fait une prière.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Croyez vous vraiment que la prière va l’aider là où la médecine a échoué?» A crié un homme dans la foule.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Vous ne connaissez <span style=\"mso-spacerun: yes;\"> </span>rien de ces choses.<span style=\"mso-spacerun: yes;\">  </span>Vous êtes un abruti imbécile » lui lança le sage homme.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’homme devint vraiment en colère et sa figure se transforma d’un rouge écarlate.<span style=\"mso-spacerun: yes;\">  </span>Il allait répliquer ou peut-être <span style=\"mso-spacerun: yes;\"> </span>laisser <span style=\"mso-spacerun: yes;\"> </span>tomber lorsque le sage se dirigea vers lui et dit : « Si un mot a autant de pouvoir que de vous mettre en colère, <span style=\"mso-spacerun: yes;\"> </span>pourrait t-il <span style=\"mso-spacerun: yes;\"> </span>en avoir d’autres qui auraient le pouvoir de guérir? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Et cette journée, le sage a guéri deux personnes.</span></p>','Un saint judicieux','','publish','closed','closed','','wise-saint','','','2013-10-05 21:52:32','2013-10-06 01:52:32','',79,'http://divyayogamonteregie.org/french/?page_id=352',0,'page','',0),(353,1,'2013-07-09 21:36:51','2013-07-10 01:36:51','There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.\n\nSo the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.\n\n\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.\n\n\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.\n\nThe man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"\n\nAnd thus, the sage healed two people that day.','Wise Saint ','','inherit','closed','closed','','352-revision-v1','','','2013-07-09 21:36:51','2013-07-10 01:36:51','',352,'http://divyayogamonteregie.org/french/?p=353',0,'revision','',0),(344,1,'2013-06-10 20:17:07','2013-06-11 00:17:07','<a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/hospital_window.png\"><img class=\"aligncenter size-full wp-image-141\" alt=\"hospital_window\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/hospital_window.png\" width=\"300\" height=\"200\" /></a>\r\n\r\nTwo men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.\r\n\r\nThe men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.\r\n\r\nAnd every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.\r\n\r\nThe window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.\r\n\r\nAs the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.\r\n\r\nOne warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.\r\n\r\nDays and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.\r\n\r\nAs soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.\r\n\r\nHe strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"','The hospital window','','inherit','closed','closed','','139-revision-v1','','','2013-06-10 20:17:07','2013-06-11 00:17:07','',139,'http://divyayogamonteregie.org/french/?p=344',0,'revision','',0),(347,1,'2013-07-09 21:00:48','2013-07-10 01:00:48','<b>The Rabbit and The Turtle Race </b>\n<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p>\n<p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p>\n<p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p>\n<p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p>\n<p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p>\n<p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p>\n<p style=\"text-align: justify;\">The story does not end here.</p>\n<p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p>\n<p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p>\n<p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p>\n<p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p>\n<p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p>\n<p style=\"text-align: justify;\"><b>What did they learn?</b></p>\n<p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>','','','inherit','closed','closed','','346-revision-v1','','','2013-07-09 21:00:48','2013-07-10 01:00:48','',346,'http://divyayogamonteregie.org/french/?p=347',0,'revision','',0),(537,1,'2013-07-09 21:01:39','2013-07-10 01:01:39','&nbsp;\r\n<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p>\r\n<p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p>\r\n<p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p>\r\n<p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p>\r\n<p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p>\r\n<p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p>\r\n<p style=\"text-align: justify;\">The story does not end here.</p>\r\n<p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p>\r\n<p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p>\r\n<p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p>\r\n<p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p>\r\n<p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p>\r\n<p style=\"text-align: justify;\"><b>What did they learn?</b></p>\r\n<p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>','The Rabbit and The Turtle Race ','','inherit','closed','closed','','346-revision-v1','','','2013-07-09 21:01:39','2013-07-10 01:01:39','',346,'http://divyayogamonteregie.org/french/?p=537',0,'revision','',0),(490,1,'2013-07-09 21:32:01','2013-07-10 01:32:01','<p style=\"text-align: justify;\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?</p>\r\n<p style=\"text-align: justify;\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!</p>\r\n<p style=\"text-align: justify;\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"</p>\r\n<p style=\"text-align: justify;\">Indeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"</p>\r\n<p style=\"text-align: justify;\">He chose the sponge and together they cleaned up the spilled milk.</p>\r\n<p style=\"text-align: justify;\">His mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"</p>\r\n<p style=\"text-align: justify;\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.</p>',' Motivate','','inherit','closed','closed','','177-revision-v1','','','2013-07-09 21:32:01','2013-07-10 01:32:01','',177,'http://divyayogamonteregie.org/french/?p=490',0,'revision','',0),(350,1,'2013-06-10 21:24:47','2013-06-11 01:24:47','There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?\r\n\r\nHe responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!\r\n\r\nWhen his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"\r\n\r\nIndeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"\r\n\r\nHe chose the sponge and together they cleaned up the spilled milk.\r\n\r\nHis mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"\r\n\r\nThe little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.','The Motivate','','inherit','closed','closed','','177-revision-v1','','','2013-06-10 21:24:47','2013-06-11 01:24:47','',177,'http://divyayogamonteregie.org/french/?p=350',0,'revision','',0),(351,1,'2013-07-09 20:55:51','2013-07-10 00:55:51','<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.</p>\r\n<p style=\"text-align: justify;\">I wrote down \'happy\'. They told me I didn\'t understand the assignment, and I told them they didn\'t understand life.\r\n<b></b></p>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.</p>\r\n<p style=\"text-align: justify;\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.</p>\r\n<p style=\"text-align: justify;\">\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.</p>\r\n<p style=\"text-align: justify;\">\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.</p>\r\n<p style=\"text-align: justify;\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"</p>\r\n<p style=\"text-align: justify;\">And thus, the sage healed two people that day.</p>','The Happiness','','inherit','closed','closed','','160-revision-v1','','','2013-07-09 20:55:51','2013-07-10 00:55:51','',160,'http://divyayogamonteregie.org/french/?p=351',0,'revision','',0),(355,1,'2013-06-10 20:24:26','2013-06-11 00:24:26','By Remez Sasson\r\n\r\nOne day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.\r\n\r\n\"There is a big park not far from here. We can sleep there at night\", said the disciple.\r\n\"In the open air?\" Asked the yogi.\r\n\"Yes\", responded the student.\r\n\r\nThe yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".\r\n\r\nThe student was amazed and exclaimed, \"We cannot afford that!\"\r\n\"Come and sit down\", said the yogi.\r\n\r\nThey both sat down on the ground, and the yogi said:\r\n\"When you focus your mind intently on any subject, it comes to pass.\"\r\n\r\nThe yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.\r\n\r\n\"Come, let\'s enter inside\", the yogi said to his disciple.\r\n\r\nThey just set foot in the entrance, when a well-dressed man approached them.\r\n\r\n\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"\r\n\r\n\"Fine\", the yogi responded.\r\n\r\nThe disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"\r\n\r\nThe yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"\r\n\r\n\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"\r\n\r\nThe disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"\r\n\r\n\"Yes, this is the first step\", the yogi replied.\r\n\r\n16A The Elephant and the Fly\r\n\r\nBy Remez Sasson\r\n\r\nA disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.\r\n\r\nHe asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"\r\n\r\nThe teacher looked at the disciple, smiled and said:\r\n\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"\r\n\r\nThis was repeated several times. Then the elephant asked the fly:\r\n\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"\r\n\r\nThe fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"\r\n\r\nThe elephant stopped eating and said:\r\n\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"\r\n\r\nUpon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:\r\n\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"\r\n\r\n\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"','The power of thoughts','','inherit','closed','closed','','152-revision-v1','','','2013-06-10 20:24:26','2013-06-11 00:24:26','',152,'http://divyayogamonteregie.org/french/?p=355',0,'revision','',0),(357,1,'2013-07-09 21:46:58','2013-07-10 01:46:58','&nbsp;\n\n&nbsp;\n\nA disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.\n\nHe asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"\n\nThe teacher looked at the disciple, smiled and said:\n\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"\n\nThis was repeated several times. Then the elephant asked the fly:\n\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"\n\nThe fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"\n\nThe elephant stopped eating and said:\n\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"\n\nUpon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:\n\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"\n\n\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"','The Elephant and the Fly  ','','inherit','closed','closed','','356-revision-v1','','','2013-07-09 21:46:58','2013-07-10 01:46:58','',356,'http://divyayogamonteregie.org/french/?p=357',0,'revision','',0),(520,1,'2013-07-09 21:47:41','2013-07-10 01:47:41','A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.\r\n\r\nHe asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"\r\n\r\nThe teacher looked at the disciple, smiled and said:\r\n\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"\r\n\r\nThis was repeated several times. Then the elephant asked the fly:\r\n\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"\r\n\r\nThe fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"\r\n\r\nThe elephant stopped eating and said:\r\n\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"\r\n\r\nUpon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:\r\n\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"\r\n\r\n\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"','The Elephant and the Fly  ','','inherit','closed','closed','','356-revision-v1','','','2013-07-09 21:47:41','2013-07-10 01:47:41','',356,'http://divyayogamonteregie.org/french/?p=520',0,'revision','',0),(359,1,'2013-06-10 20:10:06','2013-06-11 00:10:06','An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.\r\n\r\nAfter breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.\r\n\r\nWhen he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.','The Rock','','inherit','closed','closed','','135-revision-v1','','','2013-06-10 20:10:06','2013-06-11 00:10:06','',135,'http://divyayogamonteregie.org/french/?p=359',0,'revision','',0),(540,1,'2013-07-09 21:49:46','2013-07-10 01:49:46','<p style=\"text-align: justify;\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.</p>\r\n<p style=\"text-align: justify;\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.</p>\r\n<p style=\"text-align: justify;\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.</p>','The Rock','','inherit','closed','closed','','135-revision-v1','','','2013-07-09 21:49:46','2013-07-10 01:49:46','',135,'http://divyayogamonteregie.org/french/?p=540',0,'revision','',0),(361,1,'2013-10-05 21:43:18','2013-10-06 01:43:18','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Le lion-mouton</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">A propos de</span></span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> <span class=\"hps\">la nature cachée</span> <span class=\"hps\">de l\'Atman</span> <span class=\"hps\">[</span>l\'âme]:\n\n<span class=\"hps\">«Nous sommes comme</span> <span class=\"hps\">un roi,</span> <span class=\"hps\">qui</span> <span class=\"hps\">en devenant victime d\'amnésie,</span> <span class=\"hps\">met</span> <span class=\"hps\">son royaume</span> <span class=\"hps\">en lambeaux</span>, ne sachant pas <span class=\"hps\">qui il est vraiment</span>. <span class=\"hps\">Nous sommes comme un</span> <span class=\"hps\">lionceau</span> <span class=\"hps\">qui, après avoir</span> <span class=\"hps\">perdu</span> <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>sa mère</span> <span class=\"hps\">à la naissance,</span> <span class=\"hps\">grandit</span> <span class=\"hps\">par</span> <span class=\"hps\">accident</span> <span class=\"hps\">chez les</span> <span class=\"hps\">moutons qui le</span> <span class=\"hps\">prennent en pâturage</span> <span class=\"hps\">et</span><span style=\"mso-spacerun: yes;\">  </span>croyant <span class=\"hps\">qu\'il est</span> un des leurs, bêle <span class=\"hps\">comme eux</span>. \"- <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>Thème de</span> <span class=\"hps\">la littérature hindoue</span>.\n\n<span class=\"hps\">Une grosse lionne</span> était <span class=\"hps\">avec son lionceau à</span> <span class=\"hps\">la recherche d’une proie</span> <span class=\"hps\">lorsqu’ elle aperçut un troupeau de moutons</span>. <span class=\"hps\">Elle sauta</span> <span class=\"hps\">sur eux</span> <span class=\"hps\">et <span style=\"mso-spacerun: yes;\"> </span>succomba </span>sous l’<span class=\"hps\">effort.</span> <span class=\"hps\">Mais</span> <span class=\"hps\">le lionceau</span> <span class=\"hps\">n’avait plus</span> sa <span class=\"hps\">mère.</span> <span class=\"hps\">Les moutons</span> <span class=\"hps\">ont pris</span> <span class=\"hps\">soin du lionceau et l’ont amené avec eux. </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">Il</span> <span class=\"hps\">a grandi</span> <span class=\"hps\">avec eux ;</span> il <span class=\"hps\">mangeait de l\'herbe</span>, <span class=\"hps\">et</span> <span class=\"hps\">bêlait</span> <span class=\"hps\">comme un mouton</span>. <span class=\"hps\">Avec le temps</span>, il est devenu <span class=\"hps\">un grand lion</span>, <span class=\"hps\">à maturité</span>, <span class=\"hps\">et <span style=\"mso-spacerun: yes;\"> </span>il</span> <span class=\"hps\">bêlait encore et</span> <span class=\"hps\">pensait qu’il était</span> <span class=\"hps\">un mouton.</span>\n\n<span class=\"hps\">Un jour,</span> <span class=\"hps\">un autre</span> <span class=\"hps\">lion</span> <span class=\"hps\">est venu</span> <span class=\"hps\">à la recherche de</span> <span class=\"hps\">proies</span>, <span class=\"hps\">et</span> <span class=\"hps\">a été étonné</span> <span class=\"hps\">de constater qu’il y avait un lion au milieu du</span> <span class=\"hps\">troupeau de moutons</span> <span class=\"hps\">et qu’il réagissait tout comme eux à l’approche du danger.</span> <span class=\"hps\">Il a essayé</span> <span class=\"hps\">de s\'approcher du</span> <span class=\"hps\">mouton</span><span class=\"atn\">-</span>lion <span class=\"hps\">pour lui faire savoir qu’ il n’était pas</span> <span class=\"hps\">un mouton</span>, mais bien <span class=\"hps\">un lion, mais</span> <span class=\"hps\">celui-ci s\'est enfuit</span> <span class=\"hps\">à son approche.</span>\n\n<span class=\"hps\">Il a attendu le <span style=\"mso-spacerun: yes;\"> </span>moment opportun jusqu’au </span><span style=\"mso-spacerun: yes;\"> </span>jour où il a <span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">trouvé</span> <span class=\"hps\">le mouton</span><span class=\"atn\">-</span>lion <span class=\"hps\">endormi.</span> <span class=\"hps\">Il s\'approcha en lui disant: «Tu </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">es un</span> <span class=\"hps\">lion.</span>\"\n\n<span class=\"hps\">\"</span>Je suis un <span class=\"hps\">mouton</span>\" a dit en pleurant <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>et</span> <span class=\"hps\">bêlant</span> <span class=\"hps\">l\'autre</span> <span class=\"hps\">lion</span>, <span class=\"hps\">ne voulant pas</span> <span class=\"hps\">le croire.</span>\n\n<span class=\"hps\">Le</span> <span class=\"hps\">lion l’a traîné</span> <span class=\"hps\">vers</span> <span class=\"hps\">un lac</span> <span class=\"hps\">et a dit: «</span>Regarde, <span class=\"hps\">il ya</span> <span class=\"hps\">mon reflet</span> <span class=\"hps\">et le tien.</span>\"\n\n<span class=\"hps\">Puis, vint la comparaison.</span> <span class=\"hps\">Le</span> <span class=\"hps\">lion qui</span> <span class=\"hps\">bêlait</span> <span class=\"hps\">regarda l’autre lion</span> <span class=\"hps\">et</span> <span class=\"hps\">ensuite</span> <span class=\"hps\">son</span> <span class=\"hps\">propre</span> <span class=\"hps\">reflet</span>, <span class=\"hps\">et puis surgit l’idée</span> <span class=\"hps\">qu’il était un</span> <span class=\"hps\">lion.</span> <span class=\"hps\">Le</span> <span class=\"hps\">lion</span> <span class=\"hps\">rugit</span>, <span class=\"hps\">son bêlement</span> <span class=\"hps\">avait disparu.</span> <span class=\"hps\">[</span>Adapté <span class=\"hps\">d\'un conte de</span> <span class=\"hps\">Vivekananda</span> <span class=\"hps\">à</span> <span class=\"hps\">la conférence «</span>La <span class=\"hps\">vraie nature</span> <span class=\"hps\">de l\'homme»</span>, <span class=\"hps\">donnée à Londres vers</span> <span class=\"hps\">1899</span>.]\n\n<span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">\"</span>Vous êtes <span class=\"hps\">des lions</span>. <span class=\"hps\">.</span> <span class=\"hps\">.</span> <span class=\"hps\">et c’est parfait</span>. \"- <span class=\"hps\">Swami</span> <span class=\"hps\">Vivekananda</span></span></p>','Le lion-mouton','','inherit','closed','closed','','162-autosave-v1','','','2013-10-05 21:43:18','2013-10-06 01:43:18','',162,'http://divyayogamonteregie.org/french/?p=361',0,'revision','',0),(362,1,'2013-06-10 20:31:35','2013-06-11 00:31:35','A The Sheep-Lion\r\n\r\nAbout the hidden nature of Atman [Soul]:\r\n\r\n\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.\r\n\r\nA LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.\r\n\r\nOne day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.\r\n\r\nHowever, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"\r\n<table width=\"180\" border=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>\"I gather: \"A lion is . . . ahh, perfect!\"\"</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\"I am a sheep,\" cried and bleated the other lion, and could not believe otherwise.\r\n\r\nThe lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"\r\n\r\nThen came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]\r\n\r\n? \"You are lions . . . and perfect.\" - Swami Vivekananda','The sheep and the lion','','inherit','closed','closed','','162-revision-v1','','','2013-06-10 20:31:35','2013-06-11 00:31:35','',162,'http://divyayogamonteregie.org/french/?p=362',0,'revision','',0),(363,1,'2013-06-10 20:34:56','2013-06-11 00:34:56','TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,\r\n\r\n\"Well, well. I will hang on as long as I can, too.\"\r\n\r\nIt kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!\r\n\r\n? <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i>\r\n\r\n? <i>Churn your difficulty well or it may be to your loss.</i>','The two Frogs in Trouble','','inherit','closed','closed','','171-revision-v1','','','2013-06-10 20:34:56','2013-06-11 00:34:56','',171,'http://divyayogamonteregie.org/french/?p=363',0,'revision','',0),(552,1,'2013-07-09 22:04:41','2013-07-10 02:04:41','<p style=\"text-align: justify;\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,</p>\r\n<p style=\"text-align: justify;\">\"Well, well. I will hang on as long as I can, too.\"</p>\r\n<p style=\"text-align: justify;\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!</p>\r\n<p style=\"text-align: justify;\">? <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i></p>\r\n<p style=\"text-align: justify;\">? <i>Churn your difficulty well or it may be to your loss.</i></p>','The two Frogs in Trouble','','inherit','closed','closed','','171-revision-v1','','','2013-07-09 22:04:41','2013-07-10 02:04:41','',171,'http://divyayogamonteregie.org/french/?p=552',0,'revision','',0),(365,1,'2013-06-10 20:18:44','2013-06-11 00:18:44','An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"\r\n\r\nOne day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.\r\n\r\nAbout a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.\r\n\r\nAs he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"\r\n\r\n\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"','This is good','','inherit','closed','closed','','145-revision-v1','','','2013-06-10 20:18:44','2013-06-11 00:18:44','',145,'http://divyayogamonteregie.org/french/?p=365',0,'revision','',0),(555,1,'2013-07-09 22:05:40','2013-07-10 02:05:40','<p style=\"text-align: justify;\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"</p>\r\n<p style=\"text-align: justify;\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.</p>\r\n<p style=\"text-align: justify;\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.</p>\r\n<p style=\"text-align: justify;\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"</p>\r\n<p style=\"text-align: justify;\">\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"</p>','This is good','','inherit','closed','closed','','145-revision-v1','','','2013-07-09 22:05:40','2013-07-10 02:05:40','',145,'http://divyayogamonteregie.org/french/?p=555',0,'revision','',0),(367,1,'2013-06-10 20:42:52','2013-06-11 00:42:52','Please do not stand too close to the trees! You will not be able to enjoy the forest...\r\n\r\nA few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.\r\n\r\nHe climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.\r\n\r\nThey began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.\r\n\r\nHe made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"\r\n\r\nWith that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.\r\n\r\nThe minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"\r\n\r\nThe police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"\r\n\r\nOne must see a future, to have a future','Tomorrow is going to be better','','inherit','closed','closed','','173-revision-v1','','','2013-06-10 20:42:52','2013-06-11 00:42:52','',173,'http://divyayogamonteregie.org/french/?p=367',0,'revision','',0),(558,1,'2013-07-09 22:06:34','2013-07-10 02:06:34','<p style=\"text-align: justify;\">Please do not stand too close to the trees! You will not be able to enjoy the forest...</p>\r\n<p style=\"text-align: justify;\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.</p>\r\n<p style=\"text-align: justify;\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.</p>\r\n<p style=\"text-align: justify;\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.</p>\r\n<p style=\"text-align: justify;\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"</p>\r\n<p style=\"text-align: justify;\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.</p>\r\n<p style=\"text-align: justify;\">The minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"</p>\r\n<p style=\"text-align: justify;\">The police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"</p>\r\n<p style=\"text-align: justify;\">One must see a future, to have a future</p>','Tomorrow is going to be better','','inherit','closed','closed','','173-revision-v1','','','2013-07-09 22:06:34','2013-07-10 02:06:34','',173,'http://divyayogamonteregie.org/french/?p=558',0,'revision','',0),(369,1,'2013-07-09 21:37:27','2013-07-10 01:37:27','There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.\r\n\r\nSo the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.\r\n\r\n\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.\r\n\r\n\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.\r\n\r\nThe man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"\r\n\r\nAnd thus, the sage healed two people that day.','Wise Saint ','','inherit','closed','closed','','352-revision-v1','','','2013-07-09 21:37:27','2013-07-10 01:37:27','',352,'http://divyayogamonteregie.org/french/?p=369',0,'revision','',0),(378,1,'2013-07-09 20:03:30','2013-07-10 00:03:30','<p style=\"text-align: justify;\"><strong>Vinesh Saxena</strong> is yoga instructor trained by Patanjali yoga peeth. He has been practicing yoga since his childhood. Mr. Saxena is “self made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarship while he was student. He holds a Masters degree in Engineering and Masters in business administration along with an Accounting designation. He has worked a long time in engineering and has taught on part time basis in Concordia and McGill universities.</p>\r\n<p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his web site of foundation he also describes “Seven simple principals of life” if people follow these principals they can gain control of their life, be happy and self sufficient beings.</p>\r\n<p style=\"text-align: justify;\">As a second objective of the foundation he also challenges to find answers to unanswered questions. i.e. “is there a soul” “Is there life after death”  “Does God exist”</p>\r\n<p style=\"text-align: justify;\">With continuing theme of “help the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\"><strong>Meera Trivedi</strong> is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p>\r\n<p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>','Instructors','','inherit','closed','closed','','6-revision-v1','','','2013-07-09 20:03:30','2013-07-10 00:03:30','',6,'http://divyayogamonteregie.org/french/?p=378',0,'revision','',0),(379,1,'2013-08-09 13:06:59','2013-08-09 17:06:59','http://divyayogamonteregie.org/french/wp-content/uploads/2013/08/site_cloud_bg.jpg','site_cloud_bg.jpg','','inherit','closed','closed','','site_cloud_bg-jpg','','','2013-08-09 13:06:59','2013-08-09 17:06:59','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/08/site_cloud_bg.jpg',0,'attachment','image/jpeg',0),(382,1,'2013-07-09 17:23:22','2013-07-09 21:23:22','<div><strong>Each Saturday 9h-11h all year around\r\n</strong></div>\r\n<div>675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada</div>\r\n<div>Gym of Chambly Academy</div>\r\n<div><strong>[codepeople-post-map]</strong></div>\r\n&nbsp;\r\n\r\n<strong>and</strong>\r\n\r\n<strong>Thursday  6:30 to 7:30 Sept-June (when Terry Fox is open)\r\n</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-07-09 17:23:22','2013-07-09 21:23:22','',9,'http://divyayogamonteregie.org/french/?p=382',0,'revision','',0),(638,1,'2013-10-19 21:08:19','2013-10-20 01:08:19',' ','','','publish','closed','closed','','638','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=638',27,'nav_menu_item','',0),(639,1,'2013-10-19 21:08:19','2013-10-20 01:08:19',' ','','','publish','closed','closed','','639','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=639',28,'nav_menu_item','',0),(640,1,'2013-10-19 21:08:19','2013-10-20 01:08:19',' ','','','publish','closed','closed','','640','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=640',29,'nav_menu_item','',0),(395,1,'2013-09-16 17:26:37','2013-09-16 21:26:37','<p style=\"text-align: justify;\"><strong>Vinesh Saxena</strong> is yoga instructor trained by Patanjali yoga peeth. He has been practicing yoga since his childhood. Mr. Saxena is “self made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarship while he was student. He holds a Masters degree in Engineering and Masters in business administration along with an Accounting designation. He has worked a long time in engineering and has taught on part time basis in Concordia and McGill universities.</p>\r\n<p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his web site of foundation he also describes “Seven simple principals of life” if people follow these principals they can gain control of their life, be happy and self sufficient beings.</p>\r\n<p style=\"text-align: justify;\">As a second objective of the foundation he also challenges to find answers to unanswered questions. i.e. “is there a soul” “Is there life after death”  “Does God exist”</p>\r\n<p style=\"text-align: justify;\">With continuing theme of “help the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>\r\n<p style=\"text-align: justify;\"><strong>Meera Trivedi</strong> is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p>\r\n<p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>','Instructeurs','','inherit','closed','closed','','6-revision-v1','','','2013-09-16 17:26:37','2013-09-16 21:26:37','',6,'http://divyayogamonteregie.org/french/?p=395',0,'revision','',0),(394,1,'2013-09-09 20:35:43','2013-09-10 00:35:43','&nbsp;\r\n<ul>\r\n	<li>I was always blaming myself for everything that was wrong within my family.Guilt was always present.Since I have been doing yoga I realized I want to be responsible for myself.My adult children must take care of themselves.I realizes that even my children could be toxic to me and therefore I have to distant myself. I am greatful to yoga for being aware and to live in the moment.</li>\r\n</ul>\r\n- J.Smith\r\n<ul>\r\n	<li>Happiness is the state of mind. Material things do not make a person happy. Little things and action e.g. assisting or helping people, giving love &amp; affection,showing empathy &amp; compassion can change somebody\'s life----Anonymous</li>\r\n</ul>\r\n<ul>\r\n	<li>I think when we realize that we  are part of everything we become free and move forward.---Michel Sclafani</li>\r\n</ul>\r\n<ul>\r\n	<li>I read that in UK in certain Prisons yoga has been offered to Prisoners.All those who participated in the session felt the benefit not only physically but also mentally and spiritually.Yoga is beginning to be seen as a form of therapy that is beneficial to prisoners too.----- M. Brunet</li>\r\n	<li>This is my fourth session of Divya Yoga and I wish I had started long time ago.It is excellent for the body to keep fit and supple. ---Anonymous</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><strong> French</strong></span>\r\n<ul>\r\n	<li>Il  faut savoir pardonner et avoir la paix intérieure.</li>\r\n</ul>\r\nAnonyme\r\n<ul>\r\n	<li>  Le 27 juillet, j’ai participé à une session de yoga pour la paix au Parc Olympique de Montréal.  Il y avait 2,500 personnes le matin et 2,500 personnes l’après-midi (celui auquel j’ai participé), tous habillés de blanc.  Quelle énergie, quelle expérience! Ce fut fabuleux ! À recommencer chaque année!</li>\r\n</ul>\r\n<div>\r\n\r\n<b><span style=\"text-decoration: underline;\">Francine Hardy</span></b>\r\n\r\n</div>\r\n<ul>\r\n	<li> L’histoire que tout commence par nos pensées.  « Ce qui se produit dépend de moi. » Que j’ai un certain contrôle, à partir du moment que je le décide,  sur mes pensées et sur les gestes que je pose.  «Je pense donc je suis ».</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Richard Morion</span></b>\r\n<ul>\r\n	<li>  « Vivons intensément le présent, car l’avenir est incertain. » Ce qu’a dit mon défunt mari.   Rien n’est permanent dans ce monde.</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Maroeun</span></b>\r\n<ul>\r\n	<li>On ne peut pas être heureux dans la vie si on ne sait pas apprécier ce que l’on a.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>  Donnez et vous recevrez.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>    « Mon Dieu, donne moi le pouvoir de changer les choses que je puisse changer, d’accepter les choses que je ne puisse pas changer et la sagesse de faire la différence. »</li>\r\n</ul>\r\nLa prière de sérénité que j’ai découvert assez récemment et que j’essaie de la faire vivre chaque jour.\r\n\r\nJe suis touchée et très reconnaissante à notre professeur qui depuis plus de 3 (trois) ans n’a jamais manqué les samedi matin pour donner ce cours merveilleux.»\r\n\r\n<b><span style=\"text-decoration: underline;\">Mariana Gaubie</span></b>\r\n<ul>\r\n	<li>       « L’histoire » qui m’a le plus touchée est définitivement celle où M. Saxena demandait au groupe qui voulait un 20$, sans condition, un 20$ tout neuf, sans pli. Je crois qu’une dizaine / quinzaine de personnes ont alors levé leur main.  Il a alors froissé le 20$ et reposé la même question au groupe.  Je crois qu’alors nous avons été seulement 2 ou 3 à lever notre main.  M. Saxena a alors dit : « c’est le même 20$, il a la même valeur et je vous l’offre sans condition ».  Seulement une personne de plus a levé la main. ….</li>\r\n</ul>\r\nPeu importe ce que les gens nous font, les mauvais « événements» qui nous arrivent, nous sommes les mêmes personnes.  Nous n’avons pas moins de valeur...\r\n\r\nCette histoire m’a beaucoup aidé et continuera de m’aider tout au long de ma vie. C’est un exemple qui a marqué mon imaginaire et auquel je peux me référer pour m’aider au besoin.  J’aime beaucoup ce genre d’histoire que M. Saxena nous raconte.\r\n\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li> Il y a des situations qui arrivent parfois dans la vie qui ne sont pas toujours facile à vivre.  Mais on doit continuer à avancer sans se retourner en arrière.  Dans mon cas j’ai pris la décision d’avancer et de continuer à évoluer tout en respectant les limites de mon corps et de mes pensées.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<h1><span style=\"text-decoration: underline;\"><strong> </strong></span></h1>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Let us share','','inherit','closed','closed','','33-revision-v1','','','2013-09-09 20:35:43','2013-09-10 00:35:43','',33,'http://divyayogamonteregie.org/french/?p=394',0,'revision','',0),(392,1,'2013-09-07 19:47:40','2013-09-07 23:47:40','&nbsp;\r\n<div>\r\n<h1><strong><span style=\"text-decoration: underline;\"> French</span> </strong></h1>\r\n<table width=\"638\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" width=\"595\"></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"595\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<ul>\r\n	<li>Il  faut savoir pardonner et avoir la paix intérieure.</li>\r\n</ul>\r\nAnonyme\r\n<ul>\r\n	<li>  Le 27 juillet, j’ai participé à une session de yoga pour la paix au Parc Olympique de Montréal.  Il y avait 2,500 personnes le matin et 2,500 personnes l’après-midi (celui auquel j’ai participé), tous habillés de blanc.  Quelle énergie, quelle expérience! Ce fut fabuleux ! À recommencer chaque année!</li>\r\n</ul>\r\n<div>\r\n\r\n<b><span style=\"text-decoration: underline;\">Francine Hardy</span></b>\r\n\r\n</div>\r\n<ul>\r\n	<li> L’histoire que tout commence par nos pensées.  « Ce qui se produit dépend de moi. » Que j’ai un certain contrôle, à partir du moment que je le décide,  sur mes pensées et sur les gestes que je pose.  «Je pense donc je suis ».</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Richard Morion</span></b>\r\n<ul>\r\n	<li>  « Vivons intensément le présent, car l’avenir est incertain. » Ce qu’a dit mon défunt mari.   Rien n’est permanent dans ce monde.</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Maroeun</span></b>\r\n<ul>\r\n	<li>On ne peut pas être heureux dans la vie si on ne sait pas apprécier ce que l’on a.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>  Donnez et vous recevrez.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>    « Mon Dieu, donne moi le pouvoir de changer les choses que je puisse changer, d’accepter les choses que je ne puisse pas changer et la sagesse de faire la différence. »</li>\r\n</ul>\r\nLa prière de sérénité que j’ai découvert assez récemment et que j’essaie de la faire vivre chaque jour.\r\n\r\nJe suis touchée et très reconnaissante à notre professeur qui depuis plus de 3 (trois) ans n’a jamais manqué les samedi matin pour donner ce cours merveilleux.»\r\n\r\n<b><span style=\"text-decoration: underline;\">Mariana Gaubie</span></b>\r\n<ul>\r\n	<li>       « L’histoire » qui m’a le plus touchée est définitivement celle où M. Saxena demandait au groupe qui voulait un 20$, sans condition, un 20$ tout neuf, sans pli. Je crois qu’une dizaine / quinzaine de personnes ont alors levé leur main.  Il a alors froissé le 20$ et reposé la même question au groupe.  Je crois qu’alors nous avons été seulement 2 ou 3 à lever notre main.  M. Saxena a alors dit : « c’est le même 20$, il a la même valeur et je vous l’offre sans condition ».  Seulement une personne de plus a levé la main. ….</li>\r\n</ul>\r\nPeu importe ce que les gens nous font, les mauvais « événements» qui nous arrivent, nous sommes les mêmes personnes.  Nous n’avons pas moins de valeur...\r\n\r\nCette histoire m’a beaucoup aidé et continuera de m’aider tout au long de ma vie. C’est un exemple qui a marqué mon imaginaire et auquel je peux me référer pour m’aider au besoin.  J’aime beaucoup ce genre d’histoire que M. Saxena nous raconte.\r\n\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li> Il y a des situations qui arrivent parfois dans la vie qui ne sont pas toujours facile à vivre.  Mais on doit continuer à avancer sans se retourner en arrière.  Dans mon cas j’ai pris la décision d’avancer et de continuer à évoluer tout en respectant les limites de mon corps et de mes pensées.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<h1><span style=\"text-decoration: underline;\"><strong>English</strong></span></h1>\r\n<ul>\r\n	<li>I was always blaming myself for everything that was wrong within my family.Guilt was always present.Since I have been doing yoga I realized I want to be responsible for myself.My adult children must take care of themselves.I realizes that even my children could be toxic to me and therefore I have to distant myself. I am greatful to yoga for being aware and to live in the moment.</li>\r\n</ul>\r\n- J.Smith\r\n<ul>\r\n	<li>Happiness is the state of mind. Material things do not make a person happy. Little things and action e.g. assisting or helping people, giving love &amp; affection,showing empathy &amp; compassion can change somebody\'s life----Anonymous</li>\r\n</ul>\r\n<ul>\r\n	<li>I think when we realize that we  are part of everything we become free and move forward.---Michel Sclafani</li>\r\n</ul>\r\n<ul>\r\n	<li>I read that in UK in certain Prisons yoga has been offered to Prisoners.All those who participated in the session felt the benefit not only physically but also mentally and spiritually.Yoga is beginning to be seen as a form of therapy that is beneficial to prisoners too.----- M. Brunet</li>\r\n	<li>This is my fourth session of Divya Yoga and I wish I had started long time ago.It is excellent for the body to keep fit and supple. ---Anonymous</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Let us share','','inherit','closed','closed','','33-revision-v1','','','2013-09-07 19:47:40','2013-09-07 23:47:40','',33,'http://divyayogamonteregie.org/french/?p=392',0,'revision','',0),(396,1,'2013-09-16 22:49:51','2013-09-17 02:49:51','<p style=\"text-align: justify;\"> </p>\r\n<b>Professeurs</b>\r\n<p style=\"text-align: justify;\"> </p>\r\n<b>Vinesh Saxena</b> est un professeur de yoga formé par Patanjali yoga peeth. Il a pratiqué le yoga depuis son enfance. Monsieur Saxena est un autodidacte. Il vient d’une famille modeste et a travaillé fort pour atteindre ses buts. Il a gagné de nombreuses bourses d’études alors qu’il était étudiant. Il détient une maîtrise en ingénierie et une maitrise en administration des affaires avec une désignation de comptable. Il a longtemps travaillé dans le domaine de l’ingénierie et a enseigné aux universités Concordia et McGill.\r\n<p style=\"text-align: justify;\"> </p>\r\nIl a pris sa retraite vers l’âge de 50 ans dans le but de poursuivre sa passion. Il a constitué une fondation de bienfaisance qui vient en aide aux personnes nécessiteuses. Sur le site internet de la fondation, il décrit aussi « sept principes simples de vie » à partir desquels, si les gens les appliquent, les gens vont retrouver le contrôle de leur vie, devenir heureux et devenir des êtres autonomes.\r\n<p style=\"text-align: justify;\"> </p>\r\nPour deuxième objectif de la fondation, il a pour défi de trouver les réponses aux questions restées sans réponse. C’est à dire “y a-t-il une âme?”<span style=\"font-size: medium;\">  </span>“y a-t-il une vie après la mort?” “dieu existe-t-il?”\r\n<p style=\"text-align: justify;\"> </p>\r\nDans la continuité du thème “d’aider les gens nécessiteux » et de la spiritualité, il a débuté des sessions de yoga gratuites pour tous depuis janvier 2010. Quoi qu’il arrive, ces séances de yoga sont tenues chaque samedi (52 semaines par année) pour aider le bien-être de la population et l’amélioration de la société.\r\n<p style=\"text-align: justify;\"> </p>\r\n<b>Meera Trivedi</b> est un professeur de yoga formée par Patanjali yoga peeth. Elle est née d’une famille brahmane, le yoga était son rituel quotidien d’aussi loin qu’elle se souvienne. Elle était capable de se tenir sur la tête déjà à la maternelle. Son premier professeur de yoga était son père. Elle se souvient de son père dans la cour, assis sur son matelas, faisant des respirations nasales alternées. Après avoir fait son B.Sc en biologie et chimie, elle devint professeur de biologie dans un lycée en Inde. En enseignant l’anatomie humaine et la physiologie, alors qu’elle faisait du yoga, elle a compris graduellement l’utilité et les faits scientifiques impliqués dans le yoga. Elle a immigré aux États-Unis en 1994 et puis s’est mariée et a immigré au Canada. Présentement elle travaille en laboratoire à l’école<span style=\"font-size: medium;\">  </span>Chambly Academy.\r\n<p style=\"text-align: justify;\"> </p>\r\nElle croit que le yoga pratiqué sur le matelas, comme l’aérobie, provoque des effets thérapeutiques et physiothérapeutiques de la même façon qu’elle croit aux effets du yoga hors du tapis. Si nous faisons du yoga et menons aussi une vie pieuse, libre de culpabilité alors nos organes vont fonctionner correctement. Parce qu’à partir du moment où nous faisons quelque chose de mal, notre rythme cardiaque augmente alors pourquoi faire quelque chose de mal en premier lieu. En premier lieu, elle croit et met en pratique le yoga de la dévotion et le yoga du karma, puis vient en deuxième lieu la pratique du yoga sur matelas. Toutes ces choses ajoutent beaucoup à notre longévité, notre santé et notre âme. Elle croit aussi<span style=\"font-size: medium;\">  </span>pour le bon fonctionnement de l’esprit que le yoga du rire et le yoga du super cerveau peuvent apporter une grande contribution. Elle s’efforce également de suivre<span style=\"font-size: medium;\">  </span>les huit branches du yoga autant qu’elle peut.\r\n<p style=\"text-align: justify;\"><strong></strong></p>','Instructeurs','','inherit','closed','closed','','6-revision-v1','','','2013-09-16 22:49:51','2013-09-17 02:49:51','',6,'http://divyayogamonteregie.org/french/?p=396',0,'revision','',0),(399,1,'2013-09-17 16:22:11','2013-09-17 20:22:11','<h1><strong><span style=\"text-decoration: underline;\">Notre Mission</span></strong></h1>\r\nRendre accessible la pratique de base du yoga à tous et sans frais.\r\n\r\nLe fondateur de Divya Yoga, Swami Rana Dev, dit “ Une bonne santé est un droit de naissance pour chaque homme (femme)”. En effectuant les postures de yoga, asanas, les exercices, mudras, pranayama, méditation et en fournissant un discours de motivation cela permet à l’esprit de se libérer du stress et au corps de se libérer de la maladie. En mettant en évidence que la clé pour une bonne santé physique et une bonne santé mentale est sous le contrôle de chacun. En prenant contact avec son soi intérieur, nous pouvons expérimenter un état de bonheur complet et de félicité.\r\n\r\nCe Yoga Divya s’adresse aux gens de tout âge. Nous débutons notre session par des exercices de réchauffement (12-15), le salut au soleil et une lecture de motivation. Nous effectuons certaines accu pressions, 6 mudras, 7 pranayamas et des micro exercices pour les yeux, les doigts, les orteils, le visage et le cou. Font également partie du cours : le Yoga du rire et le Yoga du super cerveau. Nous terminons la session par la position savasana, la lecture d’un poème de motivation, mantra et prière.\r\n\r\nAprès la pratique du yoga, de super aliments : raisins et bananes sont disponibles pour les yogis.\r\n\r\nLe yoga est une façon merveilleuse de faire de l’exercice, de s’étirer et de relaxer le corps et l’esprit cela permettant d’avoir une vie en santé et de longue durée. Il permet de relier le corps, l’esprit et l’âme. Nous pouvons aussi créer un environnement où les gens peuvent interagir pour l’amélioration de leurs conditions de vie.','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-09-17 16:22:11','2013-09-17 20:22:11','',2,'http://divyayogamonteregie.org/french/?p=399',0,'revision','',0),(442,1,'2013-09-19 19:33:40','2013-09-19 23:33:40','<h6> <b>Chaque dernier samedi du mois, nous invitons un conférencier pour parler d’un sujet relié à notre mission. La conférence est d’une durée de 30-40 minutes suivie d’une période de 15minutes de questions. Par la suite, nous avons un brunch végétarien.</b></h6>\r\n<h6><span style=\"color: #0000ff;\"> </span></h6>','  Conférences de fin de mois    ','','inherit','closed','closed','','25-revision-v1','','','2013-09-19 19:33:40','2013-09-19 23:33:40','',25,'http://divyayogamonteregie.org/french/?p=442',0,'revision','',0),(401,1,'2013-09-17 16:28:50','2013-09-17 20:28:50','<h6> </h6>\r\n<h1><span style=\"text-decoration: underline;\">Conférences de fin de mois    </span></h1>\r\n<h6> </h6>\r\n<b>Chaque dernier samedi du mois, nous invitons un conférencier pour parler d’un sujet relié à notre mission. La conférence est d’une durée de 30-40 minutes suivie d’une période de 15minutes de questions. Par la suite, nous avons un brunch végétarien.</b><b></b>\r\n<h6><span style=\"color: #0000ff;\"> </span></h6>','Month end conferences','','inherit','closed','closed','','25-revision-v1','','','2013-09-17 16:28:50','2013-09-17 20:28:50','',25,'http://divyayogamonteregie.org/french/?p=401',0,'revision','',0),(404,1,'2013-09-17 17:36:46','2013-09-17 21:36:46','<b>Ce que nous faisons !</b>\r\n\r\nChaque Samedi matin de  9.00 à 11.00  , nous participons à la session – une série d’exercices physiques et respiratoires dans le but de rendre notre corps flexible .  Nous prenons soin de notre corps, esprit et âme avec des paroles  de sagesse , des affirmations positives, des histoires de sagesse, des poèmes de motivation, des prières et nos mantras. Le Yoga est un mode de vie complet.\r\n\r\nChaque dernier Samedi du mois nous avons un conférencier de 11.00 à 11.45 et par la suite nous mangeons ensemble. Les aliments sont fournis par la Fondation familiale Vinesh Saxena, Meera  prépare pour nous d’incroyables mets Indiens, et si vous désirez partager avec nous un petit plat vous êtes bienvenue.\r\n\r\nSi c’est votre premier jour, veuillez arriver plus tôt à 8.30 matin pour prendre le temps de remplir une feuille d’information. Mihaela sera heureuse de vous rencontrer.\r\n\r\nConséquemment veuillez arriver  10-15 minutes plus tôt dans le but d’avoir le temps d’installer votre matelas etc… pour que nous puissions débuter dès 9.00 du matin\r\n\r\nVeuillez lire ci-bas une courte description d’exercices que nous pratiquons chaque Samedi.\r\n\r\n&nbsp;\r\n<ol>\r\n	<li><b>Mise en forme- </b> une série de  12-15 exercices pour réchauffer le corps: c’est-à-dire plier les genoux, plier devant, plier derrière, plier à gauche, étirement des épaules, sauter, bouger les mains, plier le genou droit, plier le genou gauche, jumping jack, secouez votre corps, position de descente/remontée du chien etc…</li>\r\n	<li><b>Salutation</b> <b>du soleil</b>– Surya Namaskar, une série fluide de 12 postures qui développent la force et la flexibilité des muscles et de la colonne vertébrale. Ces postures aussi réchauffent le corps et renforcissent les muscles abdominaux.</li>\r\n	<li><b>Discours motivant</b> – notre professeur  Vinesh Saxena partage avec nous des histoires de sagesse et des conseils pratiques pour une vie heureuse, en santé, motivante, et épanouie.</li>\r\n	<li><b>Acu-pression</b> (technique de médecine alternative qui provient de l’acupuncture) appuyer en faisant une rotation sur le bout de chacun de vos doigts pour soulager les problèmes de sinus,  au milieu de la paume de votre main pour les problèmes de rein et sous votre pouce pour le bien-être de la thyroïde.</li>\r\n	<li><b>Exercices pour les yeux et le cou</b>– nous prenons soin de chaque partie du corps. Yeux: déplacer les yeux vers la droite, gauche, en haut et en bas ; les rouler dans le sens des aiguilles d’une horloge, puis en sens inverse. Étirer le bras droit devant vous, pouce vers le haut, fixer le pouce tout en emmenant votre main vers votre nez puis emmener-la plus loin. Allonger les deux bras devant, le regard au milieu sur les pouces. Séparer, déplacer les bras vers l’extérieur tant que vous les voyez encore, restez dans cette position 30 secondes, remmener les bras ensemble.<b>     </b>\r\nCou: pencher à gauche, pencher à droite, devant et  vers l’arrière, rotation dans le sens des aiguilles d’une horloge, puis en sens inverse, regarder à droite et regarder à gauche.</li>\r\n	<li><b>Sept Pranayamas  </b>(exercices de respiration) Lorsque nous faisons du yoga 75% des bienfaits proviennent des exercices de respiration et 25% des asanas. Nous incluons  7 exercices de respiration Durant notre pratique: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(position des doigts) – sont utilisées en même temps que le pranayama, habituellement lorsque nous sommes assis , pour stimuler différentes parties de notre corps avec des respirations et pour influencer le courant de prana dans notre corps.</li>\r\n	<li><b>100 postures, exercices et asanas</b> – grâce à ceux-ci nous développons la flexibilité de la tête jusqu’aux orteils. Nous faisons aussi des exercices d<b>’étirement </b>pour aider<b> </b>notre corps à stimuler le système lymphatique, concentrer sur des points clés de notre corps y compris la région de la  tête et du cou, épaules,  doigts,  bras, abdomen, hanches, genoux et pieds.\r\nNous faisons des exercices pour soulager l’arthrite, le diabète, maladie du coeur, cholestérol, douleurs du dos, insomnie etc…</li>\r\n	<li><b>Yoga du rire </b>– avec Meera – une idée révolutionnaire – simple et profonde. Inventé par  Dr. Madan Kataria, un physicien de  Mumbai. Aujourd’hui, c’est devenu un phénomène dans le monde entier avec plus  6000 Clubs Sociaux du rire dans environ 60 pays. Nous combinons le Rire Inconditionnel avec le Prayanama. Le concept du Yoga du Rire est basé sur le fait scientifique que le corps ne peut pas différencier le rire simulé du vrai rire. L’on obtient les mêmes résultats bénéfiques  physiologiques et psychologiques. Nous faisons aussi le <b>Yoga du super cerveau </b> pour stimuler les cellules du cerveau et améliorer la mémoire. Cette forme de yoga a été inventé par un médecin de la  Virginie et est très populaire parmi la communauté médicale.</li>\r\n	<li><b>Shavasana </b>– Après la session de yoga, allongé sur le dos sur le matelas: Shavasana permet au corps  de se remettre au neutre et de se réinitialer.  Suite à une pratique équilibrée, le corps a été étiré, contracté, tourné et inversé . Le corps, l’esprit et l’âme reçoivent un repos complet, de l’énergie, de la motivation et  du bonheur.</li>\r\n	<li><b>Poème motivant</b> –  est lu à la fin de la session pour nous garder motivés, concentrés et recharger nos batteries.</li>\r\n	<li><b>Mantra</b> – à la fin nous répétons notre mantra et reconnaissons notre mantra – CE QUI SERA CELA DÉPEND DE MOI.</li>\r\n</ol>\r\n<p align=\"center\"><b>Nous vous invitons à nous rejoindre tous les Samedis matin de 9.00 à 11.00 </b>\r\n<b>à  Chambly Academy 675 rue Green, St-Lambert, QC, J4P 1V9</b></p>','What we do !','','inherit','closed','closed','','12-revision-v1','','','2013-09-17 17:36:46','2013-09-17 21:36:46','',12,'http://divyayogamonteregie.org/french/?p=404',0,'revision','',0),(405,1,'2013-09-17 17:38:29','2013-09-17 21:38:29','<b>Ce que nous faisons !</b>\r\n\r\nChaque Samedi matin de  9.00 à 11.00  , nous participons à la session – une série d’exercices physiques et respiratoires dans le but de rendre notre corps flexible .  Nous prenons soin de notre corps, esprit et âme avec des paroles  de sagesse , des affirmations positives, des histoires de sagesse, des poèmes de motivation, des prières et nos mantras. Le Yoga est un mode de vie complet.\r\n\r\nChaque dernier Samedi du mois nous avons un conférencier de 11.00 à 11.45 et par la suite nous mangeons ensemble. Les aliments sont fournis par la Fondation familiale Vinesh Saxena, Meera  prépare pour nous d’incroyables mets Indiens, et si vous désirez partager avec nous un petit plat vous êtes bienvenue.\r\n\r\nSi c’est votre premier jour, veuillez arriver plus tôt à 8.30 matin pour prendre le temps de remplir une feuille d’information. Mihaela sera heureuse de vous rencontrer.\r\n\r\nConséquemment veuillez arriver  10-15 minutes plus tôt dans le but d’avoir le temps d’installer votre matelas etc… pour que nous puissions débuter dès 9.00 du matin\r\n\r\nVeuillez lire ci-bas une courte description d’exercices que nous pratiquons chaque Samedi.\r\n\r\n&nbsp;\r\n<ol>\r\n	<li><b>Mise en forme- </b> une série de  12-15 exercices pour réchauffer le corps: c’est-à-dire plier les genoux, plier devant, plier derrière, plier à gauche, étirement des épaules, sauter, bouger les mains, plier le genou droit, plier le genou gauche, jumping jack, secouez votre corps, position de descente/remontée du chien etc…</li>\r\n	<li><b>Salutation</b> <b>du soleil</b>– Surya Namaskar, une série fluide de 12 postures qui développent la force et la flexibilité des muscles et de la colonne vertébrale. Ces postures aussi réchauffent le corps et renforcissent les muscles abdominaux.</li>\r\n	<li><b>Discours motivant</b> – notre professeur  Vinesh Saxena partage avec nous des histoires de sagesse et des conseils pratiques pour une vie heureuse, en santé, motivante, et épanouie.</li>\r\n	<li><b>Acu-pression</b> (technique de médecine alternative qui provient de l’acupuncture) appuyer en faisant une rotation sur le bout de chacun de vos doigts pour soulager les problèmes de sinus,  au milieu de la paume de votre main pour les problèmes de rein et sous votre pouce pour le bien-être de la thyroïde.</li>\r\n	<li><b>Exercices pour les yeux et le cou</b>– nous prenons soin de chaque partie du corps. Yeux: déplacer les yeux vers la droite, gauche, en haut et en bas ; les rouler dans le sens des aiguilles d’une horloge, puis en sens inverse. Étirer le bras droit devant vous, pouce vers le haut, fixer le pouce tout en emmenant votre main vers votre nez puis emmener-la plus loin. Allonger les deux bras devant, le regard au milieu sur les pouces. Séparer, déplacer les bras vers l’extérieur tant que vous les voyez encore, restez dans cette position 30 secondes, remmener les bras ensemble.<b>     </b>\r\nCou: pencher à gauche, pencher à droite, devant et  vers l’arrière, rotation dans le sens des aiguilles d’une horloge, puis en sens inverse, regarder à droite et regarder à gauche.</li>\r\n	<li><b>Sept Pranayamas  </b>(exercices de respiration) Lorsque nous faisons du yoga 75% des bienfaits proviennent des exercices de respiration et 25% des asanas. Nous incluons  7 exercices de respiration Durant notre pratique: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(position des doigts) – sont utilisées en même temps que le pranayama, habituellement lorsque nous sommes assis , pour stimuler différentes parties de notre corps avec des respirations et pour influencer le courant de prana dans notre corps.</li>\r\n	<li><b>100 postures, exercices et asanas</b> – grâce à ceux-ci nous développons la flexibilité de la tête jusqu’aux orteils. Nous faisons aussi des exercices d<b>’étirement </b>pour aider<b> </b>notre corps à stimuler le système lymphatique, concentrer sur des points clés de notre corps y compris la région de la  tête et du cou, épaules,  doigts,  bras, abdomen, hanches, genoux et pieds.\r\nNous faisons des exercices pour soulager l’arthrite, le diabète, maladie du coeur, cholestérol, douleurs du dos, insomnie etc…</li>\r\n	<li><b>Yoga du rire </b>– avec Meera – une idée révolutionnaire – simple et profonde. Inventé par  Dr. Madan Kataria, un physicien de  Mumbai. Aujourd’hui, c’est devenu un phénomène dans le monde entier avec plus  6000 Clubs Sociaux du rire dans environ 60 pays. Nous combinons le Rire Inconditionnel avec le Prayanama. Le concept du Yoga du Rire est basé sur le fait scientifique que le corps ne peut pas différencier le rire simulé du vrai rire. L’on obtient les mêmes résultats bénéfiques  physiologiques et psychologiques. Nous faisons aussi le <b>Yoga du super cerveau </b> pour stimuler les cellules du cerveau et améliorer la mémoire. Cette forme de yoga a été inventé par un médecin de la  Virginie et est très populaire parmi la communauté médicale.</li>\r\n	<li><b>Shavasana </b>– Après la session de yoga, allongé sur le dos sur le matelas: Shavasana permet au corps  de se remettre au neutre et de se réinitialer.  Suite à une pratique équilibrée, le corps a été étiré, contracté, tourné et inversé . Le corps, l’esprit et l’âme reçoivent un repos complet, de l’énergie, de la motivation et  du bonheur.</li>\r\n	<li><b>Poème motivant</b> –  est lu à la fin de la session pour nous garder motivés, concentrés et recharger nos batteries.</li>\r\n	<li><b>Mantra</b> – à la fin nous répétons notre mantra et reconnaissons notre mantra – CE QUI SERA CELA DÉPEND DE MOI.</li>\r\n</ol>\r\n<p align=\"center\"><b>Nous vous invitons à nous rejoindre tous les Samedis matin de 9.00 à 11.00 </b>\r\n<b>à  Chambly Academy 675 rue Green, St-Lambert, QC, J4P 1V9</b></p>','Ce que nous faisons!','','inherit','closed','closed','','12-revision-v1','','','2013-09-17 17:38:29','2013-09-17 21:38:29','',12,'http://divyayogamonteregie.org/french/?p=405',0,'revision','',0),(613,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','613','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=613',36,'nav_menu_item','',0),(614,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','614','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=614',37,'nav_menu_item','',0),(615,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','615','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=615',38,'nav_menu_item','',0),(408,1,'2013-09-17 17:45:53','2013-09-17 21:45:53','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter  wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"450\" height=\"211\" /></a></p>\r\n<p style=\"text-align: justify;\"><b>Vegetarian Food- Served and shared on last Saturday of the month</b></p>\r\n<p style=\"text-align: justify;\">The vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.</p>\r\n<p style=\"text-align: justify;\">The Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time</p>\r\n<p style=\"text-align: justify;\">Then he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.</p>\r\n<p style=\"text-align: justify;\">The third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.</p>\r\n<p style=\"text-align: justify;\">It is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.</p>','Recettes Végétariennes','','inherit','closed','closed','','190-revision-v1','','','2013-09-17 17:45:53','2013-09-17 21:45:53','',190,'http://divyayogamonteregie.org/french/?p=408',0,'revision','',0),(409,1,'2013-09-17 17:47:00','2013-09-17 21:47:00','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter  wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"450\" height=\"211\" /></a></p>\n<p style=\"text-align: justify;\"> </p>\n<p style=\"text-align: justify;\"> </p>\n<p style=\"text-align: justify;\"><b>Vegetarian Food- Served and shared on last Saturday of the month</b></p>\n<p style=\"text-align: justify;\">The vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.</p>\n<p style=\"text-align: justify;\">The Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time</p>\n<p style=\"text-align: justify;\">Then he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.</p>\n<p style=\"text-align: justify;\">The third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.</p>\n<p style=\"text-align: justify;\">It is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.</p>','Recettes Végétariennes','','inherit','closed','closed','','190-autosave-v1','','','2013-09-17 17:47:00','2013-09-17 21:47:00','',190,'http://divyayogamonteregie.org/french/?p=409',0,'revision','',0),(410,1,'2013-09-17 17:47:29','2013-09-17 21:47:29','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter  wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"450\" height=\"211\" /></a></p>\r\n<b>De la nourriture végétarienne est servie et partagée chaque dernier Samedi du mois</b>\r\n\r\nLes plats végétariens principaux sont faits par Meera Trivedi cependant les membres de notre communauté de yoga peuvent aussi apporter des aliments/fruits etc… pour le partage.\r\n\r\nLe meilleur choix d’aliments est de type cru. A l’origine, les premiers hommes avaient l’habitude de manger des fruits.\r\n\r\nPar la suite, ils ont inventé le feu et ont commencé à utiliser la cuisson. Cela a donné un goût différent aux aliments qu’ils aimaient et mangeaient. Les aliments cuits ont moins de valeur que les aliments crus parce que leur valeur nutritionnelle est perdue dans la cuisson.\r\n\r\nLe troisième type d’aliments est celui mis en conserve, dans lesquels les industries ajoutent des préservatifs afin d’en conserver la couleur. La nourriture doit être digérée dans notre corps et non pas conservée. Malgré que nous rincions les aliments, les préservatifs ne sont pas enlevés à 100%. Les préservatifs sont néfastes pour notre système. Voilà la raison pour laquelle il est préférable de manger des aliments frais plutôt que de manger des aliments cuits et de chercher à éviter les aliments en conserve qui sont vendus pour des raisons de commodité.\r\n\r\nIl est bon de passer du temps dans la cuisine et de cuisiner de bons aliments nutritifs pour la famille. La nourriture doit avoir beaucoup d’arôme parce que les arômes rafraîchissent l’esprit. Les herbes aromatiques doivent être ajoutées aux aliments après la cuisson dans le but d’avoir leur plein effet. Nous devrions manger moins de sel et réduire/diminuer les sucres transformés. À la place, nous devrions manger différents types de fruits chaque jour.\r\n<p style=\"text-align: justify;\"> </p>','Recettes Végétariennes','','inherit','closed','closed','','190-revision-v1','','','2013-09-17 17:47:29','2013-09-17 21:47:29','',190,'http://divyayogamonteregie.org/french/?p=410',0,'revision','',0),(412,1,'2013-09-17 18:01:41','2013-09-17 22:01:41','<b><span style=\"text-decoration: underline;\"> </span></b>\n<h1><span style=\"text-decoration: underline;\"><b>Urad ou lentilles blanches à l’aneth et gingembre.</b></span></h1>\n&nbsp;\n\n<span style=\"text-decoration: underline;\"><b> </b></span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nLentilles blanches  250 grammes\n\nEau 1250 ml (5 fois les lentilles)\n\nCurcuma 1 cuillère à  thé\n\nSel  1 ½ cuillère à thé ou au goût\n\nGingembre râpé 1 ½ pouce\n\nAneth ¼ pqt  bien lavé en eau profonde ,  coupé fin\n\nLentilles : rincer  deux fois car vous ne savez pas par combien de mains d’hommes il a passé avant d’être entre vos mains.\n\nMettre dans une marmite, Ajouter sel, Ajouter curcuma,  Ajouter l’eau, Mettre la marmite sur la cuisinière à feu moyen,Mettre le sifflet  et laisser le sifflet  souffler pendant 2 minutes.Lorsque refroidi, ouvrir la marmite. Ajouter l’aneth et le gingembre.\n\n&nbsp;\n\ni vous le désirez, faites sauter avec 1 cuillère d’huile, ¼ cuillère gingembre et ¼ cuillère à thé de piment fort .Sinon, c’est prêt à servir sans avoir à le faire sauter.\n\n&nbsp;\n\nCelui qui est montré sur la photo est fait avec 3 X fois d’eau au lieu de 5 X fois.\n\n<b><span style=\"text-decoration: underline;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022.jpg\"><img class=\"aligncenter size-medium wp-image-225\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022-300x168.jpg\" width=\"450\" height=\"252\" /></a></span></b>\n\n&nbsp;\n\n.',' Urad ou lentilles blanches a l\'aneth et gingembra.','','inherit','closed','closed','','202-autosave-v1','','','2013-09-17 18:01:41','2013-09-17 22:01:41','',202,'http://divyayogamonteregie.org/french/?p=412',0,'revision','',0),(414,1,'2013-09-17 18:02:29','2013-09-17 22:02:29','<b><span style=\"text-decoration: underline;\"> </span></b>\r\n<h1><span style=\"text-decoration: underline;\"><b>Urad ou lentilles blanches à l’aneth et gingembre.</b></span></h1>\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><b> </b></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLentilles blanches  250 grammes\r\n\r\nEau 1250 ml (5 fois les lentilles)\r\n\r\nCurcuma 1 cuillère à  thé\r\n\r\nSel  1 ½ cuillère à thé ou au goût\r\n\r\nGingembre râpé 1 ½ pouce\r\n\r\nAneth ¼ pqt  bien lavé en eau profonde ,  coupé fin\r\n\r\nLentilles : rincer  deux fois car vous ne savez pas par combien de mains d’hommes il a passé avant d’être entre vos mains.\r\n\r\nMettre dans une marmite, Ajouter sel, Ajouter curcuma,  Ajouter l’eau, Mettre la marmite sur la cuisinière à feu moyen,Mettre le sifflet  et laisser le sifflet  souffler pendant 2 minutes.Lorsque refroidi, ouvrir la marmite. Ajouter l’aneth et le gingembre.Si vous le désirez, faites sauter avec 1 cuillère d’huile, ¼ cuillère gingembre et ¼ cuillère à thé de piment fort .Sinon, c’est prêt à servir sans avoir à le faire sauter.Celui qui est montré sur la photo est fait avec 3 X fois d’eau au lieu de 5 X fois.\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022.jpg\"><img class=\"aligncenter size-medium wp-image-225\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022-300x168.jpg\" width=\"450\" height=\"252\" /></a></span></b>\r\n\r\n&nbsp;\r\n\r\n.',' Urad ou lentilles blanches a l\'aneth et gingembra.','','inherit','closed','closed','','202-revision-v1','','','2013-09-17 18:02:29','2013-09-17 22:02:29','',202,'http://divyayogamonteregie.org/french/?p=414',0,'revision','',0),(413,1,'2013-09-17 17:58:32','2013-09-17 21:58:32','<b><span style=\"text-decoration: underline;\"> </span></b>\r\n<h1><span style=\"text-decoration: underline;\"><b>Urad ou lentilles blanches à l’aneth et gingembre.</b></span></h1>\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><b> </b></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLentilles blanches  250 grammes\r\n\r\n&nbsp;\r\n\r\nEau 1250 ml (5 fois les lentilles)\r\n\r\n&nbsp;\r\n\r\nCurcuma 1 cuillère à  thé\r\n\r\n&nbsp;\r\n\r\nSel  1 ½ cuillère à thé ou au goût\r\n\r\n&nbsp;\r\n\r\nGingembre râpé 1 ½ pouce\r\n\r\n&nbsp;\r\n\r\nAneth ¼ pqt  bien lavé en eau profonde ,  coupé fin\r\n\r\n&nbsp;\r\n\r\nLentilles : rincer  deux fois car vous ne savez pas par combien de mains d’hommes il a passé avant d’être entre vos mains.\r\n\r\n&nbsp;\r\n\r\nMettre dans une marmite\r\n\r\n&nbsp;\r\n\r\nAjouter sel\r\n\r\n&nbsp;\r\n\r\nAjouter curcuma\r\n\r\n&nbsp;\r\n\r\nAjouter l’eau\r\n\r\n&nbsp;\r\n\r\nMettre la marmite sur la cuisinière à feu moyen.\r\n\r\n&nbsp;\r\n\r\nMettre le sifflet  et laisser le sifflet  souffler pendant 2 minutes.\r\n\r\n&nbsp;\r\n\r\nLorsque refroidi, ouvrir la marmite. Ajouter l’aneth et le gingembre.\r\n\r\n&nbsp;\r\n\r\nSi vous le désirez, faites sauter avec 1 cuillère d’huile, ¼ cuillère gingembre et ¼ cuillère à thé de piment fort .Sinon, c’est prêt à servir sans avoir à le faire sauter.\r\n\r\n&nbsp;\r\n\r\nCelui qui est montré sur la photo est fait avec 3 X fois d’eau au lieu de 5 X fois.\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022.jpg\"><img class=\"aligncenter size-medium wp-image-225\" alt=\"image002\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image0022-300x168.jpg\" width=\"450\" height=\"252\" /></a></span></b>\r\n\r\n&nbsp;\r\n\r\n.',' Urad ou lentilles blanches a l\'aneth et gingembra.','','inherit','closed','closed','','202-revision-v1','','','2013-09-17 17:58:32','2013-09-17 21:58:32','',202,'http://divyayogamonteregie.org/french/?p=413',0,'revision','',0),(415,1,'2013-06-16 01:01:04','2013-06-16 05:01:04','<b><i><span style=\"text-decoration: underline;\">Ingredients:</span></i></b>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image003.jpg\"><img class=\"aligncenter  wp-image-253\" style=\"border: 1px solid black; margin: 1px;\" alt=\"image003\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image003-300x204.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n<i>1 package tea biscuits -200 g</i>\r\n\r\n<i>1 package butter-soft 125 g</i>\r\n\r\n<i>1 jar- jam 300 g</i>\r\n\r\n<i>150 g ground walnuts</i>\r\n\r\n<i> Blending jam with half the chopped walnuts.</i>\r\n\r\n<i>Smear each biscuit with butter and jam and paste the other. With the rest of the mixture and smear countries.\r\nWrap in foil and put in the fridge for 30 minutes.</i>\r\n\r\n<i>Once the roll is tight little roll it in the remaining chopped walnuts.</i>\r\n\r\n<i>We\'re going to put the roll a few hours in the refrigerator.</i>\r\n\r\n<i> It\'s nice to make in the evening and eat the next day.</i>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Biscuit roll with jam','','inherit','closed','closed','','209-revision-v1','','','2013-06-16 01:01:04','2013-06-16 05:01:04','',209,'http://divyayogamonteregie.org/french/?p=415',0,'revision','',0),(416,1,'2013-09-17 18:07:45','2013-09-17 22:07:45','&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image003.jpg\"><img class=\"aligncenter  wp-image-253\" style=\"border: 1px solid black; margin: 1px;\" alt=\"image003\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image003-300x204.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n<b>Rouleau de biscuit avec confiture</b>\r\n\r\n<b><i><span style=\"text-decoration: underline;\">Ingrédients:</span></i></b>\r\n<p align=\"center\"> </p>\r\n<i>1 paquet de biscuits pour le thé -200 g</i>\r\n\r\n<i>1 paquet de beurre mou 125 g</i>\r\n\r\n<i>1 pot de confiture 300 g</i>\r\n\r\n<i>150 g noix de grenoble hâchées</i>\r\n\r\n<i> Mélanger la confiture avec la moitié des noix hachées.</i>\r\n\r\n<i>Enduire chaque biscuit avec du beurre et de la confiture et coller un à l’autre avec le reste du mélange. </i>\r\n\r\n<i>Envelopper dans du papier aluminium et mettre au réfrigérateur pendant 30 minutes\r\n\r\n</i>\r\n\r\n<i>Une fois que le rouleau commence à se raffermir, le rouler dans le reste des noix de grenoble .</i>\r\n\r\n<i>Nous allons remettre le rouleau quelques heures au réfrigérateur.</i>\r\n\r\n<i> Ce qui est bien, c’est de le préparer en soirée et  le manger le lendemain.</i>','Rouleau de biscuit avec confiture.','','inherit','closed','closed','','209-revision-v1','','','2013-09-17 18:07:45','2013-09-17 22:07:45','',209,'http://divyayogamonteregie.org/french/?p=416',0,'revision','',0),(417,1,'2013-06-15 23:19:22','2013-06-16 03:19:22','&nbsp;\r\n\r\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> to eating in large quantity.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\r\n\r\n2 onions\r\n3 Lemon juice\r\n1/2 tea spoon salt or according to your taste\r\n4 Red hot peppers.\r\n\r\nAfter peeling and cutting blend all the things into along with the lemon juice\r\nextracted from 3 lemons. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\r\n\r\n4 big mangoes ( green pr little bit ripening)\r\n4 Hot green peppers\r\n1 tea spoon of salt\r\n4 table spoon of olive oil\r\n\r\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\r\nYou can add mint into this to give a nice flavor.\r\nIf mangoes are totally green you can add little bit of sugar.\r\n\r\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.\r\n</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a></span></b>\r\n\r\n4 table spoon of peanuts\r\n1/2 tea spoon of salt\r\n8 tablespoon of natural plain yogurt\r\n3 red peppers or 1/2 tea spoon of red pepper powder.\r\n\r\nBlend them in blender like fine paste. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce\r\n</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\r\n</span></b>\r\n1 bunch of coriander leaves well cut and washed.\r\n3-4 hot pepper\r\n\r\n2-3 fresh big lemons juice\r\n1/2 tea spoon of Salt\r\n\r\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\r\ncan add more lemon in it.\r\nYour sauce is ready to serve.\r\n\r\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\r\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in your refrigerator.\r\n\r\n<b><span style=\"text-decoration: underline;\"> 5. Yogourt sauce</span></b>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n<b></b>½ l of  plain yogourt\r\n\r\n¼ tea spoon of salt\r\n\r\n¼   tea spoon of Red hot pepper powder\r\n\r\n¼ tea spoon of roasted cumin seeds powder\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\r\n\r\n&nbsp;\r\n\r\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\r\n\r\n&nbsp;\r\n\r\nThis is the healthiest sauce you can make within 5 minutes.\r\n\r\n&nbsp;\r\n\r\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>6. Mint sauce or chatni</b>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\r\n\r\nOne pack of well washed Mint leaves.\r\n\r\n2 lemons\r\n\r\n4 hot pepper\r\n\r\n1 tea spoon salt.\r\n\r\nAll blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-revision-v1','','','2013-06-15 23:19:22','2013-06-16 03:19:22','',213,'http://divyayogamonteregie.org/french/?p=417',0,'revision','',0),(419,1,'2013-09-17 18:50:43','2013-09-17 22:50:43','<b><span lang=\"FR\" style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Différentes sortes de sauces aromatiques ou chatni</span></b>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> Le mot<span style=\"mso-spacerun: yes;\">  </span>Chatni provient du verbe Chatna qui signifie lécher</span></b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">. On le consomme en petite quantité car la plupart des chatni ou sauces sont faites à partir du jus de citron a<b>lors pour enlever son goût aigre</b> nous devons ajouter plus de sel. C’est pourquoi son léchage est mieux <b>par rapport</b> à en manger en grande quantité.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1. Sauce à l’oignon.</span></span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ingrédients</span></span></b><b></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 oignons\r\nJus <span style=\"mso-spacerun: yes;\"> </span>de <span style=\"mso-spacerun: yes;\"> </span>3 <span style=\"mso-spacerun: yes;\"> </span>citrons\r\n½ <span style=\"mso-spacerun: yes;\"> </span>cuillère à thé de sel <span style=\"mso-spacerun: yes;\"> </span>ou au goût\r\n4 piments rouges forts.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Après avoir épluché et coupé, tout mettre au mélangeur avec le jus extraits de 3 citrons. Votre sauce est prête à servir.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2. Sauce à la mangue</span></span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 grosses mangues ( vert <span style=\"mso-spacerun: yes;\"> </span>ou peu mûres)\r\n4 piments verts forts\r\n1 cuillère thé sel\r\n4 cuillère table huile d’olive</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Peler les mangues et retirer les noyaux. Mettre au mélangeur. Ajouter tous les autres ingrédients excepté l’huile. Bien mélanger. Mettre dans une bouteille. Ajouter l’huile d’olive.\r\nVous pouvez ajouter de la menthe pour lui donner une saveur agréable.\r\nSi les mangues sont complètement vertes, vous pouvez ajouter un peu de sucre.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; text-decoration: underline;\">3. Sauce aux arachides.</span></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</span></b></a></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 cuillères à table d’arachides\r\n1/2 cuillère à thé de sel\r\n8 cuillères à tables de yogourt nature\r\n3 poivrons rouges or 1/2 cuillère à thé de poudre de piment rouge.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Passer<span style=\"mso-spacerun: yes;\">  </span>au mélangeur jusqu’à une pâte fine. Votre sauce est prête à servir.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4. Sauce à la coriandre</span></span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=4IZFNI1rGrE</span></b></a><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\r\n</span></span></b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\r\n1 bouquet de coriandre bien coupée et lavée.\r\n3-4 <span style=\"mso-spacerun: yes;\"> </span>piments <span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span>fort</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Jus de 2-3 citrons frais\r\n1/2 <span style=\"mso-spacerun: yes;\">  </span>cuillère <span style=\"mso-spacerun: yes;\"> </span>thé de Sel</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mélanger le sel <span style=\"mso-spacerun: yes;\">  </span>, feuilles de coriandre and jus de citrons dans un mélangeur. Si vous le trouvez trop amer, vous pouvez ajouter plus de jus de citron.\r\nVotre sauce est prête à servir.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">La coriandre est un antiseptique et le citron frais est bon pour le fonctionnement des reins. Les sauces ne doivent pas être consommées régulièrement et en grande quantité parce qu’avec le citron il faut ajouter beaucoup de sel ce qui n’est pas bon. Ce genre de sauce peut être conservée une semaine au réfrigérateur.</span></p>\r\n<p style=\"text-align: center;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">5. Sauce Yogourt </span></span></b><b></b><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ litre de yogourt nature</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼ cuillère thé sel</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼   cuillère thé de poudre de piment fort</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼ cuillère thé de graines de cumin rôties en poudre</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Lorsque vous n’avez pas de sauce et que vous avez besoin de sauce pour manger avec n’importe quoi. Ceci est la sauce la plus rapide à préparer à la maison.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Sur la cuisinière, placer la poêle et ajouter 100 grammes de graines de cumin. Mettre<span style=\"mso-spacerun: yes;\">  </span>à<span style=\"mso-spacerun: yes;\">  </span>feu<span style=\"mso-spacerun: yes;\">  </span>moyen . Les graines vont commencer à faire du bruit, continuer à mélanger jusqu’à ce qu’elles deviennent brunes. Arrêter de les rôtir, arrêter le feu, laisser les continuer de cuire et attendre 5 minutes. Passer les au moulin à café. Conserver les dans un contenant de salière ou poivrière pour un usage quotidien. Toujours conserver les graines de cumin rôties à portée de la main au même endroit que la salière et la poivrière.  </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ceci est la sauce la plus santé que vous pouvez faire en 5 minutes.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> Ajouter le sel, graines de cumin rôties et <span style=\"mso-spacerun: yes;\"> </span>la poudre de piment rouge dans le yogourt, mélangez-les et votre sauce est prête<span style=\"mso-spacerun: yes;\">  </span><span style=\"mso-spacerun: yes;\"> </span>.</span></p>\r\n\r\n<h1 class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span style=\"text-decoration: underline;\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; text-decoration: underline;\">6. Sauce à la menthe ou chatni  </span></b></span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\r\n</span></h1>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=gLwHF7OdeY0</span></a></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Un paquet de feuilles de menthe bien lavées.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 citrons</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 piments forts</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 cuillère thé de sel.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mélanger le tout. Votre sauce est prête pour rafraîchir votre humeur et augmenter votre appétit</span></p>\r\n&nbsp;','Différentes sortes de sauces aromatiques ou chatni','','inherit','closed','closed','','213-revision-v1','','','2013-09-17 18:50:43','2013-09-17 22:50:43','',213,'http://divyayogamonteregie.org/french/?p=419',0,'revision','',0),(418,1,'2013-09-17 18:49:16','2013-09-17 22:49:16','<b><span lang=\"FR\" style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Différentes sortes de sauces aromatiques ou chatni</span></b>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> Le mot<span style=\"mso-spacerun: yes;\">  </span>Chatni provient du verbe Chatna qui signifie lécher</span></b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">. On le consomme en petite quantité car la plupart des chatni ou sauces sont faites à partir du jus de citron a<b>lors pour enlever son goût aigre</b> nous devons ajouter plus de sel. C’est pourquoi son léchage est mieux <b>par rapport</b> à en manger en grande quantité.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1. Sauce à l’oignon.</span></span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ingrédients</span></span></b><b></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 oignons\r\nJus <span style=\"mso-spacerun: yes;\"> </span>de <span style=\"mso-spacerun: yes;\"> </span>3 <span style=\"mso-spacerun: yes;\"> </span>citrons\r\n½ <span style=\"mso-spacerun: yes;\"> </span>cuillère à thé de sel <span style=\"mso-spacerun: yes;\"> </span>ou au goût\r\n4 piments rouges forts.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Après avoir épluché et coupé, tout mettre au mélangeur avec le jus extraits de 3 citrons. Votre sauce est prête à servir.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2. Sauce à la mangue</span></span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 grosses mangues ( vert <span style=\"mso-spacerun: yes;\"> </span>ou peu mûres)\r\n4 piments verts forts\r\n1 cuillère thé sel\r\n4 cuillère table huile d’olive</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Peler les mangues et retirer les noyaux. Mettre au mélangeur. Ajouter tous les autres ingrédients excepté l’huile. Bien mélanger. Mettre dans une bouteille. Ajouter l’huile d’olive.\r\nVous pouvez ajouter de la menthe pour lui donner une saveur agréable.\r\nSi les mangues sont complètement vertes, vous pouvez ajouter un peu de sucre.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; text-decoration: underline;\">3. Sauce aux arachides.</span></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</span></b></a></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 cuillères à table d’arachides\r\n1/2 cuillère à thé de sel\r\n8 cuillères à tables de yogourt nature\r\n3 poivrons rouges or 1/2 cuillère à thé de poudre de piment rouge.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Passer<span style=\"mso-spacerun: yes;\">  </span>au mélangeur jusqu’à une pâte fine. Votre sauce est prête à servir.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4. Sauce à la coriandre</span></span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=4IZFNI1rGrE</span></b></a><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\r\n</span></span></b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\r\n1 bouquet de coriandre bien coupée et lavée.\r\n3-4 <span style=\"mso-spacerun: yes;\"> </span>piments <span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span>fort</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Jus de 2-3 citrons frais\r\n1/2 <span style=\"mso-spacerun: yes;\">  </span>cuillère <span style=\"mso-spacerun: yes;\"> </span>thé de Sel</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mélanger le sel <span style=\"mso-spacerun: yes;\">  </span>, feuilles de coriandre and jus de citrons dans un mélangeur. Si vous le trouvez trop amer, vous pouvez ajouter plus de jus de citron.\r\nVotre sauce est prête à servir.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">La coriandre est un antiseptique et le citron frais est bon pour le fonctionnement des reins. Les sauces ne doivent pas être consommées régulièrement et en grande quantité parce qu’avec le citron il faut ajouter beaucoup de sel ce qui n’est pas bon. Ce genre de sauce peut être conservée une semaine au réfrigérateur.</span></p>\r\n<p style=\"text-align: center;\"><b><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">5. Sauce Yogourt </span></span></b><b></b><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ litre de yogourt nature</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼ cuillère thé sel</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼   cuillère thé de poudre de piment fort</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">¼ cuillère thé de graines de cumin rôties en poudre</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Lorsque vous n’avez pas de sauce et que vous avez besoin de sauce pour manger avec n’importe quoi. Ceci est la sauce la plus rapide à préparer à la maison.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Sur la cuisinière, placer la poêle et ajouter 100 grammes de graines de cumin. Mettre<span style=\"mso-spacerun: yes;\">  </span>à<span style=\"mso-spacerun: yes;\">  </span>feu<span style=\"mso-spacerun: yes;\">  </span>moyen . Les graines vont commencer à faire du bruit, continuer à mélanger jusqu’à ce qu’elles deviennent brunes. Arrêter de les rôtir, arrêter le feu, laisser les continuer de cuire et attendre 5 minutes. Passer les au moulin à café. Conserver les dans un contenant de salière ou poivrière pour un usage quotidien. Toujours conserver les graines de cumin rôties à portée de la main au même endroit que la salière et la poivrière.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ceci est la sauce la plus santé que vous pouvez faire en 5 minutes.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ajouter le sel, graines de cumin rôties et <span style=\"mso-spacerun: yes;\"> </span>la poudre de piment rouge dans le yogourt, mélangez-les et votre sauce est prête<span style=\"mso-spacerun: yes;\">  </span><span style=\"mso-spacerun: yes;\"> </span>.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n\r\n<h1 class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span style=\"text-decoration: underline;\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; text-decoration: underline;\">6. Sauce à la menthe ou chatni  </span></b></span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">\r\n</span></h1>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #1982d1; mso-ansi-language: FR; mso-fareast-language: EN-CA; text-decoration: none; text-underline: none;\">http://www.youtube.com/watch?v=gLwHF7OdeY0</span></a></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Un paquet de feuilles de menthe bien lavées.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 citrons</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4 piments forts</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 cuillère thé de sel.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mélanger le tout. Votre sauce est prête pour rafraîchir votre humeur et augmenter votre appétit</span></p>\r\n&nbsp;','Différentes sortes de sauces aromatiques ou chatni','','inherit','closed','closed','','213-revision-v1','','','2013-09-17 18:49:16','2013-09-17 22:49:16','',213,'http://divyayogamonteregie.org/french/?p=418',0,'revision','',0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (422,1,'2013-09-17 18:54:05','2013-09-17 22:54:05','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-line-height-alt: 18.0pt; mso-outline-level: 1; background: white;\"><b><span lang=\"FR\" style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Fèves de Lima (Prebranac)</span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Nom local pour haricot et fèves des pays Balkan</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">ingrédients:</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">450 grammes de grosses fèves de Lima\r\n1kg oignons jaunes en dés\r\n1 tasse huile végétale\r\n2 feuilles de laurier\r\n2 cuillères à table de paprika\r\nSel et poivre</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Laver les fèves et les faire tremper dans l’eau froide toute la nuit.\r\nÉgoutter et rincer, puis placer les fèves dans une poêle et couvrir d’eau.\r\nAjouter le sel et porter à ébullition. Réduire le feu et mijoter de <span style=\"mso-spacerun: yes;\"> </span>1.5 h à\r\n2 <span style=\"mso-spacerun: yes;\"> </span>h .\r\nÉgoutter les fèves et mettre de côté.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Couper les oignons en cubes et les faire frire dans l’huile végétale. Vers la fin de cuisson, ajouter le paprika, sel et poivre. Mélanger les oignons et les fèves de lima et placer dans un plat allant au four et cuire pendant 1 heure à 350 degré.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Les sauces ajoutent du goût au <span style=\"mso-spacerun: yes;\"> </span>plat .<span style=\"mso-spacerun: yes;\">  </span>Alors voici quelques recettes pour rendre vos plats savoureux.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Les sauces ne doivent pas être mangées régulièrement et en grande quantité parce qu’avec le citron nous devons ajouter beaucoup de sel ce qui n’est pas bon. <span style=\"mso-spacerun: yes;\"> </span>Ce type de sauce vous pouvez le garder une semaine au réfrigérateur.</span></p>',' Feves de Lima (Prebranac)','','inherit','closed','closed','','211-revision-v1','','','2013-09-17 18:54:05','2013-09-17 22:54:05','',211,'http://divyayogamonteregie.org/french/?p=422',0,'revision','',0),(420,1,'2013-09-17 18:52:59','2013-09-17 22:52:59','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-line-height-alt: 18.0pt; mso-outline-level: 1; background: white;\"><b><span lang=\"FR\" style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Fèves de Lima (Prebranac)</span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Nom local pour haricot et fèves des pays Balkan</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">ingrédients:</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">450 grammes de grosses fèves de Lima\r\n1kg oignons jaunes en dés\r\n1 tasse huile végétale\r\n2 feuilles de laurier\r\n2 cuillères à table de paprika\r\nSel et poivre</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Laver les fèves et les faire tremper dans l’eau froide toute la nuit.\r\nÉgoutter et rincer, puis placer les fèves dans une poêle et couvrir d’eau.\r\nAjouter le sel et porter à ébullition. Réduire le feu et mijoter de <span style=\"mso-spacerun: yes;\"> </span>1.5 h à\r\n2 <span style=\"mso-spacerun: yes;\"> </span>h .\r\nÉgoutter les fèves et mettre de côté.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Couper les oignons en cubes et les faire frire dans l’huile végétale. Vers la fin de cuisson, ajouter le paprika, sel et poivre. Mélanger les oignons et les fèves de lima et placer dans un plat allant au four et cuire pendant 1 heure à 350 degré.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Les sauces ajoutent du goût au <span style=\"mso-spacerun: yes;\"> </span>plat .<span style=\"mso-spacerun: yes;\">  </span>Alors voici quelques recettes pour rendre vos plats savoureux.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Les sauces ne doivent pas être mangées régulièrement et en grande quantité parce qu’avec le citron nous devons ajouter beaucoup de sel ce qui n’est pas bon. <span style=\"mso-spacerun: yes;\"> </span>Ce type de sauce vous pouvez le garder une semaine au réfrigérateur.</span></p>',' Feves de Lima (Prebranac)','','inherit','closed','closed','','211-revision-v1','','','2013-09-17 18:52:59','2013-09-17 22:52:59','',211,'http://divyayogamonteregie.org/french/?p=420',0,'revision','',0),(421,1,'2013-09-17 18:54:02','2013-09-17 22:54:02','<!--[if gte mso 9]><xml>\n<w:worddocument>\n<w:view>Normal</w:view>\n<w:zoom>0</w:zoom>\n<w:trackmoves></w:trackmoves>\n<w:trackformatting></w:trackformatting>\n<w:punctuationkerning></w:punctuationkerning>\n<w:validateagainstschemas></w:validateagainstschemas>\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n<w:donotpromoteqf></w:donotpromoteqf>\n<w:lidthemeother>EN-US</w:lidthemeother>\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n<w:compatibility>\n<w:breakwrappedtables></w:breakwrappedtables>\n<w:snaptogridincell></w:snaptogridincell>\n<w:wraptextwithpunct></w:wraptextwithpunct>\n<w:useasianbreakrules></w:useasianbreakrules>\n<w:dontgrowautofit></w:dontgrowautofit>\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\n<w:word11kerningpairs></w:word11kerningpairs>\n<w:cachedcolbalance></w:cachedcolbalance>\n</w:compatibility>\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n<m:mathpr>\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n<m:brkbin m:val=\"before\"></m:brkbin>\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\n<m:smallfrac m:val=\"off\"></m:smallfrac>\n<m:dispdef></m:dispdef>\n<m:lmargin m:val=\"0\"></m:lmargin>\n<m:rmargin m:val=\"0\"></m:rmargin>\n<m:defjc m:val=\"centerGroup\"></m:defjc>\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\n<m:intlim m:val=\"subSup\"></m:intlim>\n<m:narylim m:val=\"undOvr\"></m:narylim>\n</m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\nLatentStyleCount=\"267\">\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n</w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:10.0pt;\n	font-family:\"Times New Roman\",\"serif\";}\n</style>< ![endif]-->\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-line-height-alt: 18.0pt; mso-outline-level: 1; background: white;\"><b><span lang=\"FR\" style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Fèves de Lima (Prebranac)</span></b></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Nom local pour haricot et fèves des pays Balkan</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">ingrédients:</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">450 grammes de grosses fèves de Lima\n1kg oignons jaunes en dés\n1 tasse huile végétale\n2 feuilles de laurier\n2 cuillères à table de paprika\nSel et poivre</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Laver les fèves et les faire tremper dans l’eau froide toute la nuit.\nÉgoutter et rincer, puis placer les fèves dans une poêle et couvrir d’eau.\nAjouter le sel et porter à ébullition. Réduire le feu et mijoter de <span style=\"mso-spacerun: yes;\"> </span>1.5 h à\n2 <span style=\"mso-spacerun: yes;\"> </span>h .\nÉgoutter les fèves et mettre de côté.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Couper les oignons en cubes et les faire frire dans l’huile végétale. Vers la fin de cuisson, ajouter le paprika, sel et poivre. Mélanger les oignons et les fèves de lima et placer dans un plat allant au four et cuire pendant 1 heure à 350 degré.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Les sauces ajoutent du goût au <span style=\"mso-spacerun: yes;\"> </span>plat .<span style=\"mso-spacerun: yes;\">  </span>Alors voici quelques recettes pour rendre vos plats savoureux.</span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span></p>\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Les sauces ne doivent pas être mangées régulièrement et en grande quantité parce qu’avec le citron nous devons ajouter beaucoup de sel ce qui n’est pas bon. <span style=\"mso-spacerun: yes;\"> </span>Ce type de sauce vous pouvez le garder une semaine au réfrigérateur.</span></p>',' Feves de Lima (Prebranac)','','inherit','closed','closed','','211-autosave-v1','','','2013-09-17 18:54:02','2013-09-17 22:54:02','',211,'http://divyayogamonteregie.org/french/?p=421',0,'revision','',0),(423,1,'2013-09-17 18:56:23','2013-09-17 22:56:23','<p style=\"text-align: center;\">\r\n<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: center;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-line-height-alt: 18.0pt; mso-outline-level: 1; background: white;\"><b><span style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-fareast-language: EN-CA;\">Salade Organique</span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; text-align: center; background: white;\" align=\"center\"><i><span style=\"text-decoration: underline;\"><span style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: green; mso-fareast-language: EN-CA;\">Salade Organique</span></span></i></p>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter  wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"600\" height=\"336\" /></a><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: center;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 boîte de salade Bio</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">5-6 fonds d’artichaut</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1  paquet de tomates cerise</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Demi-oignon coupé en rondelles séparées.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Huile amande 2 cuillères à thé</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Poivre noir 1 cuillère à cuillère à thé</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Sel<span style=\"mso-spacerun: yes;\">   </span>½ cuillère à thé</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Amandes effilées 2 cuillères à soupe</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Salade en morceau 1 tasse</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Piment rouge 1</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Piment jaune<span style=\"mso-spacerun: yes;\">   </span>1</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Rincer la salade en eau profonde 2 fois.  (C’est nécessaire de rincer les salades organiques ou les aliments organiques parce que le fumier organique est généralement fait par les excréments d’animaux ou d’aliments crus). Mettez-le sur une serviette pendant 5 minutes et couvrir toutes les parties afin que l’eau supplémentaire soit absorbée par la serviette. Ajouter les autres ingrédients dans<span style=\"mso-spacerun: yes;\">  </span>un<span style=\"mso-spacerun: yes;\">   </span>bol. La salade est prête à server.</span></p>\r\n<p style=\"text-align: left;\"></p>\r\n&nbsp;','Salade Organique','','inherit','closed','closed','','204-revision-v1','','','2013-09-17 18:56:23','2013-09-17 22:56:23','',204,'http://divyayogamonteregie.org/french/?p=423',0,'revision','',0),(424,1,'2013-06-15 22:19:29','2013-06-16 02:19:29','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image004.jpg\"><img class=\"aligncenter  wp-image-166\" alt=\"image004\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image004-300x168.jpg\" width=\"600\" height=\"836\" /></a></p>\r\n<strong>Ingredients:</strong>\r\n\r\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\r\n\r\n1 to 1/2 Tea spoon salt.\r\n\r\n1 tea spoon turmeric\r\n\r\n1 Tea spoon to 4 table spoon vegetable. Oil\r\n\r\n1 1/2 teaspoon cumin seed\r\n\r\nCrushed hot pepper 1 1/2 tea spoon or less\r\n\r\nAsafetida compound powder  is equal to 1 Chick pea\'s size\r\n\r\nMango Powder 2 tea spoon\r\n\r\n&nbsp;\r\n\r\nVery fine cut coriander leaves  20 grams coriander to garnish.\r\n\r\nOr\r\n\r\nFine cut dill leaves.\r\n\r\n&nbsp;\r\n\r\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\r\n\r\nYour salad is ready to serve.','Spicy potato salad or Aloo bhujiya ','','inherit','closed','closed','','192-revision-v1','','','2013-06-15 22:19:29','2013-06-16 02:19:29','',192,'http://divyayogamonteregie.org/french/?p=424',0,'revision','',0),(425,1,'2013-09-17 19:00:13','2013-09-17 23:00:13','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image004.jpg\"><img class=\"aligncenter  wp-image-166\" alt=\"image004\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image004-300x168.jpg\" width=\"600\" height=\"836\" /></a><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"background: none repeat scroll 0% 0% white; text-align: center;\"><span style=\"text-decoration: underline;\"><b><span lang=\"FR\" style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; text-decoration: underline;\">Salade de pommes de terre épicées ou Aloo bhujiya</span></b></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><b><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ingrédients:</span></b></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1/2 Kilo de pommes de terre pelée, bouillies et coupées en 8 morceaux</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 à ½ <span style=\"mso-spacerun: yes;\"> </span>cuillère <span style=\"mso-spacerun: yes;\"> </span>de sel.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 cuillère à thé de curcuma</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 à 4 cuillères à thé d’huile végétale. Huile</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 1/2 cuillère de graine de cumin</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Piment fort broyé<span style=\"mso-spacerun: yes;\">  </span>1 1/2 cuillère à thé ou moins</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Asafetida poudre composée<span style=\"mso-spacerun: yes;\">  </span>est égale à la taille d’un pois chiche</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mangue<span style=\"mso-spacerun: yes;\">   </span>Poudre 2 cuillères à thé</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Feuilles de coriandre coupées finement 20 grammes pour garniture.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ou</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Feuilles d’aneth coupées finement.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mettre une casserole sur la cuisinière. Ajouter l’huile selon vos habitudes alimentaires (1 cuillère à thé ou 4 cuillères à thé) ajouter les graines de cumin dans l’huile chaude. Laissez-les brunir. Ajouter l’asafetida et ajouter le curcuma, laisser sa couleur changer un peu. Puis ajouter toutes les pommes de terre dans ce mélange. Ajouter le sel, le piment rouge broyé et la coriandre coupée finement<span style=\"mso-spacerun: yes;\">  </span>et mélanger à la main délicatement jusqu’à ce que tout soit coloré uniformément.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Votre salade est prête à être servie.</span></p>','Salade de pommes de terre épicées ou Aloo bhujiya','','inherit','closed','closed','','192-revision-v1','','','2013-09-17 19:00:13','2013-09-17 23:00:13','',192,'http://divyayogamonteregie.org/french/?p=425',0,'revision','',0),(426,1,'2013-06-15 22:11:01','2013-06-16 02:11:01','&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image006.jpg\"><img class=\"aligncenter  wp-image-167\" alt=\"image006\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image006-300x168.jpg\" width=\"600\" height=\"242\" /></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nProtein is best in raw form So sprouted salad is the best salad.\r\n\r\n50 Grams of whole yellow lentil\r\n\r\n50 Grams of whole red lentil\r\n\r\n50 Grams of whole green lentil\r\n\r\n50 Grams of red kidney beans\r\n\r\n50 Grams of Chick peas\r\n\r\n50 grams of Bengal gram\r\n\r\n50 grams of Almond\r\n\r\n50 grams of black beans\r\n\r\n200 grams of raisins\r\n\r\nCoriander leaves ¼ of the bunch.\r\n\r\nadd as many grains you like. Measure the total with a measuring cup and estimate the amount. Because it swells up 3 times after sprouting.. So reduce or add the amount you will need at the end.\r\n\r\nAll the grains except raisins in 1.1/2 times of grains volume in water. Change the water after 12 hours.   After24 hours  put them in a wet towel and cover them from all around in a manner so that there is little bit of pressure on them too . put this whole thing is a pot.\r\n\r\nIf possible keep the pot at a dark place as seeds germinate in dark under the soil so just don’t put them at a well lighted area. Keep them rinsing after 12 hours.  In this way you are providing them fresh water and cleaning if any mucilaginous growth is starting. For good sprouting it is necessary. But if you forget for 36 hours too it is ok.\r\n\r\nAccording to season and temperature of your home. It will be well  sprouted within 4 to 7 days.  Depends on how long sprout do you want. In summer if you soak in water on Wednesday you will get good sprouted grains on Saturday morning. But in winter if you do on Monday Morning you will get on Saturday Morning.\r\n\r\nWhen it is sprouted the way you want rinse the raisins and mix them with the sprouted grains. And add the coriander levees after cutting very fine. You can add a few drops of fresh lemon juice too.\r\n\r\nFor fast sprouting in winter you can put your pot above the fridge.\r\n\r\nAnother way of eating the sprouted grains is cut one onion very fine  and mix them. Add a little bit of salt and few drops of fresh lemon juice. You can add coriander leaves but not resins.','Sprouted multi grain Salad','','inherit','closed','closed','','194-revision-v1','','','2013-06-15 22:11:01','2013-06-16 02:11:01','',194,'http://divyayogamonteregie.org/french/?p=426',0,'revision','',0),(427,1,'2013-09-17 19:03:20','2013-09-17 23:03:20','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-line-height-alt: 18.0pt; mso-outline-level: 1; background: white;\"><b><span style=\"font-size: 19.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #222222; mso-font-kerning: 18.0pt; mso-fareast-language: EN-CA;\">Salade de multi grains germés</span></b></p>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image006.jpg\"><img class=\"aligncenter  wp-image-167\" alt=\"image006\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image006-300x168.jpg\" width=\"600\" height=\"242\" /></a><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: left;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Les protéines sont meilleures sous leur forme crue alors la Salade de grains germés est la meilleure salade.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 Grammes de lentilles jaunes entières</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 Grammes de lentilles rouges entières</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 Grammes de lentilles vertes entières </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 Grammes de haricots rouges</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 Grammes de pois chiches</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 grammes de pois chiches Bengal gram</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 grammes d’amandes</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">50 grammes de haricots noirs</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">200 grammes de raisins </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Feuilles de coriandre ¼ paquet.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ajouter autant de grains que vous le désirez. Mesurer la totalité avec une tasse à mesurer et estimer la quantité. Parce cela<span style=\"mso-spacerun: yes;\">  </span>gonfle jusqu’à 3 fois après la germination.. Alors réduiser ou ajouter pour obtenir la quantité désirée à la fin.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mettre tous les grains, excepté les raisins, dans <span style=\"mso-spacerun: yes;\"> </span>1.1/2 fois le volume de grains dans l’eau. Changer l’eau après 12 heures<span style=\"mso-spacerun: yes;\">  </span>.  Après 24 heures, mettre dans une serviette humide et couvrer-les de tous les coins de sorte qu’il y a peu de pression sur eux. Mettre tout cela dans un pot.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Si possible garder le pot dans un endroit sombre afin que les graines germent dans l’obscurité (sous le sol de manière juste). Ne pas les mettre dans un endroit éclairé. Continuer de les rincer à toutes les 12 heures. De cette façon vous leur donnez de l’eau fraîche qui nettoie pour éviter que la viscosité se développe. Pour une bonne germination cela est nécessaire. Mais si vous l’oubliez pour une période de 36 heures cela est correct aussi.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Selon la saison et la température de la maison .Cela sera bien germé en dedans de<span style=\"mso-spacerun: yes;\">  </span>4 à 7 jours. Cela dépend aussi de la longueur des germinations que vous voulez avoir. Durant l’été si vous les trempez le mercredi vous aurez de bonnes germinations le samedi matin. <span style=\"mso-spacerun: yes;\"> </span>Mais en hiver, si vous les débuter le Lundi Matin<span style=\"mso-spacerun: yes;\">  </span>elles seront prêtes le Samedi Matin.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Lorsque les germinations ont poussé de la façon qui vous convienne, rincer les raisins et mélanger-les avec les grains germés. Et ajouter les feuilles de<span style=\"mso-spacerun: yes;\">  </span>coriandre coupées finement. Vous pouvez ajouter quelques gouttes de jus <span style=\"mso-spacerun: yes;\"> </span>de citron frais aussi.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Pour une germination rapide en hiver, vous pouvez placer le pot au-dessus du réfrigérateur.</span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; margin-bottom: 19.5pt; background: white;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Une autre façon de manger les grains germés est de couper un oignon très fin et de l’ajouter au mélange. Ajouter un peu de sel et quelques gouttes de jus de citron frais. Vous pouvez ajouter les feuilles de coriandre mais pas les raisins.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Salade de multi grains germés','','inherit','closed','closed','','194-revision-v1','','','2013-09-17 19:03:20','2013-09-17 23:03:20','',194,'http://divyayogamonteregie.org/french/?p=427',0,'revision','',0),(428,1,'2013-06-15 22:12:55','2013-06-16 02:12:55','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image008.jpg\"><img class=\"aligncenter  wp-image-163\" alt=\"image008\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image008-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><em><strong>Ingredients:-</strong></em></span>\r\n\r\n1 cup of Basmati rice\r\n\r\n2 cups of water\r\n\r\n1 ½ tea spoon of salt\r\n\r\n100 Grams of roasted Cashew nuts\r\n\r\n2 big  peeled potato\r\n\r\n½ Cauliflower\r\n\r\n2 big peeled Carrot\r\n\r\n1 Cup of green frozen  peas\r\n\r\n½ tea spoon of Cumin seeds\r\n\r\n3-4 Red dried hot pepper cut into small pieces.\r\n\r\n1 teaspoon of Turmeric\r\n\r\n2 Table Spoon of oil\r\n\r\n1 pinch of Asephatida compound\r\n\r\n½ bunch of coriander leaves.\r\n\r\n&nbsp;\r\n\r\nCut cauliflower, carrot and potato  into bite size and rinse them thoroughly.\r\n\r\nCut the coriander into fine pieces and rinse then in deep water because it contains soil and sands in deep water the soil and settle and the leaves will float on the surface.\r\n\r\nRinse two times basmati rice 2 times thoroughly. To remove excess of starch.\r\n\r\n&nbsp;\r\n\r\nPut pan on the stove.\r\n\r\nAdd oil into the pan.\r\n\r\nPut the stove into 6\r\n\r\nAdd cumin seeds into the oil. When it turns a little bit of brown add asaphatida and red hot dried pepper. Till now the cumin seeds have to be dark brown. Now add turmeric and stir it and add vegetables except peas and coriander. Stir it and add rice, salt, cashew nuts and 2 cups of water.\r\n\r\n&nbsp;\r\n\r\nTurn the stove to high and cover it with the lid and let it come to the boil. When it comes to boil turn it to 7. When you see that these is not water in the bottom. Turn it off and cover it . 5 minutes after use the fork to loosen the rice and let the extra vapor go away so that each grain of rice stays separate. Now add frozen peas and  coriander and keep your pot half covered so that The green color stays green.\r\n\r\n&nbsp;\r\n\r\nYour taharee is ready to be served.\r\n\r\nIF you like you can add  cut black olives. They will give a nice color to your Taharee.\r\n\r\n&nbsp;\r\n\r\nFood has 4 functions.\r\n\r\n1. Fill your stomach.\r\n\r\n2. Give you energy\r\n\r\n3. Make you happy by look &amp;\r\n\r\n4. Refresh your mood by aroma\r\n\r\nLet me know if your family started eating in happy mood or not?','Taharee or Stir Fried rice','','inherit','closed','closed','','200-revision-v1','','','2013-06-15 22:12:55','2013-06-16 02:12:55','',200,'http://divyayogamonteregie.org/french/?p=428',0,'revision','',0),(429,1,'2013-09-17 19:08:28','2013-09-17 23:08:28','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image008.jpg\"><img class=\"aligncenter  wp-image-163\" alt=\"image008\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/image008-300x168.jpg\" width=\"600\" height=\"336\" /></a><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: center;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" Name=\"Normal (Web)\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\",\"serif\";}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><b><i><span style=\"text-decoration: underline;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ingrédients:-</span></span></i></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 tasse de riz Basmati </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 tasses d’eau</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 ½ cuillère à thé de sel</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">100 Grammes de noix d’acajou grillées</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 grosses pommes de terre pelées</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ chou-fleur</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 grosses carottes pelées</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 tasse de petits pois verts<span style=\"mso-spacerun: yes;\">  </span>surgelés</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ cuillère à thé de graines de cumin</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">3-4 piments<span style=\"mso-spacerun: yes;\">  </span>rouges fort séchés coupés en petits morceaux.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 cuillère à thé de curcuma</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2 cuillères à table d’huile</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1 pincée de <span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span>Asephatida composé</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">½ bouquet de feuilles de coriandre.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Couper<span style=\"mso-spacerun: yes;\">  </span>chou-fleur, carottes et pommes de terre en morceaux de petites bouchées et rincer les abondamment.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Couper la coriandre en petits morceaux et rincer ensuite en eau profonde parce qu’elle contient de la terre et du sable en eau profonde laisser la et les feuilles vont flotter à la surface.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Rincer 2 fois le riz Basmati à fond. Pour enlever l’excès d’amidon.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Mettre la casserole sur la cuisinière.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ajouter l’huile dans la poêle.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Placer le feu à 6</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Ajouter les graines de cumin dans l’huile. Quand il tourne un peu brun, ajouter l’asaphatida et le piment rouge séché. Jusqu’à présent les graines de cumin doivent être brun foncé. Maintenant ajouter le curcuma et remuer et ajouter les légumes sauf les pois et la coriandre. Remuer et ajouter le riz, sel, noix d’acajou et 2 tasses d’eau.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Placer le feu élevé et couvrir jusqu’à ébullition. Quand ça bout, tourner le feu <span style=\"mso-spacerun: yes;\"> </span>à 7. Lorsqu’il n’y a plus d’eau dans le<span style=\"mso-spacerun: yes;\">  </span>fond <span style=\"mso-spacerun: yes;\"> </span>, éteigner et couvrer le. 5 minutes plus tard, utiliser une fourchette pour détacher le riz et laisser la vapeur<span style=\"mso-spacerun: yes;\">  </span>s’échapper . De cette façon chaque grain de riz restera séparé. Maintenant ajouter les pois verts congelés et la coriandre et conserver votre poêle à demi-couverte de cette façon la couleur verte va rester<span style=\"mso-spacerun: yes;\">  </span>verte .</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Votre<span style=\"mso-spacerun: yes;\">  </span>taharee est prêt à servir.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Si vous aimez, vous pouvez ajouter des morceaux d’olives noires. Elles vont donner une belle couleur à votre <span style=\"mso-spacerun: yes;\"> </span>Taharee.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\"> </span><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">La nourriture a <span style=\"mso-spacerun: yes;\"> </span>4 fonctions.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">1. Remplir votre estomac.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">2. Vous donner de l’énergie</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">3. Vous rend heureux par son apparence &amp;</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">4. Rafraîchit votre humeur par son arôme</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 19.5pt; background: none repeat scroll 0% 0% white; text-align: left;\"><span lang=\"FR\" style=\"font-size: 11.5pt; font-family: \'Helvetica\',\'sans-serif\'; color: #373737; mso-ansi-language: FR; mso-fareast-language: EN-CA;\">Faites- moi savoir si votre famille a commencé à manger dans la bonne humeur ou pas?</span></p>\r\n&nbsp;\r\n<p style=\"text-align: left;\"></p>','Taharee ou riz Frit ','','inherit','closed','closed','','200-revision-v1','','','2013-09-17 19:08:28','2013-09-17 23:08:28','',200,'http://divyayogamonteregie.org/french/?p=429',0,'revision','',0),(430,1,'2013-09-17 19:09:13','2013-09-17 23:09:13','<h6></h6>\r\n<h1><span style=\"text-decoration: underline;\">Conférences de fin de mois    </span></h1>\r\n<h6> <b>Chaque dernier samedi du mois, nous invitons un conférencier pour parler d’un sujet relié à notre mission. La conférence est d’une durée de 30-40 minutes suivie d’une période de 15minutes de questions. Par la suite, nous avons un brunch végétarien.</b></h6>\r\n<h6><span style=\"color: #0000ff;\"> </span></h6>','  Conférences de fin de mois    ','','inherit','closed','closed','','25-revision-v1','','','2013-09-17 19:09:13','2013-09-17 23:09:13','',25,'http://divyayogamonteregie.org/french/?p=430',0,'revision','',0),(431,1,'2013-09-17 19:10:27','2013-09-17 23:10:27','<div>\r\n\r\n<b>Horaire et Lieu</b>\r\n\r\n<b>Chaque Samedi 9h-11h toute l’année durant</b>\r\n\r\n675 Rue Green, Saint-Lambert, QCJ4P 1V9, Canada\r\n\r\nGym de Chambly Academy\r\n\r\n<b>              </b>\r\n\r\n<b>Jeudi  6:30 to 7:30 Sept-Juin (quand Terry Fox est ouvert)</b>\r\n<div>\r\n\r\n1648 rue Langevin, Saint- Hubert, Québec J4T 1X7\r\n\r\n</div>\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Horaire et Lieu','','inherit','closed','closed','','9-revision-v1','','','2013-09-17 19:10:27','2013-09-17 23:10:27','',9,'http://divyayogamonteregie.org/french/?p=431',0,'revision','',0),(432,1,'2013-09-17 19:11:08','2013-09-17 23:11:08','<h1><strong><span style=\"text-decoration: underline;\">Notre Mission</span></strong></h1>\r\nRendre accessible la pratique de base du yoga à tous et sans frais.\r\n\r\nLe fondateur de Divya Yoga, Swami Rana Dev, dit “ Une bonne santé est un droit de naissance pour chaque homme (femme)”. En effectuant les postures de yoga, asanas, les exercices, mudras, pranayama, méditation et en fournissant un discours de motivation cela permet à l’esprit de se libérer du stress et au corps de se libérer de la maladie. En mettant en évidence que la clé pour une bonne santé physique et une bonne santé mentale est sous le contrôle de chacun. En prenant contact avec son soi intérieur, nous pouvons expérimenter un état de bonheur complet et de félicité.\r\n\r\nCe Yoga Divya s’adresse aux gens de tout âge. Nous débutons notre session par des exercices de réchauffement (12-15), le salut au soleil et une lecture de motivation. Nous effectuons certaines accu pressions, 6 mudras, 7 pranayamas et des micro exercices pour les yeux, les doigts, les orteils, le visage et le cou. Font également partie du cours : le Yoga du rire et le Yoga du super cerveau. Nous terminons la session par la position savasana, la lecture d’un poème de motivation, mantra et prière.\r\n\r\nAprès la pratique du yoga, de super aliments : raisins et bananes sont disponibles pour les yogis.\r\n\r\nLe yoga est une façon merveilleuse de faire de l’exercice, de s’étirer et de relaxer le corps et l’esprit cela permettant d’avoir une vie en santé et de longue durée. Il permet de relier le corps, l’esprit et l’âme. Nous pouvons aussi créer un environnement où les gens peuvent interagir pour l’amélioration de leurs conditions de vie.','Notre Mission','','inherit','closed','closed','','2-revision-v1','','','2013-09-17 19:11:08','2013-09-17 23:11:08','',2,'http://divyayogamonteregie.org/french/?p=432',0,'revision','',0),(433,1,'2013-09-19 06:03:59','2013-09-19 10:03:59','','ciel','','inherit','closed','closed','','ciel','','','2013-09-19 06:03:59','2013-09-19 10:03:59','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/09/ciel.jpg',0,'attachment','image/jpeg',0),(437,1,'2013-09-19 19:21:35','2013-09-19 23:21:35','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-revision-v1','','','2013-09-19 19:21:35','2013-09-19 23:21:35','',1,'http://divyayogamonteregie.org/french/?p=437',0,'revision','',0),(438,1,'2013-09-19 19:25:07','2013-09-19 23:25:07','Chaque Samedi matin de  9.00 à 11.00  , nous participons à la session','Samedi matin','','publish','closed','closed','','samedi-matin','','','2013-09-19 19:25:07','2013-09-19 23:25:07','',0,'http://divyayogamonteregie.org/french/?p=438',0,'post','',0),(434,1,'2013-09-19 19:16:57','2013-09-19 23:16:57','[caption id=\"attachment_286\" align=\"aligncenter\" width=\"300\"]<a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/food1.jpg\"><img class=\"size-medium wp-image-286\" alt=\"De la nourriture végétarienne est servie et partagée chaque dernier Samedi du mois\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/food1-300x86.jpg\" width=\"300\" height=\"86\" /></a> De la nourriture végétarienne est servie et partagée chaque dernier Samedi du mois[/caption]\r\n\r\nWelcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-revision-v1','','','2013-09-19 19:16:57','2013-09-19 23:16:57','',1,'http://divyayogamonteregie.org/french/?p=434',0,'revision','',0),(436,1,'2013-09-19 19:18:42','2013-09-19 23:18:42','Rendre accessible la pratique de base du yoga à tous et sans frais.\r\n\r\nLe fondateur de Divya Yoga, Swami Rana Dev, dit “ Une bonne santé est un droit de naissance pour chaque homme (femme)”. En effectuant les postures de yoga, asanas, les exercices, mudras, pranayama, méditation et en fournissant un discours de motivation cela permet à l’esprit de se libérer du stress et au corps de se libérer de la maladie. En mettant en évidence que la clé pour une bonne santé physique et une bonne santé mentale est sous le contrôle de chacun. En prenant contact avec son soi intérieur, nous pouvons expérimenter un état de bonheur complet et de félicité.\r\n\r\nCe Yoga Divya s’adresse aux gens de tout âge. Nous débutons notre session par des exercices de réchauffement (12-15), le salut au soleil et une lecture de motivation. Nous effectuons certaines accu pressions, 6 mudras, 7 pranayamas et des micro exercices pour les yeux, les doigts, les orteils, le visage et le cou. Font également partie du cours : le Yoga du rire et le Yoga du super cerveau. Nous terminons la session par la position savasana, la lecture d’un poème de motivation, mantra et prière.\r\n\r\nAprès la pratique du yoga, de super aliments : raisins et bananes sont disponibles pour les yogis.\r\n\r\nLe yoga est une façon merveilleuse de faire de l’exercice, de s’étirer et de relaxer le corps et l’esprit cela permettant d’avoir une vie en santé et de longue durée. Il permet de relier le corps, l’esprit et l’âme. Nous pouvons aussi créer un environnement où les gens peuvent interagir pour l’amélioration de leurs conditions de vie.','Notre Mission','','inherit','closed','closed','','2-revision-v1','','','2013-09-19 19:18:42','2013-09-19 23:18:42','',2,'http://divyayogamonteregie.org/french/?p=436',0,'revision','',0),(435,1,'2013-09-19 19:18:04','2013-09-19 23:18:04','<h1><strong><span style=\"text-decoration: underline;\">Notre Mission</span></strong></h1>\r\n<p>Rendre accessible la pratique de base du yoga à tous et sans frais.</p>\r\n<p>Le fondateur de Divya Yoga, Swami Rana Dev, dit “ Une bonne santé est un droit de naissance pour chaque homme (femme)”. En effectuant les postures de yoga, asanas, les exercices, mudras, pranayama, méditation et en fournissant un discours de motivation cela permet à l’esprit de se libérer du stress et au corps de se libérer de la maladie. En mettant en évidence que la clé pour une bonne santé physique et une bonne santé mentale est sous le contrôle de chacun. En prenant contact avec son soi intérieur, nous pouvons expérimenter un état de bonheur complet et de félicité.</p>\r\n<p>Ce Yoga Divya s’adresse aux gens de tout âge. Nous débutons notre session par des exercices de réchauffement (12-15), le salut au soleil et une lecture de motivation. Nous effectuons certaines accu pressions, 6 mudras, 7 pranayamas et des micro exercices pour les yeux, les doigts, les orteils, le visage et le cou. Font également partie du cours : le Yoga du rire et le Yoga du super cerveau. Nous terminons la session par la position savasana, la lecture d’un poème de motivation, mantra et prière.</p>\r\n<p>Après la pratique du yoga, de super aliments : raisins et bananes sont disponibles pour les yogis.</p>\r\n<p>Le yoga est une façon merveilleuse de faire de l’exercice, de s’étirer et de relaxer le corps et l’esprit cela permettant d’avoir une vie en santé et de longue durée. Il permet de relier le corps, l’esprit et l’âme. Nous pouvons aussi créer un environnement où les gens peuvent interagir pour l’amélioration de leurs conditions de vie.</p>\r\n','Notre Mission','','inherit','closed','closed','','2-revision-v1','','','2013-09-19 19:18:04','2013-09-19 23:18:04','',2,'http://divyayogamonteregie.org/french/?p=435',0,'revision','',0),(439,1,'2013-09-19 19:25:07','2013-09-19 23:25:07','Chaque Samedi matin de  9.00 à 11.00  , nous participons à la session','Samedi matin','','inherit','closed','closed','','438-revision-v1','','','2013-09-19 19:25:07','2013-09-19 23:25:07','',438,'http://divyayogamonteregie.org/french/?p=439',0,'revision','',0),(440,1,'2013-09-19 19:28:48','2013-09-19 23:28:48','Contactez-nous\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Bienvenue au Divya Yoga','','publish','closed','closed','','conference','','','2013-10-08 20:45:29','2013-10-09 00:45:29','',0,'http://divyayogamonteregie.org/french/?p=440',0,'post','',0),(443,1,'2013-09-19 19:34:31','2013-09-19 23:34:31','<p style=\"text-align: justify;\">These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards happiness, success and achieving our goals.</p>\r\n<p style=\"text-align: justify;\">These poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.</p>','Poems','','inherit','closed','closed','','39-revision-v1','','','2013-09-19 19:34:31','2013-09-19 23:34:31','',39,'http://divyayogamonteregie.org/french/?p=443',0,'revision','',0),(457,1,'2013-09-21 20:50:39','2013-09-22 00:50:39','<p align=\"center\"><strong><!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]--></strong>\n\n</p><p align=\"center\"><strong><!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]--></strong>\n\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Faites-vous confiance et</span></b></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">vos rêves se réaliseront</span></b></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Sachez ce que vous pouvez et voulez faire dans la vie.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Fixez-vous des objectifs et travaillez d’arrache pied à les atteindre.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Efforcez-vous d’avoir du plaisir à chaque jour.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Usez de créativité dans l’expression de vos sentiments.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Regardez le monde d’un œil sage.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Cultivez votre sentiment de confiance.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Écoutez votre cœur et soyez fidèle à vos croyances.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Sachez que plus vous donnerez, plus vous recevrez en retour.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez en vous-même et vos rêves se réaliseront.</span></p>','','','inherit','closed','closed','','55-autosave-v1','','','2013-09-21 20:50:39','2013-09-22 00:50:39','',55,'http://divyayogamonteregie.org/french/?p=457',0,'revision','',0),(447,1,'2013-09-21 20:41:44','2013-09-22 00:41:44','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Tout est possible</span></b></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faites-vous confiance, etSouvenez-vous queTout est possible</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez en ce qui vous fait du bien.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez en ce qui vous rend heureux.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez aux rêves que vous avez toujours espéré voir se réaliser,</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et mettez-toutes les chances de votre côté.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La vie ne fait aucune promesse</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Quant à ce qui vous arrivera.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous devez chercher vos propres idéaux et</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Faire en sorte que vous les atteigniez.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La Vie ne vous garantie rien d’avance.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Elle ne fait que vous accorder le temps pour faire vos choix et tenter votre chance, ainsi que pour découvrir votre destin en cours de route.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous acceptez de profiter des opportunités s’offrant à vous, et</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">De mettre à contribution vos talents,</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">votre vie se meublera sans arrêts de moments spéciaux et de souvenirs mémorables.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Nul ne connaît les mystères de la vie, ni le sens profond de la Vie,</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais pour ceux qui veulent</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croire à leurs rêves et en eux-mêmes,</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La vie est un don précieux à l’intérieur duquel tout est possible.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>','','','inherit','closed','closed','','53-autosave-v1','','','2013-09-21 20:41:44','2013-09-22 00:41:44','',53,'http://divyayogamonteregie.org/french/?p=447',0,'revision','',0),(449,1,'2013-09-21 21:03:25','2013-09-22 01:03:25','<p align=\"center\">Ayez des pensées positives,</p>\n<p align=\"center\">Car vos pensées se traduiront en paroles positives.</p>\n<p align=\"center\">Ayez des paroles positives,</p>\n<p align=\"center\">Car vos paroles se traduiront en actions positives.</p>\n<p align=\"center\">Ayez des actions positives,</p>\n<p align=\"center\">Car vos actions se transformeront en habitudes positives.</p>\n<p align=\"center\">Ayez des habitudes positives,</p>\n<p align=\"center\">Car vos habitudes se transformeront en style de vie.</p>\n<p align=\"center\">Ayez un style de vie positif,</p>\n<p align=\"center\">Car votre style de vie c’est votre avenir</p>\n<p align=\"center\"></p>\n<p align=\"center\">**********</p>\n<p align=\"center\"></p>\n&nbsp;','nos pensées ','','inherit','closed','closed','','42-autosave-v1','','','2013-09-21 21:03:25','2013-09-22 01:03:25','',42,'http://divyayogamonteregie.org/french/?p=449',0,'revision','',0),(464,1,'2013-09-21 21:03:44','2013-09-22 01:03:44','<p align=\"center\">Ayez des pensées positives,</p>\r\n<p align=\"center\">Car vos pensées se traduiront en paroles positives.</p>\r\n<p align=\"center\">Ayez des paroles positives,</p>\r\n<p align=\"center\">Car vos paroles se traduiront en actions positives.</p>\r\n<p align=\"center\">Ayez des actions positives,</p>\r\n<p align=\"center\">Car vos actions se transformeront en habitudes positives.</p>\r\n<p align=\"center\">Ayez des habitudes positives,</p>\r\n<p align=\"center\">Car vos habitudes se transformeront en style de vie.</p>\r\n<p align=\"center\">Ayez un style de vie positif,</p>\r\n<p align=\"center\">Car votre style de vie c’est votre avenir</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">**********</p>\r\n<p align=\"center\"></p>\r\n&nbsp;','nos pensées ','','inherit','closed','closed','','42-revision-v1','','','2013-09-21 21:03:44','2013-09-22 01:03:44','',42,'http://divyayogamonteregie.org/french/?p=464',0,'revision','',0),(450,1,'2013-09-21 20:18:58','2013-09-22 00:18:58','<p align=\"center\">Ayez des pensées positives,</p>\r\n<p align=\"center\">Car vos pensées se traduiront en paroles positives.</p>\r\n<p align=\"center\">Ayez des paroles positives,</p>\r\n<p align=\"center\">Car vos paroles se traduiront en actions positives.</p>\r\n<p align=\"center\">Ayez des actions positives,</p>\r\n<p align=\"center\">Car vos actions se transformeront en habitudes positives.</p>\r\n<p align=\"center\">Ayez des habitudes positives,</p>\r\n<p align=\"center\">Car vos habitudes se transformeront en style de vie.</p>\r\n<p align=\"center\">Ayez un style de vie positif,</p>\r\n<p align=\"center\">Car votre style de vie c’est votre avenir</p>\r\n<p align=\"center\"> </p>\r\n<p align=\"center\">**********</p>\r\n<p align=\"center\"> </p>\r\n<p align=\"center\">Keep your thoughts positive,</p>\r\n<p align=\"center\">because thoughts become your words.</p>\r\n<p align=\"center\">Keep your words positive</p>\r\n<p align=\"center\">because words become your action.</p>\r\n<p align=\"center\">Keep your action positive</p>\r\n<p align=\"center\">Because your action becomes your habit.</p>\r\n<p align=\"center\">Keep your habit positive,</p>\r\n<p align=\"center\">because your habit becomes your lifestyle.</p>\r\n<p align=\"center\">Keep your life style positive,</p>\r\n<p align=\"center\">because your life style becomes your destiny.</p>','OUR THOUGHTS','','inherit','closed','closed','','42-revision-v1','','','2013-09-21 20:18:58','2013-09-22 00:18:58','',42,'http://divyayogamonteregie.org/french/?p=450',0,'revision','',0),(451,1,'2013-05-09 07:20:11','2013-05-09 11:20:11','<p align=\"center\">(one the most classic motivational poems)</p>\r\n<p align=\"center\">Promise yourself to be so strong that nothing can\r\ndisturb your peace of mind.</p>\r\n<p align=\"center\">To talk health, happiness, and prosperity to\r\nevery person you meet.</p>\r\n<p align=\"center\">To make all your friends feel like there is\r\nsomething in them.</p>\r\n<p align=\"center\">To look at the sunny side of everything and make your\r\noptimism come true.</p>\r\n<p align=\"center\">To think only of the best, to work only for the best,\r\nand expect only the best.</p>\r\n<p align=\"center\">To be just as enthusiastic about the success of others\r\nas you are about your own.</p>\r\n<p align=\"center\">To forget the mistakes of the past and press on the\r\ngreater achievements of the future.</p>\r\n<p align=\"center\">To wear a cheerful countenance at all times and give\r\nevery living person you meet a smile.</p>\r\n<p align=\"center\">To give so much time to the improvement of yourself\r\nthat you have no time to criticize others.</p>\r\n<p align=\"center\">To be too large for worry, too noble for anger, and too\r\nstrong for fear, and too happy to permit the\r\npresence of trouble.</p>','Promise Yourself','','inherit','closed','closed','','45-revision-v1','','','2013-05-09 07:20:11','2013-05-09 11:20:11','',45,'http://divyayogamonteregie.org/french/?p=451',0,'revision','',0),(452,1,'2013-09-21 20:32:55','2013-09-22 00:32:55','<p align=\"center\"><b>Promets-toi :</b></p>\r\n<p align=\"center\"> </p>\r\n<p align=\"center\">D’être tellement fort que rien ne pourra déranger ta paix d’esprit.</p>\r\n<p align=\"center\">De parler santé, bonheur et prospérité à toutes les personnes rencontrées.</p>\r\n<p align=\"center\">De faire en sorte que tous tes amis se sentiront importants.</p>\r\n<p align=\"center\">De voir le bon côté de toute chose afin que ton optimisme devienne réalité.</p>\r\n<p align=\"center\">De penser seulement à ce qu’il y a de meilleur, de travailler seulement pour ce qu’il y a de meilleur et d’aspirer seulement à ce qu’il y a de meilleur.</p>\r\n<p align=\"center\">D’être aussi enthousiaste du succès des autres que du tien.</p>\r\n<p align=\"center\">D’oublier les erreurs du passé et de concentrer tes énergies sur les accomplissements futurs.</p>\r\n<p align=\"center\">D’afficher une expression joyeuse en tout temps et de sourire à chaque personne rencontrée.</p>\r\n<p align=\"center\">D’utiliser tout ton temps à essayer de t’améliorer afin de ne pas avoir le temps de critiquer autrui.</p>\r\n<p align=\"center\">D’être trop solide pour t’inquiéter, trop noble pour t’enrager, trop fort pour avoir peur et trop heureux pour être troublé</p>\r\n<p align=\"center\"> </p>\r\n<p align=\"center\"> </p>\r\n<p align=\"center\"> </p>\r\n<p align=\"center\"> </p>','Promets-toi ','','inherit','closed','closed','','45-revision-v1','','','2013-09-21 20:32:55','2013-09-22 00:32:55','',45,'http://divyayogamonteregie.org/french/?p=452',0,'revision','',0),(465,1,'2013-09-21 21:04:52','2013-09-22 01:04:52','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Tout est possible</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faites-vous confiance, etSouvenez-vous queTout est possible</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez en ce qui vous fait du bien.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez en ce qui vous rend heureux.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez aux rêves que vous avez toujours espéré voir se réaliser,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et mettez-toutes les chances de votre côté.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La vie ne fait aucune promesse</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Quant à ce qui vous arrivera.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous devez chercher vos propres idéaux et</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Faire en sorte que vous les atteigniez.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La Vie ne vous garantie rien d’avance.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Elle ne fait que vous accorder le temps pour faire vos choix et tenter votre chance, ainsi que pour découvrir votre destin en cours de route.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous acceptez de profiter des opportunités s’offrant à vous, et</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">De mettre à contribution vos talents,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">votre vie se meublera sans arrêts de moments spéciaux et de souvenirs mémorables.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Nul ne connaît les mystères de la vie, ni le sens profond de la Vie,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais pour ceux qui veulent</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croire à leurs rêves et en eux-mêmes,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La vie est un don précieux à l’intérieur duquel tout est possible.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>','Tout est possible','','inherit','closed','closed','','53-revision-v1','','','2013-09-21 21:04:52','2013-09-22 01:04:52','',53,'http://divyayogamonteregie.org/french/?p=465',0,'revision','',0),(453,1,'2013-09-21 20:42:01','2013-09-22 00:42:01','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Tout est possible</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faites-vous confiance, etSouvenez-vous queTout est possible</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez en ce qui vous fait du bien.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez en ce qui vous rend heureux.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez aux rêves que vous avez toujours espéré voir se réaliser,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et mettez-toutes les chances de votre côté.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La vie ne fait aucune promesse</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Quant à ce qui vous arrivera.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous devez chercher vos propres idéaux et</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Faire en sorte que vous les atteigniez.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La Vie ne vous garantie rien d’avance.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Elle ne fait que vous accorder le temps pour faire vos choix et tenter votre chance, ainsi que pour découvrir votre destin en cours de route.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous acceptez de profiter des opportunités s’offrant à vous, et</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">De mettre à contribution vos talents,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">votre vie se meublera sans arrêts de moments spéciaux et de souvenirs mémorables.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Nul ne connaît les mystères de la vie, ni le sens profond de la Vie,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais pour ceux qui veulent</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croire à leurs rêves et en eux-mêmes,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La vie est un don précieux à l’intérieur duquel tout est possible.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>','Tout est possible','','inherit','closed','closed','','53-revision-v1','','','2013-09-21 20:42:01','2013-09-22 00:42:01','',53,'http://divyayogamonteregie.org/french/?p=453',0,'revision','',0),(456,1,'2013-09-21 20:48:17','2013-09-22 00:48:17','<p align=\"center\"><span style=\"color: #0000ff;\"><strong><!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]--></strong></span>\r\n\r\n</p><p align=\"center\"><span style=\"color: #0000ff;\"><strong><!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]--></strong></span>\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Tu peux devenir ce que tu désires être</span></b></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Tu portes en toi</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">tout ton potentiel</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour atteindre ce que tu veux être</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">toute l\'énergie</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour atteindre ce que tu veux faire.</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Imagine toi tel que tu veux être</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faisant ce que tu veux faire</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et chaque jour fait un pas</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">en direction de ton rêve.</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et lorsque parfois cela semble</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ardu de poursuivre</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">reste fidèle à ton rêve</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un matin tu t\'éveilleras pour réaliser</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que tu es la personne dont tu as rêvé,</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faisant ce dont tu a rêvé,</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">simplement parce que tu as eu le courage</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">de croire en ton potentiel</span></p>\r\n<p class=\"MsoNormal\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et de poursuivre ton rêve</span></p>\r\n<p align=\"center\"></p>','Tu peux devenir ce que tu désires être','','inherit','closed','closed','','59-revision-v1','','','2013-09-21 20:48:17','2013-09-22 00:48:17','',59,'http://divyayogamonteregie.org/french/?p=456',0,'revision','',0),(455,1,'2013-09-21 20:47:02','2013-09-22 00:47:02','<p align=\"center\"><span style=\"color: #0000ff;\"><strong><!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]--></strong></span>\r\n\r\n</p><p align=\"center\"><span style=\"color: #0000ff;\"><strong><!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]--></strong></span>\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Tu peux devenir ce que tu désires être</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Tu portes en toi</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">tout ton potentiel</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour atteindre ce que tu veux être</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">toute l\'énergie</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour atteindre ce que tu veux faire.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Imagine toi tel que tu veux être</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faisant ce que tu veux faire</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et chaque jour fait un pas</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">en direction de ton rêve.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et lorsque parfois cela semble</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ardu de poursuivre</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">reste fidèle à ton rêve</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un matin tu t\'éveilleras pour réaliser</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que tu es la personne dont tu as rêvé,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faisant ce dont tu a rêvé,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">simplement parce que tu as eu le courage</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">de croire en ton potentiel</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et de poursuivre ton rêve</span></p>\r\n<p align=\"center\"></p>','Tu peux devenir ce que tu désires être','','inherit','closed','closed','','59-revision-v1','','','2013-09-21 20:47:02','2013-09-22 00:47:02','',59,'http://divyayogamonteregie.org/french/?p=455',0,'revision','',0),(454,1,'2013-09-21 20:45:33','2013-09-22 00:45:33','<p align=\"center\"><span style=\"color: #0000ff;\"><strong><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]--></strong></span>\r\n\r\n</p><p align=\"center\"><span style=\"color: #0000ff;\"><strong><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]--></strong></span>\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Tu peux devenir ce que tu désires être</span></b></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Tu portes en toi</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">tout ton potentiel</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour atteindre ce que tu veux être</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">toute l\'énergie</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour atteindre ce que tu veux faire.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Imagine toi tel que tu veux être</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faisant ce que tu veux faire</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et chaque jour fait un pas</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">en direction de ton rêve.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et lorsque parfois cela semble</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ardu de poursuivre</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">reste fidèle à ton rêve</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un matin tu t\'éveilleras pour réaliser</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que tu es la personne dont tu as rêvé,</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">faisant ce dont tu a rêvé,</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">simplement parce que tu as eu le courage</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">de croire en ton potentiel</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et de poursuivre ton rêve</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\"><strong></strong></span></p>','Tu peux devenir ce que tu désires être','','inherit','closed','closed','','59-revision-v1','','','2013-09-21 20:45:33','2013-09-22 00:45:33','',59,'http://divyayogamonteregie.org/french/?p=454',0,'revision','',0),(458,1,'2013-09-21 20:50:48','2013-09-22 00:50:48','<p align=\"center\"><strong><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]--></strong>\r\n\r\n</p><p align=\"center\"><strong><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]--></strong>\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Faites-vous confiance et</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">vos rêves se réaliseront</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Sachez ce que vous pouvez et voulez faire dans la vie.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Fixez-vous des objectifs et travaillez d’arrache pied à les atteindre.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Efforcez-vous d’avoir du plaisir à chaque jour.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Usez de créativité dans l’expression de vos sentiments.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Regardez le monde d’un œil sage.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Cultivez votre sentiment de confiance.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Écoutez votre cœur et soyez fidèle à vos croyances.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Sachez que plus vous donnerez, plus vous recevrez en retour.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Croyez en vous-même et vos rêves se réaliseront.</span></p>','Faites-vous confiance et  vos rêves se réaliseront','','inherit','closed','closed','','55-revision-v1','','','2013-09-21 20:50:48','2013-09-22 00:50:48','',55,'http://divyayogamonteregie.org/french/?p=458',0,'revision','',0),(459,1,'2013-09-21 20:52:05','2013-09-22 00:52:05','<p align=\"center\"><!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span>SI VOUS AVEZ UN RÊVE</span></b></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">N’attendez pas la venue d’une journée spéciale,</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">puisqu’il sera peut-être trop tard dès le début de celle-ci.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vos décisions ne feront jamais l’unanimité de tous.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Soyez d’abord honnête avec vous-même en premier lieu, et</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">gardez à l’esprit que ce qui importe dans la vie est ce que vous faitesde votre vie</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">N’ayez pas peur de suivre vos désirs</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ils ne sont ni stupides ni égoïstes.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Prenez le temps de faire ce qui donne du sens à votre vie.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Abandonnez au passé vos craintes et regrets</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">puisqu’ ils lui appartiennent.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Évitez de troubler votre présent de choses qui ne peuvent changer.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous n’avez pas plus de contrôle sur le passé et le futur</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que sur la fureur de vos impulsions.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">N’éteignez pas vos rêves et ne refoulez pas vos désirs</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous le faites, votre périple prendra fin.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">C’est au moment présent que vous pouvez vous permettre un nouveau départ et la poursuite de vos rêves,</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">car en fin de compte, il ne vous restera que vos souvenirs.</span></p>\n<p align=\"center\"><span lang=\"FR\" style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\">Au crépuscule de votre vie, qu’il n’y ait ni excuses, ni explications, ni regrets</span></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\ns, no regrets!','','','inherit','closed','closed','','57-autosave-v1','','','2013-09-21 20:52:05','2013-09-22 00:52:05','',57,'http://divyayogamonteregie.org/french/?p=459',0,'revision','',0),(460,1,'2013-09-21 20:52:10','2013-09-22 00:52:10','<p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span>SI VOUS AVEZ UN RÊVE</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">N’attendez pas la venue d’une journée spéciale,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">puisqu’il sera peut-être trop tard dès le début de celle-ci.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vos décisions ne feront jamais l’unanimité de tous.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Soyez d’abord honnête avec vous-même en premier lieu, et</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">gardez à l’esprit que ce qui importe dans la vie est ce que vous faitesde votre vie</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">N’ayez pas peur de suivre vos désirs</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ils ne sont ni stupides ni égoïstes.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Prenez le temps de faire ce qui donne du sens à votre vie.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Abandonnez au passé vos craintes et regrets</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">puisqu’ ils lui appartiennent.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Évitez de troubler votre présent de choses qui ne peuvent changer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous n’avez pas plus de contrôle sur le passé et le futur</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que sur la fureur de vos impulsions.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">N’éteignez pas vos rêves et ne refoulez pas vos désirs</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous le faites, votre périple prendra fin.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">C’est au moment présent que vous pouvez vous permettre un nouveau départ et la poursuite de vos rêves,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">car en fin de compte, il ne vous restera que vos souvenirs.</span></p>\r\n<p align=\"center\"><span lang=\"FR\" style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\">Au crépuscule de votre vie, qu’il n’y ait ni excuses, ni explications, ni regrets</span></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\ns, no regrets!',' SI VOUS AVEZ UN RÊVE','','inherit','closed','closed','','57-revision-v1','','','2013-09-21 20:52:10','2013-09-22 00:52:10','',57,'http://divyayogamonteregie.org/french/?p=460',0,'revision','',0),(461,1,'2013-09-21 20:54:08','2013-09-22 00:54:08','<p style=\"text-align: center;\" align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: center;\" align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Au cours de notre vie,</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">certaines personnes nous feront mal et nous feront souffrir</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">cependant, nous devons apprendre à pardonner, à oublier, et, à ne pas garder rancune.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Au cours de notre vie nous ferons des erreurs,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Cependant, nous devons en tirer partie et grandir.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Au cours de notre vie nous aurons a vivre avec des regrets,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">mais nous devons apprendre à laisser le passé derrière nous</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">puisque nous ne pouvons rien y changer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Au cours de notre vie, nous perdrons des personnes à tout jamais,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">mais nous devons apprendre à laisser aller et poursuivre notre vie.</span></p>\r\n<p style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\">Au cours de notre vie, des embûches se trouveront sur notre chemin</span></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\n<p style=\"text-align: center;\" align=\"center\"></p>\r\nm within.','Au cours de notre vie,','','inherit','closed','closed','','48-revision-v1','','','2013-09-21 20:54:08','2013-09-22 00:54:08','',48,'http://divyayogamonteregie.org/french/?p=461',0,'revision','',0),(462,1,'2013-05-09 07:30:17','2013-05-09 11:30:17','<p align=\"center\">One song can spark a moment,\r\nOne tree can start a forest,\r\nOne bird can herald spring.</p>\r\n<p align=\"center\">One smile begins a friendship,\r\nOne handclasp lifts a soul.\r\nOne star can guide a ship at sea,\r\nOne vote can change a nation,\r\nOne sunbeam lights a room\r\nOne candle wipes out darkness,\r\nOne laugh will conquer gloom.</p>\r\n<p align=\"center\">One step must start each journey.\r\nOne word must start each prayer.\r\nOne hope will raise our spirits,\r\nOne touch can show you care.</p>\r\n<p align=\"center\">One voice can speak with wisdom,\r\nOne heart can know what\'s true,</p>\r\n<p align=\"center\">One life can make a difference,\r\nYou see, it\'s up to you!</p>','Just One   ','','inherit','closed','closed','','65-revision-v1','','','2013-05-09 07:30:17','2013-05-09 11:30:17','',65,'http://divyayogamonteregie.org/french/?p=462',0,'revision','',0),(463,1,'2013-09-21 20:56:57','2013-09-22 00:56:57','<p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Seulement qu\'un</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Une chanson peut éblouir un moment</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un arbre peut commencer une forest</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un oiseau peut enchanter le printemps</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un sourire commence une amitié</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un applaudissment élève l\'âme</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Une étoile peut guider un bateau sur l\'océan</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un vote peut changer une nation</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un rayon de soleil illumine une pièce</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Une chandelle enlève la noirceur</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un rire va conquérir la tristesse</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un pas doit commencer chaque jour</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un mot doit commencer une prière</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un moment d\'espoir élèvera nos esprits</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un geste affectueux peut montrer de la compassion</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Une voix peut s\'exprimer avec sagesse</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un coeur peut connaître la vérité</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Une vie peut faire la différence</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Tu vois, cela dépend de toi!</span></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n&nbsp;','Seulement qu\'un','','inherit','closed','closed','','65-revision-v1','','','2013-09-21 20:56:57','2013-09-22 00:56:57','',65,'http://divyayogamonteregie.org/french/?p=463',0,'revision','',0),(466,1,'2013-05-09 07:37:14','2013-05-09 11:37:14','<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.\r\nThe same four walls and busywork were really more like jail.</p>\r\n<p align=\"center\">I longed so much to do the things I\'d never done before,\r\nBut stayed inside my comfort zone and paced the same old floor.</p>\r\n<p align=\"center\">I claimed to be so busy with the things inside the zone,\r\nBut deep inside I longed for something special of my own.</p>\r\n<p align=\"center\">I couldn\'t let my life go by just watching others win.\r\nI held my breath; I stepped outside and let the change begin.\r\nI took a step and with new strength I\'d never felt before,\r\nI kissed my comfort zone goodbye and closed and locked the door.</p>\r\n<p align=\"center\">If you\'re in a comfort zone, afraid to venture out,\r\nRemember that all winners were at one time filled with doubt.\r\nA step or two and will power can make your dreams come true.</p>\r\n<p align=\"center\">Reach for your future with a smile; success is there for you!</p>','My Comfort Zone','','inherit','closed','closed','','74-revision-v1','','','2013-05-09 07:37:14','2013-05-09 11:37:14','',74,'http://divyayogamonteregie.org/french/?p=466',0,'revision','',0),(467,1,'2013-09-21 21:11:10','2013-09-22 01:11:10','<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.\nThe same four walls and busywork were really more like jail.</p>\n<p align=\"center\">I longed so much to do the things I\'d never done before,\nBut stayed inside my comfort zone and paced the same old floor.</p>\n<p align=\"center\">I claimed to be so busy with the things inside the zone,\nBut deep inside I longed for something special of my own.</p>\n<p align=\"center\">I couldn\'t let my life go by just watching others win.\nI held my breath; I stepped outside and let the change begin.\nI took a step and with new strength I\'d never felt before,\nI kissed my comfort zone goodbye and closed and locked the door.</p>\n<p align=\"center\">If you\'re in a comfort zone, afraid to venture out,\nRemember that all winners were at one time filled with doubt.\nA step or two and will power can make your dreams come true.</p>\n<p align=\"center\">Reach for your future with a smile; success is there for you!</p>','My Comfort Zone','','inherit','closed','closed','','74-autosave-v1','','','2013-09-21 21:11:10','2013-09-22 01:11:10','',74,'http://divyayogamonteregie.org/french/?p=467',0,'revision','',0),(469,1,'2013-09-21 21:11:50','2013-09-22 01:11:50','<p align=\"center\"><!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Ma Zone De Confort</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'avais jadis une zone de confort d\'ou je savais que je ne pouvais echouer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les memes quatres murs et dur travaille etaient plutot comme en prison.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je voulais<span style=\"mso-spacerun: yes;\">  </span>tellement faire des choses que je n\'ai jamais faites,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais en demeurant dans ma zone de confort, faisant les cents pas sur le meme vieux plancher.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je disais etre tellement occupe avec les choses dans ma zone ,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais au fond de moi<span style=\"mso-spacerun: yes;\">  </span>je desirais quelque chose de special a moi.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je ne pouvais laisser ma vie s\'enfuir juste en regardant les autres gagner.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai retenu mon souffle ; j\'ai sorti a l\'exterieur et laisser debuter le changement.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai pris un pas, et avec une nouvelle force jamais sentie auparavant,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai embrasser ma zone de confort et lui<span style=\"mso-spacerun: yes;\">  </span>ai dit aurevoir, puis<span style=\"mso-spacerun: yes;\">  </span>j\'ai<span style=\"mso-spacerun: yes;\">  </span>ferme la porte et l\'a barree.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous etes dans une zone de confort, peur de l\'aventure,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souvenez-vous que tous les gagnants furrent a un certain temps remplis de doute.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un pas ou deux et la volonte peuvent realiser vous reves.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Allez chercher votre futur avec un sourire; le succes est la pour vous.</span></p>\r\nsuccess is there for you!','Ma Zone De Confort','','inherit','closed','closed','','74-revision-v1','','','2013-09-21 21:11:50','2013-09-22 01:11:50','',74,'http://divyayogamonteregie.org/french/?p=469',0,'revision','',0),(468,1,'2013-09-21 21:11:26','2013-09-22 01:11:26','<p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Ma Zone De Confort</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'avais jadis une zone de confort d\'ou je savais que je ne pouvais echouer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les memes quatres murs et dur travaille etaient plutot comme en prison.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je voulais<span style=\"mso-spacerun: yes;\">  </span>tellement faire des choses que je n\'ai jamais faites,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais en demeurant dans ma zone de confort, faisant les cents pas sur le meme vieux plancher.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je disais etre tellement occupe avec les choses dans ma zone ,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais au fond de moi<span style=\"mso-spacerun: yes;\">  </span>je desirais quelque chose de special a moi.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je ne pouvais laisser ma vie s\'enfuir juste en regardant les autres gagner.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai retenu mon souffle ; j\'ai sorti a l\'exterieur et laisser debuter le changement.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai pris un pas, et avec une nouvelle force jamais sentie auparavant,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai embrasser ma zone de confort et lui<span style=\"mso-spacerun: yes;\">  </span>ai dit aurevoir, puis<span style=\"mso-spacerun: yes;\">  </span>j\'ai<span style=\"mso-spacerun: yes;\">  </span>ferme la porte et l\'a barree.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous etes dans une zone de confort, peur de l\'aventure,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souvenez-vous que tous les gagnants furrent a un certain temps remplis de doute.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un pas ou deux et la volonte peuvent realiser vous reves.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Allez chercher votre futur avec un sourire; le succes est la pour vous.</span></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.\r\nThe same four walls and busywork were really more like jail.</p>\r\n<p align=\"center\">I longed so much to do the things I\'d never done before,\r\nBut stayed inside my comfort zone and paced the same old floor.</p>\r\n<p align=\"center\">I claimed to be so busy with the things inside the zone,\r\nBut deep inside I longed for something special of my own.</p>\r\n<p align=\"center\">I couldn\'t let my life go by just watching others win.\r\nI held my breath; I stepped outside and let the change begin.\r\nI took a step and with new strength I\'d never felt before,\r\nI kissed my comfort zone goodbye and closed and locked the door.</p>\r\n<p align=\"center\">If you\'re in a comfort zone, afraid to venture out,\r\nRemember that all winners were at one time filled with doubt.\r\nA step or two and will power can make your dreams come true.</p>\r\n<p align=\"center\">Reach for your future with a smile; success is there for you!</p>','Ma Zone De Confort','','inherit','closed','closed','','74-revision-v1','','','2013-09-21 21:11:26','2013-09-22 01:11:26','',74,'http://divyayogamonteregie.org/french/?p=468',0,'revision','',0),(470,1,'2013-09-21 21:12:05','2013-09-22 01:12:05','<p align=\"center\"><!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Ma Zone De Confort</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'avais jadis une zone de confort d\'ou je savais que je ne pouvais echouer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les memes quatres murs et dur travaille etaient plutot comme en prison.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je voulais<span style=\"mso-spacerun: yes;\">  </span>tellement faire des choses que je n\'ai jamais faites,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais en demeurant dans ma zone de confort, faisant les cents pas sur le meme vieux plancher.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je disais etre tellement occupe avec les choses dans ma zone ,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Mais au fond de moi<span style=\"mso-spacerun: yes;\">  </span>je desirais quelque chose de special a moi.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je ne pouvais laisser ma vie s\'enfuir juste en regardant les autres gagner.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai retenu mon souffle ; j\'ai sorti a l\'exterieur et laisser debuter le changement.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai pris un pas, et avec une nouvelle force jamais sentie auparavant,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">J\'ai embrasser ma zone de confort et lui<span style=\"mso-spacerun: yes;\">  </span>ai dit aurevoir, puis<span style=\"mso-spacerun: yes;\">  </span>j\'ai<span style=\"mso-spacerun: yes;\">  </span>ferme la porte et l\'a barree.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous etes dans une zone de confort, peur de l\'aventure,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souvenez-vous que tous les gagnants furrent a un certain temps remplis de doute.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un pas ou deux et la volonte peuvent realiser vous reves.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Allez chercher votre futur avec un sourire; le succes est la pour vous.</span></p>\r\n&nbsp;','Ma Zone De Confort','','inherit','closed','closed','','74-revision-v1','','','2013-09-21 21:12:05','2013-09-22 01:12:05','',74,'http://divyayogamonteregie.org/french/?p=470',0,'revision','',0),(471,1,'2013-05-09 07:36:36','2013-05-09 11:36:36','<p align=\"center\">Of all the things you can do,</p>\r\n<p align=\"center\">promise yourself you will try.</p>\r\n<p align=\"center\">It doesn\'t even matter if you win,</p>\r\n<p align=\"center\">as long as you apply.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">No one can ask anything of you except yourself.</p>\r\n<p align=\"center\">If you don\'t want to make a move,</p>\r\n<p align=\"center\">it\'s you who\'ll be left out.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">So don\'t allow yourself to miss out on important things.</p>\r\n<p align=\"center\">You may not feel that they are worthy,</p>\r\n<p align=\"center\">yet they can turn out to be your wings.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Experiences make us whole,</p>\r\n<p align=\"center\">and make life feel fulfilled.</p>\r\n<p align=\"center\">And when it\'s time to look back,</p>\r\n<p align=\"center\">don\'t let yourself feel unskilled.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">So don\'t allow yourself to stop,</p>\r\n<p align=\"center\">for no apparent reason.</p>\r\n<p align=\"center\">Promise yourself you will try,</p>\r\n<p align=\"center\">and take on any season.</p>','Promise Yourself-now.','','inherit','closed','closed','','72-revision-v1','','','2013-05-09 07:36:36','2013-05-09 11:36:36','',72,'http://divyayogamonteregie.org/french/?p=471',0,'revision','',0),(472,1,'2013-09-21 21:13:41','2013-09-22 01:13:41','<p align=\"center\"><b>Promets-toi :</b></p>\r\n<p align=\"center\"> D’être tellement fort que rien ne pourra déranger ta paix d’esprit.</p>\r\n<p align=\"center\">De parler santé, bonheur et prospérité à toutes les personnes rencontrées.</p>\r\n<p align=\"center\">De faire en sorte que tous tes amis se sentiront importants.</p>\r\n<p align=\"center\">De voir le bon côté de toute chose afin que ton optimisme devienne réalité.</p>\r\n<p align=\"center\">De penser seulement à ce qu’il y a de meilleur, de travailler seulement pour ce qu’il y a de meilleur et d’aspirer seulement à ce qu’il y a de meilleur.</p>\r\n<p align=\"center\">D’être aussi enthousiaste du succès des autres que du tien.</p>\r\n<p align=\"center\">D’oublier les erreurs du passé et de concentrer tes énergies sur les accomplissements futurs.</p>\r\n<p align=\"center\">D’afficher une expression joyeuse en tout temps et de sourire à chaque personne rencontrée.</p>\r\n<p align=\"center\">D’utiliser tout ton temps à essayer de t’améliorer afin de ne pas avoir le temps de critiquer autrui.</p>\r\n<p align=\"center\">D’être trop solide pour t’inquiéter, trop noble pour t’enrager, trop fort pour avoir peur et trop heureux pour être troublé</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>','Promets-toi ','','inherit','closed','closed','','45-revision-v1','','','2013-09-21 21:13:41','2013-09-22 01:13:41','',45,'http://divyayogamonteregie.org/french/?p=472',0,'revision','',0),(473,1,'2013-05-09 07:37:55','2013-05-09 11:37:55','<p align=\"center\">By Berton Braley</p>\r\n<p align=\"center\">Start where you stand and never mind the past,\r\nThe past won\'t help you in beginning new,\r\nIf you have left it all behind at last\r\nWhy, that\'s enough, you\'re done with it, you\'re through;\r\nThis is another chapter in the book,\r\nThis is another race that you have planned,\r\nDon\'t give the vanished days a backward look,\r\nStart where you stand.</p>\r\n<p align=\"center\">The world won\'t care about your old defeats\r\nIf you can start anew and win success;\r\nThe future is your time, and time is fleet\r\nAnd there is much of work and strain and stress;\r\nForget the buried woes and dead despairs,\r\nHere is a brand-new trial right at hand,\r\nThe future is for him who does and dares,\r\nStart where you stand.</p>','Start Where You Stand','','inherit','closed','closed','','76-revision-v1','','','2013-05-09 07:37:55','2013-05-09 11:37:55','',76,'http://divyayogamonteregie.org/french/?p=473',0,'revision','',0),(475,1,'2013-09-21 21:15:23','2013-09-22 01:15:23','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Partez D\'ou Vous Etes</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Partez d\'ou vous etes et ne vous occupez pas du passe,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Le passee ne vous aidera pas a redemarrer de nouveau,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous l\'avez laisse enfin derriere vous</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Quoi, c\'est assez , c\'est termine, c\'est fini;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ceci est un autre chapitre dans ce livre,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">C\'est une autre race que vous avez plannifiee,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne donnez pas un autre regard a ces jours disparus,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Commencez d\'ou vous etes.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Le monde ne porterais pas attention a vos anciennes defaites</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous pouvez recommencer de nouveau et avoir du succes;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Le futur est votre temps, et le temps passe tres vite</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et il y a beaucoups d\'ouvrage, d\'effort et de stress;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Oubliez les difficultes enterrees et les desespoirs morts,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ceci est un exploit nouveau dans votre main,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les futur est a celui qui fait et<span style=\"mso-spacerun: yes;\">  </span>qui affronte ,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\">Commencez d\'ou vous etes.</p>','Partez D\'ou Vous Etes','','inherit','closed','closed','','76-revision-v1','','','2013-09-21 21:15:23','2013-09-22 01:15:23','',76,'http://divyayogamonteregie.org/french/?p=475',0,'revision','',0),(474,1,'2013-09-21 21:15:11','2013-09-22 01:15:11','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Partez D\'ou Vous Etes</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Partez d\'ou vous etes et ne vous occupez pas du passe,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Le passee ne vous aidera pas a redemarrer de nouveau,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous l\'avez laisse enfin derriere vous</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Quoi, c\'est assez , c\'est termine, c\'est fini;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ceci est un autre chapitre dans ce livre,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">C\'est une autre race que vous avez plannifiee,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne donnez pas un autre regard a ces jours disparus,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Commencez d\'ou vous etes.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Le monde ne porterais pas attention a vos anciennes defaites</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous pouvez recommencer de nouveau et avoir du succes;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Le futur est votre temps, et le temps passe tres vite</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et il y a beaucoups d\'ouvrage, d\'effort et de stress;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Oubliez les difficultes enterrees et les desespoirs morts,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ceci est un exploit nouveau dans votre main,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les futur est a celui qui fait et<span style=\"mso-spacerun: yes;\">  </span>qui affronte ,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\">Commencez d\'ou vous etes.</p>','Partez D\'ou Vous Etes','','inherit','closed','closed','','76-revision-v1','','','2013-09-21 21:15:11','2013-09-22 01:15:11','',76,'http://divyayogamonteregie.org/french/?p=474',0,'revision','',0),(476,1,'2013-05-09 07:35:47','2013-05-09 11:35:47','<p align=\"center\">Today I have decided,</p>\r\n<p align=\"center\">that it\'s time to take control.</p>\r\n<p align=\"center\">There won\'t be anymore sitting,</p>\r\n<p align=\"center\">and waiting, this is my goal.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Today I see it so clearly,</p>\r\n<p align=\"center\">I am all that I have.</p>\r\n<p align=\"center\">If I want to get something done,</p>\r\n<p align=\"center\">it\'s up to me to pave my own path.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Today I will set my goal,</p>\r\n<p align=\"center\">and work to see it through.</p>\r\n<p align=\"center\">I\'m tired of being afraid,</p>\r\n<p align=\"center\">it\'s time for my dreams to come true.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Today I am quite happy,</p>','Today I','','inherit','closed','closed','','70-revision-v1','','','2013-05-09 07:35:47','2013-05-09 11:35:47','',70,'http://divyayogamonteregie.org/french/?p=476',0,'revision','',0),(477,1,'2013-09-21 21:17:17','2013-09-22 01:17:17','<p align=\"center\">Today I have decided,</p>\n<p align=\"center\">that it\'s time to take control.</p>\n<p align=\"center\">There won\'t be anymore sitting,</p>\n<p align=\"center\">and waiting, this is my goal.</p>\n<p align=\"center\">Today I see it so clearly,</p>\n<p align=\"center\">I am all that I have.</p>\n<p align=\"center\">If I want to get something done,</p>\n<p align=\"center\">it\'s up to me to pave my own path.</p>\n<p align=\"center\">Today I will set my goal,</p>\n<p align=\"center\">and work to see it through.</p>\n<p align=\"center\">I\'m tired of being afraid,</p>\n<p align=\"center\">it\'s time for my dreams to come true.</p>\n<p align=\"center\">Today I am quite happy,</p>','Today I','','inherit','closed','closed','','70-autosave-v1','','','2013-09-21 21:17:17','2013-09-22 01:17:17','',70,'http://divyayogamonteregie.org/french/?p=477',0,'revision','',0),(478,1,'2013-09-21 21:20:14','2013-09-22 01:20:14','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Aujourd’hui Je</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Aujourd’hui j’ai décidé,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Qu’il est temps de prendre contrôle.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Il n’y aura plus de ‘je m’assois’,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et j’attends ceci est mon but.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Aujourd’hui je vois de façon si claire,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je suis tout ce que j’ai.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si je veux que quelque chose s’accomplisse,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">C’est à moi de paver mon propre chemin.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Aujourd’hui d’établirais mon but,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et je travaillerais pour l’atteindre.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Je suis fatigué d’avoir peur,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">C’est le temps pour que mes rêves deviennent réalités.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Aujourd’hui je suis assez heureux.</span></p>','Aujourd’hui Je','','inherit','closed','closed','','70-revision-v1','','','2013-09-21 21:20:14','2013-09-22 01:20:14','',70,'http://divyayogamonteregie.org/french/?p=478',0,'revision','',0),(479,1,'2013-09-21 21:22:56','2013-09-22 01:22:56','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Les rêves d\'aujourd\'hui sont les succès de demain</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne crains pas les espoirs élevés</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ou les plans qui semblent hors d\'atteinte.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La vie est faite pour en faire l\'expérience,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et chaque situation est une occasion</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">d\'apprendre et de grandir.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">La motivation est un point de départ positif,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et l\'action te permet d\'avancer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Un rêve est une esquisse</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">d\'un but qui n\'est pas encore atteint;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">la seule différence entre les deux</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">est l\'effort investi pour atteindre</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ce que tu espères accomplir.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Laisse toi guider par ton esprit et ton cœur;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">permet au pouvoir de ta volonté</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">de te mener à ton destin.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne compte pas les pas à franchir;</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">fais seulement la somme des pas déjà parcourus,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et multiplie les par la foi, la confiance et l\'endurance.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Souviens toi toujours que</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">pour ceux qui persistent,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">les rêves d\'aujourd\'hui deviennent</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">les succès de demain.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>','Les rêves d\'aujourd\'hui sont les succès de demain','','inherit','closed','closed','','63-revision-v1','','','2013-09-21 21:22:56','2013-09-22 01:22:56','',63,'http://divyayogamonteregie.org/french/?p=479',0,'revision','',0),(480,1,'2013-09-21 21:36:12','2013-09-22 01:36:12','<p align=\"center\"><strong><!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]--></strong>\n\n</p><p align=\"center\"><strong><!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]--></strong>\n\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">En toi se trouve la force d\'accomplir tes défis dans la vie</span></b></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Tu as plus de force que tu ne penses</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souviens-toi de rester debout</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque défis</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">t\'aidera à grandir</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque obstacle sur ta route</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">fortifiera ton esprit et ton âme</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque obstacle surmonté</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">enrichira ta connaissance de la vie.</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Lorsque les problèmes pèsent de tout leur poids</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">sur tes épaules</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souviens toi</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que ployé sous le fardeau</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">tu peux rester droit et grand,</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">car tu ne reçois jamais plus que tu ne peux recevoir</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et tu es plus fort que tu ne penses</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\n<p align=\"center\"><strong></strong>u think</p>','','','inherit','closed','closed','','61-autosave-v1','','','2013-09-21 21:36:12','2013-09-22 01:36:12','',61,'http://divyayogamonteregie.org/french/?p=480',0,'revision','',0),(482,1,'2013-09-21 21:36:52','2013-09-22 01:36:52','<p align=\"center\"><strong><!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]--></strong>\r\n\r\n</p><p align=\"center\"><strong><!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]--></strong>\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">En toi se trouve la force d\'accomplir tes défis dans la vie</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Tu as plus de force que tu ne penses</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souviens-toi de rester debout</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque défis</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">t\'aidera à grandir</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque obstacle sur ta route</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">fortifiera ton esprit et ton âme</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque obstacle surmonté</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">enrichira ta connaissance de la vie.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Lorsque les problèmes pèsent de tout leur poids</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">sur tes épaules</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souviens toi</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que ployé sous le fardeau</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">tu peux rester droit et grand,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">car tu ne reçois jamais plus que tu ne peux recevoir</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et tu es plus fort que tu ne penses</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>','En toi se trouve la force d\'accomplir tes défis dans la vie','','inherit','closed','closed','','61-revision-v1','','','2013-09-21 21:36:52','2013-09-22 01:36:52','',61,'http://divyayogamonteregie.org/french/?p=482',0,'revision','',0),(481,1,'2013-09-21 21:36:25','2013-09-22 01:36:25','<p align=\"center\"><strong><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]--></strong>\r\n\r\n</p><p align=\"center\"><strong><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]--></strong>\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">En toi se trouve la force d\'accomplir tes défis dans la vie</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Tu as plus de force que tu ne penses</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souviens-toi de rester debout</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque défis</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">t\'aidera à grandir</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque obstacle sur ta route</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">fortifiera ton esprit et ton âme</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Chaque obstacle surmonté</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">enrichira ta connaissance de la vie.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Lorsque les problèmes pèsent de tout leur poids</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">sur tes épaules</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">souviens toi</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">que ployé sous le fardeau</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">tu peux rester droit et grand,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">car tu ne reçois jamais plus que tu ne peux recevoir</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et tu es plus fort que tu ne penses</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p align=\"center\"><strong></strong>u think</p>','En toi se trouve la force d\'accomplir tes défis dans la vie','','inherit','closed','closed','','61-revision-v1','','','2013-09-21 21:36:25','2013-09-22 01:36:25','',61,'http://divyayogamonteregie.org/french/?p=481',0,'revision','',0),(484,1,'2013-09-21 21:40:56','2013-09-22 01:40:56','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Vous possédez l’énergie</span></b></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les semblables s’attirent</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous vous sentez vaincu, vous le serez</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous êtes fatigués, vous perdrez votre l’élan</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous concentrez votre attention sur la joie, la négativité n\'aura d\'autre choix que de reculer</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Décidez de rire face à l\'adversité</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Sachez que vous êtes assez puissant pour surpasser toutes les difficultés</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne laissez pas votre esprit vagabonder</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Soyez puissant</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Apprenez à vous connaître.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Décidez d\'être en contrôle de votre réalité.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Il n\'y a pas de victimes, sauf ceux qui ont renoncé à leur pouvoir.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous possédez l\'énergie de créer et de prendre le contrôle de votre destin.</span></p>','Vous possédez l’énergie','','inherit','closed','closed','','67-revision-v1','','','2013-09-21 21:40:56','2013-09-22 01:40:56','',67,'http://divyayogamonteregie.org/french/?p=484',0,'revision','',0),(485,1,'2013-09-21 21:50:55','2013-09-22 01:50:55','<p align=\"center\"><!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Promettez-vous -maintenant</span></b><span lang=\"FR\" style=\"mso-ansi-language: FR;\">.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">De toutes les choses que vous pouvez faire,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">promettez-vous que vous allez essayer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ce n\'est même pas important de gagner,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">du moment que vous vous y appliquez.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Personne ne peut demander quelque chose de vous,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">il n\'y à que vous-même qui le pouvez.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous ne voulez pas passer à l\'action,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">c\'est vous qui serez laissé-pour-compte.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Alors ne vous permettez pas de passer,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">par dessus des moments importants.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous pourriez ne pas penser qu\'ils sont valables mais,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ils pourraient être vos ailes.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les expériences nous rendent entiers</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et font en sorte que la vie est plus accomplie.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et quand viendra le temps pour regarder à l’arrière,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ne vous laissez pas sentir que vous êtes sans compétences.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne vous permettez pas d\'arrêter,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">sans raisons apparentes.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Promettez-vous que vous allez essayer</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et affronterez toutes les saisons</span></p>\r\n<p align=\"center\">Of all the things you can do,</p>\r\n<p align=\"center\">promise yourself you will try.</p>\r\n<p align=\"center\">It doesn\'t even matter if you win,</p>\r\n<p align=\"center\">as long as you apply.</p>\r\n<p align=\"center\">No one can ask anything of you except yourself.</p>\r\n<p align=\"center\">If you don\'t want to make a move,</p>\r\n<p align=\"center\">it\'s you who\'ll be left out.</p>\r\n<p align=\"center\">So don\'t allow yourself to miss out on important things.</p>\r\n<p align=\"center\">You may not feel that they are worthy,</p>\r\n<p align=\"center\">yet they can turn out to be your wings.</p>\r\n<p align=\"center\">Experiences make us whole,</p>\r\n<p align=\"center\">and make life feel fulfilled.</p>\r\n<p align=\"center\">And when it\'s time to look back,</p>\r\n<p align=\"center\">don\'t let yourself feel unskilled.</p>\r\n<p align=\"center\">So don\'t allow yourself to stop,</p>\r\n<p align=\"center\">for no apparent reason.</p>\r\n<p align=\"center\">Promise yourself you will try,</p>\r\n<p align=\"center\">and take on any season.</p>','Promettez-vous -maintenant.','','inherit','closed','closed','','72-autosave-v1','','','2013-09-21 21:50:55','2013-09-22 01:50:55','',72,'http://divyayogamonteregie.org/french/?p=485',0,'revision','',0),(486,1,'2013-09-21 21:50:43','2013-09-22 01:50:43','<p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p align=\"center\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><b style=\"mso-bidi-font-weight: normal;\"><span lang=\"FR\" style=\"font-size: 18.0pt; mso-ansi-language: FR;\">Promettez-vous -maintenant</span></b><span lang=\"FR\" style=\"mso-ansi-language: FR;\">.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">De toutes les choses que vous pouvez faire,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">promettez-vous que vous allez essayer.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ce n\'est même pas important de gagner,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">du moment que vous vous y appliquez.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Personne ne peut demander quelque chose de vous,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">il n\'y à que vous-même qui le pouvez.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Si vous ne voulez pas passer à l\'action,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">c\'est vous qui serez laissé-pour-compte.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Alors ne vous permettez pas de passer,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">par dessus des moments importants.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Vous pourriez ne pas penser qu\'ils sont valables mais,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ils pourraient être vos ailes.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Les expériences nous rendent entiers</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et font en sorte que la vie est plus accomplie.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Et quand viendra le temps pour regarder à l’arrière,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">ne vous laissez pas sentir que vous êtes sans compétences.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Ne vous permettez pas d\'arrêter,</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">sans raisons apparentes.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">Promettez-vous que vous allez essayer</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\">et affronterez toutes les saisons</span></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Of all the things you can do,</p>\r\n<p align=\"center\">promise yourself you will try.</p>\r\n<p align=\"center\">It doesn\'t even matter if you win,</p>\r\n<p align=\"center\">as long as you apply.</p>\r\n<p align=\"center\">No one can ask anything of you except yourself.</p>\r\n<p align=\"center\">If you don\'t want to make a move,</p>\r\n<p align=\"center\">it\'s you who\'ll be left out.</p>\r\n<p align=\"center\">So don\'t allow yourself to miss out on important things.</p>\r\n<p align=\"center\">You may not feel that they are worthy,</p>\r\n<p align=\"center\">yet they can turn out to be your wings.</p>\r\n<p align=\"center\">Experiences make us whole,</p>\r\n<p align=\"center\">and make life feel fulfilled.</p>\r\n<p align=\"center\">And when it\'s time to look back,</p>\r\n<p align=\"center\">don\'t let yourself feel unskilled.</p>\r\n<p align=\"center\">So don\'t allow yourself to stop,</p>\r\n<p align=\"center\">for no apparent reason.</p>\r\n<p align=\"center\">Promise yourself you will try,</p>\r\n<p align=\"center\">and take on any season.</p>','Promettez-vous -maintenant.','','inherit','closed','closed','','72-revision-v1','','','2013-09-21 21:50:43','2013-09-22 01:50:43','',72,'http://divyayogamonteregie.org/french/?p=486',0,'revision','',0),(489,1,'2013-10-05 20:44:21','2013-10-06 00:44:21','Page un','Stories','','inherit','closed','closed','','79-autosave-v1','','','2013-10-05 20:44:21','2013-10-06 00:44:21','',79,'http://divyayogamonteregie.org/french/?p=489',0,'revision','',0),(491,1,'2013-10-05 20:47:53','2013-10-06 00:47:53','<p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Motiver</span><span lang=\"FR\" style=\"mso-ansi-language: FR;\">\r\n\r\n</span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il ya cette histoire d\'un célèbre chercheur <span style=\"mso-spacerun: yes;\"> </span>qui avait fait plusieurs découvertes médicales très importantes. Il était interviewé par un journaliste qui lui a demandé pourquoil était <span style=\"mso-spacerun: yes;\"> </span>beaucoup plus créatif que la majorité des personnes. Qu\'est-ce qui le différenciait tant des autres?\r\n\r\nIl a répondu que selon lui, cela provenait d\'une expérience qu’il avait eu avec sa mère vers l’âge de deux ans. Il avait essayé de sortir une bouteille de lait du réfrigérateur, lorsque celle-ci lui a glissé des mains et est tombée par terre, déversant tout son contenu sur le sol de la cuisine – produisant <span style=\"mso-spacerun: yes;\"> </span>une véritable mer de lait!\r\n\r\nQuand sa mère entra dans la cuisine, au lieu de hurler après lui, en lui faisant un sermon ou en le punissant, elle lui dit : \" Robert , quel beau dégât que tu as fait ! J\'ai rarement vu une énorme flaque de lait comme celle-ci. Eh bien, puisque <span style=\"mso-spacerun: yes;\"> </span>le mal est déjà fait, est-ce que tu voudrais jouer dans le lait pendant quelques minutes avant de le nettoyer? \"\r\n\r\nIl a fait comme elle a proposé. Après quelques minutes, sa mère lui a dit : «Tu sais Robert, lorsque tu fais un dégât comme celui-ci, tu dois par la suite nettoyer et remettre tout en ordre. Alors, comment veux-tu faire? Nous pourrions utiliser une éponge, une serviette, ou une vadrouille. Que préfères-tu? \"\r\n\r\nIl a choisi l\'éponge et ensemble ils ont nettoyé le lait renversé.\r\n\r\nSa mère lui a alors dit: « Tu sais, ce qui vient de se produire <span style=\"mso-spacerun: yes;\"> </span>ici est une expérience ratée dans la façon d’apporter efficacement une grosse bouteille de lait avec deux mains minuscules. Sortons dans la cour arrière et remplis la bouteille avec de l\'eau et essaies de trouver un moyen de la transporter sans la laisser tomber. \"\r\n\r\nLe petit garçon a appris que s\'il saisissait la bouteille <span style=\"mso-spacerun: yes;\"> </span>près du goulot avec ses deux mains, il pouvait l’apporter sans la laisser tomber. C’est à ce moment que ce scientifique de renom a su<span style=\"mso-spacerun: yes;\">  </span>qu\'il ne devait pas craindre de faire des erreurs. Au contraire, il a appris que les erreurs étaient des opportunités d\'apprendre quelque chose de nouveau, ce qui est le fondement de toutes les expériences scientifiques. Même si l\'expérience « ne fonctionne pas», généralement <span style=\"mso-spacerun: yes;\"> </span>nous apprennons quand même quelque chose.</span></p>',' Motiver','','inherit','closed','closed','','177-revision-v1','','','2013-10-05 20:47:53','2013-10-06 00:47:53','',177,'http://divyayogamonteregie.org/french/?p=491',0,'revision','',0),(493,1,'2013-10-05 20:49:31','2013-10-06 00:49:31','<p style=\"text-align: justify;\">\n<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n</p><p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n\n</p><p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">C’est peut-être moi le problème et pas les autres.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un homme craignait que sa femme n’entendait pas aussi bien qu’avant et croyait qu’elle avait besoin d’un appareil auditif.<span style=\"mso-spacerun: yes;\">  </span>Ne sachant pas trop comment lui en faire part, il a contacté le médecin de famille pour discuter du problème.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le médecin lui a proposé de faire un test informel<span style=\"mso-spacerun: yes;\">  </span>qui pour lui donner un aperçu de sa perte auditive.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Voici ce que tu dois faire », lui a dit le médecin, reste à environ 40 pieds d’elle et parle-lui d’un ton normal et vois si elle t’entend.<span style=\"mso-spacerun: yes;\">  </span>Sinon, avance toi à 30 pieds, puis à 20, jusqu’au moment qu’elle te réponde ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Ce soir là, sa femme était en train de préparer le souper dans la cuisine et le mari se trouvait dans la salle à dîner.<span style=\"mso-spacerun: yes;\">  </span>Il s’est dit «  je suis environ à 40 pieds, on va voir ce qui se produira ».<span style=\"mso-spacerun: yes;\">  </span>Alors, d’un ton de voix normal il lui a demandé, « chérie, qu’est-ce que l’on mange pour souper? »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Aucune réponse.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le mari s’est rapproché de la cuisine, à environ 30 pieds de sa femme et a répété la question, « chérie, qu’est-ce que l’on mange pour souper? »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Encore aucune réponse.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors avancé <span style=\"mso-spacerun: yes;\"> </span>dans la salle à dîner jusqu’à environ 20 pieds de sa femme et lui posa la question : «chérie, qu’est-ce que l’on mange pour souper? ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Encore une fois aucune réponse.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors avancé jusqu’à la porte de la cuisine, à environ 10 pieds.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Chérie qu’est-ce que l’on mange pour souper? »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Encore une fois aucune réponse.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors marché jusqu’à côté d’elle.<span style=\"mso-spacerun: yes;\">  </span>« Chérie, c’est quoi le souper ? »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« James pour la cinquième fois, je t’ai dit des fèves de Lima. »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le problème n’est pas toujours avec les autres personnes comme nous avons tendance à le croire;<span style=\"mso-spacerun: yes;\">  </span>il fait peut-être partie de nous-mêmes.</span></p>','','','inherit','closed','closed','','179-autosave-v1','','','2013-10-05 20:49:31','2013-10-06 00:49:31','',179,'http://divyayogamonteregie.org/french/?p=493',0,'revision','',0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (494,1,'2013-10-05 20:50:00','2013-10-06 00:50:00','<p style=\"text-align: justify;\">\r\n<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">C’est peut-être moi le problème et pas les autres.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un homme craignait que sa femme n’entendait pas aussi bien qu’avant et croyait qu’elle avait besoin d’un appareil auditif.<span style=\"mso-spacerun: yes;\">  </span>Ne sachant pas trop comment lui en faire part, il a contacté le médecin de famille pour discuter du problème.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le médecin lui a proposé de faire un test informel<span style=\"mso-spacerun: yes;\">  </span>qui pour lui donner un aperçu de sa perte auditive.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Voici ce que tu dois faire », lui a dit le médecin, reste à environ 40 pieds d’elle et parle-lui d’un ton normal et vois si elle t’entend.<span style=\"mso-spacerun: yes;\">  </span>Sinon, avance toi à 30 pieds, puis à 20, jusqu’au moment qu’elle te réponde ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Ce soir là, sa femme était en train de préparer le souper dans la cuisine et le mari se trouvait dans la salle à dîner.<span style=\"mso-spacerun: yes;\">  </span>Il s’est dit «  je suis environ à 40 pieds, on va voir ce qui se produira ».<span style=\"mso-spacerun: yes;\">  </span>Alors, d’un ton de voix normal il lui a demandé, « chérie, qu’est-ce que l’on mange pour souper? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Aucune réponse.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le mari s’est rapproché de la cuisine, à environ 30 pieds de sa femme et a répété la question, « chérie, qu’est-ce que l’on mange pour souper? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Encore aucune réponse.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors avancé <span style=\"mso-spacerun: yes;\"> </span>dans la salle à dîner jusqu’à environ 20 pieds de sa femme et lui posa la question : «chérie, qu’est-ce que l’on mange pour souper? ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Encore une fois aucune réponse.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors avancé jusqu’à la porte de la cuisine, à environ 10 pieds.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Chérie qu’est-ce que l’on mange pour souper? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Encore une fois aucune réponse.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors marché jusqu’à côté d’elle.<span style=\"mso-spacerun: yes;\">  </span>« Chérie, c’est quoi le souper ? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« James pour la cinquième fois, je t’ai dit des fèves de Lima. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le problème n’est pas toujours avec les autres personnes comme nous avons tendance à le croire;<span style=\"mso-spacerun: yes;\">  </span>il fait peut-être partie de nous-mêmes.</span></p>','  C’est peut-être moi le problème et pas les autres.','','inherit','closed','closed','','179-revision-v1','','','2013-10-05 20:50:00','2013-10-06 00:50:00','',179,'http://divyayogamonteregie.org/french/?p=494',0,'revision','',0),(495,1,'2013-07-09 20:34:38','2013-07-10 00:34:38','<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p>\r\n<p style=\"text-align: justify;\">Hands started going up.</p>\r\n<p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p>\r\n<p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p>\r\n<p style=\"text-align: justify;\">Still the hands were up in the air.</p>\r\n<p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p>\r\n<p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p>\r\n<p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p>\r\n<p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p>\r\n<p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>','A value','','inherit','closed','closed','','156-revision-v1','','','2013-07-09 20:34:38','2013-07-10 00:34:38','',156,'http://divyayogamonteregie.org/french/?p=495',0,'revision','',0),(497,1,'2013-10-05 20:52:05','2013-10-06 00:52:05','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Une valeur</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un conférencier de renom <span style=\"mso-spacerun: yes;\"> </span>a débuté son séminaire en levant dans les airs un billet de 20$.<span style=\"mso-spacerun: yes;\">  </span>Il a demandé aux 200 personnes présentes dans la salle : « Qui voudrait ce billet de 20$? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Quelques personnes ont commencé à lever leur main.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> Il a dit : « Je vais donner ce 20$ à quelqu’un d’entre vous, mais avant laissez- moi faire ceci. »<span style=\"mso-spacerun: yes;\">  </span>Il a froissé le billet.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors demandé : «  Qui le veut encore ? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il y avait encore des mains levées dans les airs.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Bon, qu’est-ce qui se passe si je fais ceci? » Et il a jeté le billet par terre et a pilé dessus avec ses chaussures.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il l’a ramassé tout fripé et sale et a dit « qui est-ce qui le veut maintenant ?»</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"><span style=\"mso-spacerun: yes;\"> </span>Il y avait encore des mains dans les airs.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Mes amis, vous venez tous d’apprendre une leçon très importante.<span style=\"mso-spacerun: yes;\">  </span>Peu importe ce que j’ai fait avec l’argent, vous le vouliez quand même parce que sa valeur n’a pas changé.<span style=\"mso-spacerun: yes;\">  </span>Il valait toujours 20$. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Plusieurs fois dans notre vie, on est abandonné, froissé, <span style=\"mso-spacerun: yes;\"> </span>trainé dans la boue <span style=\"mso-spacerun: yes;\"> </span>à cause de nos décisions ou découlant de notre façon d’agir dans certaines circonstances.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">On croit que l’on vaut moins.<span style=\"mso-spacerun: yes;\">  </span>Cependant, peu importe ce qui arrive ou ce qui se produira vous ne perdrez jamais votre valeur.<span style=\"mso-spacerun: yes;\">  </span>Vous avez une âme divine, vous êtes spécial.<span style=\"mso-spacerun: yes;\">  </span>Ne l’oubliez jamais.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','Une valeur','','inherit','closed','closed','','156-revision-v1','','','2013-10-05 20:52:05','2013-10-06 00:52:05','',156,'http://divyayogamonteregie.org/french/?p=497',0,'revision','',0),(496,1,'2013-10-05 20:51:23','2013-10-06 00:51:23','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Une valeur</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un conférencier de renom <span style=\"mso-spacerun: yes;\"> </span>a débuté son séminaire en levant dans les airs un billet de 20$.<span style=\"mso-spacerun: yes;\">  </span>Il a demandé aux 200 personnes présentes dans la salle : « Qui voudrait ce billet de 20$? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Quelques personnes ont commencé à lever leur main.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a dit : « Je vais donner ce 20$ à quelqu’un d’entre vous, mais avant laissez- moi faire ceci. »<span style=\"mso-spacerun: yes;\">  </span>Il a froissé le billet.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors demandé : «  Qui le veut encore ? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il y avait encore des mains levées dans les airs.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Bon, qu’est-ce qui se passe si je fais ceci? » Et il a jeté le billet par terre et a pilé dessus avec ses chaussures.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il l’a ramassé tout fripé et sale et a dit « qui est-ce qui le veut maintenant ?»</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"><span style=\"mso-spacerun: yes;\"> </span>Il y avait encore des mains dans les airs.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Mes amis, vous venez tous d’apprendre une leçon très importante.<span style=\"mso-spacerun: yes;\">  </span>Peu importe ce que j’ai fait avec l’argent, vous le vouliez quand même parce que sa valeur n’a pas changé.<span style=\"mso-spacerun: yes;\">  </span>Il valait toujours 20$. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Plusieurs fois dans notre vie, on est abandonné, froissé, <span style=\"mso-spacerun: yes;\"> </span>trainé dans la boue <span style=\"mso-spacerun: yes;\"> </span>à cause de nos décisions ou découlant de notre façon d’agir dans certaines circonstances.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">On croit que l’on vaut moins.<span style=\"mso-spacerun: yes;\">  </span>Cependant, peu importe ce qui arrive ou ce qui se produira vous ne perdrez jamais votre valeur.<span style=\"mso-spacerun: yes;\">  </span>Vous avez une âme divine, vous êtes spécial.<span style=\"mso-spacerun: yes;\">  </span>Ne l’oubliez jamais.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','Une valeur','','inherit','closed','closed','','156-revision-v1','','','2013-10-05 20:51:23','2013-10-06 00:51:23','',156,'http://divyayogamonteregie.org/french/?p=496',0,'revision','',0),(501,1,'2013-10-05 21:00:00','2013-10-06 01:00:00','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />\n\n&nbsp;','Giraffe-mother and baby','','inherit','closed','closed','','89-autosave-v1','','','2013-10-05 21:00:00','2013-10-06 01:00:00','',89,'http://divyayogamonteregie.org/french/?p=501',0,'revision','',0),(503,1,'2013-10-05 21:08:07','2013-10-06 01:08:07','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" /><!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Maman girafe et son petit</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Mettre une girafe au monde est une tâche difficile.<span style=\"mso-spacerun: yes;\">  </span>Le bébé de la girafe, lorsqu’il naît tombe sur le dos, généralement d’une hauteur de dix pieds.<span style=\"mso-spacerun: yes;\">  </span>En quelques secondes il se retourne et replie les jambes sous son corps.De cette position, Il observe le monde pour la première fois et il enlève les restants du<span style=\"mso-spacerun: yes;\">  </span>liquide amniotique<span style=\"mso-spacerun: yes;\">  </span>sur ses yeux et ses oreilles.<span style=\"mso-spacerun: yes;\">  </span>Puis, sans ménagement la girafe introduit son petit à la dure réalité de la vie.<span style=\"mso-spacerun: yes;\">  </span>Dans son livre «a view from the Zoo » Gary Richmond décrit comment un nouveau né girafe reçoit sa première leçon de vie.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La mère girafe baisse suffisamment la tête pour pouvoir brièvement l’observer.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Puis elle se positionne<span style=\"mso-spacerun: yes;\">  </span>au dessus de son veau.<span style=\"mso-spacerun: yes;\">  </span>Elle attend environ une minute et elle fait la chose la plus surprenante qui soit : elle balance sa longue jambe pour donner un coup de pied <span style=\"mso-spacerun: yes;\"> </span>à son bébé qui se retrouve la tête au dessus des genoux.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Ce procédé violent<span style=\"mso-spacerun: yes;\">  </span>se répète continuellement.<span style=\"mso-spacerun: yes;\">  </span>L’effort pour se lever est momentané.<span style=\"mso-spacerun: yes;\">  </span>Lorsque le bébé girafe se fatigue, la mère le frappe encore pour stimuler ses efforts.<span style=\"mso-spacerun: yes;\">  </span>Finalement, le bébé girafe réussit à se lever sur ses jambes branlantes.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Puis la<span style=\"mso-spacerun: yes;\">  </span>mère fait cette chose incroyable : elle le frappe et le fait retomber par terre.<span style=\"mso-spacerun: yes;\">  </span>Pourquoi?<span style=\"mso-spacerun: yes;\">  </span>Elle veut lui rappeler comment il a fait pour se lever.<span style=\"mso-spacerun: yes;\">  </span>Dans la nature, les bébés girafes doivent se lever le plus rapidement possible afin de rester avec le troupeau où ils seront en sécurité.<span style=\"mso-spacerun: yes;\">  </span>Les lions, hyènes, léopards, et chiens de chasse adorent les bébés girafes et réussiront à les attraper si les mères ne leur avaient pas appris à se relever rapidement. </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Irving stone a compris cela.<span style=\"mso-spacerun: yes;\">  </span>Il a consacré sa vie entière pour étudier et écrire des biographies de grands hommes tel que Michel-Ange, Vincent Van Gogh, Sigmund Freud et Charles Darwin.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">On lui a déjà demandé s’il y a avait un fil conducteur qui unissait tous ces gens exceptionnels.<span style=\"mso-spacerun: yes;\">  </span>Il a répondu : «  J’écris sur des gens qui dans leur vie avait une vision ou un rêve et qui ont travaillé pour essayer de l’accomplir. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Pendant des années, <span style=\"mso-spacerun: yes;\"> </span>tel des boxeurs,<span style=\"mso-spacerun: yes;\">  </span>ils ont reçu des coups, sont tombés, <span style=\"mso-spacerun: yes;\"> </span>on les <span style=\"mso-spacerun: yes;\"> </span>a calomnié <span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span>et leurs projets n’allaient nulle part.<span style=\"mso-spacerun: yes;\">  </span>Mais à chaque fois qu’ils sont tombés, ils se sont relevés. <span style=\"mso-spacerun: yes;\"> </span>On ne peut pas détruire ce genre de personne.<span style=\"mso-spacerun: yes;\">  </span>Et à la fin de leur vie, ils ont accompli une parcelle de ce qu’ils avaient prévu de faire ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n&nbsp;','Maman girafe et son petit','','inherit','closed','closed','','89-revision-v1','','','2013-10-05 21:08:07','2013-10-06 01:08:07','',89,'http://divyayogamonteregie.org/french/?p=503',0,'revision','',0),(502,1,'2013-10-05 21:00:21','2013-10-06 01:00:21','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" /><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Maman girafe et son petit</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Mettre une girafe au monde est une tâche difficile.<span style=\"mso-spacerun: yes;\">  </span>Le bébé de la girafe, lorsqu’il naît tombe sur le dos, généralement d’une hauteur de dix pieds.<span style=\"mso-spacerun: yes;\">  </span>En quelques secondes il se retourne et replie les jambes sous son corps.De cette position, Il observe le monde pour la première fois et il enlève les restants du<span style=\"mso-spacerun: yes;\">  </span>liquide amniotique<span style=\"mso-spacerun: yes;\">  </span>sur ses yeux et ses oreilles.<span style=\"mso-spacerun: yes;\">  </span>Puis, sans ménagement la girafe introduit son petit à la dure réalité de la vie.<span style=\"mso-spacerun: yes;\">  </span>Dans son livre «a view from the Zoo » Gary Richmond décrit comment un nouveau né girafe reçoit sa première leçon de vie.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La mère girafe baisse suffisamment la tête pour pouvoir brièvement l’observer.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Puis elle se positionne<span style=\"mso-spacerun: yes;\">  </span>au dessus de son veau.<span style=\"mso-spacerun: yes;\">  </span>Elle attend environ une minute et elle fait la chose la plus surprenante qui soit : elle balance sa longue jambe pour donner un coup de pied <span style=\"mso-spacerun: yes;\"> </span>à son bébé qui se retrouve la tête au dessus des genoux.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Ce procédé violent<span style=\"mso-spacerun: yes;\">  </span>se répète continuellement.<span style=\"mso-spacerun: yes;\">  </span>L’effort pour se lever est momentané.<span style=\"mso-spacerun: yes;\">  </span>Lorsque le bébé girafe se fatigue, la mère le frappe encore pour stimuler ses efforts.<span style=\"mso-spacerun: yes;\">  </span>Finalement, le bébé girafe réussit à se lever sur ses jambes branlantes.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Puis la<span style=\"mso-spacerun: yes;\">  </span>mère fait cette chose incroyable : elle le frappe et le fait retomber par terre.<span style=\"mso-spacerun: yes;\">  </span>Pourquoi?<span style=\"mso-spacerun: yes;\">  </span>Elle veut lui rappeler comment il a fait pour se lever.<span style=\"mso-spacerun: yes;\">  </span>Dans la nature, les bébés girafes doivent se lever le plus rapidement possible afin de rester avec le troupeau où ils seront en sécurité.<span style=\"mso-spacerun: yes;\">  </span>Les lions, hyènes, léopards, et chiens de chasse adorent les bébés girafes et réussiront à les attraper si les mères ne leur avaient pas appris à se relever rapidement. </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Irving stone a compris cela.<span style=\"mso-spacerun: yes;\">  </span>Il a consacré sa vie entière pour étudier et écrire des biographies de grands hommes tel que Michel-Ange, Vincent Van Gogh, Sigmund Freud et Charles Darwin.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">On lui a déjà demandé s’il y a avait un fil conducteur qui unissait tous ces gens exceptionnels.<span style=\"mso-spacerun: yes;\">  </span>Il a répondu : «  J’écris sur des gens qui dans leur vie avait une vision ou un rêve et qui ont travaillé pour essayer de l’accomplir. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Pendant des années, <span style=\"mso-spacerun: yes;\"> </span>tel des boxeurs,<span style=\"mso-spacerun: yes;\">  </span>ils ont reçu des coups, sont tombés, <span style=\"mso-spacerun: yes;\"> </span>on les <span style=\"mso-spacerun: yes;\"> </span>a calomnié <span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span>et leurs projets n’allaient nulle part.<span style=\"mso-spacerun: yes;\">  </span>Mais à chaque fois qu’ils sont tombés, ils se sont relevés. <span style=\"mso-spacerun: yes;\"> </span>On ne peut pas détruire ce genre de personne.<span style=\"mso-spacerun: yes;\">  </span>Et à la fin de leur vie, ils ont accompli une parcelle de ce qu’ils avaient prévu de faire ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n&nbsp;','Maman girafe et son petit','','inherit','closed','closed','','89-revision-v1','','','2013-10-05 21:00:21','2013-10-06 01:00:21','',89,'http://divyayogamonteregie.org/french/?p=502',0,'revision','',0),(504,1,'2013-10-05 21:09:35','2013-10-06 01:09:35','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Le début d’une nouvelle année</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Trois fermiers s’étaient rencontrés pour évaluer et partager leurs expériences de la dernière année.<span style=\"mso-spacerun: yes;\">  </span>Chacun d’eux possédait et cultivait un terrain de 100 mètres carrés.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">À la fin de la rencontre, le premier fermier a dit : « La situation a été très difficile et le sera davantage l’an prochain ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le second a répliqué : « Tu as parfaitement raison. <span style=\"mso-spacerun: yes;\"> </span>En fait, après avoir travaillé très fort toute l’année, du lever au coucher du soleil, en enlevant toutes les dépenses, <span style=\"mso-spacerun: yes;\"> </span>j’ai seulement récolté 1% de profit . »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Calculant ses chiffres, le premier fermier a répondu : j’estime que mes profits sont identiques aux tiens, c’est-à-dire 1%.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les deux ont regardé le troisième fermier et lui ont demandé : «  Combien de profit <span style=\"mso-spacerun: yes;\"> </span>as-tu fait cette année? »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le troisième fermier leur a répondu gentiment : «  Messieurs, avec tout le respect que je vous dois, j’ai<span style=\"mso-spacerun: yes;\">  </span>eu un profit de 5% cette année. »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa réponse fut suivie d’un long moment de silence…</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Comment? <span style=\"mso-spacerun: yes;\"> </span>5 % de profit ?<span style=\"mso-spacerun: yes;\">  </span>C’est impossible !!! Comment as-tu fait??? »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Très facile , avec un simple calcul de base » a répondu le premier fermier.<span style=\"mso-spacerun: yes;\">  </span>«  J’ai fait le même 1% de profit tout comme vous…plus le 4% qui représente l’immense plaisir à apprécier le paysage, à <span style=\"mso-spacerun: yes;\"> </span>traire mes vaches et d’être bien dans ma ferme.<span style=\"mso-spacerun: yes;\">  </span>Ce qui donne un profit total de 5%. »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La morale de cette histoire : Chacun de nous doit prendre soin de sa ferme (correspondant <span style=\"mso-spacerun: yes;\"> </span>à 10 pieds carrés) afin de recevoir le maximum de profit tout en appréciant chaque moment de notre travail et de notre vie.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','','','inherit','closed','closed','','185-autosave-v1','','','2013-10-05 21:09:35','2013-10-06 01:09:35','',185,'http://divyayogamonteregie.org/french/?p=504',0,'revision','',0),(506,1,'2013-10-05 21:09:48','2013-10-06 01:09:48','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Le début d’une nouvelle année</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Trois fermiers s’étaient rencontrés pour évaluer et partager leurs expériences de la dernière année.<span style=\"mso-spacerun: yes;\">  </span>Chacun d’eux possédait et cultivait un terrain de 100 mètres carrés.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">À la fin de la rencontre, le premier fermier a dit : « La situation a été très difficile et le sera davantage l’an prochain ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le second a répliqué : « Tu as parfaitement raison. <span style=\"mso-spacerun: yes;\"> </span>En fait, après avoir travaillé très fort toute l’année, du lever au coucher du soleil, en enlevant toutes les dépenses, <span style=\"mso-spacerun: yes;\"> </span>j’ai seulement récolté 1% de profit . »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Calculant ses chiffres, le premier fermier a répondu : j’estime que mes profits sont identiques aux tiens, c’est-à-dire 1%.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les deux ont regardé le troisième fermier et lui ont demandé : «  Combien de profit <span style=\"mso-spacerun: yes;\"> </span>as-tu fait cette année? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le troisième fermier leur a répondu gentiment : «  Messieurs, avec tout le respect que je vous dois, j’ai<span style=\"mso-spacerun: yes;\">  </span>eu un profit de 5% cette année. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa réponse fut suivie d’un long moment de silence…</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Comment? <span style=\"mso-spacerun: yes;\"> </span>5 % de profit ?<span style=\"mso-spacerun: yes;\">  </span>C’est impossible !!! Comment as-tu fait??? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Très facile , avec un simple calcul de base » a répondu le premier fermier.<span style=\"mso-spacerun: yes;\">  </span>«  J’ai fait le même 1% de profit tout comme vous…plus le 4% qui représente l’immense plaisir à apprécier le paysage, à <span style=\"mso-spacerun: yes;\"> </span>traire mes vaches et d’être bien dans ma ferme.<span style=\"mso-spacerun: yes;\">  </span>Ce qui donne un profit total de 5%. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La morale de cette histoire : Chacun de nous doit prendre soin de sa ferme (correspondant <span style=\"mso-spacerun: yes;\"> </span>à 10 pieds carrés) afin de recevoir le maximum de profit tout en appréciant chaque moment de notre travail et de notre vie.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','Le début d’une nouvelle année','','inherit','closed','closed','','185-revision-v1','','','2013-10-05 21:09:48','2013-10-06 01:09:48','',185,'http://divyayogamonteregie.org/french/?p=506',0,'revision','',0),(505,1,'2013-10-05 21:09:40','2013-10-06 01:09:40','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Le début d’une nouvelle année</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Trois fermiers s’étaient rencontrés pour évaluer et partager leurs expériences de la dernière année.<span style=\"mso-spacerun: yes;\">  </span>Chacun d’eux possédait et cultivait un terrain de 100 mètres carrés.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">À la fin de la rencontre, le premier fermier a dit : « La situation a été très difficile et le sera davantage l’an prochain ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le second a répliqué : « Tu as parfaitement raison. <span style=\"mso-spacerun: yes;\"> </span>En fait, après avoir travaillé très fort toute l’année, du lever au coucher du soleil, en enlevant toutes les dépenses, <span style=\"mso-spacerun: yes;\"> </span>j’ai seulement récolté 1% de profit . »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Calculant ses chiffres, le premier fermier a répondu : j’estime que mes profits sont identiques aux tiens, c’est-à-dire 1%.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les deux ont regardé le troisième fermier et lui ont demandé : «  Combien de profit <span style=\"mso-spacerun: yes;\"> </span>as-tu fait cette année? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le troisième fermier leur a répondu gentiment : «  Messieurs, avec tout le respect que je vous dois, j’ai<span style=\"mso-spacerun: yes;\">  </span>eu un profit de 5% cette année. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa réponse fut suivie d’un long moment de silence…</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Comment? <span style=\"mso-spacerun: yes;\"> </span>5 % de profit ?<span style=\"mso-spacerun: yes;\">  </span>C’est impossible !!! Comment as-tu fait??? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Très facile , avec un simple calcul de base » a répondu le premier fermier.<span style=\"mso-spacerun: yes;\">  </span>«  J’ai fait le même 1% de profit tout comme vous…plus le 4% qui représente l’immense plaisir à apprécier le paysage, à <span style=\"mso-spacerun: yes;\"> </span>traire mes vaches et d’être bien dans ma ferme.<span style=\"mso-spacerun: yes;\">  </span>Ce qui donne un profit total de 5%. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La morale de cette histoire : Chacun de nous doit prendre soin de sa ferme (correspondant <span style=\"mso-spacerun: yes;\"> </span>à 10 pieds carrés) afin de recevoir le maximum de profit tout en appréciant chaque moment de notre travail et de notre vie.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','Le début d’une nouvelle année','','inherit','closed','closed','','185-revision-v1','','','2013-10-05 21:09:40','2013-10-06 01:09:40','',185,'http://divyayogamonteregie.org/french/?p=505',0,'revision','',0),(507,1,'2013-10-05 21:11:19','2013-10-06 01:11:19','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Ne jamais abandonner</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Winston Churchill a refait trois fois sa huitième année parce qu’il avait des problèmes en anglais.<span style=\"mso-spacerun: yes;\">  </span>Ironiquement, plusieurs années plus tard</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">l’université d’Oxford l’a invité afin qu’il adresse le discours d’ouverture.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il est arrivé avec les objets le caractérisant.<span style=\"mso-spacerun: yes;\">  </span>Churchill avait toujours avec lui, partout où il allait, un chapeau, une cane et un cigare.<span style=\"mso-spacerun: yes;\">  </span>Lorsqu’il s’est approché du lutrin, la foule s’est levée et l’a applaudi chaleureusement.<span style=\"mso-spacerun: yes;\">  </span>Avec une dignité sans pareil, il a calmé la foule et est resté très sûr de lui-même devant ses admirateurs.<span style=\"mso-spacerun: yes;\">  </span>Retirant son cigare et plaçant soigneusement son chapeau sur le lutrin, Churchill a regardé l’audience qui était en attente.<span style=\"mso-spacerun: yes;\">  </span>D’une voix<span style=\"mso-spacerun: yes;\">  </span>autoritaire Churchill cria : « n’abandonnez jamais ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Plusieurs secondes se sont écoulées avant qu’il se lève sur le bout de ses pieds et répète : « n’abandonnez <span style=\"mso-spacerun: yes;\"> </span>jamais ».<span style=\"mso-spacerun: yes;\">  </span>Ses paroles étaient retentissantes.<span style=\"mso-spacerun: yes;\">  </span>Il y a eu un silence assourdissant lorsque que Churchill<span style=\"mso-spacerun: yes;\">  </span>prit son chapeau ,son cigare, s’appuya sur sa cane et quitta la scène.<span style=\"mso-spacerun: yes;\">  </span>Son discours d’ouverture était terminé.</span></p>','Never give up','','inherit','closed','closed','','137-autosave-v1','','','2013-10-05 21:11:19','2013-10-06 01:11:19','',137,'http://divyayogamonteregie.org/french/?p=507',0,'revision','',0),(508,1,'2013-10-05 21:11:36','2013-10-06 01:11:36','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Ne jamais abandonner</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Winston Churchill a refait trois fois sa huitième année parce qu’il avait des problèmes en anglais.<span style=\"mso-spacerun: yes;\">  </span>Ironiquement, plusieurs années plus tard</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">l’université d’Oxford l’a invité afin qu’il adresse le discours d’ouverture.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il est arrivé avec les objets le caractérisant.<span style=\"mso-spacerun: yes;\">  </span>Churchill avait toujours avec lui, partout où il allait, un chapeau, une cane et un cigare.<span style=\"mso-spacerun: yes;\">  </span>Lorsqu’il s’est approché du lutrin, la foule s’est levée et l’a applaudi chaleureusement.<span style=\"mso-spacerun: yes;\">  </span>Avec une dignité sans pareil, il a calmé la foule et est resté très sûr de lui-même devant ses admirateurs.<span style=\"mso-spacerun: yes;\">  </span>Retirant son cigare et plaçant soigneusement son chapeau sur le lutrin, Churchill a regardé l’audience qui était en attente.<span style=\"mso-spacerun: yes;\">  </span>D’une voix<span style=\"mso-spacerun: yes;\">  </span>autoritaire Churchill cria : « n’abandonnez jamais ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Plusieurs secondes se sont écoulées avant qu’il se lève sur le bout de ses pieds et répète : « n’abandonnez <span style=\"mso-spacerun: yes;\"> </span>jamais ».<span style=\"mso-spacerun: yes;\">  </span>Ses paroles étaient retentissantes.<span style=\"mso-spacerun: yes;\">  </span>Il y a eu un silence assourdissant lorsque que Churchill<span style=\"mso-spacerun: yes;\">  </span>prit son chapeau ,son cigare, s’appuya sur sa cane et quitta la scène.<span style=\"mso-spacerun: yes;\">  </span>Son discours d’ouverture était terminé.</span></p>','Ne jamais abandonner','','inherit','closed','closed','','137-revision-v1','','','2013-10-05 21:11:36','2013-10-06 01:11:36','',137,'http://divyayogamonteregie.org/french/?p=508',0,'revision','',0),(510,1,'2013-10-05 21:13:10','2013-10-06 01:13:10','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Secoue-toi et relève-toi</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">C’est l’histoire d’un fermier qui avait une vieille mule.<span style=\"mso-spacerun: yes;\">  </span>La mule est tombée dans le puits du fermier.<span style=\"mso-spacerun: yes;\">  </span>Le fermier a entendu le braiement de la mule – ou quel que soit le son que peuvent faire les mules qui tombent dans des puits.<span style=\"mso-spacerun: yes;\">  </span>Après avoir analysé la situation, le fermier était triste pour la mule, mais décida que ni la mule ni le puits ne valaient la peine d’être sauvés.<span style=\"mso-spacerun: yes;\">  </span>Il a rassemblé ses voisins pour leur raconter ce qui s’était passé et leur a demandé de l’aider à transporter de la terre pour enterrer la vieille mule dans le puits et ainsi<span style=\"mso-spacerun: yes;\">  </span>mettre fin à ses souffrances.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Au début, la vieille mule était hystérique. <span style=\"mso-spacerun: yes;\"> </span>Mais à mesure que <span style=\"mso-spacerun: yes;\"> </span>le fermier et les voisins lançaient de <span style=\"mso-spacerun: yes;\"> </span>la terre sur son dos, une idée lui a traversé l’esprit.<span style=\"mso-spacerun: yes;\">  </span>Elle a réalisé qu’à chaque fois qu’une pelletée de terre lui tombait sur le dos, elle pouvait se secouer pour faire tomber la terre et monter dessus.<span style=\"mso-spacerun: yes;\">  </span>C’est ce qu’a fait la vieille mule, pelletée après pelletée.<span style=\"mso-spacerun: yes;\">  </span>Pour s’encourager, elle se disait en elle-même : secoue-toi et relève-toi, secoue-toi et relève- toi, secoue-toi et relève-toi.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<span lang=\"FR-CA\" style=\"font-size: 12.0pt; font-family: \'Arial\',\'sans-serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR-CA; mso-fareast-language: FR; mso-bidi-language: AR-SA;\">Malgré la situation qui semblait désespérée, malgré la douleur que chaque pelletée lui infligeait, la vieille mule n’a pas succombé à la panique.<span style=\"mso-spacerun: yes;\">  </span>Elle a simplement continué à se secouer et <span style=\"mso-spacerun: yes;\"> </span>à se relever.<span style=\"mso-spacerun: yes;\">  </span>Qu’est-ce qui est arrivé!<span style=\"mso-spacerun: yes;\">  </span>Ça n’a pas pris de temps que la vieille mule épuisée, meurtrie est sortie triomphante<span style=\"mso-spacerun: yes;\">  </span>du puits.<span style=\"mso-spacerun: yes;\">  </span>Ce qui devait être un enterrement s’est transformé en une bénédiction.<span style=\"mso-spacerun: yes;\">  </span>Tout cela à cause de la façon dont elle a pris en main l’adversité</span>','Secoue-toi et relève-toi','','inherit','closed','closed','','150-revision-v1','','','2013-10-05 21:13:10','2013-10-06 01:13:10','',150,'http://divyayogamonteregie.org/french/?p=510',0,'revision','',0),(512,1,'2013-10-05 21:14:54','2013-10-06 01:14:54','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Parfois on oublie…</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">De se rappeler d’être gentil</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Par une belle journée, un vieil homme âgé de 75 ans était assis avec son fils lorsqu’il <span style=\"mso-spacerun: yes;\"> </span>lui demanda ce qu’il y avait sur le bord de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>Il était incapable de distinguer ce qu’il y avait à cause d’un problème de vision.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Son fils lui a répondu : « C’est une corneille. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">À cause de son âge avancé, le vieil homme a oublié la réponse et lui a reposé la même question.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le fils dit à nouveau: « c’est une corneille. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Cet échange a duré environ sept à huit<span style=\"mso-spacerun: yes;\">  </span>minutes lorsque le fils est devenu impatient et lui a répondu avec colère.<span style=\"mso-spacerun: yes;\">  </span>« Pourquoi tu répètes toujours la même question encore et encore ?»</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le vieil homme, les larmes aux yeux, lui<span style=\"mso-spacerun: yes;\">  </span>a dit: « Mon fils ne soit pas en colère.<span style=\"mso-spacerun: yes;\">  </span>À l’âge de 4 ans, tu m’as posé la même question une quarantaine de fois et je ne me suis jamais fâché ».</span></p>','Parfois on oublie…  De se rappeler d’être gentil','','inherit','closed','closed','','183-revision-v1','','','2013-10-05 21:14:54','2013-10-06 01:14:54','',183,'http://divyayogamonteregie.org/french/?p=512',0,'revision','',0),(515,1,'2013-10-05 21:16:48','2013-10-06 01:16:48','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">La rencontre du pêcheur Mexicain avec le MBA de Havard.<span style=\"mso-spacerun: yes;\">  </span>Qu’est-ce qui est vraiment important dans la vie?</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un homme d’affaires Américain était sur le quai d’un<span style=\"mso-spacerun: yes;\">  </span>village pittoresque de pêcheurs dans le sud du Mexique et observait un jeune <span style=\"mso-spacerun: yes;\"> </span>Mexicain qui pêchait dans son petit bateau amarré au quai.<span style=\"mso-spacerun: yes;\">  </span>Il y avait plusieurs gros thons jaunes dans son petit bateau.<span style=\"mso-spacerun: yes;\">  </span>Appréciant la chaleur de ce début d’après-midi, l’Américain a complimenté le Mexicain sur la qualité de son poisson.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’Américain lui demanda : « Combien de temps cela t’a pris pour les attraper? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Oh, quelques heures »<span style=\"mso-spacerun: yes;\">  </span>lui a répondu le pêcheur Mexicain.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« <span style=\"mso-spacerun: yes;\">  </span>Pourquoi tu ne restes pas plus longtemps pour attraper plus de poissons » lui a demandé l’homme d’affaires Américain.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Avec ce que j’ai attrapé c’est plus que suffisant pour subvenir aux besoins de ma famille » lui répliqua le Mexicain.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’homme d’affaires lui dit sérieusement : «  Mais qu’est ce que tu fais le restant de ton temps? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">En souriant, le Mexicain lui répondit : « Je me couche tard, je joue avec mes enfants, je regarde des parties de baseball , je fais une sieste avec ma femme.<span style=\"mso-spacerun: yes;\">  </span>Parfois en soirée je prends une marche jusqu’au village pour voir mes amis, jouer de la guitare, chanter quelques chansons… »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’homme d’affaires Américain l’a interrompu impatiemment : « Écoutes, j’ai un MBA de l’université Havard et je peux t’aider à faire plus de profits.<span style=\"mso-spacerun: yes;\">  </span>Tu peux commencer à pêcher un peu plus longtemps chaque jour.<span style=\"mso-spacerun: yes;\">  </span>Tu pourras alors vendre les surplus de poissons que tu attraperas.<span style=\"mso-spacerun: yes;\">  </span>Avec le surplus d’argent, tu pourras t’acheter un plus gros bateau.<span style=\"mso-spacerun: yes;\">  </span>Avec les revenus supplémentaires que t’apporteras ce plus gros bateau, dans peu de temps tu pourras t’acheter un second bateau, puis un troisième, jusqu’à ce que tu puisses avoir une flotte complète de bateaux de pêche.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Fier de ses déductions rapides, l’Américain a commencé à élaborer un plan qui rapporterait encore plus de profits.<span style=\"mso-spacerun: yes;\">  </span>« Au lieu de vendre tes poissons à un intermédiaire, tu pourrais les vendre directement au fabriquant ou encore ouvrir ta propre conserverie.<span style=\"mso-spacerun: yes;\">  </span>Éventuellement tu pourrais être responsable du produit, de la production et de la distribution.<span style=\"mso-spacerun: yes;\">  </span>Tu pourrais quitter ton petit village côtier pour aller vivre à Mexico, ou possiblement Los Angeles ou New York où tu pourrais éventuellement accroitre ton entreprise. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">N’ayant jamais eu ce type de pensée, le pêcheur Mexicain demanda : « Mais combien ce temps cela prendra »?</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après un rapide calcul mental, le MBA de Harvard répondit : « À peu près 15 à 20 ans, peut être un peu moins si tu travailles très fort ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Et puis après senor? » demanda le pêcheur.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Pourquoi ? C’est la meilleure partie » a répondu l’homme d’affaires en riant.<span style=\"mso-spacerun: yes;\">  </span>Quand ce sera le bon moment, tu pourras vendre ta compagnie et devenir très riche.<span style=\"mso-spacerun: yes;\">  </span>Tu feras des millions. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Millions ? Vraiment? Qu’est que je ferai avec tout cet argent? » a demandé le pêcheur avec incrédibilité.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Avec vanité l’homme d’affaires répondit, « et puis tu pourras prendre ta retraite avec tout l’argent que auras fait.<span style=\"mso-spacerun: yes;\">  </span>Tu pourras déménager dans un petit village typique côtier où tu pourras dormir tard, jouer avec tes petits enfants, regarder des parties de baseball , faire une sieste avec ta femme.<span style=\"mso-spacerun: yes;\">  </span>Tu pourras faire une promenade en soirée jusqu’ au village où tu pourras jouer de la guitare, chanter comme bon te semble avec tes amis ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La morale de cette histoire : Sache ce qui est vraiment important dans la vie et tu<span style=\"mso-spacerun: yes;\">  </span>t’apercevras que c’est beaucoup plus près que tu le penses.</span></p>','La rencontre du pêcheur Mexicain avec le MBA de Havard.  Qu’est-ce qui est vraiment important dans la vie?','','inherit','closed','closed','','154-revision-v1','','','2013-10-05 21:16:48','2013-10-06 01:16:48','',154,'http://divyayogamonteregie.org/french/?p=515',0,'revision','',0),(514,1,'2013-10-05 21:16:28','2013-10-06 01:16:28','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">La rencontre du pêcheur Mexicain avec le MBA de Havard.<span style=\"mso-spacerun: yes;\">  </span>Qu’est-ce qui est vraiment important dans la vie?</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un homme d’affaires Américain était sur le quai d’un<span style=\"mso-spacerun: yes;\">  </span>village pittoresque de pêcheurs dans le sud du Mexique et observait un jeune <span style=\"mso-spacerun: yes;\"> </span>Mexicain qui pêchait dans son petit bateau amarré au quai.<span style=\"mso-spacerun: yes;\">  </span>Il y avait plusieurs gros thons jaunes dans son petit bateau.<span style=\"mso-spacerun: yes;\">  </span>Appréciant la chaleur de ce début d’après-midi, l’Américain a complimenté le Mexicain sur la qualité de son poisson.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’Américain lui demanda : « Combien de temps cela t’a pris pour les attraper? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Oh, quelques heures »<span style=\"mso-spacerun: yes;\">  </span>lui a répondu le pêcheur Mexicain.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« <span style=\"mso-spacerun: yes;\">  </span>Pourquoi tu ne restes pas plus longtemps pour attraper plus de poissons » lui a demandé l’homme d’affaires Américain.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Avec ce que j’ai attrapé c’est plus que suffisant pour subvenir aux besoins de ma famille » lui répliqua le Mexicain.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’homme d’affaires lui dit sérieusement : «  Mais qu’est ce que tu fais le restant de ton temps? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">En souriant, le Mexicain lui répondit : « Je me couche tard, je joue avec mes enfants, je regarde des parties de baseball , je fais une sieste avec ma femme.<span style=\"mso-spacerun: yes;\">  </span>Parfois en soirée je prends une marche jusqu’au village pour voir mes amis, jouer de la guitare, chanter quelques chansons… »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’homme d’affaires Américain l’a interrompu impatiemment : « Écoutes, j’ai un MBA de l’université Havard et je peux t’aider à faire plus de profits.<span style=\"mso-spacerun: yes;\">  </span>Tu peux commencer à pêcher un peu plus longtemps chaque jour.<span style=\"mso-spacerun: yes;\">  </span>Tu pourras alors vendre les surplus de poissons que tu attraperas.<span style=\"mso-spacerun: yes;\">  </span>Avec le surplus d’argent, tu pourras t’acheter un plus gros bateau.<span style=\"mso-spacerun: yes;\">  </span>Avec les revenus supplémentaires que t’apporteras ce plus gros bateau, dans peu de temps tu pourras t’acheter un second bateau, puis un troisième, jusqu’à ce que tu puisses avoir une flotte complète de bateaux de pêche.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Fier de ses déductions rapides, l’Américain a commencé à élaborer un plan qui rapporterait encore plus de profits.<span style=\"mso-spacerun: yes;\">  </span>« Au lieu de vendre tes poissons à un intermédiaire, tu pourrais les vendre directement au fabriquant ou encore ouvrir ta propre conserverie.<span style=\"mso-spacerun: yes;\">  </span>Éventuellement tu pourrais être responsable du produit, de la production et de la distribution.<span style=\"mso-spacerun: yes;\">  </span>Tu pourrais quitter ton petit village côtier pour aller vivre à Mexico, ou possiblement Los Angeles ou New York où tu pourrais éventuellement accroitre ton entreprise. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">N’ayant jamais eu ce type de pensée, le pêcheur Mexicain demanda : « Mais combien ce temps cela prendra »?</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après un rapide calcul mental, le MBA de Harvard répondit : « À peu près 15 à 20 ans, peut être un peu moins si tu travailles très fort ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Et puis après senor? » demanda le pêcheur.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Pourquoi ? C’est la meilleure partie » a répondu l’homme d’affaires en riant.<span style=\"mso-spacerun: yes;\">  </span>Quand ce sera le bon moment, tu pourras vendre ta compagnie et devenir très riche.<span style=\"mso-spacerun: yes;\">  </span>Tu feras des millions. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Millions ? Vraiment? Qu’est que je ferai avec tout cet argent? » a demandé le pêcheur avec incrédibilité.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Avec vanité l’homme d’affaires répondit, « et puis tu pourras prendre ta retraite avec tout l’argent que auras fait.<span style=\"mso-spacerun: yes;\">  </span>Tu pourras déménager dans un petit village typique côtier où tu pourras dormir tard, jouer avec tes petits enfants, regarder des parties de baseball , faire une sieste avec ta femme.<span style=\"mso-spacerun: yes;\">  </span>Tu pourras faire une promenade en soirée jusqu’ au village où tu pourras jouer de la guitare, chanter comme bon te semble avec tes amis ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La morale de cette histoire : Sache ce qui est vraiment important dans la vie et tu<span style=\"mso-spacerun: yes;\">  </span>t’apercevras que c’est beaucoup plus près que tu le penses.</span></p>','La rencontre du pêcheur Mexicain avec le MBA de Havard.  Qu’est-ce qui est vraiment important dans la vie?','','inherit','closed','closed','','154-revision-v1','','','2013-10-05 21:16:28','2013-10-06 01:16:28','',154,'http://divyayogamonteregie.org/french/?p=514',0,'revision','',0),(517,1,'2013-10-05 21:18:58','2013-10-06 01:18:58','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’appréciation\n</span><span lang=\"FR\" style=\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\n</span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Voici un message important pour notre société moderne. Nous semblons avoir perdu nos repères et notre sens de l’orientation.\n\nUn jeune homme ayant d’excellentes références académiques postule pour un poste de direction dans une grande entreprise. Ayant réussi<span style=\"mso-spacerun: yes;\">  </span>sa première entrevue, le directeur lui fait passer <span style=\"mso-spacerun: yes;\"> </span>la dernière étape d’ entrevue. <span style=\"mso-spacerun: yes;\"> </span>En parcourant le <span style=\"mso-spacerun: yes;\"> </span>CV du jeune homme, le directeur constate que ses réalisations académiques <span style=\"mso-spacerun: yes;\"> </span>avaient été <span style=\"mso-spacerun: yes;\"> </span>excellentes tout au long de son parcours, de l\'école secondaire jusqu\'à ses recherches de troisième cycle. <span style=\"mso-spacerun: yes;\"> </span>Jamais de défaillances, toujours d’excellents <span style=\"mso-spacerun: yes;\"> </span>résultats à tous les ans.\n\nLe directeur lui <span style=\"mso-spacerun: yes;\"> </span>a demandé: « Avez-vous obtenu des bourses d\'études</span></p>\n<p class=\"MsoNormal\" style=\"margin-left: 2.25pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">à l\'école? »\n\nLe jeune homme répondit: « Non ».\n\nLe directeur a demandé: « Est-ce que c’est votre père qui a payé pour vos frais de scolarité ? \"\n\nLe jeune homme répondit: « Mon père est décédé quand j\'avais un an, c\'est ma mère qui a payé mes frais de scolarité. \"\n\nLe directeur a demandé: «<span style=\"mso-spacerun: yes;\">  </span>Quel était le travail de votre mère ?\"\n\nLe jeune homme répondit: « Ma mère travaillait dans une buanderie.\"\n\nLe directeur a demandé au jeune homme de lui montrer ses mains. <span style=\"mso-spacerun: yes;\"> </span>Elles étaient lisses et parfaites. .\n\nLe directeur a demandé: « Auparavant, avez-vous déjà aidé votre mère à laver les vêtements ? \"\n\nLe jeune homme répondit: « Jamais, ma mère a toujours voulu que j\'étudie et que je lise beaucoup de livres. Et puis, ma mère peut laver plus rapidement les vêtements que moi. \"\n\nLe directeur dit: « J\'ai une demande à vous faire. Lorsque vous reviendrez aujourd\'hui, allez nettoyer les mains de votre mère, et puis revenez me voir demain matin. \"\n\nLe jeune homme avait l’impression <span style=\"mso-spacerun: yes;\"> </span>que ses chances de décrocher l\'emploi étaient bonnes. Lorsqu’in revint chez lui, il demanda joyeusement à sa <span style=\"mso-spacerun: yes;\"> </span>mère de lui laisser <span style=\"mso-spacerun: yes;\"> </span>nettoyer les mains. Sa mère se sentait mal à l’aise. Elle montra ses mains au jeune homme, tout en étant heureuse mais<span style=\"mso-spacerun: yes;\">  </span>aussi avec des sentiments mitigés.\n\nIl nettoya <span style=\"mso-spacerun: yes;\"> </span>lentement les mains de sa mère. Il s’est mis à pleurer en le faisant.<span style=\"mso-spacerun: yes;\">  </span>Pour la première fois, il remarqua que les mains de sa mère étaient très ridées, et avec plein de contusions. Quelques ecchymoses étaient tellement douloureuses que sa mère trembla lorsqu’il les nettoya.\n\nPour la première fois,<span style=\"mso-spacerun: yes;\">  </span>il réalisait que ses études avaient été payées par le travail de ces mains qui nettoyaient des vêtements à tous les jours.<span style=\"mso-spacerun: yes;\">  </span>Les ecchymoses représentaient le prix que sa mère avait dû payer pour l’excellence des ses résultats, son diplôme et assurer sa réussite future.\n\nAprès avoir terminé le nettoyage des mains de sa mère, le jeune homme a lavé à sa place, en silence,<span style=\"mso-spacerun: yes;\">  </span>le restant des vêtements.\n\nLe soir, la mère et le fils ont discuté ensemble pendant un <span style=\"mso-spacerun: yes;\"> </span>très long moment.\n\nLe lendemain matin, le jeune homme s\'est rendu au bureau du directeur.\n\nLe directeur a remarqué les larmes dans les yeux du jeune, <span style=\"mso-spacerun: yes;\"> </span>il lui a demandé: «Pouvez-vous me dire ce que vous avez fait et appris hier chez-vous ? \"\n\nLe jeune homme répondit: « J\'ai nettoyé les mains de ma mère et terminé de laver <span style=\"mso-spacerun: yes;\"> </span>tous les autres vêtements qui restaient à faire. <span style=\"mso-spacerun: yes;\"> </span>\"\n\nLe directeur a demandé: « Quels sont vos impressions? \"\n\nLe jeune homme lui dit:\n\n<span style=\"mso-tab-count: 1;\">          </span> 1-  Je sais maintenant ce <span style=\"mso-spacerun: yes;\"> </span>que signifie <span style=\"mso-spacerun: yes;\"> </span>l’appréciation. <span style=\"mso-spacerun: yes;\"> </span>Sans ma mère, je</span></p>\n<p class=\"MsoNormal\" style=\"margin-left: 2.25pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\">             </span><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\">  </span>n’aurais pas réussi.\n</span></p>\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">2-  En travaillant ensemble et en aidant ma mère, j’ai réalisé à quel point il peut<span style=\"mso-spacerun: yes;\">  </span>être ardu et difficile d’obtenir quelque chose.</span></p>\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\">   </span>   </span></p>\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">3- Je me suis aperçu de l’importance des relations familiales et d’en apprécier sa richesse.</span></p>\n<p class=\"MsoNormal\" style=\"text-indent: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\nLe directeur répliqua : «C\'est ce que je recherche chez un administrateur. Je veux engager une personne qui peut apprécier l\'aide des autres, une personne qui est capable de faire preuve de compassion envers le travail des autres, et une personne qui ne ferait pas de l\'argent son unique but dans la vie. Vous êtes embauché. \"\n\nPar la suite, ce jeune homme a travaillé avec ardeur et il a eu le respect de ses subordonnés. Chaque employé a travaillé assidument et en équipe. La performance de l\'entreprise s’est améliorée considérablement.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>','','','inherit','closed','closed','','175-autosave-v1','','','2013-10-05 21:18:58','2013-10-06 01:18:58','',175,'http://divyayogamonteregie.org/french/?p=517',0,'revision','',0),(519,1,'2013-10-05 21:19:28','2013-10-06 01:19:28','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’appréciation\r\n</span><span lang=\"FR\" style=\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\r\n</span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Voici un message important pour notre société moderne. Nous semblons avoir perdu nos repères et notre sens de l’orientation.</span></p>\r\nUn jeune homme ayant d’excellentes références académiques postule pour un poste de direction dans une grande entreprise. Ayant réussi<span style=\"mso-spacerun: yes;\">  </span>sa première entrevue, le directeur lui fait passer <span style=\"mso-spacerun: yes;\"> </span>la dernière étape d’ entrevue. <span style=\"mso-spacerun: yes;\"> </span>En parcourant le <span style=\"mso-spacerun: yes;\"> </span>CV du jeune homme, le directeur constate que ses réalisations académiques <span style=\"mso-spacerun: yes;\"> </span>avaient été <span style=\"mso-spacerun: yes;\"> </span>excellentes tout au long de son parcours, de l\'école secondaire jusqu\'à ses recherches de troisième cycle. <span style=\"mso-spacerun: yes;\"> </span>Jamais de défaillances, toujours d’excellents <span style=\"mso-spacerun: yes;\"> </span>résultats à tous les ans.\r\n\r\nLe directeur lui <span style=\"mso-spacerun: yes;\"> </span>a demandé: « Avez-vous obtenu des bourses d\'études\r\n<p class=\"MsoNormal\" style=\"margin-left: 2.25pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">à l\'école? »</span></p>\r\nLe jeune homme répondit: « Non ».\r\n\r\nLe directeur a demandé: « Est-ce que c’est votre père qui a payé pour vos frais de scolarité ? \"\r\n\r\nLe jeune homme répondit: « Mon père est décédé quand j\'avais un an, c\'est ma mère qui a payé mes frais de scolarité. \"\r\n\r\nLe directeur a demandé: «<span style=\"mso-spacerun: yes;\">  </span>Quel était le travail de votre mère ?\"\r\n\r\nLe jeune homme répondit: « Ma mère travaillait dans une buanderie.\"\r\n\r\nLe directeur a demandé au jeune homme de lui montrer ses mains. <span style=\"mso-spacerun: yes;\"> </span>Elles étaient lisses et parfaites. .\r\n\r\nLe directeur a demandé: « Auparavant, avez-vous déjà aidé votre mère à laver les vêtements ? \"\r\n\r\nLe jeune homme répondit: « Jamais, ma mère a toujours voulu que j\'étudie et que je lise beaucoup de livres. Et puis, ma mère peut laver plus rapidement les vêtements que moi. \"\r\n\r\nLe directeur dit: « J\'ai une demande à vous faire. Lorsque vous reviendrez aujourd\'hui, allez nettoyer les mains de votre mère, et puis revenez me voir demain matin. \"\r\n\r\nLe jeune homme avait l’impression <span style=\"mso-spacerun: yes;\"> </span>que ses chances de décrocher l\'emploi étaient bonnes. Lorsqu’in revint chez lui, il demanda joyeusement à sa <span style=\"mso-spacerun: yes;\"> </span>mère de lui laisser <span style=\"mso-spacerun: yes;\"> </span>nettoyer les mains. Sa mère se sentait mal à l’aise. Elle montra ses mains au jeune homme, tout en étant heureuse mais<span style=\"mso-spacerun: yes;\">  </span>aussi avec des sentiments mitigés.\r\n\r\nIl nettoya <span style=\"mso-spacerun: yes;\"> </span>lentement les mains de sa mère. Il s’est mis à pleurer en le faisant.<span style=\"mso-spacerun: yes;\">  </span>Pour la première fois, il remarqua que les mains de sa mère étaient très ridées, et avec plein de contusions. Quelques ecchymoses étaient tellement douloureuses que sa mère trembla lorsqu’il les nettoya.\r\n\r\nPour la première fois,<span style=\"mso-spacerun: yes;\">  </span>il réalisait que ses études avaient été payées par le travail de ces mains qui nettoyaient des vêtements à tous les jours.<span style=\"mso-spacerun: yes;\">  </span>Les ecchymoses représentaient le prix que sa mère avait dû payer pour l’excellence des ses résultats, son diplôme et assurer sa réussite future.\r\n\r\nAprès avoir terminé le nettoyage des mains de sa mère, le jeune homme a lavé à sa place, en silence,<span style=\"mso-spacerun: yes;\">  </span>le restant des vêtements.\r\n\r\nLe soir, la mère et le fils ont discuté ensemble pendant un <span style=\"mso-spacerun: yes;\"> </span>très long moment.\r\n\r\nLe lendemain matin, le jeune homme s\'est rendu au bureau du directeur.\r\n\r\nLe directeur a remarqué les larmes dans les yeux du jeune, <span style=\"mso-spacerun: yes;\"> </span>il lui a demandé: «Pouvez-vous me dire ce que vous avez fait et appris hier chez-vous ? \"\r\n\r\nLe jeune homme répondit: « J\'ai nettoyé les mains de ma mère et terminé de laver <span style=\"mso-spacerun: yes;\"> </span>tous les autres vêtements qui restaient à faire. <span style=\"mso-spacerun: yes;\"> </span>\"\r\n\r\nLe directeur a demandé: « Quels sont vos impressions? \"\r\n\r\nLe jeune homme lui dit:\r\n\r\n<span style=\"mso-tab-count: 1;\">          </span> 1-  Je sais maintenant ce <span style=\"mso-spacerun: yes;\"> </span>que signifie <span style=\"mso-spacerun: yes;\"> </span>l’appréciation. <span style=\"mso-spacerun: yes;\"> </span>Sans ma mère, je\r\n<p class=\"MsoNormal\" style=\"margin-left: 2.25pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\">             </span><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\">  </span>n’aurais pas réussi.\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">2-  En travaillant ensemble et en aidant ma mère, j’ai réalisé à quel point il peut<span style=\"mso-spacerun: yes;\">  </span>être ardu et difficile d’obtenir quelque chose.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\">   </span>   </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">3- Je me suis aperçu de l’importance des relations familiales et d’en apprécier sa richesse.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\r\nLe directeur répliqua : «C\'est ce que je recherche chez un administrateur. Je veux engager une personne qui peut apprécier l\'aide des autres, une personne qui est capable de faire preuve de compassion envers le travail des autres, et une personne qui ne ferait pas de l\'argent son unique but dans la vie. Vous êtes embauché. \"</span></p>\r\nPar la suite, ce jeune homme a travaillé avec ardeur et il a eu le respect de ses subordonnés. Chaque employé a travaillé assidument et en équipe. La performance de l\'entreprise s’est améliorée considérablement.\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>','L’appréciation','','inherit','closed','closed','','175-revision-v1','','','2013-10-05 21:19:28','2013-10-06 01:19:28','',175,'http://divyayogamonteregie.org/french/?p=519',0,'revision','',0),(518,1,'2013-10-05 21:19:05','2013-10-06 01:19:05','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’appréciation\r\n</span><span lang=\"FR\" style=\"font-size: 16.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\r\n</span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Voici un message important pour notre société moderne. Nous semblons avoir perdu nos repères et notre sens de l’orientation.\r\n\r\nUn jeune homme ayant d’excellentes références académiques postule pour un poste de direction dans une grande entreprise. Ayant réussi<span style=\"mso-spacerun: yes;\">  </span>sa première entrevue, le directeur lui fait passer <span style=\"mso-spacerun: yes;\"> </span>la dernière étape d’ entrevue. <span style=\"mso-spacerun: yes;\"> </span>En parcourant le <span style=\"mso-spacerun: yes;\"> </span>CV du jeune homme, le directeur constate que ses réalisations académiques <span style=\"mso-spacerun: yes;\"> </span>avaient été <span style=\"mso-spacerun: yes;\"> </span>excellentes tout au long de son parcours, de l\'école secondaire jusqu\'à ses recherches de troisième cycle. <span style=\"mso-spacerun: yes;\"> </span>Jamais de défaillances, toujours d’excellents <span style=\"mso-spacerun: yes;\"> </span>résultats à tous les ans.\r\n\r\nLe directeur lui <span style=\"mso-spacerun: yes;\"> </span>a demandé: « Avez-vous obtenu des bourses d\'études</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 2.25pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">à l\'école? »\r\n\r\nLe jeune homme répondit: « Non ».\r\n\r\nLe directeur a demandé: « Est-ce que c’est votre père qui a payé pour vos frais de scolarité ? \"\r\n\r\nLe jeune homme répondit: « Mon père est décédé quand j\'avais un an, c\'est ma mère qui a payé mes frais de scolarité. \"\r\n\r\nLe directeur a demandé: «<span style=\"mso-spacerun: yes;\">  </span>Quel était le travail de votre mère ?\"\r\n\r\nLe jeune homme répondit: « Ma mère travaillait dans une buanderie.\"\r\n\r\nLe directeur a demandé au jeune homme de lui montrer ses mains. <span style=\"mso-spacerun: yes;\"> </span>Elles étaient lisses et parfaites. .\r\n\r\nLe directeur a demandé: « Auparavant, avez-vous déjà aidé votre mère à laver les vêtements ? \"\r\n\r\nLe jeune homme répondit: « Jamais, ma mère a toujours voulu que j\'étudie et que je lise beaucoup de livres. Et puis, ma mère peut laver plus rapidement les vêtements que moi. \"\r\n\r\nLe directeur dit: « J\'ai une demande à vous faire. Lorsque vous reviendrez aujourd\'hui, allez nettoyer les mains de votre mère, et puis revenez me voir demain matin. \"\r\n\r\nLe jeune homme avait l’impression <span style=\"mso-spacerun: yes;\"> </span>que ses chances de décrocher l\'emploi étaient bonnes. Lorsqu’in revint chez lui, il demanda joyeusement à sa <span style=\"mso-spacerun: yes;\"> </span>mère de lui laisser <span style=\"mso-spacerun: yes;\"> </span>nettoyer les mains. Sa mère se sentait mal à l’aise. Elle montra ses mains au jeune homme, tout en étant heureuse mais<span style=\"mso-spacerun: yes;\">  </span>aussi avec des sentiments mitigés.\r\n\r\nIl nettoya <span style=\"mso-spacerun: yes;\"> </span>lentement les mains de sa mère. Il s’est mis à pleurer en le faisant.<span style=\"mso-spacerun: yes;\">  </span>Pour la première fois, il remarqua que les mains de sa mère étaient très ridées, et avec plein de contusions. Quelques ecchymoses étaient tellement douloureuses que sa mère trembla lorsqu’il les nettoya.\r\n\r\nPour la première fois,<span style=\"mso-spacerun: yes;\">  </span>il réalisait que ses études avaient été payées par le travail de ces mains qui nettoyaient des vêtements à tous les jours.<span style=\"mso-spacerun: yes;\">  </span>Les ecchymoses représentaient le prix que sa mère avait dû payer pour l’excellence des ses résultats, son diplôme et assurer sa réussite future.\r\n\r\nAprès avoir terminé le nettoyage des mains de sa mère, le jeune homme a lavé à sa place, en silence,<span style=\"mso-spacerun: yes;\">  </span>le restant des vêtements.\r\n\r\nLe soir, la mère et le fils ont discuté ensemble pendant un <span style=\"mso-spacerun: yes;\"> </span>très long moment.\r\n\r\nLe lendemain matin, le jeune homme s\'est rendu au bureau du directeur.\r\n\r\nLe directeur a remarqué les larmes dans les yeux du jeune, <span style=\"mso-spacerun: yes;\"> </span>il lui a demandé: «Pouvez-vous me dire ce que vous avez fait et appris hier chez-vous ? \"\r\n\r\nLe jeune homme répondit: « J\'ai nettoyé les mains de ma mère et terminé de laver <span style=\"mso-spacerun: yes;\"> </span>tous les autres vêtements qui restaient à faire. <span style=\"mso-spacerun: yes;\"> </span>\"\r\n\r\nLe directeur a demandé: « Quels sont vos impressions? \"\r\n\r\nLe jeune homme lui dit:\r\n\r\n<span style=\"mso-tab-count: 1;\">          </span> 1-  Je sais maintenant ce <span style=\"mso-spacerun: yes;\"> </span>que signifie <span style=\"mso-spacerun: yes;\"> </span>l’appréciation. <span style=\"mso-spacerun: yes;\"> </span>Sans ma mère, je</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 2.25pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\">             </span><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\">  </span>n’aurais pas réussi.\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">2-  En travaillant ensemble et en aidant ma mère, j’ai réalisé à quel point il peut<span style=\"mso-spacerun: yes;\">  </span>être ardu et difficile d’obtenir quelque chose.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\"> </span><span style=\"mso-spacerun: yes;\">   </span>   </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">3- Je me suis aperçu de l’importance des relations familiales et d’en apprécier sa richesse.</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: 35.4pt;\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\r\nLe directeur répliqua : «C\'est ce que je recherche chez un administrateur. Je veux engager une personne qui peut apprécier l\'aide des autres, une personne qui est capable de faire preuve de compassion envers le travail des autres, et une personne qui ne ferait pas de l\'argent son unique but dans la vie. Vous êtes embauché. \"\r\n\r\nPar la suite, ce jeune homme a travaillé avec ardeur et il a eu le respect de ses subordonnés. Chaque employé a travaillé assidument et en équipe. La performance de l\'entreprise s’est améliorée considérablement.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>','L’appréciation','','inherit','closed','closed','','175-revision-v1','','','2013-10-05 21:19:05','2013-10-06 01:19:05','',175,'http://divyayogamonteregie.org/french/?p=518',0,'revision','',0),(521,1,'2013-10-05 21:21:22','2013-10-06 01:21:22','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’éléphant et la mouche</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Un étudiant et son professeur marchaient dans la forêt.<span style=\"mso-spacerun: yes;\">  </span>L’étudiant<span style=\"mso-spacerun: yes;\">  </span>était distrait à cause de l’agitation de ses pensées.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il a demandé à son professeur : Pourquoi la plupart des gens ont l’esprit agité, et seulement quelques personnes sont calmes d’esprit ?</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Le professeur a regardé son disciple en souriant et lui a dit : «  Je vais te raconter une histoire.<span style=\"mso-spacerun: yes;\">  </span>Un éléphant était debout et mangeait les feuilles d’un arbre.<span style=\"mso-spacerun: yes;\">  </span>Une petite mouche est arrivée, a volé<span style=\"mso-spacerun: yes;\">  </span>et bourdonné près de son oreille.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’éléphant l’a chassé avec ses grandes oreilles.<span style=\"mso-spacerun: yes;\">  </span>Alors la mouche est revenue et l’éléphant l’a chassé à nouveau.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">La même action s’est répétée à plusieurs reprises.<span style=\"mso-spacerun: yes;\">  </span>Puis l’éléphant a demandé à la mouche : Pourquoi es-tu aussi agitée et bruyante?»  « Pourquoi tu n’es pas capable de rester en place un moment ? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">La mouche a répondu : «  Je suis attirée par tout ce que je vois, j’entends ou je sens. Mes cinq sens et tout ce qui se déroule autour de moi m’amènent constamment dans toutes les directions et je suis incapable de résister.<span style=\"mso-spacerun: yes;\">  </span>Toi, comment fais-tu pour rester sur place et être si calme ? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’éléphant a arrêté de manger et a dit :</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">« Mes cinq sens</span></span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> <span class=\"hps\">ne m’empêchent pas de me concentrer.</span> <span class=\"hps\">Je suis</span> <span class=\"hps\">en contrôle de</span> <span class=\"hps\">mon attention</span> <span class=\"hps\">et je peux</span> <span class=\"hps\">la diriger</span> <span class=\"hps\">là où</span> <span class=\"hps\">je veux.</span> <span class=\"hps\">Cela m\'aide à</span> faire le focus <span class=\"hps\">dans</span> <span class=\"hps\">ce que j’accomplis ; </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">je peux </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">garder mon</span> <span class=\"hps\">esprit concentré</span> <span class=\"hps\">et calme.</span> <span class=\"hps\">Présentement </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">je mange</span>, je suis <span class=\"hps\">complètement absorbé dans ce que je fais.</span><span style=\"mso-spacerun: yes;\">  </span><span class=\"hps\">De cette façon,</span> <span class=\"hps\">je peux profiter de</span> <span class=\"hps\">ma nourriture et</span> <span style=\"mso-spacerun: yes;\"> </span>ainsi mieux mastiquer<span class=\"hps\">.</span> <span class=\"hps\">Je contrôle</span> <span class=\"hps\">mon attention</span>, <span class=\"hps\">et non</span> <span class=\"hps\">l\'inverse</span>, <span class=\"hps\">et cela</span> <span class=\"hps\">m\'aide à rester</span> <span class=\"hps\">calme</span>. »</span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">En entendant ces mots, le disciple a ouvert grand les yeux et a souri.<span style=\"mso-spacerun: yes;\">  </span>Il a dit à son professeur : « Je comprends.<span style=\"mso-spacerun: yes;\">  </span>Mon esprit sera constamment en agitation si mes cinq sens sont sollicités par tout se qui se passe autour de moi.<span style=\"mso-spacerun: yes;\">  </span>D’autre part, si je maîtrise mes cinq sens en étant capable de faire abstraction de ce qui m’entoure, mon esprit deviendra calme et je serai en mesure de maîtriser toute forme d’agitation.</span></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span>\r\n</span><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\"</span></span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Tu as raison», répondit <span class=\"hps\">le professeur</span>, <span class=\"hps\">«L\'esprit</span> <span class=\"hps\">est agité et</span> <span class=\"hps\">se pose sur ce qui attire l’attention</span>. <span class=\"hps\">Contrôle ton</span> <span class=\"hps\">attention</span>, <span class=\"hps\">et</span> <span class=\"hps\">tu contrôleras</span> <span class=\"hps\">ton esprit.</span> <span class=\"hps\">\"</span></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','L’éléphant et la mouche','','inherit','closed','closed','','356-revision-v1','','','2013-10-05 21:21:22','2013-10-06 01:21:22','',356,'http://divyayogamonteregie.org/french/?p=521',0,'revision','',0),(523,1,'2013-10-05 21:23:45','2013-10-06 01:23:45','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">C’était une fois, un petit garçon qui avait mauvais caractère.<span style=\"mso-spacerun: yes;\">  </span>Son père lui donna un sac de clous et lui demanda qu’à chaque fois qu’il perdrait patience, il devrait enfoncer un clou dans la clôture.<span style=\"mso-spacerun: yes;\">  </span>La première journée, l’enfant a enfoncé 37 clous dans la clôture.<span style=\"mso-spacerun: yes;\">  </span>Après quelques semaines, il a appris à contrôler sa colère, le nombre de clous enfoncés dans la clôture a graduellement diminué.<span style=\"mso-spacerun: yes;\">  </span>Il s’est aperçu qu’il était plus facile de contrôler son mauvais caractère que d’enfoncer des clous dans la clôture.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Finalement, une journée arriva sans que le garçon se soit mis en colère. </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il en a parlé à son père qui lui a suggéré d’enlever un clou chaque jour qu’il ne perdra pas contrôle de lui-même.<span style=\"mso-spacerun: yes;\">  </span>Les journées ont passé jusqu’au jour où le jeune garçon a pu dire à son père que tous les clous étaient enlevés.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<span lang=\"FR-CA\" style=\"font-size: 12.0pt; font-family: \'Arial\',\'sans-serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR-CA; mso-fareast-language: FR; mso-bidi-language: AR-SA;\">Le père a pris son fils par la main jusqu’à <span style=\"mso-spacerun: yes;\"> </span>la clôture.<span style=\"mso-spacerun: yes;\">  </span>Il lui a dit : « tu as bien travaillé mon garçon, mais regarde les trous que tu as fait.<span style=\"mso-spacerun: yes;\">  </span>La clôture ne sera plus jamais comme avant.<span style=\"mso-spacerun: yes;\">  </span>Lorsque tu parles à quelqu’un avec de la colère, cela laisse un trou, tout comme ceci. »<span style=\"mso-spacerun: yes;\">  </span>Tu peux poignarder une personne, et par la suite retirer le couteau.<span style=\"mso-spacerun: yes;\">  </span>Peu importe le nombre de fois que tu t’excuseras, la blessure sera marquée à jamais.<span style=\"mso-spacerun: yes;\">  </span>La prochaine fois, assure-toi d’être en contrôle de toi-même avant de dire des paroles que tu pourrais regretter par la suite.</span>','La clôture','','inherit','closed','closed','','147-autosave-v1','','','2013-10-05 21:23:45','2013-10-06 01:23:45','',147,'http://divyayogamonteregie.org/french/?p=523',0,'revision','',0),(524,1,'2013-10-05 21:23:48','2013-10-06 01:23:48','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">C’était une fois, un petit garçon qui avait mauvais caractère.<span style=\"mso-spacerun: yes;\">  </span>Son père lui donna un sac de clous et lui demanda qu’à chaque fois qu’il perdrait patience, il devrait enfoncer un clou dans la clôture.<span style=\"mso-spacerun: yes;\">  </span>La première journée, l’enfant a enfoncé 37 clous dans la clôture.<span style=\"mso-spacerun: yes;\">  </span>Après quelques semaines, il a appris à contrôler sa colère, le nombre de clous enfoncés dans la clôture a graduellement diminué.<span style=\"mso-spacerun: yes;\">  </span>Il s’est aperçu qu’il était plus facile de contrôler son mauvais caractère que d’enfoncer des clous dans la clôture.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Finalement, une journée arriva sans que le garçon se soit mis en colère. </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il en a parlé à son père qui lui a suggéré d’enlever un clou chaque jour qu’il ne perdra pas contrôle de lui-même.<span style=\"mso-spacerun: yes;\">  </span>Les journées ont passé jusqu’au jour où le jeune garçon a pu dire à son père que tous les clous étaient enlevés.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<span lang=\"FR-CA\" style=\"font-size: 12.0pt; font-family: \'Arial\',\'sans-serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR-CA; mso-fareast-language: FR; mso-bidi-language: AR-SA;\">Le père a pris son fils par la main jusqu’à <span style=\"mso-spacerun: yes;\"> </span>la clôture.<span style=\"mso-spacerun: yes;\">  </span>Il lui a dit : « tu as bien travaillé mon garçon, mais regarde les trous que tu as fait.<span style=\"mso-spacerun: yes;\">  </span>La clôture ne sera plus jamais comme avant.<span style=\"mso-spacerun: yes;\">  </span>Lorsque tu parles à quelqu’un avec de la colère, cela laisse un trou, tout comme ceci. »<span style=\"mso-spacerun: yes;\">  </span>Tu peux poignarder une personne, et par la suite retirer le couteau.<span style=\"mso-spacerun: yes;\">  </span>Peu importe le nombre de fois que tu t’excuseras, la blessure sera marquée à jamais.<span style=\"mso-spacerun: yes;\">  </span>La prochaine fois, assure-toi d’être en contrôle de toi-même avant de dire des paroles que tu pourrais regretter par la suite.</span>','La clôture','','inherit','closed','closed','','147-revision-v1','','','2013-10-05 21:23:48','2013-10-06 01:23:48','',147,'http://divyayogamonteregie.org/french/?p=524',0,'revision','',0),(526,1,'2013-10-05 21:25:26','2013-10-06 01:25:26','<p style=\"text-align: justify;\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.</p>\n<p style=\"text-align: justify;\">I wrote down \'happy\'. They told me I didn\'t understand the assignment, and I told them they didn\'t understand life.\n<b></b></p>\n&nbsp;','The Happiness','','inherit','closed','closed','','160-autosave-v1','','','2013-10-05 21:25:26','2013-10-06 01:25:26','',160,'http://divyayogamonteregie.org/french/?p=526',0,'revision','',0),(528,1,'2013-10-05 21:26:17','2013-10-06 01:26:17','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Lorsque j’avais cinq <span style=\"mso-spacerun: yes;\"> </span>ans, ma mère me disait toujours que le bonheur était la clé de la vie.<span style=\"mso-spacerun: yes;\">  </span>Lorsque j’ai commencé l’école, on m’a demandé ce que je voulais faire plus tard.<span style=\"mso-spacerun: yes;\">  </span></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> J’ai écrit « heureux ». On m’a dit que je n’avais pas compris le devoir, je leur ai répondu qu’ils n’avaient pas compris la vie.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','Le bonheur','','inherit','closed','closed','','160-revision-v1','','','2013-10-05 21:26:17','2013-10-06 01:26:17','',160,'http://divyayogamonteregie.org/french/?p=528',0,'revision','',0),(527,1,'2013-10-05 21:25:53','2013-10-06 01:25:53','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Lorsque j’avais cinq <span style=\"mso-spacerun: yes;\"> </span>ans, ma mère me disait toujours que le bonheur était la clé de la vie.<span style=\"mso-spacerun: yes;\">  </span>Lorsque j’ai commencé l’école, on m’a demandé ce que je voulais faire plus tard.<span style=\"mso-spacerun: yes;\">  </span></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">J’ai écrit « heureux ». On m’a dit que je n’avais pas compris le devoir, je leur ai répondu qu’ils n’avaient pas compris la vie.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>','Le bonheur','','inherit','closed','closed','','160-revision-v1','','','2013-10-05 21:25:53','2013-10-06 01:25:53','',160,'http://divyayogamonteregie.org/french/?p=527',0,'revision','',0),(531,1,'2013-10-05 21:30:06','2013-10-06 01:30:06','<p class=\"MsoNormal\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/hospital_window.png\"><img class=\"aligncenter size-full wp-image-141\" alt=\"hospital_window\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/hospital_window.png\" width=\"300\" height=\"200\" /></a><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Deux <span style=\"mso-spacerun: yes;\"> </span>hommes, sérieusement malades, étaient alités dans la même chambre d’hôpital. Un des deux hommes avait la permission de s’asseoir dans son lit une heure par jour dans l’après-midi afin de l’aider à drainer ses poumons.<span style=\"mso-spacerun: yes;\">  </span>Son lit était à côté de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>L’autre homme devait passer toute la journée allongé sur le dos.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les deux hommes parlaient pendant des heures.<span style=\"mso-spacerun: yes;\">  </span>Ils parlaient de leur femme, de leur famille, de leur maison, leurs emplois, leur engagement dans le service militaire, les endroits qu’ils avaient visités durant leurs vacances.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Et tous les après-midi, lorsque l’homme près de la fenêtre pouvait s’asseoir,<span style=\"mso-spacerun: yes;\">  </span>il passait son temps à décrire à son voisin de chambre tout ce qu’il voyait .<span style=\"mso-spacerun: yes;\">  </span>Peu à peu, l’ homme dans l’autre lit commença à vivre pour cette période d’une heure où son monde s’élargissait et s’égayait par la description des activités, des couleurs de l’extérieur.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">On pouvait voir de la fenêtre un parc avec un beau lac.<span style=\"mso-spacerun: yes;\">  </span>Les canards et les cygnes se baignaient dans l’eau pendant que les enfants faisaient fonctionner leur petit voilier. Les jeunes amoureux marchaient main dans la main parmi les fleurs de toutes les couleurs de l’arc en ciel.<span style=\"mso-spacerun: yes;\">  </span>Des<span style=\"mso-spacerun: yes;\">  </span>grands arbres matures embellissaient le paysage, et on pouvait<span style=\"mso-spacerun: yes;\">  </span>apercevoir au loin la silhouette de la ville.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Lorsque l’homme de la fenêtre décrivait tous les charmants détails, l’homme de l’autre côté de la chambre fermait les yeux et imaginait la scène.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Par <span style=\"mso-spacerun: yes;\"> </span>une journée chaude, dans l’ après-midi, l’homme près de la fenêtre décrivait le défilé d’une parade qui passait à proximité.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Même si l’autre homme ne pouvait entendre l’orchestre, il pouvait l’imaginer pendant<span style=\"mso-spacerun: yes;\">  </span>qu’on lui décrivait la scène.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les jours et les semaines passèrent.<span style=\"mso-spacerun: yes;\">  </span>Un matin l’infirmière qui apportait l’eau pour leur bain <span style=\"mso-spacerun: yes;\"> </span>trouva le corps sans vie de l’homme près de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>Il était mort paisiblement dans son lit.<span style=\"mso-spacerun: yes;\">  </span>Elle était triste et appela les préposés afin qu’ils viennent chercher le corps.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Lorsqu’il jugea le moment opportun, l’autre homme demanda s’il pouvait être transféré près de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>L’infirmière était heureuse de le changer de place, et lorsqu’elle fut certaine qu’il soit confortable, elle le laissa seul dans la chambre.<span style=\"mso-spacerun: yes;\">  </span>Lentement, péniblement, il se redressa pour jeter un coup d’œil vers l’extérieur.<span style=\"mso-spacerun: yes;\">  </span>Enfin, il aurait la joie de voir par lui-même.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il s’étira pour voir de l’autre côté du lit, vers la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>Il faisait face à un mur blanc.<span style=\"mso-spacerun: yes;\">  </span>L’homme demanda à l’infirmière pourquoi son compagnon de chambre avait décrit<span style=\"mso-spacerun: yes;\">  </span>l’extérieur aussi magnifique.<span style=\"mso-spacerun: yes;\">  </span>L’infirmière lui a répondu que l’homme était aveugle et qu’il ne pouvait voir l’autre côté de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>Elle dit;<span style=\"mso-spacerun: yes;\">  </span>« Peut-être qu’il a juste voulu vous encourager ».</span></p>\r\n&nbsp;',' La fenêtre d’hôpital','','inherit','closed','closed','','139-revision-v1','','','2013-10-05 21:30:06','2013-10-06 01:30:06','',139,'http://divyayogamonteregie.org/french/?p=531',0,'revision','',0),(530,1,'2013-10-05 21:29:42','2013-10-06 01:29:42','<p class=\"aligncenter size-full wp-image-141\"><a href=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/hospital_window.png\"><img class=\"aligncenter size-full wp-image-141\" alt=\"hospital_window\" src=\"http://divyayogamonteregie.org/french/wp-content/uploads/2013/06/hospital_window.png\" width=\"300\" height=\"200\" /></a></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Deux <span style=\"mso-spacerun: yes;\"> </span>hommes, sérieusement malades, étaient alités dans la même chambre d’hôpital. Un des deux hommes avait la permission de s’asseoir dans son lit une heure par jour dans l’après-midi afin de l’aider à drainer ses poumons.<span style=\"mso-spacerun: yes;\">  </span>Son lit était à côté de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>L’autre homme devait passer toute la journée allongé sur le dos.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les deux hommes parlaient pendant des heures.<span style=\"mso-spacerun: yes;\">  </span>Ils parlaient de leur femme, de leur famille, de leur maison, leurs emplois, leur engagement dans le service militaire, les endroits qu’ils avaient visités durant leurs vacances.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Et tous les après-midi, lorsque l’homme près de la fenêtre pouvait s’asseoir,<span style=\"mso-spacerun: yes;\">  </span>il passait son temps à décrire à son voisin de chambre tout ce qu’il voyait .<span style=\"mso-spacerun: yes;\">  </span>Peu à peu, l’ homme dans l’autre lit commença à vivre pour cette période d’une heure où son monde s’élargissait et s’égayait par la description des activités, des couleurs de l’extérieur.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">On pouvait voir de la fenêtre un parc avec un beau lac.<span style=\"mso-spacerun: yes;\">  </span>Les canards et les cygnes se baignaient dans l’eau pendant que les enfants faisaient fonctionner leur petit voilier. Les jeunes amoureux marchaient main dans la main parmi les fleurs de toutes les couleurs de l’arc en ciel.<span style=\"mso-spacerun: yes;\">  </span>Des<span style=\"mso-spacerun: yes;\">  </span>grands arbres matures embellissaient le paysage, et on pouvait<span style=\"mso-spacerun: yes;\">  </span>apercevoir au loin la silhouette de la ville.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Lorsque l’homme de la fenêtre décrivait tous les charmants détails, l’homme de l’autre côté de la chambre fermait les yeux et imaginait la scène.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Par <span style=\"mso-spacerun: yes;\"> </span>une journée chaude, dans l’ après-midi, l’homme près de la fenêtre décrivait le défilé d’une parade qui passait à proximité.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Même si l’autre homme ne pouvait entendre l’orchestre, il pouvait l’imaginer pendant<span style=\"mso-spacerun: yes;\">  </span>qu’on lui décrivait la scène.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les jours et les semaines passèrent.<span style=\"mso-spacerun: yes;\">  </span>Un matin l’infirmière qui apportait l’eau pour leur bain <span style=\"mso-spacerun: yes;\"> </span>trouva le corps sans vie de l’homme près de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>Il était mort paisiblement dans son lit.<span style=\"mso-spacerun: yes;\">  </span>Elle était triste et appela les préposés afin qu’ils viennent chercher le corps.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Lorsqu’il jugea le moment opportun, l’autre homme demanda s’il pouvait être transféré près de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>L’infirmière était heureuse de le changer de place, et lorsqu’elle fut certaine qu’il soit confortable, elle le laissa seul dans la chambre.<span style=\"mso-spacerun: yes;\">  </span>Lentement, péniblement, il se redressa pour jeter un coup d’œil vers l’extérieur.<span style=\"mso-spacerun: yes;\">  </span>Enfin, il aurait la joie de voir par lui-même.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il s’étira pour voir de l’autre côté du lit, vers la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>Il faisait face à un mur blanc.<span style=\"mso-spacerun: yes;\">  </span>L’homme demanda à l’infirmière pourquoi son compagnon de chambre avait décrit<span style=\"mso-spacerun: yes;\">  </span>l’extérieur aussi magnifique.<span style=\"mso-spacerun: yes;\">  </span>L’infirmière lui a répondu que l’homme était aveugle et qu’il ne pouvait voir l’autre côté de la fenêtre.<span style=\"mso-spacerun: yes;\">  </span>Elle dit;<span style=\"mso-spacerun: yes;\">  </span>« Peut-être qu’il a juste voulu vous encourager ».</span></p>\r\n&nbsp;','hospital_window  La fenêtre d’hôpital','','inherit','closed','closed','','139-revision-v1','','','2013-10-05 21:29:42','2013-10-06 01:29:42','',139,'http://divyayogamonteregie.org/french/?p=530',0,'revision','',0),(532,1,'2013-07-09 20:59:36','2013-07-10 00:59:36','Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.\r\n\r\nHe also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.\r\n\r\nHe also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.\r\n\r\nThe king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.\r\n\r\nOne day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"\r\n\r\n\"No way!\" replied the 4th wife and she walked away without another word.\r\n\r\nHer answer cut like a sharp knife right into his heart.\r\n\r\n&nbsp;\r\n\r\nThe sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"\r\n\r\n\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"\r\n\r\nHis heart sank and turned cold.\r\n\r\nHe then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"\r\n\r\n\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"\r\n\r\nHer answer came like a bolt of thunder and the King was devastated.\r\n\r\nThen a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"\r\n\r\nThe king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"\r\n\r\nOur 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.\r\n\r\nOur 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.\r\n\r\nOur 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.\r\n\r\nOur 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.','The king with four wives','','inherit','closed','closed','','187-revision-v1','','','2013-07-09 20:59:36','2013-07-10 00:59:36','',187,'http://divyayogamonteregie.org/french/?p=532',0,'revision','',0),(533,1,'2013-10-05 21:32:31','2013-10-06 01:32:31','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"><span style=\"mso-spacerun: yes;\">  </span></span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il était une fois un <span style=\"mso-spacerun: yes;\"> </span>riche roi qui avait quatre femmes.<span style=\"mso-spacerun: yes;\">  </span>Il aimait beaucoup la quatrième femme et la ornait de belles robes et la traitait avec délicatesse.<span style=\"mso-spacerun: yes;\">  </span>Il ne lui donnait que ce qu’il y avait de mieux.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il aimait aussi beaucoup sa troisième femme et l’exhibait aux royaumes avoisinants. Cependant il craignait qu’un jour elle le quitte pour un autre.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il aimait aussi sa seconde femme.<span style=\"mso-spacerun: yes;\">  </span>Elle était sa confidente, toujours gentille, attentionnée et patiente avec lui.<span style=\"mso-spacerun: yes;\">  </span>Peu importe le problème qu’il avait, il pouvait se confier à elle afin qu’elle l’aide à surmonter ses difficultés.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa première femme était très fidèle et avait beaucoup contribué au maintien de sa richesse et de son royaume.<span style=\"mso-spacerun: yes;\">  </span>Cependant, il ne l’aimait pas malgré l’amour inconditionnel qu’elle lui vouait.<span style=\"mso-spacerun: yes;\">   </span>Il lui portait peu d’attention. </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un jour le roi est tombé malade et il savait qu’il ne lui restait plus longtemps à vivre.<span style=\"mso-spacerun: yes;\">  </span>Alors il demanda à sa quatrième femme : « Je t’ai aimé, je t’ai procuré <span style=\"mso-spacerun: yes;\"> </span>de très beaux vêtements et j’ai bien pris soin de toi.<span style=\"mso-spacerun: yes;\">  </span>Maintenant que je vais mourir, veux-tu me suivre? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Il n’en est pas question » qu’elle lui répondit et s’en alla s’en dire un mot.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa réponse a été comme un couteau droit au cœur.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le triste roi a demandé à sa troisième femme : « Je t’ai aimé toute ma vie.<span style=\"mso-spacerun: yes;\">  </span>Maintenant que je vais mourir, veux-tu me suivre et me tenir compagnie? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Non » répondit sa troisième femme.<span style=\"mso-spacerun: yes;\">  </span>« La vie est trop bonne.<span style=\"mso-spacerun: yes;\">  </span>Lorsque vous serez mort, je vais me remarier ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Son cœur se serra et se frigorifia.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il a alors demandé à sa deuxième femme, « Je suis toujours allé vers toi, lorsque j’avais besoin d’aide et tu as toujours été à mes côtés.<span style=\"mso-spacerun: yes;\">  </span>Lorsque je mourrai, est-ce que tu voudras me suivre et me tenir compagnie? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Je suis désolée, je ne peux pas t’aider cette fois-ci » répondit la deuxième femme.<span style=\"mso-spacerun: yes;\">  </span>Tout ce que je peux faire, c’est de t’accompagner jusqu’à ta pierre tombale ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Sa réponse fut comme un coup de tonnerre et le roi était dévasté.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il entendit alors une voix qui lui dit : « je vais tout laisser et te suivre peu importe ou tu iras ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le roi leva les yeux et découvrit sa première femme.<span style=\"mso-spacerun: yes;\">  </span>Elle était très maigre parce qu’elle souffrait de malnutrition.<span style=\"mso-spacerun: yes;\">  </span>Grandement attristé le roi dit : «  J’aurai dû prendre soin de toi lorsque je le pouvais.. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 4<sup>ème</sup> femme représente notre corps physique.<span style=\"mso-spacerun: yes;\">  </span>Peu importe le temps et l’effort que l’on met à le garder beau, <span style=\"mso-spacerun: yes;\"> </span>il nous quittera un jour.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 3<sup>ème</sup> femme représente nos possessions, notre statut, notre richesse.<span style=\"mso-spacerun: yes;\">  </span>Lorsque nous mourons, tout cela<span style=\"mso-spacerun: yes;\">  </span>ira aux autres.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 2<sup>ème</sup> femme représente notre famille et nos amis. Peu importe leur proximité et leur lien envers nous, <span style=\"mso-spacerun: yes;\"> </span>à notre mort, ils pourront nous accompagner au maximum <span style=\"mso-spacerun: yes;\"> </span>jusqu’à la pierre tombale.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La 1<sup>ère</sup> femme représente notre âme, qui est souvent négligée par la poursuite de la richesse, du pouvoir et des plaisirs de l’ego.<span style=\"mso-spacerun: yes;\">  </span>Cependant, notre âme <span style=\"mso-spacerun: yes;\"> </span>nous suivra peu importe où nous irons.<span style=\"mso-spacerun: yes;\">  </span>Alors, il est important dès maintenant de la cultiver, la renforcer et la chérir.<span style=\"mso-spacerun: yes;\">  </span>C’est le plus beau cadeau que nous avons à offrir au monde.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>',' Le roi et ses quatre femmes','','inherit','closed','closed','','187-revision-v1','','','2013-10-05 21:32:31','2013-10-06 01:32:31','',187,'http://divyayogamonteregie.org/french/?p=533',0,'revision','',0),(534,1,'2013-07-09 21:41:42','2013-07-10 01:41:42','By Remez Sasson\r\n\r\nOne day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.\r\n\r\n\"There is a big park not far from here. We can sleep there at night\", said the disciple.\r\n\"In the open air?\" Asked the yogi.\r\n\"Yes\", responded the student.\r\n\r\nThe yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".\r\n\r\nThe student was amazed and exclaimed, \"We cannot afford that!\"\r\n\"Come and sit down\", said the yogi.\r\n\r\nThey both sat down on the ground, and the yogi said:\r\n\"When you focus your mind intently on any subject, it comes to pass.\"\r\n\r\nThe yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.\r\n\r\n\"Come, let\'s enter inside\", the yogi said to his disciple.\r\n\r\nThey just set foot in the entrance, when a well-dressed man approached them.\r\n\r\n\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"\r\n\r\n\"Fine\", the yogi responded.\r\n\r\nThe disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"\r\n\r\nThe yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"\r\n\r\n\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"\r\n\r\nThe disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"\r\n\r\n\"Yes, this is the first step\", the yogi replied.\r\n\r\n&nbsp;','The power of thoughts','','inherit','closed','closed','','152-revision-v1','','','2013-07-09 21:41:42','2013-07-10 01:41:42','',152,'http://divyayogamonteregie.org/french/?p=534',0,'revision','',0),(535,1,'2013-10-05 21:36:12','2013-10-06 01:36:12','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un jour, un yogi et son disciple arrivaient dans une grande ville.<span style=\"mso-spacerun: yes;\">  </span>Ils n’avaient pas d’argent sur eux et ils avaient besoin de manger et <span style=\"mso-spacerun: yes;\"> </span>de trouver un endroit pour dormir.<span style=\"mso-spacerun: yes;\">  </span>Le disciple était certain qu’ils devraient mendier pour avoir de la nourriture et<span style=\"mso-spacerun: yes;\">  </span>la nuit venue, dormir dans un parc.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Il y a un grand parc non loin d’ici.<span style=\"mso-spacerun: yes;\">  </span>On pourra dormir là-bas cette nuit » déclara le disciple.<span style=\"mso-spacerun: yes;\">  </span></span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« À l’extérieur ? « demanda le yoga.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Oui. » répondit l’étudiant.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le yogi sourit et dit : « Non, ce soir nous allons coucher dans un hôtel et manger à cet endroit ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">  L’étudiant était étonné et s’exclama « On ne peut pas payer. »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Viens et assieds-toi » a déclaré le yogi.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les deux se sont assis par terre et le yogi a dit : « lorsque ta pensée se concentre intensément sur un sujet quelconque, tu obtiens un résultat ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le yogi a fermé les yeux et a commencé à méditer avec une pleine concentration.<span style=\"mso-spacerun: yes;\">  </span>Après environ 10 minutes, il s’est levé, a commencé à marcher et son disciple l’a suivi.<span style=\"mso-spacerun: yes;\">  </span>Ils ont marché plusieurs rues et boulevards jusqu’à ce qu’ils arrivent à l’hôtel.<span style=\"mso-spacerun: yes;\">  </span></span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Viens, entrons à l’intérieur »<span style=\"mso-spacerun: yes;\">  </span>dit le yogi à son disciple.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">En posant le pied dans l’entrée, un homme vêtu élégamment s’est approché d’eux.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Je suis le gérant de l’hôtel, vous semblez être des voyageurs, et j’imagine que vous n’avez pas d’argent.<span style=\"mso-spacerun: yes;\">  </span>Aimeriez-vous travaillez dans la cuisine et en échange, je vous nourrirez et logerez. »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Parfait » a répondu le yogi.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le disciple perplexe demanda : «  Avez-vous utilisez de la magie?<span style=\"mso-spacerun: yes;\">  </span>Comment avez-vous fait? »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le yogi sourit et dit : « Je voulais te montrer comment fonctionne le pouvoir de notre pensée. Si tu penses intensément , avec une grande concentration à un souhait <span style=\"mso-spacerun: yes;\"> </span>que tu veux<span style=\"mso-spacerun: yes;\">  </span>réaliser et que ton esprit n’apporte pas de résistance à l’objet de tes pensées, celle-ci se concrétisera ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Le secret est de se concentrer, visualiser, voir les détails, avoir la foi et projeter mentalement et émotionnellement l’énergie dans la scène imaginée.<span style=\"mso-spacerun: yes;\">  </span>Ce sont les pré-requis généraux.<span style=\"mso-spacerun: yes;\">  </span>Quand ton esprit est vide de toutes pensées et que tu permets<span style=\"mso-spacerun: yes;\">  </span>à une seule<span style=\"mso-spacerun: yes;\">  </span>de surgir, cela te procure un très grand pouvoir.<span style=\"mso-spacerun: yes;\">  </span>On devrait être attentif à nos pensées.<span style=\"mso-spacerun: yes;\">  </span>Une forte concentration est très puissante et exerce une grande influence ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le disciple regarda son professeur et lui dit : «  je réalise que je dois me concentrer davantage afin d’être en mesure d’utiliser ce pouvoir ».</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«Oui, c’est la première étape».</span></p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nOne day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.\n\n\"There is a big park not far from here. We can sleep there at night\", said the disciple.\n\"In the open air?\" Asked the yogi.\n\"Yes\", responded the student.\n\nThe yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".\n\nThe student was amazed and exclaimed, \"We cannot afford that!\"\n\"Come and sit down\", said the yogi.\n\nThey both sat down on the ground, and the yogi said:\n\"When you focus your mind intently on any subject, it comes to pass.\"\n\nThe yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.\n\n\"Come, let\'s enter inside\", the yogi said to his disciple.\n\nThey just set foot in the entrance, when a well-dressed man approached them.\n\n\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"\n\n\"Fine\", the yogi responded.\n\nThe disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"\n\nThe yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"\n\n\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"\n\nThe disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"\n\n\"Yes, this is the first step\", the yogi replied.\n\n&nbsp;','Le pouvoir de nos pensées','','inherit','closed','closed','','152-autosave-v1','','','2013-10-05 21:36:12','2013-10-06 01:36:12','',152,'http://divyayogamonteregie.org/french/?p=535',0,'revision','',0),(536,1,'2013-10-05 21:36:41','2013-10-06 01:36:41','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\">By Remez Sasson</p>\r\n<p class=\"MsoNormal\"></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un jour, un yogi et son disciple arrivaient dans une grande ville.<span style=\"mso-spacerun: yes;\">  </span>Ils n’avaient pas d’argent sur eux et ils avaient besoin de manger et <span style=\"mso-spacerun: yes;\"> </span>de trouver un endroit pour dormir.<span style=\"mso-spacerun: yes;\">  </span>Le disciple était certain qu’ils devraient mendier pour avoir de la nourriture et<span style=\"mso-spacerun: yes;\">  </span>la nuit venue, dormir dans un parc.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Il y a un grand parc non loin d’ici.<span style=\"mso-spacerun: yes;\">  </span>On pourra dormir là-bas cette nuit » déclara le disciple.<span style=\"mso-spacerun: yes;\">  </span></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« À l’extérieur ? « demanda le yoga.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Oui. » répondit l’étudiant.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le yogi sourit et dit : « Non, ce soir nous allons coucher dans un hôtel et manger à cet endroit ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">  L’étudiant était étonné et s’exclama « On ne peut pas payer. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Viens et assieds-toi » a déclaré le yogi.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Les deux se sont assis par terre et le yogi a dit : « lorsque ta pensée se concentre intensément sur un sujet quelconque, tu obtiens un résultat ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le yogi a fermé les yeux et a commencé à méditer avec une pleine concentration.<span style=\"mso-spacerun: yes;\">  </span>Après environ 10 minutes, il s’est levé, a commencé à marcher et son disciple l’a suivi.<span style=\"mso-spacerun: yes;\">  </span>Ils ont marché plusieurs rues et boulevards jusqu’à ce qu’ils arrivent à l’hôtel.<span style=\"mso-spacerun: yes;\">  </span></span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Viens, entrons à l’intérieur »<span style=\"mso-spacerun: yes;\">  </span>dit le yogi à son disciple.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">En posant le pied dans l’entrée, un homme vêtu élégamment s’est approché d’eux.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«  Je suis le gérant de l’hôtel, vous semblez être des voyageurs, et j’imagine que vous n’avez pas d’argent.<span style=\"mso-spacerun: yes;\">  </span>Aimeriez-vous travaillez dans la cuisine et en échange, je vous nourrirez et logerez. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Parfait » a répondu le yogi.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le disciple perplexe demanda : «  Avez-vous utilisez de la magie?<span style=\"mso-spacerun: yes;\">  </span>Comment avez-vous fait? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le yogi sourit et dit : « Je voulais te montrer comment fonctionne le pouvoir de notre pensée. Si tu penses intensément , avec une grande concentration à un souhait <span style=\"mso-spacerun: yes;\"> </span>que tu veux<span style=\"mso-spacerun: yes;\">  </span>réaliser et que ton esprit n’apporte pas de résistance à l’objet de tes pensées, celle-ci se concrétisera ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Le secret est de se concentrer, visualiser, voir les détails, avoir la foi et projeter mentalement et émotionnellement l’énergie dans la scène imaginée.<span style=\"mso-spacerun: yes;\">  </span>Ce sont les pré-requis généraux.<span style=\"mso-spacerun: yes;\">  </span>Quand ton esprit est vide de toutes pensées et que tu permets<span style=\"mso-spacerun: yes;\">  </span>à une seule<span style=\"mso-spacerun: yes;\">  </span>de surgir, cela te procure un très grand pouvoir.<span style=\"mso-spacerun: yes;\">  </span>On devrait être attentif à nos pensées.<span style=\"mso-spacerun: yes;\">  </span>Une forte concentration est très puissante et exerce une grande influence ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le disciple regarda son professeur et lui dit : «  je réalise que je dois me concentrer davantage afin d’être en mesure d’utiliser ce pouvoir ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">«Oui, c’est la première étape».</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Le pouvoir de nos pensées','','inherit','closed','closed','','152-revision-v1','','','2013-10-05 21:36:41','2013-10-06 01:36:41','',152,'http://divyayogamonteregie.org/french/?p=536',0,'revision','',0),(538,1,'2013-10-05 21:38:50','2013-10-06 01:38:50','&nbsp;\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; mso-bidi-font-size: 12.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Rappelez-vous la fameuse course lapin-tortue (tortue et et le lièvre?)</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Nous savons tous qu’à la fin de l’histoire le lièvre n’a pas réussi de gagner la course contre la tortue.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Bien, ce n’est pas exactement la fin de l’histoire .<span style=\"mso-spacerun: yes;\">  </span>Après une défaite cuisante devant la tortue, le lapin décida de faire une autre course.<span style=\"mso-spacerun: yes;\">  </span>Cette fois-ci, <span style=\"mso-spacerun: yes;\"> </span>il décida de ne pas faire de sieste.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La course commença, et rapidement, <span style=\"mso-spacerun: yes;\"> </span>le lièvre était déjà très loin de la vue de la tortue et des spectateurs.<span style=\"mso-spacerun: yes;\">  </span>Cette fois-ci, <span style=\"mso-spacerun: yes;\"> </span>il n’a pas arrêté et a battu la tortue avec un grand écart.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La tortue a perdu la course cette fois-ci, mais elle n’a jamais abandonné. Elle <span style=\"mso-spacerun: yes;\"> </span>a voulu se reprendre en défiant à nouveau le lièvre sur un autre sentier de course.<span style=\"mso-spacerun: yes;\">  </span>Le lièvre, très confiant, a accepté le défi.<span style=\"mso-spacerun: yes;\">  </span>Il connaissait la raison pour laquelle il avait perdu <span style=\"mso-spacerun: yes;\"> </span>la première course : à cause de sa paresse.<span style=\"mso-spacerun: yes;\">  </span>Il avait gagné la seconde course parce qu’il a été capable de travailler son point faible.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La troisième course commença.<span style=\"mso-spacerun: yes;\">  </span>Le lièvre, comme d’habitude, disparu très vite.<span style=\"mso-spacerun: yes;\">  </span>Tout le monde riait de la tortue mais le lièvre n’a pas voulu arrêter pour regarder derrière lui et <span style=\"mso-spacerun: yes;\"> </span>a continué à courir aussi vite qu’il le pouvait.<span style=\"mso-spacerun: yes;\">  </span>Il voulait battre la tortue par une plus grande avance que lors de la dernière course.<span style=\"mso-spacerun: yes;\">  </span>Soudainement, apparut une rivière.<span style=\"mso-spacerun: yes;\">  </span>Il était incapable d’imaginer comment la traverser et il a été obligé d’arrêter.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après un laps de temps, la tortue a atteint la rivière et très confiante,<span style=\"mso-spacerun: yes;\">  </span>elle a plongé.<span style=\"mso-spacerun: yes;\">  </span>Elle a nagé beaucoup plus rapidement que si elle avait couru.<span style=\"mso-spacerun: yes;\">  </span>En peu de temps, elle a traversé la rivière et s’est rendu jusqu’à la ligne d’arrivée pendant que lièvre, impuissant,<span style=\"mso-spacerun: yes;\">  </span>l’a regardé <span style=\"mso-spacerun: yes;\"> </span>gagner la course.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’histoire ne se termine pas là.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après la première course, le lièvre a appris qu’il a perdu par sa paresse.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après la deuxième course, la tortue appris qu’elle a perdu parce que son adversaire était vraiment très bon.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après la troisième course, le lièvre a appris qu’il n’est pas suffisant d’être rapide; il faut aussi utiliser son cerveau pour pouvoir <span style=\"mso-spacerun: yes;\"> </span>terminer la tâche.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le lièvre et la tortue décidèrent de courir à nouveau.<span style=\"mso-spacerun: yes;\">  </span>Cette fois-ci ils ne faisaient que courir, pas de course.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Pendant qu’ils couraient,<span style=\"mso-spacerun: yes;\">  </span>jusqu’à ce qu’ils atteignent la rivière, le lièvre a transporté la tortue sur son dos.<span style=\"mso-spacerun: yes;\">  </span>Lorsqu’il a fallu traverser la rivière, la tortue a transporté le lapin sur son dos.<span style=\"mso-spacerun: yes;\">  </span>Après avoir traversé la rivière, le lièvre a de nouveau mis la tortue sur son dos et les deux sont arrivés au fil d’arrivée en un temps record.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Qu’ont-ils appris?</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Ils ont tous deux appris qu’en travaillant en équipe ils pourraient terminer la tâche beaucoup plus rapidement et pourraient tous les deux<span style=\"mso-spacerun: yes;\">  </span>profiter de la récompense.<span style=\"mso-spacerun: yes;\">  </span>Lorsqu’ils étaient en compétition l’un contre l’autre, seulement un des deux pouvait gagner en perdant beaucoup de temps et d’énergie.</span></p>\n<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p>\n<p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p>\n<p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p>\n<p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p>\n<p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p>\n<p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p>\n<p style=\"text-align: justify;\">The story does not end here.</p>\n<p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p>\n<p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p>\n<p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p>\n<p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p>\n<p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p>\n<p style=\"text-align: justify;\"><b>What did they learn?</b></p>\n<p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>','','','inherit','closed','closed','','346-autosave-v1','','','2013-10-05 21:38:50','2013-10-06 01:38:50','',346,'http://divyayogamonteregie.org/french/?p=538',0,'revision','',0),(539,1,'2013-10-05 21:39:27','2013-10-06 01:39:27','<span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Rappelez-vous la fameuse course lapin-tortue (tortue et et le lièvre?)</span>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Nous savons tous qu’à la fin de l’histoire le lièvre n’a pas réussi de gagner la course contre la tortue.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Bien, ce n’est pas exactement la fin de l’histoire .<span style=\"mso-spacerun: yes;\">  </span>Après une défaite cuisante devant la tortue, le lapin décida de faire une autre course.<span style=\"mso-spacerun: yes;\">  </span>Cette fois-ci, <span style=\"mso-spacerun: yes;\"> </span>il décida de ne pas faire de sieste.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La course commença, et rapidement, <span style=\"mso-spacerun: yes;\"> </span>le lièvre était déjà très loin de la vue de la tortue et des spectateurs.<span style=\"mso-spacerun: yes;\">  </span>Cette fois-ci, <span style=\"mso-spacerun: yes;\"> </span>il n’a pas arrêté et a battu la tortue avec un grand écart.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La tortue a perdu la course cette fois-ci, mais elle n’a jamais abandonné. Elle <span style=\"mso-spacerun: yes;\"> </span>a voulu se reprendre en défiant à nouveau le lièvre sur un autre sentier de course.<span style=\"mso-spacerun: yes;\">  </span>Le lièvre, très confiant, a accepté le défi.<span style=\"mso-spacerun: yes;\">  </span>Il connaissait la raison pour laquelle il avait perdu <span style=\"mso-spacerun: yes;\"> </span>la première course : à cause de sa paresse.<span style=\"mso-spacerun: yes;\">  </span>Il avait gagné la seconde course parce qu’il a été capable de travailler son point faible.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">La troisième course commença.<span style=\"mso-spacerun: yes;\">  </span>Le lièvre, comme d’habitude, disparu très vite.<span style=\"mso-spacerun: yes;\">  </span>Tout le monde riait de la tortue mais le lièvre n’a pas voulu arrêter pour regarder derrière lui et <span style=\"mso-spacerun: yes;\"> </span>a continué à courir aussi vite qu’il le pouvait.<span style=\"mso-spacerun: yes;\">  </span>Il voulait battre la tortue par une plus grande avance que lors de la dernière course.<span style=\"mso-spacerun: yes;\">  </span>Soudainement, apparut une rivière.<span style=\"mso-spacerun: yes;\">  </span>Il était incapable d’imaginer comment la traverser et il a été obligé d’arrêter.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après un laps de temps, la tortue a atteint la rivière et très confiante,<span style=\"mso-spacerun: yes;\">  </span>elle a plongé.<span style=\"mso-spacerun: yes;\">  </span>Elle a nagé beaucoup plus rapidement que si elle avait couru.<span style=\"mso-spacerun: yes;\">  </span>En peu de temps, elle a traversé la rivière et s’est rendu jusqu’à la ligne d’arrivée pendant que lièvre, impuissant,<span style=\"mso-spacerun: yes;\">  </span>l’a regardé <span style=\"mso-spacerun: yes;\"> </span>gagner la course.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’histoire ne se termine pas là.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après la première course, le lièvre a appris qu’il a perdu par sa paresse.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après la deuxième course, la tortue appris qu’elle a perdu parce que son adversaire était vraiment très bon.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après la troisième course, le lièvre a appris qu’il n’est pas suffisant d’être rapide; il faut aussi utiliser son cerveau pour pouvoir <span style=\"mso-spacerun: yes;\"> </span>terminer la tâche.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le lièvre et la tortue décidèrent de courir à nouveau.<span style=\"mso-spacerun: yes;\">  </span>Cette fois-ci ils ne faisaient que courir, pas de course.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Pendant qu’ils couraient,<span style=\"mso-spacerun: yes;\">  </span>jusqu’à ce qu’ils atteignent la rivière, le lièvre a transporté la tortue sur son dos.<span style=\"mso-spacerun: yes;\">  </span>Lorsqu’il a fallu traverser la rivière, la tortue a transporté le lapin sur son dos.<span style=\"mso-spacerun: yes;\">  </span>Après avoir traversé la rivière, le lièvre a de nouveau mis la tortue sur son dos et les deux sont arrivés au fil d’arrivée en un temps record.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Qu’ont-ils appris?</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Ils ont tous deux appris qu’en travaillant en équipe ils pourraient terminer la tâche beaucoup plus rapidement et pourraient tous les deux<span style=\"mso-spacerun: yes;\">  </span>profiter de la récompense.<span style=\"mso-spacerun: yes;\">  </span>Lorsqu’ils étaient en compétition l’un contre l’autre, seulement un des deux pouvait gagner en perdant beaucoup de temps et d’énergie.</span></p>\r\ntime &amp; energy.','  La course entre le lapin et la tortue','','inherit','closed','closed','','346-revision-v1','','','2013-10-05 21:39:27','2013-10-06 01:39:27','',346,'http://divyayogamonteregie.org/french/?p=539',0,'revision','',0),(541,1,'2013-10-05 21:41:25','2013-10-06 01:41:25','<p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n</p><p style=\"text-align: justify;\"><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n\r\n</p><p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Depuis des années, un vieux fermier avait labouré<span style=\"mso-spacerun: yes;\">  </span>un de ses terrains autour d’une <span style=\"mso-spacerun: yes;\"> </span>grosse roche.<span style=\"mso-spacerun: yes;\">  </span>Il avait brisé plusieurs socs de charrue, ce qui avait pour effet d’augmenter sa hargne de la roche au fil des ans.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Un jour, après avoir brisé un autre soc et se souvenant tout le trouble que la roche lui avait causé au cours des années,<span style=\"mso-spacerun: yes;\">  </span>finalement il décida d’agir pour régler le problème.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Lorsqu’il<span style=\"mso-spacerun: yes;\">  </span>mit<span style=\"mso-spacerun: yes;\">  </span>la pince à levier sous la roche, il fut étonné de constater qu’il y avait seulement <span style=\"mso-spacerun: yes;\"> </span>une épaisseur d’environ de six<span style=\"mso-spacerun: yes;\">  </span>pouces et qu’il pouvait facilement la briser avec un marteau.<span style=\"mso-spacerun: yes;\">  </span>Pendant qu’il ramassait les morceaux, il souriait en pensant à tout le trouble que la roche lui avait causé pendant toutes ces années et la facilité à laquelle <span style=\"mso-spacerun: yes;\"> </span>il a pu facilement s’en débarrasser.</span></p>','La roche','','inherit','closed','closed','','135-revision-v1','','','2013-10-05 21:41:25','2013-10-06 01:41:25','',135,'http://divyayogamonteregie.org/french/?p=541',0,'revision','',0),(542,1,'2013-07-09 22:02:59','2013-07-10 02:02:59','<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">About the hidden nature of Atman [Soul]:</p>\r\n<p style=\"text-align: justify;\">\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.</p>\r\n<p style=\"text-align: justify;\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.</p>\r\n<p style=\"text-align: justify;\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.</p>\r\n<p style=\"text-align: justify;\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"</p>\r\n<p style=\"text-align: justify;\">\"I am the sheep\" cried and bleated the other lion, and could not believe otherwise.</p>\r\n<p style=\"text-align: justify;\">The lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"</p>\r\n<p style=\"text-align: justify;\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]</p>\r\n<p style=\"text-align: justify;\">? \"You are lions . . . and perfect.\" - Swami Vivekananda</p>','The sheep lion','','inherit','closed','closed','','162-revision-v1','','','2013-07-09 22:02:59','2013-07-10 02:02:59','',162,'http://divyayogamonteregie.org/french/?p=542',0,'revision','',0),(543,1,'2013-10-05 21:43:30','2013-10-06 01:43:30','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">A propos de</span></span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> <span class=\"hps\">la nature cachée</span> <span class=\"hps\">de l\'Atman</span> <span class=\"hps\">[</span>l\'âme]:\r\n\r\n<span class=\"hps\">«Nous sommes comme</span> <span class=\"hps\">un roi,</span> <span class=\"hps\">qui</span> <span class=\"hps\">en devenant victime d\'amnésie,</span> <span class=\"hps\">met</span> <span class=\"hps\">son royaume</span> <span class=\"hps\">en lambeaux</span>, ne sachant pas <span class=\"hps\">qui il est vraiment</span>. <span class=\"hps\">Nous sommes comme un</span> <span class=\"hps\">lionceau</span> <span class=\"hps\">qui, après avoir</span> <span class=\"hps\">perdu</span> <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>sa mère</span> <span class=\"hps\">à la naissance,</span> <span class=\"hps\">grandit</span> <span class=\"hps\">par</span> <span class=\"hps\">accident</span> <span class=\"hps\">chez les</span> <span class=\"hps\">moutons qui le</span> <span class=\"hps\">prennent en pâturage</span> <span class=\"hps\">et</span><span style=\"mso-spacerun: yes;\">  </span>croyant <span class=\"hps\">qu\'il est</span> un des leurs, bêle <span class=\"hps\">comme eux</span>. \"- <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>Thème de</span> <span class=\"hps\">la littérature hindoue</span>.\r\n\r\n<span class=\"hps\">Une grosse lionne</span> était <span class=\"hps\">avec son lionceau à</span> <span class=\"hps\">la recherche d’une proie</span> <span class=\"hps\">lorsqu’ elle aperçut un troupeau de moutons</span>. <span class=\"hps\">Elle sauta</span> <span class=\"hps\">sur eux</span> <span class=\"hps\">et <span style=\"mso-spacerun: yes;\"> </span>succomba </span>sous l’<span class=\"hps\">effort.</span> <span class=\"hps\">Mais</span> <span class=\"hps\">le lionceau</span> <span class=\"hps\">n’avait plus</span> sa <span class=\"hps\">mère.</span> <span class=\"hps\">Les moutons</span> <span class=\"hps\">ont pris</span> <span class=\"hps\">soin du lionceau et l’ont amené avec eux. </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">Il</span> <span class=\"hps\">a grandi</span> <span class=\"hps\">avec eux ;</span> il <span class=\"hps\">mangeait de l\'herbe</span>, <span class=\"hps\">et</span> <span class=\"hps\">bêlait</span> <span class=\"hps\">comme un mouton</span>. <span class=\"hps\">Avec le temps</span>, il est devenu <span class=\"hps\">un grand lion</span>, <span class=\"hps\">à maturité</span>, <span class=\"hps\">et <span style=\"mso-spacerun: yes;\"> </span>il</span> <span class=\"hps\">bêlait encore et</span> <span class=\"hps\">pensait qu’il était</span> <span class=\"hps\">un mouton.</span>\r\n\r\n<span class=\"hps\">Un jour,</span> <span class=\"hps\">un autre</span> <span class=\"hps\">lion</span> <span class=\"hps\">est venu</span> <span class=\"hps\">à la recherche de</span> <span class=\"hps\">proies</span>, <span class=\"hps\">et</span> <span class=\"hps\">a été étonné</span> <span class=\"hps\">de constater qu’il y avait un lion au milieu du</span> <span class=\"hps\">troupeau de moutons</span> <span class=\"hps\">et qu’il réagissait tout comme eux à l’approche du danger.</span> <span class=\"hps\">Il a essayé</span> <span class=\"hps\">de s\'approcher du</span> <span class=\"hps\">mouton</span><span class=\"atn\">-</span>lion <span class=\"hps\">pour lui faire savoir qu’ il n’était pas</span> <span class=\"hps\">un mouton</span>, mais bien <span class=\"hps\">un lion, mais</span> <span class=\"hps\">celui-ci s\'est enfuit</span> <span class=\"hps\">à son approche.</span>\r\n\r\n<span class=\"hps\">Il a attendu le <span style=\"mso-spacerun: yes;\"> </span>moment opportun jusqu’au </span><span style=\"mso-spacerun: yes;\"> </span>jour où il a <span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">trouvé</span> <span class=\"hps\">le mouton</span><span class=\"atn\">-</span>lion <span class=\"hps\">endormi.</span> <span class=\"hps\">Il s\'approcha en lui disant: «Tu </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">es un</span> <span class=\"hps\">lion.</span>\"\r\n\r\n<span class=\"hps\">\"</span>Je suis un <span class=\"hps\">mouton</span>\" a dit en pleurant <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>et</span> <span class=\"hps\">bêlant</span> <span class=\"hps\">l\'autre</span> <span class=\"hps\">lion</span>, <span class=\"hps\">ne voulant pas</span> <span class=\"hps\">le croire.</span>\r\n\r\n<span class=\"hps\">Le</span> <span class=\"hps\">lion l’a traîné</span> <span class=\"hps\">vers</span> <span class=\"hps\">un lac</span> <span class=\"hps\">et a dit: «</span>Regarde, <span class=\"hps\">il ya</span> <span class=\"hps\">mon reflet</span> <span class=\"hps\">et le tien.</span>\"\r\n\r\n<span class=\"hps\">Puis, vint la comparaison.</span> <span class=\"hps\">Le</span> <span class=\"hps\">lion qui</span> <span class=\"hps\">bêlait</span> <span class=\"hps\">regarda l’autre lion</span> <span class=\"hps\">et</span> <span class=\"hps\">ensuite</span> <span class=\"hps\">son</span> <span class=\"hps\">propre</span> <span class=\"hps\">reflet</span>, <span class=\"hps\">et puis surgit l’idée</span> <span class=\"hps\">qu’il était un</span> <span class=\"hps\">lion.</span> <span class=\"hps\">Le</span> <span class=\"hps\">lion</span> <span class=\"hps\">rugit</span>, <span class=\"hps\">son bêlement</span> <span class=\"hps\">avait disparu.</span> <span class=\"hps\">[</span>Adapté <span class=\"hps\">d\'un conte de</span> <span class=\"hps\">Vivekananda</span> <span class=\"hps\">à</span> <span class=\"hps\">la conférence «</span>La <span class=\"hps\">vraie nature</span> <span class=\"hps\">de l\'homme»</span>, <span class=\"hps\">donnée à Londres vers</span> <span class=\"hps\">1899</span>.]\r\n\r\n<span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">\"</span>Vous êtes <span class=\"hps\">des lions</span>. <span class=\"hps\">.</span> <span class=\"hps\">.</span> <span class=\"hps\">et c’est parfait</span>. \"- <span class=\"hps\">Swami</span> <span class=\"hps\">Vivekananda</span></span></p>','Le lion-mouton','','inherit','closed','closed','','162-revision-v1','','','2013-10-05 21:43:30','2013-10-06 01:43:30','',162,'http://divyayogamonteregie.org/french/?p=543',0,'revision','',0),(544,1,'2013-06-10 20:06:17','2013-06-11 00:06:17','A man found a cocoon of a butterfly.\r\nOne day a small opening appeared.\r\nHe sat and watched the butterfly for several hours\r\nas it struggled to squeeze its body through the tiny hole.\r\nThen it stopped, as if it couldn\'t go further.\r\n\r\nSo the man decided to help the butterfly.\r\nHe took a pair of scissors and\r\nsnipped off the remaining bits of cocoon.\r\nThe butterfly emerged easily but\r\nit had a swollen body and shriveled wings.\r\n\r\nThe man continued to watch it,\r\nexpecting that any minute the wings would enlarge\r\nand expand enough to support the body,\r\nNeither happened!\r\nIn fact the butterfly spent the rest of its life\r\ncrawling around.\r\nIt was never able to fly.\r\n\r\nWhat the man in his kindness\r\nand haste did not understand:\r\nThe restricting cocoon and the struggle\r\nrequired by the butterfly to get through the opening\r\nwas a way of forcing the fluid from the body\r\ninto the wings so that it would be ready\r\nfor flight once that was achieved.\r\n\r\nSometimes struggles are exactly\r\nwhat we need in our lives.\r\nGoing through life with no obstacles would cripple us.\r\nWe will not be as strong as we could have been\r\nand we would never fly.','The story of the butterfly.','','inherit','closed','closed','','133-revision-v1','','','2013-06-10 20:06:17','2013-06-11 00:06:17','',133,'http://divyayogamonteregie.org/french/?p=544',0,'revision','',0),(545,1,'2013-10-05 21:45:10','2013-10-06 01:45:10','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Un homme trouva la chrysalide d’un papillon.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Un jour, apparut une petite ouverture.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il s’assis et regarda pendant des heures le papillon</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">qui luttait en essayant de sortir son corps par la petite fente</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Puis <span style=\"mso-spacerun: yes;\"> </span>arrêta, comme s’il ne pouvait pas aller plus loin.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’homme décida alors d’aider le papillon.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il pris une paire de ciseaux et</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">coupa les restants de la chrysalide.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Le papillon sortit facilement mais</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il avait le corps enflé et les ailes flétries.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’homme continua à l’observer,</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">s’attendant à tout instant que les ailes se déploient</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">suffisamment pour supporter le corps.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Rien ne se produisit.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">En fait, le papillon passa le reste de sa vie </span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">à ramper.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il n’a jamais été capable de voler.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Ce que cet homme dans sa bonté</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">et sa hâte n’a pas compris :</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">l’ouverture restreinte de la chrysalide combinée à</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">l’effort que devait faire le papillon pour émerger</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">lui permettaient de sortir tout le liquide de son corps</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">afin que ses ailes soient prêtes</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">pour voler lorsqu’il aurait <span style=\"mso-spacerun: yes;\"> </span>terminé ce processus.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Parfois <span style=\"mso-spacerun: yes;\"> </span>les efforts sont exactement</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">ce dont nous avons besoin dans nos vies.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Traverser la vie sans aucun obstacle pourrait être un handicap.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Nous ne serions jamais aussi forts que nous aurions pu le devenir</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Et nous serions incapables de voler de nos propres ailes.</span></span></p>','L’histoire du papillon','','inherit','closed','closed','','133-autosave-v1','','','2013-10-05 21:45:10','2013-10-06 01:45:10','',133,'http://divyayogamonteregie.org/french/?p=545',0,'revision','',0),(546,1,'2013-10-05 21:45:18','2013-10-06 01:45:18','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Un homme trouva la chrysalide d’un papillon.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Un jour, apparut une petite ouverture.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il s’assis et regarda pendant des heures le papillon</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">qui luttait en essayant de sortir son corps par la petite fente</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Puis <span style=\"mso-spacerun: yes;\"> </span>arrêta, comme s’il ne pouvait pas aller plus loin.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’homme décida alors d’aider le papillon.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il pris une paire de ciseaux et</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">coupa les restants de la chrysalide.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Le papillon sortit facilement mais</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il avait le corps enflé et les ailes flétries.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">L’homme continua à l’observer,</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">s’attendant à tout instant que les ailes se déploient</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">suffisamment pour supporter le corps.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Rien ne se produisit.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">En fait, le papillon passa le reste de sa vie </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">à ramper.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Il n’a jamais été capable de voler.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Ce que cet homme dans sa bonté</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">et sa hâte n’a pas compris :</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">l’ouverture restreinte de la chrysalide combinée à</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">l’effort que devait faire le papillon pour émerger</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">lui permettaient de sortir tout le liquide de son corps</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">afin que ses ailes soient prêtes</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">pour voler lorsqu’il aurait <span style=\"mso-spacerun: yes;\"> </span>terminé ce processus.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Parfois <span style=\"mso-spacerun: yes;\"> </span>les efforts sont exactement</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">ce dont nous avons besoin dans nos vies.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Traverser la vie sans aucun obstacle pourrait être un handicap.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Nous ne serions jamais aussi forts que nous aurions pu le devenir</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Et nous serions incapables de voler de nos propres ailes.</span></span></p>','L’histoire du papillon','','inherit','closed','closed','','133-revision-v1','','','2013-10-05 21:45:18','2013-10-06 01:45:18','',133,'http://divyayogamonteregie.org/french/?p=546',0,'revision','',0),(548,1,'2013-10-05 21:51:48','2013-10-06 01:51:48','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt; text-indent: 35.4pt;\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Un saint judicieux</span></p>\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il était une fois un judicieux sage<span style=\"mso-spacerun: yes;\">  </span>qui flânait à la campagne.<span style=\"mso-spacerun: yes;\">  </span>Une journée qu’il passait près d’un village, une femme s’approcha de lui pour lui dire qu’il y avait à proximité un enfant malade.<span style=\"mso-spacerun: yes;\">  </span>Elle l’a supplié d’aider l’enfant.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Alors le sage alla au village et une foule se rassembla autour de lui; pour un tel homme c’était un événement plutôt rare.<span style=\"mso-spacerun: yes;\">  </span>Une femme lui a emmené l’enfant malade et il a fait une prière.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Croyez vous vraiment que la prière va l’aider là où la médecine a échoué?» A crié un homme dans la foule.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Vous ne connaissez <span style=\"mso-spacerun: yes;\"> </span>rien de ces choses.<span style=\"mso-spacerun: yes;\">  </span>Vous êtes un abruti imbécile » lui lança le sage homme.</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’homme devint vraiment en colère et sa figure se transforma d’un rouge écarlate.<span style=\"mso-spacerun: yes;\">  </span>Il allait répliquer ou peut-être <span style=\"mso-spacerun: yes;\"> </span>laisser <span style=\"mso-spacerun: yes;\"> </span>tomber lorsque le sage se dirigea vers lui et dit : « Si un mot a autant de pouvoir que de vous mettre en colère, <span style=\"mso-spacerun: yes;\"> </span>pourrait t-il <span style=\"mso-spacerun: yes;\"> </span>en avoir d’autres qui auraient le pouvoir de guérir? »</span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Et cette journée, le sage a guéri deux personnes.</span></p>','un sa Saint ','','inherit','closed','closed','','352-autosave-v1','','','2013-10-05 21:51:48','2013-10-06 01:51:48','',352,'http://divyayogamonteregie.org/french/?p=548',0,'revision','',0),(550,1,'2013-10-05 21:52:32','2013-10-06 01:52:32','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt; text-indent: 35.4pt;\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Un saint judicieux</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il était une fois un judicieux sage<span style=\"mso-spacerun: yes;\">  </span>qui flânait à la campagne.<span style=\"mso-spacerun: yes;\">  </span>Une journée qu’il passait près d’un village, une femme s’approcha de lui pour lui dire qu’il y avait à proximité un enfant malade.<span style=\"mso-spacerun: yes;\">  </span>Elle l’a supplié d’aider l’enfant.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Alors le sage alla au village et une foule se rassembla autour de lui; pour un tel homme c’était un événement plutôt rare.<span style=\"mso-spacerun: yes;\">  </span>Une femme lui a emmené l’enfant malade et il a fait une prière.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Croyez vous vraiment que la prière va l’aider là où la médecine a échoué?» A crié un homme dans la foule.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Vous ne connaissez <span style=\"mso-spacerun: yes;\"> </span>rien de ces choses.<span style=\"mso-spacerun: yes;\">  </span>Vous êtes un abruti imbécile » lui lança le sage homme.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’homme devint vraiment en colère et sa figure se transforma d’un rouge écarlate.<span style=\"mso-spacerun: yes;\">  </span>Il allait répliquer ou peut-être <span style=\"mso-spacerun: yes;\"> </span>laisser <span style=\"mso-spacerun: yes;\"> </span>tomber lorsque le sage se dirigea vers lui et dit : « Si un mot a autant de pouvoir que de vous mettre en colère, <span style=\"mso-spacerun: yes;\"> </span>pourrait t-il <span style=\"mso-spacerun: yes;\"> </span>en avoir d’autres qui auraient le pouvoir de guérir? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Et cette journée, le sage a guéri deux personnes.</span></p>','Un saint judicieux','','inherit','closed','closed','','352-revision-v1','','','2013-10-05 21:52:32','2013-10-06 01:52:32','',352,'http://divyayogamonteregie.org/french/?p=550',0,'revision','',0),(549,1,'2013-10-05 21:52:24','2013-10-06 01:52:24','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"margin-left: 35.4pt; text-indent: 35.4pt;\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\">Un saint judicieux</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il était une fois un judicieux sage<span style=\"mso-spacerun: yes;\">  </span>qui flânait à la campagne.<span style=\"mso-spacerun: yes;\">  </span>Une journée qu’il passait près d’un village, une femme s’approcha de lui pour lui dire qu’il y avait à proximité un enfant malade.<span style=\"mso-spacerun: yes;\">  </span>Elle l’a supplié d’aider l’enfant.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Alors le sage alla au village et une foule se rassembla autour de lui; pour un tel homme c’était un événement plutôt rare.<span style=\"mso-spacerun: yes;\">  </span>Une femme lui a emmené l’enfant malade et il a fait une prière.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Croyez vous vraiment que la prière va l’aider là où la médecine a échoué?» A crié un homme dans la foule.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">« Vous ne connaissez <span style=\"mso-spacerun: yes;\"> </span>rien de ces choses.<span style=\"mso-spacerun: yes;\">  </span>Vous êtes un abruti imbécile » lui lança le sage homme.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">L’homme devint vraiment en colère et sa figure se transforma d’un rouge écarlate.<span style=\"mso-spacerun: yes;\">  </span>Il allait répliquer ou peut-être <span style=\"mso-spacerun: yes;\"> </span>laisser <span style=\"mso-spacerun: yes;\"> </span>tomber lorsque le sage se dirigea vers lui et dit : « Si un mot a autant de pouvoir que de vous mettre en colère, <span style=\"mso-spacerun: yes;\"> </span>pourrait t-il <span style=\"mso-spacerun: yes;\"> </span>en avoir d’autres qui auraient le pouvoir de guérir? »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Et cette journée, le sage a guéri deux personnes.</span></p>','Un saint judicieux','','inherit','closed','closed','','352-revision-v1','','','2013-10-05 21:52:24','2013-10-06 01:52:24','',352,'http://divyayogamonteregie.org/french/?p=549',0,'revision','',0),(637,1,'2013-10-15 23:02:51','2013-10-16 03:02:51',' ','','','publish','closed','closed','','637','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',190,'http://divyayogamonteregie.org/french/?p=637',61,'nav_menu_item','',0),(553,1,'2013-10-05 21:56:42','2013-10-06 01:56:42','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Deux grenouilles – une grosse et une petite – ont sauté dans un seau de lait.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Les côtés du seau étaient brillants et lisses.<span style=\"mso-spacerun: yes;\">  </span>Les grenouilles nageaient en rond en étant incapables de sortir du seau, et à toutes les fois qu’elles essayaient de sortir la bouche pour respirer, elles retournaient au fond.<span style=\"mso-spacerun: yes;\">  </span>Elles ont continué à nager et haleter jusqu’au moment où la grosse grenouille a abandonné et s’est noyé.<span style=\"mso-spacerun: yes;\">  </span>Alors la petite grenouille s’est dit :</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">«  Bon, je vais essayer de m’accrocher le plus longtemps que j’en suis capable. »</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Elle est restée pendant des heures, quand soudainement elle a senti quelque chose de solide sous ses pieds : le lait s’était changé en beurre.<span style=\"mso-spacerun: yes;\">  </span>La petite grenouille a sauté à l’extérieur du seau.</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Yogananda a dit : «  Soyez comme la petite grenouille.<span style=\"mso-spacerun: yes;\">  </span>Essayez de combattre par tous les moyens possibles. »</span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Essayez de bien surmonter vos difficultés sinon vous risquez votre perte. </span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>','Les deux grenouilles en difficulté','','inherit','closed','closed','','171-autosave-v1','','','2013-10-05 21:56:42','2013-10-06 01:56:42','',171,'http://divyayogamonteregie.org/french/?p=553',0,'revision','',0),(554,1,'2013-10-05 21:56:47','2013-10-06 01:56:47','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Deux grenouilles – une grosse et une petite – ont sauté dans un seau de lait.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Les côtés du seau étaient brillants et lisses.<span style=\"mso-spacerun: yes;\">  </span>Les grenouilles nageaient en rond en étant incapables de sortir du seau, et à toutes les fois qu’elles essayaient de sortir la bouche pour respirer, elles retournaient au fond.<span style=\"mso-spacerun: yes;\">  </span>Elles ont continué à nager et haleter jusqu’au moment où la grosse grenouille a abandonné et s’est noyé.<span style=\"mso-spacerun: yes;\">  </span>Alors la petite grenouille s’est dit :</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">«  Bon, je vais essayer de m’accrocher le plus longtemps que j’en suis capable. »</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Elle est restée pendant des heures, quand soudainement elle a senti quelque chose de solide sous ses pieds : le lait s’était changé en beurre.<span style=\"mso-spacerun: yes;\">  </span>La petite grenouille a sauté à l’extérieur du seau.</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Yogananda a dit : «  Soyez comme la petite grenouille.<span style=\"mso-spacerun: yes;\">  </span>Essayez de combattre par tous les moyens possibles. »</span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Essayez de bien surmonter vos difficultés sinon vous risquez votre perte. </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> </span></span></p>','Les deux grenouilles en difficulté','','inherit','closed','closed','','171-revision-v1','','','2013-10-05 21:56:47','2013-10-06 01:56:47','',171,'http://divyayogamonteregie.org/french/?p=554',0,'revision','',0),(556,1,'2013-10-05 21:58:31','2013-10-06 01:58:31','<!--[if gte mso 9]><xml>\n <w:worddocument>\n  <w:view>Normal</w:view>\n  <w:zoom>0</w:zoom>\n  <w:trackmoves></w:trackmoves>\n  <w:trackformatting></w:trackformatting>\n  <w:punctuationkerning></w:punctuationkerning>\n  <w:validateagainstschemas></w:validateagainstschemas>\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\n  <w:donotpromoteqf></w:donotpromoteqf>\n  <w:lidthemeother>EN-US</w:lidthemeother>\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\n  <w:compatibility>\n   <w:breakwrappedtables></w:breakwrappedtables>\n   <w:snaptogridincell></w:snaptogridincell>\n   <w:wraptextwithpunct></w:wraptextwithpunct>\n   <w:useasianbreakrules></w:useasianbreakrules>\n   <w:dontgrowautofit></w:dontgrowautofit>\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\n   <w:word11kerningpairs></w:word11kerningpairs>\n   <w:cachedcolbalance></w:cachedcolbalance>\n  </w:compatibility>\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\n  <m:mathpr>\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\n   <m:brkbin m:val=\"before\"></m:brkbin>\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\n   <m:dispdef></m:dispdef>\n   <m:lmargin m:val=\"0\"></m:lmargin>\n   <m:rmargin m:val=\"0\"></m:rmargin>\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\n   <m:intlim m:val=\"subSup\"></m:intlim>\n   <m:narylim m:val=\"undOvr\"></m:narylim>\n  </m:mathpr></w:worddocument>\n</xml>< ![endif]-->\n\n<!--[if gte mso 9]><xml>\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\n  LatentStyleCount=\"267\">\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\n </w:latentstyles>\n</xml>< ![endif]--><!--[if gte mso 10]>\n<style>\n /* Style Definitions */\n table.MsoNormalTable\n	{mso-style-name:\"Table Normal\";\n	mso-tstyle-rowband-size:0;\n	mso-tstyle-colband-size:0;\n	mso-style-noshow:yes;\n	mso-style-priority:99;\n	mso-style-qformat:yes;\n	mso-style-parent:\"\";\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\n	mso-para-margin:0in;\n	mso-para-margin-bottom:.0001pt;\n	mso-pagination:widow-orphan;\n	font-size:11.0pt;\n	font-family:\"Calibri\",\"sans-serif\";\n	mso-ascii-font-family:Calibri;\n	mso-ascii-theme-font:minor-latin;\n	mso-fareast-font-family:\"Times New Roman\";\n	mso-fareast-theme-font:minor-fareast;\n	mso-hansi-font-family:Calibri;\n	mso-hansi-theme-font:minor-latin;\n	mso-bidi-font-family:\"Times New Roman\";\n	mso-bidi-theme-font:minor-bidi;}\n</style>\n< ![endif]-->\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">C\'est bien</span></span><span lang=\"FR\" style=\"mso-ansi-language: FR;\">\n\n</span><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Une vieille</span></span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"> <span class=\"hps\">histoire est racontée</span> <span class=\"hps\">concernant un roi</span> <span class=\"hps\">en Afrique</span> <span class=\"hps\">qui avait un</span> <span class=\"hps\">ami d’enfance.</span> <span class=\"hps\">L\'ami</span> <span class=\"hps\">avait l\'habitude</span> <span class=\"hps\">de commenter</span> <span class=\"hps\">chaque situation qui</span> <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>se produisait dans sa vie</span> <span class=\"hps\">(positive ou négative</span>) en disant: «C’est <span class=\"hps\">bien</span>!»\n\n<span class=\"hps\">Un jour, le</span> <span class=\"hps\">roi</span> <span class=\"hps\">et son ami</span> <span class=\"hps\">étaient partis pour une expédition de chasse</span>. <span class=\"hps\">L\'ami</span> devait <span class=\"hps\">charger </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">les munitions et préparer les</span> <span class=\"hps\">armes</span> <span class=\"hps\">pour le roi.</span> <span class=\"hps\">Il </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">avait apparemment</span> <span class=\"hps\">fait une erreur</span> <span class=\"hps\">dans la préparation de</span> <span class=\"hps\">l\'un des</span> <span class=\"hps\">fusils</span>, puisqu’<span class=\"hps\">après avoir pris</span> <span class=\"hps\">le pistolet</span> <span class=\"hps\">de son ami</span>, le roi <span class=\"hps\">en tirant a fait éclater </span>son pouce. <span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">En examinant la</span> <span class=\"hps\">situation,</span> <span class=\"hps\">l\'ami</span> <span style=\"mso-spacerun: yes;\"> </span>a <span class=\"hps\">fait la remarque</span> <span class=\"hps\">comme d\'habitude,</span> <span class=\"hps\">\"C\'est bien!</span>\" <span class=\"hps\">Ce à quoi le</span> <span class=\"hps\">roi répondit</span>: «Non, <span class=\"hps\">ce n\'est pas bien</span>!\" <span class=\"hps\">Et a envoyé son ami</span> <span class=\"hps\">en prison.</span>\n\n<span class=\"hps\">Environ un an</span> <span class=\"hps\">plus tard,</span> <span class=\"hps\">le roi</span> <span class=\"hps\">chassait dans</span> <span class=\"hps\">une zone</span> <span class=\"hps\">qu\'il</span> <span class=\"hps\">aurait dû savoir comme étant dangereuse</span>. <span style=\"mso-spacerun: yes;\"> </span>Des <span class=\"hps\">cannibales</span> <span class=\"hps\">l\'ont capturé</span> <span class=\"hps\">et emmené</span> <span class=\"hps\">dans leur village.</span> <span class=\"hps\">Ils lui ont attaché</span> <span class=\"hps\">les mains,</span> <span class=\"hps\">empilés</span> <span class=\"hps\">un peu de bois</span>, <span class=\"hps\">et l’ont attaché à un poteau</span>. <span class=\"hps\">Lorsqu’ ils</span> <span class=\"hps\">s\'approchèrent pour allumer le feu</span>, ils<span style=\"mso-spacerun: yes;\">  </span>remarquèrent qu’il manquait un pouce <span class=\"hps\">au roi.</span> <span class=\"hps\">Étant</span> <span class=\"hps\">superstitieux</span>, <span class=\"hps\">ils</span> <span class=\"hps\">ne mangeaient jamais </span>une personne <span class=\"hps\">qui</span> <span class=\"hps\">lui manquait un membre</span>. Ils ont <span class=\"hps\">alors</span> <span class=\"hps\">détaché le</span> <span class=\"hps\">roi,</span> <span class=\"hps\">et l’ont </span></span></p>\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span>remis sur la route</span></span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">.\n\n<span class=\"hps\">Lorsqu’il est revenu</span> <span class=\"hps\">à la maison, il</span> <span class=\"hps\">s’est souvenu </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">de l’incident</span> <span class=\"hps\">qui a causé la perte de</span> <span class=\"hps\">son pouce et a ressenti du remords</span> <span class=\"hps\">dans la façon dont il avait traité</span> <span class=\"hps\">son ami.</span> <span class=\"hps\">Il</span> <span class=\"hps\">s\'est immédiatement rendu</span> <span class=\"hps\">à la prison pour</span> lui <span class=\"hps\">parler :</span><span style=\"mso-spacerun: yes;\">  </span><span class=\"hps\">\"</span>Tu avais raison,» dit-il, <span class=\"hps\">\"</span>C’était une bonne chose que <span class=\"hps\">j’ai perdu mon pouce</span>.\" <span class=\"hps\">Et</span> <span class=\"hps\">il se mit à</span> raconter à son <span class=\"hps\">ami</span> <span class=\"hps\">ce qui</span> <span class=\"hps\">venait de se produire</span>. <span class=\"hps\">\"</span>Et<span class=\"hps\"> je suis très</span> <span class=\"hps\">désolé de t’avoir</span> <span class=\"hps\">laissé en prison</span> <span class=\"hps\">si longtemps.</span> <span class=\"hps\">C’est méchant de ma part d’avoir fait</span> <span class=\"hps\">cela. \"</span>\n\n<span class=\"hps\">«Non»,</span> <span class=\"hps\">répondit son ami</span>: «C\'est bien<span class=\"hps\">!</span><span class=\"atn\">\" \"</span>Que veux-tu dire par c’est bien ? Pourquoi cela serait une bonne chose de t’avoir incarcéré pendant un an ? »<span style=\"mso-spacerun: yes;\">  </span>« Si tu ne m’avais pas mis en prison, j’aurais été avec toi. »</span></p>','This is good','','inherit','closed','closed','','145-autosave-v1','','','2013-10-05 21:58:31','2013-10-06 01:58:31','',145,'http://divyayogamonteregie.org/french/?p=556',0,'revision','',0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (557,1,'2013-10-05 21:58:52','2013-10-06 01:58:52','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]--><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">Une vieille</span></span> <span class=\"hps\">histoire est racontée</span> <span class=\"hps\">concernant un roi</span> <span class=\"hps\">en Afrique</span> <span class=\"hps\">qui avait un</span> <span class=\"hps\">ami d’enfance.</span> <span class=\"hps\">L\'ami</span> <span class=\"hps\">avait l\'habitude</span> <span class=\"hps\">de commenter</span> <span class=\"hps\">chaque situation qui</span> <span class=\"hps\"><span style=\"mso-spacerun: yes;\"> </span>se produisait dans sa vie</span> <span class=\"hps\">(positive ou négative</span>) en disant: «C’est <span class=\"hps\">bien</span>!»\r\n<p class=\"MsoNormal\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">\r\n<span class=\"hps\">Un jour, le</span> <span class=\"hps\">roi</span> <span class=\"hps\">et son ami</span> <span class=\"hps\">étaient partis pour une expédition de chasse</span>. <span class=\"hps\">L\'ami</span> devait <span class=\"hps\">charger </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">les munitions et préparer les</span> <span class=\"hps\">armes</span> <span class=\"hps\">pour le roi.</span> <span class=\"hps\">Il </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">avait apparemment</span> <span class=\"hps\">fait une erreur</span> <span class=\"hps\">dans la préparation de</span> <span class=\"hps\">l\'un des</span> <span class=\"hps\">fusils</span>, puisqu’<span class=\"hps\">après avoir pris</span> <span class=\"hps\">le pistolet</span> <span class=\"hps\">de son ami</span>, le roi <span class=\"hps\">en tirant a fait éclater </span>son pouce. <span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">En examinant la</span> <span class=\"hps\">situation,</span> <span class=\"hps\">l\'ami</span> <span style=\"mso-spacerun: yes;\"> </span>a <span class=\"hps\">fait la remarque</span> <span class=\"hps\">comme d\'habitude,</span> <span class=\"hps\">\"C\'est bien!</span>\" <span class=\"hps\">Ce à quoi le</span> <span class=\"hps\">roi répondit</span>: «Non, <span class=\"hps\">ce n\'est pas bien</span>!\" <span class=\"hps\">Et a envoyé son ami</span> <span class=\"hps\">en prison.</span>\r\n\r\n<span class=\"hps\">Environ un an</span> <span class=\"hps\">plus tard,</span> <span class=\"hps\">le roi</span> <span class=\"hps\">chassait dans</span> <span class=\"hps\">une zone</span> <span class=\"hps\">qu\'il</span> <span class=\"hps\">aurait dû savoir comme étant dangereuse</span>. <span style=\"mso-spacerun: yes;\"> </span>Des <span class=\"hps\">cannibales</span> <span class=\"hps\">l\'ont capturé</span> <span class=\"hps\">et emmené</span> <span class=\"hps\">dans leur village.</span> <span class=\"hps\">Ils lui ont attaché</span> <span class=\"hps\">les mains,</span> <span class=\"hps\">empilés</span> <span class=\"hps\">un peu de bois</span>, <span class=\"hps\">et l’ont attaché à un poteau</span>. <span class=\"hps\">Lorsqu’ ils</span> <span class=\"hps\">s\'approchèrent pour allumer le feu</span>, ils<span style=\"mso-spacerun: yes;\">  </span>remarquèrent qu’il manquait un pouce <span class=\"hps\">au roi.</span> <span class=\"hps\">Étant</span> <span class=\"hps\">superstitieux</span>, <span class=\"hps\">ils</span> <span class=\"hps\">ne mangeaient jamais </span>une personne <span class=\"hps\">qui</span> <span class=\"hps\">lui manquait un membre</span>. Ils ont <span class=\"hps\">alors</span> <span class=\"hps\">détaché le</span> <span class=\"hps\">roi,</span> <span class=\"hps\">et l’ont </span></span></p>\r\n<p class=\"MsoNormal\"><span class=\"hps\"><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\"><span style=\"mso-spacerun: yes;\"> </span>remis sur la route</span></span><span lang=\"FR\" style=\"font-family: \'Arial\',\'sans-serif\'; mso-ansi-language: FR;\">.\r\n\r\n<span class=\"hps\">Lorsqu’il est revenu</span> <span class=\"hps\">à la maison, il</span> <span class=\"hps\">s’est souvenu </span><span style=\"mso-spacerun: yes;\"> </span><span class=\"hps\">de l’incident</span> <span class=\"hps\">qui a causé la perte de</span> <span class=\"hps\">son pouce et a ressenti du remords</span> <span class=\"hps\">dans la façon dont il avait traité</span> <span class=\"hps\">son ami.</span> <span class=\"hps\">Il</span> <span class=\"hps\">s\'est immédiatement rendu</span> <span class=\"hps\">à la prison pour</span> lui <span class=\"hps\">parler :</span><span style=\"mso-spacerun: yes;\">  </span><span class=\"hps\">\"</span>Tu avais raison,» dit-il, <span class=\"hps\">\"</span>C’était une bonne chose que <span class=\"hps\">j’ai perdu mon pouce</span>.\" <span class=\"hps\">Et</span> <span class=\"hps\">il se mit à</span> raconter à son <span class=\"hps\">ami</span> <span class=\"hps\">ce qui</span> <span class=\"hps\">venait de se produire</span>. <span class=\"hps\">\"</span>Et<span class=\"hps\"> je suis très</span> <span class=\"hps\">désolé de t’avoir</span> <span class=\"hps\">laissé en prison</span> <span class=\"hps\">si longtemps.</span> <span class=\"hps\">C’est méchant de ma part d’avoir fait</span> <span class=\"hps\">cela. \"</span>\r\n\r\n<span class=\"hps\">«Non»,</span> <span class=\"hps\">répondit son ami</span>: «C\'est bien<span class=\"hps\">!</span><span class=\"atn\">\" \"</span>Que veux-tu dire par c’est bien ? Pourquoi cela serait une bonne chose de t’avoir incarcéré pendant un an ? »<span style=\"mso-spacerun: yes;\">  </span>« Si tu ne m’avais pas mis en prison, j’aurais été avec toi. »</span></p>','C\'est bien','','inherit','closed','closed','','145-revision-v1','','','2013-10-05 21:58:52','2013-10-06 01:58:52','',145,'http://divyayogamonteregie.org/french/?p=557',0,'revision','',0),(559,1,'2013-10-05 22:00:48','2013-10-06 02:00:48','','Tomorrow is going to be better','','inherit','closed','closed','','173-autosave-v1','','','2013-10-05 22:00:48','2013-10-06 02:00:48','',173,'http://divyayogamonteregie.org/french/?p=559',0,'revision','',0),(560,1,'2013-10-05 22:01:12','2013-10-06 02:01:12','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin:0in;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;\r\n	mso-bidi-font-family:\"Times New Roman\";\r\n	mso-bidi-theme-font:minor-bidi;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"text-align: center;\" align=\"center\"><span lang=\"FR-CA\" style=\"font-size: 24.0pt; font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">S’il vous plaît, ne vous tenez pas trop près des arbres, vous serez incapable d’apprécier la forêt…</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Quelques années avant que l’ouragan Katrina dévaste la Nouvelle Orléans, une automobile dispendieuse s’est arrêtée au sommet de la rivière Mississippi et un homme richement vêtu est sorti de la voiture.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il est monté sur une plate-forme qui se trouvait au dessus du rail sous un pont <span style=\"mso-spacerun: yes;\"> </span>et il s’apprêtait à sauter sur la chaussée.<span style=\"mso-spacerun: yes;\">  </span>Les autos ont commencé à s’arrêter et il y a eu une congestion à des miles de distance.<span style=\"mso-spacerun: yes;\">  </span>La police est arrivée sur les lieux avec le service des incendies, les ministres et les professionnels de la santé mentale.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Ils ont commencé à parler à l’homme en lui demandant de ne pas sauter.<span style=\"mso-spacerun: yes;\">  </span>Ils lui ont dit que ses chances de mourir seraient faibles; <span style=\"mso-spacerun: yes;\"> </span>il se briserait probablement des côtes et serait paralysé pour le restant de sa vie.<span style=\"mso-spacerun: yes;\">  </span>À environ un mille plus loin, dans le trafic, il y avait un vieux camion avec des tondeuses à gazon, des râteaux et des pelles.<span style=\"mso-spacerun: yes;\">  </span>Un vieux<span style=\"mso-spacerun: yes;\">  </span>jardinier descendit du camion et marcha vers <span style=\"mso-spacerun: yes;\"> </span>la foule qui était rassemblée.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Il s’est fait un chemin parmi la foule, regarda sur le côté et cria à l’homme sur la corniche : « Hey, je dois aller travailler.<span style=\"mso-spacerun: yes;\">  </span>Sois tu sautes ou tu descends du pont.<span style=\"mso-spacerun: yes;\">  </span>Si tu décides de ne pas sauter,<span style=\"mso-spacerun: yes;\">  </span>cela ira mieux demain ».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Après ce commentaire, l’homme monta sur le pont.<span style=\"mso-spacerun: yes;\">  </span>La police le captura et l’installa sur le siège arrière de la voiture.<span style=\"mso-spacerun: yes;\">  </span>Le jardinier retourna à son camion pour attendre que les automobiles circulent à nouveau.</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le ministre a demandé au pompier : «  Qui était-ce ? » Le pompier déclara : « Il a dit qu’il devait aller travailler. »</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\">Le policier expliqua aux journalistes que tout au long du parcours vers l’hôpital l’homme disait : « cela ira mieux demain».</span></p>\r\n<p class=\"MsoNormal\"><span lang=\"FR-CA\" style=\"font-family: \'Arial\',\'sans-serif\';\"> </span></p>\r\n<span lang=\"FR-CA\" style=\"font-size: 12.0pt; font-family: \'Arial\',\'sans-serif\'; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: FR-CA; mso-fareast-language: FR; mso-bidi-language: AR-SA;\">On doit nécessairement imaginer le futur, avoir un avenir.</span>','Cela ira mieux demain','','inherit','closed','closed','','173-revision-v1','','','2013-10-05 22:01:12','2013-10-06 02:01:12','',173,'http://divyayogamonteregie.org/french/?p=560',0,'revision','',0),(561,1,'2013-10-08 20:44:43','2013-10-09 00:44:43','','Bienvenue au Divya Yoga','','inherit','closed','closed','','440-autosave-v1','','','2013-10-08 20:44:43','2013-10-09 00:44:43','',440,'http://divyayogamonteregie.org/french/?p=561',0,'revision','',0),(562,1,'2013-10-08 20:45:29','2013-10-09 00:45:29','Contactez-nous\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Bienvenue au Divya Yoga','','inherit','closed','closed','','440-revision-v1','','','2013-10-08 20:45:29','2013-10-09 00:45:29','',440,'http://divyayogamonteregie.org/french/?p=562',0,'revision','',0),(563,1,'2013-10-08 20:46:30','2013-10-09 00:46:30','Chaque dernier Samedi du mois nous avons un conférencier de 11.00 à 11.45\r\n\r\n&nbsp;\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724','Conférence','','inherit','closed','closed','','1-revision-v1','','','2013-10-08 20:46:30','2013-10-09 00:46:30','',1,'http://divyayogamonteregie.org/french/?p=563',0,'revision','',0),(564,1,'2013-10-08 20:51:19','2013-10-09 00:51:19',' ','','','publish','closed','closed','','564','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=564',1,'nav_menu_item','',0),(565,1,'2013-10-08 20:51:19','2013-10-09 00:51:19',' ','','','publish','closed','closed','','565','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=565',5,'nav_menu_item','',0),(566,1,'2013-10-08 20:51:19','2013-10-09 00:51:19',' ','','','publish','closed','closed','','566','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=566',4,'nav_menu_item','',0),(567,1,'2013-10-08 20:51:19','2013-10-09 00:51:19',' ','','','publish','closed','closed','','567','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=567',3,'nav_menu_item','',0),(568,1,'2013-10-08 20:51:19','2013-10-09 00:51:19',' ','','','publish','closed','closed','','568','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=568',2,'nav_menu_item','',0),(569,1,'2013-10-08 20:51:19','2013-10-09 00:51:19',' ','','','publish','closed','closed','','569','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=569',8,'nav_menu_item','',0),(570,1,'2013-10-08 20:51:19','2013-10-09 00:51:19',' ','','','publish','closed','closed','','570','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=570',9,'nav_menu_item','',0),(571,1,'2013-10-08 20:51:19','2013-10-09 00:51:19',' ','','','publish','closed','closed','','571','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=571',10,'nav_menu_item','',0),(572,1,'2013-10-08 20:51:19','2013-10-09 00:51:19',' ','','','publish','closed','closed','','572','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=572',26,'nav_menu_item','',0),(573,1,'2013-10-08 20:51:19','2013-10-09 00:51:19',' ','','','publish','closed','closed','','573','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=573',7,'nav_menu_item','',0),(574,1,'2013-10-08 20:51:19','2013-10-09 00:51:19',' ','','','publish','closed','closed','','574','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=574',53,'nav_menu_item','',0),(575,1,'2013-07-09 20:22:40','2013-07-10 00:22:40','<div>\r\n<div>\r\n<p style=\"text-align: justify;\"><em><span style=\"text-decoration: underline;\"><strong>From volunteers</strong></span></em></p>\r\n<p style=\"text-align: justify;\"><em><strong>Monique</strong></em></p>\r\n<p style=\"text-align: justify;\">Suite à un accident de voiture survenu il y a plusieurs années, mon corps était dans une souffrance chronique, mon esprit était pris dans des blocages inconscients de perturbations, de découragement, de tourment, de peur, et d’angoisse.  Puis un jour, j’ai fait la découverte du yoga.</p>\r\n<p style=\"text-align: justify;\">Au début, lors de mes pratiques, je n’arrivais pas à synchroniser les mouvements, mon corps était rigide et tendu,  je n’étais pas concentrée.  Après un certain temps, j’ai abandonné  les cours en me disant que je n’y arriverai jamais, que mon corps ne pouvait pas suivre, j’avais trop mal, je n’avais pas la dextérité  pour faire les postures, ni la flexibilité, l’attention, la concentration, etc., etc.</p>\r\n<p style=\"text-align: justify;\">Un peu plus tard, j’ai vu une annonce dans le journal qu’il y avait des cours de yoga offerts gratuitement à St-Lambert.  J’ai décidé de faire un autre essai.  Puis voilà  que ma vie s’est transformée.  J’ai commencé le yoga une fois semaine. Après quelques semaines de pratique,  j’ai été approchée par le professeur de yoga pour être bénévole, pour accueillir les gens. J’ai accepté de m’engager dans cette belle aventure dont je fais toujours partie depuis déjà presque 3 ans. Depuis,  j’ai exploré différentes approches de yoga qui m’ont amenée à un changement positif de vie complète.  Une bonne hygiène alimentaire, une flexibilité de mon corps et de mon esprit, de mes attitudes et comportements. J’ai appris à  cultiver le calme mental et ma force vitale intérieure par les exercices de respiration et de méditation. J’ai amélioré mon équilibre mental et physique,  l’écoute de mon corps, ma concentration et ma mémoire, ma coordination et l’acceptation de ce qui est.</p>\r\n<p style=\"text-align: justify;\">Je vis maintenant mon quotidien dans un mieux-être. Il y a encore place à l’amélioration, mais chaque jour j’intègre un style de vie de yoga qui m’amène de plus en plus à faire l’expérience d’une paix intérieure.</p>\r\n<p style=\"text-align: justify;\">*****************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Michel …. 74</strong></span></p>\r\n<p style=\"text-align: justify;\">My duties:-</p>\r\n<p style=\"text-align: justify;\">To be always ready to help</p>\r\n<p style=\"text-align: justify;\">About me</p>\r\n<p style=\"text-align: justify;\">I am a very happy man. I enjoy the company of nice people.</p>\r\n<p style=\"text-align: justify;\">What yoga means to me? How it has affected my life?</p>\r\n<p style=\"text-align: justify;\">Yoga is for me an extraordinary choice of movements and exercices created by people who knew the human body and soul.</p>\r\n<p style=\"text-align: justify;\">Two hours of yoga per week complement my daily exercices that I do since 50 years plus. My body appreciate yoga and I feel balanced.</p>\r\n<p style=\"text-align: justify;\">Marathon Runner</p>\r\n<p style=\"text-align: justify;\">Bénévole (mes tâches)\r\nÊtre toujours prêt à aider</p>\r\n<p style=\"text-align: justify;\">À propos de moi\r\nJe suis un homme très heureux. J\'aime la compagnie des gens sympathiques.</p>\r\n<p style=\"text-align: justify;\">Ce que le yoga signifie pour moi? Comment cela a affecté ma vie?</p>\r\n<p style=\"text-align: justify;\">Le yoga est pour moi un choix extraordinaire de mouvements et d\'exercices créés par des gens qui connaissaient le corps humain et l\'âme.\r\nDeux heures de yoga par semaine complètent mes exercices quotidiens que je fais depuis 50 ans et plus. Mon corps apprécie le yoga et je me sens équilibrée.</p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Bénévole : Mihaela Frandes</span></strong></p>\r\n<p style=\"text-align: justify;\">Mon rôle</p>\r\n<p style=\"text-align: justify;\">J’arrive chaque samedi matin à 8.30am à l’Académie Chambly pour accueillir les nouvelles personnes. Je leur demande de compléter une fiche d’inscription et leur explique un peu comment se déroulent les cours.</p>\r\n<p style=\"text-align: justify;\">À propos de moi</p>\r\n<p style=\"text-align: justify;\">J’ai commencé les cours de yoga offerts par Meera Trivedi et Vinesh Saxena en juin 2010 et depuis j’y suis toujours fidèle J’avoue que le samedi est ma journée de la semaine la plus heureuse. Depuis, je fais du yoga régulièrement. Je suis d’origine roumaine, ma formation est en biochimie et dans la vie quotidienne je me préoccupe beaucoup de ma nutrition et j’aime beaucoup la nature. En été  je fais du vélo et en hiver j’adore faire du ski de fond. J’aime beaucoup aider les gens et le yoga m’aide à accomplir le bonheur dans ma vie. Ma dernière passion est la préparation de pain au levain – faire du bon pain est pour moi un immense plaisir.</p>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">Qu’est que yoga signifie pour moi. Comment a-t-elle affecte ma vie</p>\r\n<p style=\"text-align: justify;\">Le yoga a amélioré la flexibilité de mon corps et esprit ainsi que ma santé. J’adore faire du yoga et je sens que le yoga est une marche dans mon évolution.</p>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">Volunteer</p>\r\n<p style=\"text-align: justify;\">My duties: I came every Saturday morning at 8.30 at Chambly Academy in Saint Lambert to accommodate the new peoples. I give them the form to fill-up and explain a little bit how we function here.</p>\r\n<p style=\"text-align: justify;\">About me: I started the yoga classes given by Meera Trivedi and Vinesh Saxena in July 2010 and since then I do yoga on a regular basis. Saturday is the happiest day of my week. I am Rumanian, I studied biochemistry and I am interested in nutrition, healthy eating, I try to come closer to nature. In summer I do a lot of bike and in winter I love the cross-country sky. I love helping people; yoga is helping me to maintain a happy mood. Now I’m in love with making sourdough bread, making bread makes me happy.</p>\r\n<p style=\"text-align: justify;\">What yoga means for me. How it has affected my life: Yoga gave me a happiness that I cannot explain; friends, a more conscious life, a flexible body, and a healthy body, a clear mind. I love doing yoga, and I am pretty sure that yoga is only a step in my evolution.</p>\r\n<p style=\"text-align: justify;\">******************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>From other participants</strong></span></p>\r\n<p style=\"text-align: justify;\">This yoga class is a precious time for me. I may arrive out of breath or lacking of energy, or a bit annoyed at my brain « monkey chatter » but I always leave rejuvenated physically, mentally and emotionally. Joining in, I am giving my whole body the royal treatment from head to toes, stretching out the kinks and limbering up muscles and joints I was not aware of. It is quality time I give to myself. When I am there, I have my own space. But there are people around me and I feel I belong, that I am surrounded by positive energy. The space we are in fills, it feels to me, with well being respect, silent communication. Thank you to all who make this possible. I was hooked the first time I went.</p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Charlene Olse</span></strong></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je passais des moments très difficiles suite à un deuil, mon amie m’a conseillé de faire du yoga.</p>\r\n<p style=\"text-align: justify;\">J’ai essayé une première séance et je me suis sentie vraiment bien, les mouvements accompagnés de la respiration fluide ont effectivement apaisé mon âme, mon esprit et mon corps et depuis je ne peux rater une séance. Je fais du yoga seule à la maison, mais je m’arrête au bout de 5 minutes, cependant du yoga en groupe avec la belle ambiance, la bonne motivation et l’encouragement de l’entraîneur m’a permis de bien vivre mon deuil et surtout de bien gérer mes sentiments et mes émotions.</p>\r\n<p style=\"text-align: justify;\">Un grand merci pour ce que vous faites pour le groupe de yoga.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Lynda</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga diminue mon stress, assouplit mon corps et lubrifie mes articulations. Certaines positions ou exercices libèrent des structures énergétiques associées à des mémoires antérieures. L’énergie circule plus librement dans mon corps et je me sens revivifié. J’apprécie aussi le fait que ce soit une activité non compétitive.</p>\r\n<p style=\"text-align: justify;\">Je remercie M. Saxena de sa très grande disponibilité ainsi que toute son équipe de bénévoles.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong> Marcel Baril</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga m’a apporté beaucoup de paix intérieure. J’aime la combinaison de l’exercice physique et le mental, le rire…. Cela équilibre mon moral, améliore mon corps physique, m’aide à  pratiquer la méditation et la relaxation et surtout à mieux respirer. J’aime beaucoup l’ambiance généreuse, le don de soi des bénévoles. Je crois de plus en plus à la bonté de l’être humain.</p>\r\n<p style=\"text-align: justify;\">Merci</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Colette</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Mon mari est décédé il y a trois ans. Je fus effondrée. Depuis ce temps je pratique le yoga avec Monsieur Saxena. Cet exercice m’a apporté l’équilibre physique et la paix de l’âme.</p>\r\n<p style=\"text-align: justify;\">Ginette Paradis</p>\r\n<p style=\"text-align: justify;\"><strong>******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je dois remercier Mr et Mme Saxena pout leur dévouement et leur disponibilité  apportés chaque samedi.</p>\r\n<p style=\"text-align: justify;\">Pour moi,ce que j\'aime le plus c\'est bien ses histoires qui m\'amênent a penser positivement,ensuite il y a les exercises</p>\r\n<p style=\"text-align: justify;\">qui aident a calmer le mental et a controler le stress,c\'est bien.</p>\r\n<p style=\"text-align: justify;\">Mais tant qu\'aux exercises d\'accupressions pour les sinus ,j\'en vois pas d\'effet immédiat, c\'est probablement a long</p>\r\n<p style=\"text-align: justify;\">terme que l\'effet se fait sentir.</p>\r\n<p style=\"text-align: justify;\">Les nouveaux mouvements ou exercises sont les bienvenues ,j\'en suis certain, pour la pluparts des participants.</p>\r\n<p style=\"text-align: justify;\">Apres deux heures de participations la position a l\'horizontale (shawaseen)ou repos est très bien appréciée.</p>\r\n<p style=\"text-align: justify;\">C\'est durant le reste de la journée qu\'on sent une certaine fatigue et qu\'il faut récupérer,en un mot c\'est sûrement</p>\r\n<p style=\"text-align: justify;\">bénifique pour la santé.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Renald Couture</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">What would I do without Yoga? it has helped me to live a fulfilling life!</p>\r\n<p style=\"text-align: justify;\">When I was 12 years old, I was one day about to sit down on a kitchen chair when my brother took it away from underneath me. I fell had on my coccyx and thought nothing more of it, thinking that my pride was hurt more than my back. But by the age of 18 I started getting persistent backaches, and from then on I became a \'back sufferer\'. By the age of 30 I wasn\'t able to wash a kitchen floor or do an hour\'s gardening without a backache for the rest of the day, and few days after. I wasn\'t even sure I could have children with such a bad back, so I did a series of adjustments over a year and a half at a chiropractor\'s, and tried acupuncture. Both helped somewhat, but certainly did not cure my condition. I did have two children and a full time job teaching, but backaches became a fact of life, always there in the background.</p>\r\n<p style=\"text-align: justify;\">I came across Yoga in my middle 30\'s but never had enough time to pursue it diligently. It was only after I retired that I started doing it seriously, and I now wish I had allowed no excuses to not do it consistently earlier. I now do Yoga for an hour every day, following the type of Mr. Saxena\'s exercises on Saturday mornings, and take exercises out of books. I have never felt better! Today at 68 I feel better that I did at 30. I can now do gardening all day, shovel snow, wash floors, and walk good long walks with no consequent pain. The injury to my back is still there, but my back mussels are now strong enough to support me in my activities.</p>\r\n<p style=\"text-align: justify;\">Doing the exercises is only part of my Yoga practice. I am careful to eat only food that is nutritious for my body, and I try to keep as much as possible a positive outlook on life.</p>\r\n<p style=\"text-align: justify;\">Yoga is a lifestyle - it takes care of every aspect of one\'s being, and I intend to keep well and healthy to my dying day.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Mary Brunet</strong></span></p>\r\n<strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong>\r\n\r\n</div>\r\n</div>','Testimony from Participants','','inherit','closed','closed','','31-revision-v1','','','2013-07-09 20:22:40','2013-07-10 00:22:40','',31,'http://divyayogamonteregie.org/french/?p=575',0,'revision','',0),(577,1,'2013-10-08 20:56:45','2013-10-09 00:56:45','&nbsp;\r\n<ul>\r\n	<li>I was always blaming myself for everything that was wrong within my family.Guilt was always present.Since I have been doing yoga I realized I want to be responsible for myself.My adult children must take care of themselves.I realizes that even my children could be toxic to me and therefore I have to distant myself. I am greatful to yoga for being aware and to live in the moment.</li>\r\n</ul>\r\n- J.Smith\r\n<ul>\r\n	<li>Happiness is the state of mind. Material things do not make a person happy. Little things and action e.g. assisting or helping people, giving love &amp; affection,showing empathy &amp; compassion can change somebody\'s life----Anonymous</li>\r\n</ul>\r\n<ul>\r\n	<li>I think when we realize that we  are part of everything we become free and move forward.---Michel Sclafani</li>\r\n</ul>\r\n<ul>\r\n	<li>I read that in UK in certain Prisons yoga has been offered to Prisoners.All those who participated in the session felt the benefit not only physically but also mentally and spiritually.Yoga is beginning to be seen as a form of therapy that is beneficial to prisoners too.----- M. Brunet</li>\r\n	<li>This is my fourth session of Divya Yoga and I wish I had started long time ago.It is excellent for the body to keep fit and supple. ---Anonymous</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><strong> French</strong></span>\r\n<ul>\r\n	<li>Il  faut savoir pardonner et avoir la paix intérieure.</li>\r\n</ul>\r\nAnonyme\r\n<ul>\r\n	<li>  Le 27 juillet, j’ai participé à une session de yoga pour la paix au Parc Olympique de Montréal.  Il y avait 2,500 personnes le matin et 2,500 personnes l’après-midi (celui auquel j’ai participé), tous habillés de blanc.  Quelle énergie, quelle expérience! Ce fut fabuleux ! À recommencer chaque année!</li>\r\n</ul>\r\n<div>\r\n\r\n<b><span style=\"text-decoration: underline;\">Francine Hardy</span></b>\r\n\r\n</div>\r\n<ul>\r\n	<li> L’histoire que tout commence par nos pensées.  « Ce qui se produit dépend de moi. » Que j’ai un certain contrôle, à partir du moment que je le décide,  sur mes pensées et sur les gestes que je pose.  «Je pense donc je suis ».</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Richard Morion</span></b>\r\n<ul>\r\n	<li>  « Vivons intensément le présent, car l’avenir est incertain. » Ce qu’a dit mon défunt mari.   Rien n’est permanent dans ce monde.</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Maroeun</span></b>\r\n<ul>\r\n	<li>On ne peut pas être heureux dans la vie si on ne sait pas apprécier ce que l’on a.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>  Donnez et vous recevrez.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>    « Mon Dieu, donne moi le pouvoir de changer les choses que je puisse changer, d’accepter les choses que je ne puisse pas changer et la sagesse de faire la différence. »</li>\r\n</ul>\r\nLa prière de sérénité que j’ai découvert assez récemment et que j’essaie de la faire vivre chaque jour.\r\n\r\nJe suis touchée et très reconnaissante à notre professeur qui depuis plus de 3 (trois) ans n’a jamais manqué les samedi matin pour donner ce cours merveilleux.»\r\n\r\n<b><span style=\"text-decoration: underline;\">Mariana Gaubie</span></b>\r\n<ul>\r\n	<li>       « L’histoire » qui m’a le plus touchée est définitivement celle où M. Saxena demandait au groupe qui voulait un 20$, sans condition, un 20$ tout neuf, sans pli. Je crois qu’une dizaine / quinzaine de personnes ont alors levé leur main.  Il a alors froissé le 20$ et reposé la même question au groupe.  Je crois qu’alors nous avons été seulement 2 ou 3 à lever notre main.  M. Saxena a alors dit : « c’est le même 20$, il a la même valeur et je vous l’offre sans condition ».  Seulement une personne de plus a levé la main. ….</li>\r\n</ul>\r\nPeu importe ce que les gens nous font, les mauvais « événements» qui nous arrivent, nous sommes les mêmes personnes.  Nous n’avons pas moins de valeur...\r\n\r\nCette histoire m’a beaucoup aidé et continuera de m’aider tout au long de ma vie. C’est un exemple qui a marqué mon imaginaire et auquel je peux me référer pour m’aider au besoin.  J’aime beaucoup ce genre d’histoire que M. Saxena nous raconte.\r\n\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li> Il y a des situations qui arrivent parfois dans la vie qui ne sont pas toujours facile à vivre.  Mais on doit continuer à avancer sans se retourner en arrière.  Dans mon cas j’ai pris la décision d’avancer et de continuer à évoluer tout en respectant les limites de mon corps et de mes pensées.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<h1><span style=\"text-decoration: underline;\"><strong> </strong></span></h1>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Partageons','','inherit','closed','closed','','33-revision-v1','','','2013-10-08 20:56:45','2013-10-09 00:56:45','',33,'http://divyayogamonteregie.org/french/?p=577',0,'revision','',0),(578,1,'2013-10-08 20:58:37','2013-10-09 00:58:37','<p style=\"text-align: justify;\">These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.</p>\r\n<p style=\"text-align: justify;\">These stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution</p>','Histoires','','inherit','closed','closed','','79-revision-v1','','','2013-10-08 20:58:37','2013-10-09 00:58:37','',79,'http://divyayogamonteregie.org/french/?p=578',0,'revision','',0),(579,1,'2013-10-08 20:59:30','2013-10-09 00:59:30','<p style=\"text-align: justify;\">These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards happiness, success and achieving our goals.</p>\r\n<p style=\"text-align: justify;\">These poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.</p>','Poèmes','','inherit','closed','closed','','39-revision-v1','','','2013-10-08 20:59:30','2013-10-09 00:59:30','',39,'http://divyayogamonteregie.org/french/?p=579',0,'revision','',0),(580,1,'2013-10-08 21:02:14','2013-10-09 01:02:14','Coming soon','galerie photos - publicités','','inherit','closed','closed','','35-revision-v1','','','2013-10-08 21:02:14','2013-10-09 01:02:14','',35,'http://divyayogamonteregie.org/french/?p=580',0,'revision','',0),(581,1,'2013-10-08 21:12:27','2013-10-09 01:12:27','<b>Ce que nous faisons !</b>\r\n\r\nChaque Samedi matin de  9.00 à 11.00  , nous participons à la session – une série d’exercices physiques et respiratoires dans le but de rendre notre corps flexible .  Nous prenons soin de notre corps, esprit et âme avec des paroles  de sagesse , des affirmations positives, des histoires de sagesse, des poèmes de motivation, des prières et nos mantras. Le Yoga est un mode de vie complet.\r\n\r\nChaque dernier Samedi du mois nous avons un conférencier de 11.00 à 11.45 et par la suite nous mangeons ensemble. Les aliments sont fournis par la Fondation familiale Vinesh Saxena, Meera  prépare pour nous d’incroyables mets Indiens, et si vous désirez partager avec nous un petit plat vous êtes bienvenue.\r\n\r\nSi c’est votre premier jour, veuillez arriver plus tôt à 8.30 matin pour prendre le temps de remplir une feuille d’information. Mihaela sera heureuse de vous rencontrer.\r\n\r\nConséquemment veuillez arriver  10-15 minutes plus tôt dans le but d’avoir le temps d’installer votre matelas etc… pour que nous puissions débuter dès 9.00 du matin\r\n\r\nVeuillez lire ci-bas une courte description d’exercices que nous pratiquons chaque Samedi.\r\n\r\n&nbsp;\r\n<ol>\r\n	<li><b>Mise en forme- </b> une série de  12-15 exercices pour réchauffer le corps: c’est-à-dire plier les genoux, plier devant, plier derrière, plier à gauche, étirement des épaules, sauter, bouger les mains, plier le genou droit, plier le genou gauche, jumping jack, secouez votre corps, position de descente/remontée du chien etc…</li>\r\n	<li><b>Salutation</b> <b>du soleil</b>– Surya Namaskar, une série fluide de 12 postures qui développent la force et la flexibilité des muscles et de la colonne vertébrale. Ces postures aussi réchauffent le corps et renforcissent les muscles abdominaux.</li>\r\n	<li><b>Discours motivant</b> – notre professeur  Vinesh Saxena partage avec nous des histoires de sagesse et des conseils pratiques pour une vie heureuse, en santé, motivante, et épanouie.</li>\r\n	<li><b>Acu-pression</b> (technique de médecine alternative qui provient de l’acupuncture) appuyer en faisant une rotation sur le bout de chacun de vos doigts pour soulager les problèmes de sinus,  au milieu de la paume de votre main pour les problèmes de rein et sous votre pouce pour le bien-être de la thyroïde.</li>\r\n	<li><b>Exercices pour les yeux et le cou</b>– nous prenons soin de chaque partie du corps. Yeux: déplacer les yeux vers la droite, gauche, en haut et en bas ; les rouler dans le sens des aiguilles d’une horloge, puis en sens inverse. Étirer le bras droit devant vous, pouce vers le haut, fixer le pouce tout en emmenant votre main vers votre nez puis emmener-la plus loin. Allonger les deux bras devant, le regard au milieu sur les pouces. Séparer, déplacer les bras vers l’extérieur tant que vous les voyez encore, restez dans cette position 30 secondes, remmener les bras ensemble.<b>     </b>\r\nCou: pencher à gauche, pencher à droite, devant et  vers l’arrière, rotation dans le sens des aiguilles d’une horloge, puis en sens inverse, regarder à droite et regarder à gauche.</li>\r\n	<li><b>Sept Pranayamas  </b>(exercices de respiration) Lorsque nous faisons du yoga 75% des bienfaits proviennent des exercices de respiration et 25% des asanas. Nous incluons  7 exercices de respiration Durant notre pratique: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(position des doigts) – sont utilisées en même temps que le pranayama, habituellement lorsque nous sommes assis , pour stimuler différentes parties de notre corps avec des respirations et pour influencer le courant de prana dans notre corps.</li>\r\n	<li><b>100 postures, exercices et asanas</b> – grâce à ceux-ci nous développons la flexibilité de la tête jusqu’aux orteils. Nous faisons aussi des exercices d<b>’étirement </b>pour aider<b> </b>notre corps à stimuler le système lymphatique, concentrer sur des points clés de notre corps y compris la région de la  tête et du cou, épaules,  doigts,  bras, abdomen, hanches, genoux et pieds.\r\nNous faisons des exercices pour soulager l’arthrite, le diabète, maladie du coeur, cholestérol, douleurs du dos, insomnie etc…</li>\r\n	<li><b>Yoga du rire </b>– avec Meera – une idée révolutionnaire – simple et profonde. Inventé par  Dr. Madan Kataria, un physicien de  Mumbai. Aujourd’hui, c’est devenu un phénomène dans le monde entier avec plus  6000 Clubs Sociaux du rire dans environ 60 pays. Nous combinons le Rire Inconditionnel avec le Prayanama. Le concept du Yoga du Rire est basé sur le fait scientifique que le corps ne peut pas différencier le rire simulé du vrai rire. L’on obtient les mêmes résultats bénéfiques  physiologiques et psychologiques. Nous faisons aussi le <b>Yoga du super cerveau </b> pour stimuler les cellules du cerveau et améliorer la mémoire. Cette forme de yoga a été inventé par un médecin de la  Virginie et est très populaire parmi la communauté médicale.</li>\r\n	<li><b>Shavasana </b>– Après la session de yoga, allongé sur le dos sur le matelas: Shavasana permet au corps  de se remettre au neutre et de se réinitialer.  Suite à une pratique équilibrée, le corps a été étiré, contracté, tourné et inversé . Le corps, l’esprit et l’âme reçoivent un repos complet, de l’énergie, de la motivation et  du bonheur.</li>\r\n	<li><b>Poème motivant</b> –  est lu à la fin de la session pour nous garder motivés, concentrés et recharger nos batteries.</li>\r\n	<li><b>Mantra</b> – à la fin nous répétons notre mantra et reconnaissons notre mantra – CE QUI SERA CELA DÉPEND DE MOI.</li>\r\n</ol>\r\n<p align=\"center\"><b>Nous vous invitons à nous rejoindre tous les Samedis matin de 9.00 à 11.00 </b>\r\n<b>à  Chambly Academy 675 rue Green, St-Lambert, QC, J4P 1V9</b></p>','Ce que nous faisons!','','inherit','closed','closed','','12-autosave-v1','','','2013-10-08 21:12:27','2013-10-09 01:12:27','',12,'http://divyayogamonteregie.org/french/?p=581',0,'revision','',0),(616,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','616','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=616',39,'nav_menu_item','',0),(617,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','617','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=617',40,'nav_menu_item','',0),(618,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','618','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=618',41,'nav_menu_item','',0),(619,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','619','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=619',42,'nav_menu_item','',0),(620,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','620','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=620',43,'nav_menu_item','',0),(621,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','621','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=621',44,'nav_menu_item','',0),(622,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','622','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=622',45,'nav_menu_item','',0),(623,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','623','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=623',46,'nav_menu_item','',0),(624,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','624','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=624',47,'nav_menu_item','',0),(625,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','625','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=625',48,'nav_menu_item','',0),(626,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','626','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=626',49,'nav_menu_item','',0),(627,1,'2013-10-10 22:22:33','2013-10-11 02:22:33',' ','','','publish','closed','closed','','627','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=627',50,'nav_menu_item','',0),(628,1,'2013-10-10 22:32:27','2013-10-11 02:32:27',' ','','','publish','closed','closed','','628','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',190,'http://divyayogamonteregie.org/french/?p=628',54,'nav_menu_item','',0),(629,1,'2013-10-10 22:32:27','2013-10-11 02:32:27',' ','','','publish','closed','closed','','629','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',190,'http://divyayogamonteregie.org/french/?p=629',55,'nav_menu_item','',0),(630,1,'2013-10-10 22:32:27','2013-10-11 02:32:27','',' Urad ou lentilles blanches a l\'aneth et gingembra.','','publish','closed','closed','','urad-ou-lentilles-blanches-a-laneth-et-gingembra','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',190,'http://divyayogamonteregie.org/french/?p=630',56,'nav_menu_item','',0),(631,1,'2013-10-10 22:32:27','2013-10-11 02:32:27',' ','','','publish','closed','closed','','631','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',190,'http://divyayogamonteregie.org/french/?p=631',57,'nav_menu_item','',0),(632,1,'2013-10-10 22:32:27','2013-10-11 02:32:27',' ','','','publish','closed','closed','','632','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',190,'http://divyayogamonteregie.org/french/?p=632',58,'nav_menu_item','',0),(633,1,'2013-10-10 22:32:27','2013-10-11 02:32:27',' ','','','publish','closed','closed','','633','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',190,'http://divyayogamonteregie.org/french/?p=633',59,'nav_menu_item','',0),(634,1,'2013-10-10 22:32:28','2013-10-11 02:32:28',' ','','','publish','closed','closed','','634','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',190,'http://divyayogamonteregie.org/french/?p=634',60,'nav_menu_item','',0),(635,1,'2013-10-10 22:32:28','2013-10-11 02:32:28',' ','','','publish','closed','closed','','635','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',190,'http://divyayogamonteregie.org/french/?p=635',62,'nav_menu_item','',0),(641,1,'2013-10-19 21:16:32','2013-10-20 01:16:32','','Seulement qu\'un','','publish','closed','closed','','seulement-quun','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=641',25,'nav_menu_item','',0),(642,1,'2013-10-19 21:16:32','2013-10-20 01:16:32',' ','','','publish','closed','closed','','642','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=642',23,'nav_menu_item','',0),(652,1,'2013-12-04 21:25:51','2013-12-05 02:25:51',' ','','','publish','closed','closed','','652','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',79,'http://divyayogamonteregie.org/french/?p=652',51,'nav_menu_item','',0),(644,1,'2013-10-19 21:16:32','2013-10-20 01:16:32',' ','','','publish','closed','closed','','644','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=644',24,'nav_menu_item','',0),(645,1,'2013-10-19 21:16:32','2013-10-20 01:16:32',' ','','','publish','closed','closed','','645','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',39,'http://divyayogamonteregie.org/french/?p=645',11,'nav_menu_item','',0),(664,1,'2014-02-11 20:38:51','2014-02-12 01:38:51','','20131229_074557','','inherit','closed','closed','','20131229_074557','','','2014-02-11 20:38:51','2014-02-12 01:38:51','',35,'http://divyayogamonteregie.org/french/wp-content/uploads/2013/05/20131229_074557.jpg',0,'attachment','image/jpeg',0),(648,1,'2013-12-04 21:17:14','2013-12-05 02:17:14','<!--[if !mso]>\r\n\r\n<style>\r\nv\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]--><!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><b style=\"mso-bidi-font-weight: normal;\"></b><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Parfois, cela semble idiot ou frustrant de penser positivement lorsque cela va </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">vraiment mal et qu’il y a des gens qui font en sorte de vous rendre la vie encore </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">plus difficile, n’est-ce-pas ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Mais dites-moi, si demain matin je vous téléphone pendant que vous êtes encore </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">au lit et que je vous dis : « Tu es un ange pour moi et je suis béni d’avoir une </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">aussi bonne personne dans ma vie. Que Dieu te bénisse ». </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Comme vous sentiriez-vous ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Est-ce que cela produirait une bonne impression et serait une bonne approche </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">pour débuter une journée formidable ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Le lendemain matin, je vous téléphone à nouveau pour dire cette fois-ci : «Toi, le </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">vaurien, tu es la personne la plus imbécile et idiote que je n’ai jamais rencontré </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">sur la terre. Tu m’as eu et tu vas te faire avoir à ton tour. Etc.» </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Comment vous sentiriez-vous maintenant ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Bien entendu, ce serait une journée frustrante avec de mauvaises impressions </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">puisque vous auriez entendu toutes ces bêtises pendant que vous étiez encore </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">au lit. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Maintenant répondez à ma questions : Qui contrôle votre vie ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Est-ce que je suis supposé contrôler votre vie ? Est-ce exact ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Lorsque je dis du bien de vous, vous devriez être une bonne personne, et vice- versa ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Non, vous êtes le maître de votre propre vie ! </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\"> </span></p>\r\n&nbsp;','Qui est responsable de votre vie ? ','','publish','closed','closed','','qui-est-responsable-de-votre-vie','','','2013-12-04 21:26:38','2013-12-05 02:26:38','',79,'http://divyayogamonteregie.org/french/?page_id=648',0,'page','',0),(654,1,'2013-12-04 21:26:38','2013-12-05 02:26:38','<!--[if !mso]>\r\n\r\n<style>\r\nv\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]--><!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\nDefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\nLatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\nUnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;}\r\n</style>< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><b style=\"mso-bidi-font-weight: normal;\"></b><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Parfois, cela semble idiot ou frustrant de penser positivement lorsque cela va </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">vraiment mal et qu’il y a des gens qui font en sorte de vous rendre la vie encore </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">plus difficile, n’est-ce-pas ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Mais dites-moi, si demain matin je vous téléphone pendant que vous êtes encore </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">au lit et que je vous dis : « Tu es un ange pour moi et je suis béni d’avoir une </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">aussi bonne personne dans ma vie. Que Dieu te bénisse ». </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Comme vous sentiriez-vous ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Est-ce que cela produirait une bonne impression et serait une bonne approche </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">pour débuter une journée formidable ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Le lendemain matin, je vous téléphone à nouveau pour dire cette fois-ci : «Toi, le </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">vaurien, tu es la personne la plus imbécile et idiote que je n’ai jamais rencontré </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">sur la terre. Tu m’as eu et tu vas te faire avoir à ton tour. Etc.» </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Comment vous sentiriez-vous maintenant ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Bien entendu, ce serait une journée frustrante avec de mauvaises impressions </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">puisque vous auriez entendu toutes ces bêtises pendant que vous étiez encore </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">au lit. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Maintenant répondez à ma questions : Qui contrôle votre vie ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Est-ce que je suis supposé contrôler votre vie ? Est-ce exact ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Lorsque je dis du bien de vous, vous devriez être une bonne personne, et vice- versa ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Non, vous êtes le maître de votre propre vie ! </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\"> </span></p>\r\n&nbsp;','Qui est responsable de votre vie ? ','','inherit','closed','closed','','648-revision-v1','','','2013-12-04 21:26:38','2013-12-05 02:26:38','',648,'http://divyayogamonteregie.org/french/?p=654',0,'revision','',0),(649,1,'2013-12-04 21:17:14','2013-12-05 02:17:14','<!--[if !mso]>\r\n<style>\r\nv\\:* {behavior:url(#default#VML);}\r\no\\:* {behavior:url(#default#VML);}\r\nw\\:* {behavior:url(#default#VML);}\r\n.shape {behavior:url(#default#VML);}\r\n</style>\r\n< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]--><!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;}\r\n</style>\r\n< ![endif]-->\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><b style=\"mso-bidi-font-weight: normal;\"></b><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Parfois, cela semble idiot ou frustrant de penser positivement lorsque cela va </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">vraiment mal et qu’il y a des gens qui font en sorte de vous rendre la vie encore </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">plus difficile, n’est-ce-pas ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Mais dites-moi, si demain matin je vous téléphone pendant que vous êtes encore </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">au lit et que je vous dis : « Tu es un ange pour moi et je suis béni d’avoir une </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">aussi bonne personne dans ma vie. Que Dieu te bénisse ». </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Comme vous sentiriez-vous ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Est-ce que cela produirait une bonne impression et serait une bonne approche </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">pour débuter une journée formidable ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Le lendemain matin, je vous téléphone à nouveau pour dire cette fois-ci : «Toi, le </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">vaurien, tu es la personne la plus imbécile et idiote que je n’ai jamais rencontré </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">sur la terre. Tu m’as eu et tu vas te faire avoir à ton tour. Etc.» </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Comment vous sentiriez-vous maintenant ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Bien entendu, ce serait une journée frustrante avec de mauvaises impressions </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">puisque vous auriez entendu toutes ces bêtises pendant que vous étiez encore </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">au lit. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Maintenant répondez à ma questions : Qui contrôle votre vie ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Est-ce que je suis supposé contrôler votre vie ? Est-ce exact ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Lorsque je dis du bien de vous, vous devriez être une bonne personne, et vice- versa ? </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Non, vous êtes le maître de votre propre vie ! </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\"><img class=\"aLF-aPX-aPF-aPE-J3\" id=\"gbqfq\" alt=\"Page 1\" src=\"file:///C:\\DOCUME~1\\MEERAT~1\\LOCALS~1\\Temp\\msohtmlclip1\\04\\clip_image001.gif\" width=\"32\" height=\"32\" /></span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Des funérailles intéressantes </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Un jour, tous les employés d’une entreprise marginale ont vu une grande affiche </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">dans l’entrée principale disant ceci : </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">« La personne qui a entravé votre progression au sein de la compagnie </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">est décédée hier. Nous vous invitons à vous joindre aux funérailles qui se </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">dérouleront dans la salle préparée à cet effet dans le gymnase ». </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Au début, tout le monde était attristé de la mort de l’un des leurs, mais après un </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">laps de temps les gens étaient curieux de savoir qui était la personne qui avait </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">nui à la promotion de leurs collègues et à la croissance de la compagnie. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">L’excitation au gymnase était tel qu’on avait embauché des agents de sécurité </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">pour contrôler la foule dans la salle. Plus les gens approchaient du cercueil, </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">plus on sentait monter la fébrilité. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Tout le monde se disait- « Qui est cette personne qui m’a empêché de </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">progresser ? » </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Chacun à leur tour, les employés intrigués s’approchaient du cercueil, et </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">lorsqu’ils regardaient à l’intérieur, ils devenaient soudainement sans voix. Ils </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">sont tous restés debout près du cercueil en silence , bouleversés, comme si </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">quelqu’un avait atteint la partie la plus profonde de leur âme. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Il y avait un miroir à l’intérieur du cercueil : toutes les personnes qui regardaient à </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">l’intérieur se voyaient elles-mêmes. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Il y avait aussi un écriteau près du miroir qui disait :Il y a seulement une </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">personne capable de mettre des limites à votre progression et c’est vous-même ! </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Votre vie ne change pas lorsque votre patron change, lorsque vos amis </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">changent, vos parents changent, lorsque votre mari ou femme change, lorsque </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">vous changez de compagnie, vous changez d’église, vous déménagez, votre </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">argent fluctue, votre statut social change. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Non, votre vie change lorsque vous changez, lorsque vous allez au-delà de ce </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">que vous croyez être vos limites. Examinez-vous, observez-vous. N’ayez pas </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">peur des difficultés, des impossibilités et des pertes. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Soyez un gagnant, construisez-vous et construisez votre réalité. C’est la façon </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">dont vous vous entrevoyez la vie qui fait toute la différence. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Il y a quelques années, un étudiant universitaire qui travaillait fort pour bâtir sa </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">carrière s’est présenté à son examen professionnel. Il a essayé de faire son </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">premier test parfaitement mais en imaginant qu’il l’avait mal rédigé. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Gardant cette attitude, il a perdu sa concentration pour le reste de l’examen et </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">n’a pas bien écrit sur les autres sujets. Plus tard, les résultats sont apparus </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">indiquant qu’il avait obtenu parmi les meilleures notes de l’université pour </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">l’article qu’il croyait avoir mal écrit mais qu’il avait échoué les autres sujets. </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: .0001pt; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Pourquoi cela s’était produit ? La raison est simple : un manque de confiance en </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">lui-même. </span></p>','Qui est responsable de votre vie ? ','','inherit','closed','closed','','648-revision-v1','','','2013-12-04 21:17:14','2013-12-05 02:17:14','',648,'http://divyayogamonteregie.org/french/?p=649',0,'revision','',0),(650,1,'2013-12-04 21:19:27','2013-12-05 02:19:27','<b><span style=\"text-decoration: underline;\">Des funérailles intéressantes </span></b>\r\n\r\nUn jour, tous les employés d’une entreprise marginale ont vu une grande affiche\r\n\r\ndans l’entrée principale disant ceci :\r\n\r\n« La personne qui a entravé votre progression au sein de la compagnie\r\n\r\nest décédée hier. Nous vous invitons à vous joindre aux funérailles qui se\r\n\r\ndérouleront dans la salle préparée à cet effet dans le gymnase ».\r\n\r\nAu début, tout le monde était attristé de la mort de l’un des leurs, mais après un\r\n\r\nlaps de temps les gens étaient curieux de savoir qui était la personne qui avait\r\n\r\nnui à la promotion de leurs collègues et à la croissance de la compagnie.\r\n\r\nL’excitation au gymnase était tel qu’on avait embauché des agents de sécurité\r\n\r\npour contrôler la foule dans la salle. Plus les gens approchaient du cercueil,\r\n\r\nplus on sentait monter la fébrilité.\r\n\r\nTout le monde se disait- « Qui est cette personne qui m’a empêché de\r\n\r\nprogresser ? »\r\n\r\nChacun à leur tour, les employés intrigués s’approchaient du cercueil, et\r\n\r\nlorsqu’ils regardaient à l’intérieur, ils devenaient soudainement sans voix. Ils\r\n\r\nsont tous restés debout près du cercueil en silence , bouleversés, comme si\r\n\r\nquelqu’un avait atteint la partie la plus profonde de leur âme.\r\n\r\nIl y avait un miroir à l’intérieur du cercueil : toutes les personnes qui regardaient à\r\n\r\nl’intérieur se voyaient elles-mêmes.\r\n\r\nIl y avait aussi un écriteau près du miroir qui disait :Il y a seulement une\r\n\r\npersonne capable de mettre des limites à votre progression et c’est vous-même !\r\n\r\nVotre vie ne change pas lorsque votre patron change, lorsque vos amis\r\n\r\nchangent, vos parents changent, lorsque votre mari ou femme change, lorsque\r\n\r\nvous changez de compagnie, vous changez d’église, vous déménagez, votre\r\n\r\nargent fluctue, votre statut social change.\r\n\r\nNon, votre vie change lorsque vous changez, lorsque vous allez au-delà de ce\r\n\r\nque vous croyez être vos limites. Examinez-vous, observez-vous. N’ayez pas\r\n\r\npeur des difficultés, des impossibilités et des pertes.\r\n\r\nSoyez un gagnant, construisez-vous et construisez votre réalité. C’est la façon\r\n\r\ndont vous vous entrevoyez la vie qui fait toute la différence.\r\n\r\nIl y a quelques années, un étudiant universitaire qui travaillait fort pour bâtir sa\r\n\r\ncarrière s’est présenté à son examen professionnel. Il a essayé de faire son\r\n\r\npremier test parfaitement mais en imaginant qu’il l’avait mal rédigé.\r\n\r\nGardant cette attitude, il a perdu sa concentration pour le reste de l’examen et\r\n\r\nn’a pas bien écrit sur les autres sujets. Plus tard, les résultats sont apparus\r\n\r\nindiquant qu’il avait obtenu parmi les meilleures notes de l’université pour\r\n\r\nl’article qu’il croyait avoir mal écrit mais qu’il avait échoué les autres sujets.\r\n\r\n&nbsp;\r\n\r\nPourquoi cela s’était produit ? La raison est simple : un manque de confiance en\r\n\r\nlui-même.\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->','Des funérailles intéressantes ','','publish','closed','closed','','des-funerailles-interessantes','','','2013-12-04 21:32:48','2013-12-05 02:32:48','',79,'http://divyayogamonteregie.org/french/?page_id=650',0,'page','',0),(657,1,'2013-12-04 21:31:13','2013-12-05 02:31:13','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->','Des funérailles intéressantes ','','inherit','closed','closed','','650-revision-v1','','','2013-12-04 21:31:13','2013-12-05 02:31:13','',650,'http://divyayogamonteregie.org/french/?p=657',0,'revision','',0),(656,1,'2013-12-04 21:29:25','2013-12-05 02:29:25','<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"267\">\r\n<w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n<w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n</w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n\r\n<style>\r\n /* Style Definitions */\r\ntable.MsoNormalTable\r\n{mso-style-name:\"Table Normal\";\r\nmso-tstyle-rowband-size:0;\r\nmso-tstyle-colband-size:0;\r\nmso-style-noshow:yes;\r\nmso-style-priority:99;\r\nmso-style-qformat:yes;\r\nmso-style-parent:\"\";\r\nmso-padding-alt:0in 5.4pt 0in 5.4pt;\r\nmso-para-margin-top:0in;\r\nmso-para-margin-right:0in;\r\nmso-para-margin-bottom:10.0pt;\r\nmso-para-margin-left:0in;\r\nline-height:115%;\r\nmso-pagination:widow-orphan;\r\nfont-size:11.0pt;\r\nfont-family:\"Calibri\",\"sans-serif\";\r\nmso-ascii-font-family:Calibri;\r\nmso-ascii-theme-font:minor-latin;\r\nmso-fareast-font-family:\"Times New Roman\";\r\nmso-fareast-theme-font:minor-fareast;\r\nmso-hansi-font-family:Calibri;\r\nmso-hansi-theme-font:minor-latin;}\r\n</style>< ![endif]--><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\"><br style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\" /></span>','Des funérailles intéressantes ','','inherit','closed','closed','','650-revision-v1','','','2013-12-04 21:29:25','2013-12-05 02:29:25','',650,'http://divyayogamonteregie.org/french/?p=656',0,'revision','',0),(651,1,'2013-12-04 21:19:27','2013-12-05 02:19:27','<!--[if gte mso 9]><xml>\r\n <w:worddocument>\r\n  <w:view>Normal</w:view>\r\n  <w:zoom>0</w:zoom>\r\n  <w:trackmoves></w:trackmoves>\r\n  <w:trackformatting></w:trackformatting>\r\n  <w:punctuationkerning></w:punctuationkerning>\r\n  <w:validateagainstschemas></w:validateagainstschemas>\r\n  <w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n  <w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n  <w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n  <w:donotpromoteqf></w:donotpromoteqf>\r\n  <w:lidthemeother>EN-US</w:lidthemeother>\r\n  <w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n  <w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n  <w:compatibility>\r\n   <w:breakwrappedtables></w:breakwrappedtables>\r\n   <w:snaptogridincell></w:snaptogridincell>\r\n   <w:wraptextwithpunct></w:wraptextwithpunct>\r\n   <w:useasianbreakrules></w:useasianbreakrules>\r\n   <w:dontgrowautofit></w:dontgrowautofit>\r\n   <w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n   <w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n   <w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n   <w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n   <w:word11kerningpairs></w:word11kerningpairs>\r\n   <w:cachedcolbalance></w:cachedcolbalance>\r\n  </w:compatibility>\r\n  <w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n  <m:mathpr>\r\n   <m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n   <m:brkbin m:val=\"before\"></m:brkbin>\r\n   <m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n   <m:smallfrac m:val=\"off\"></m:smallfrac>\r\n   <m:dispdef></m:dispdef>\r\n   <m:lmargin m:val=\"0\"></m:lmargin>\r\n   <m:rmargin m:val=\"0\"></m:rmargin>\r\n   <m:defjc m:val=\"centerGroup\"></m:defjc>\r\n   <m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n   <m:intlim m:val=\"subSup\"></m:intlim>\r\n   <m:narylim m:val=\"undOvr\"></m:narylim>\r\n  </m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->\r\n\r\n<!--[if gte mso 9]><xml>\r\n <w:latentstyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\"\r\n  DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\"\r\n  LatentStyleCount=\"267\">\r\n  <w:lsdexception Locked=\"false\" Priority=\"0\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"9\" QFormat=\"true\" Name=\"heading 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 7\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 8\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" Name=\"toc 9\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"35\" QFormat=\"true\" Name=\"caption\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"10\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" Name=\"Default Paragraph Font\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"11\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"22\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"20\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"59\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Table Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Placeholder Text\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"1\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"No Spacing\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" UnhideWhenUsed=\"false\" Name=\"Revision\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"34\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"List Paragraph\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"29\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"30\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Quote\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"60\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"61\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"62\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"63\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"64\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"65\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"66\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"67\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"68\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"69\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"70\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"71\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"72\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"73\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"19\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"21\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Emphasis\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"31\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtle Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"32\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Intense Reference\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"33\" SemiHidden=\"false\"\r\n   UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Book Title\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"37\" Name=\"Bibliography\"></w:lsdexception>\r\n  <w:lsdexception Locked=\"false\" Priority=\"39\" QFormat=\"true\" Name=\"TOC Heading\"></w:lsdexception>\r\n </w:latentstyles>\r\n</xml>< ![endif]--><!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Table Normal\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-priority:99;\r\n	mso-style-qformat:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0in 5.4pt 0in 5.4pt;\r\n	mso-para-margin-top:0in;\r\n	mso-para-margin-right:0in;\r\n	mso-para-margin-bottom:10.0pt;\r\n	mso-para-margin-left:0in;\r\n	line-height:115%;\r\n	mso-pagination:widow-orphan;\r\n	font-size:11.0pt;\r\n	font-family:\"Calibri\",\"sans-serif\";\r\n	mso-ascii-font-family:Calibri;\r\n	mso-ascii-theme-font:minor-latin;\r\n	mso-fareast-font-family:\"Times New Roman\";\r\n	mso-fareast-theme-font:minor-fareast;\r\n	mso-hansi-font-family:Calibri;\r\n	mso-hansi-theme-font:minor-latin;}\r\n</style>\r\n< ![endif]--><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Un jour, tous les employés d’une entreprise marginale ont vu une grande affiche </span>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">dans l’entrée principale disant ceci : </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">« La personne qui a entravé votre progression au sein de la compagnie </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">est décédée hier. Nous vous invitons à vous joindre aux funérailles qui se </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">dérouleront dans la salle préparée à cet effet dans le gymnase ». </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Au début, tout le monde était attristé de la mort de l’un des leurs, mais après un </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">laps de temps les gens étaient curieux de savoir qui était la personne qui avait </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">nui à la promotion de leurs collègues et à la croissance de la compagnie. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">L’excitation au gymnase était tel qu’on avait embauché des agents de sécurité </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">pour contrôler la foule dans la salle. Plus les gens approchaient du cercueil, </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">plus on sentait monter la fébrilité. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Tout le monde se disait- « Qui est cette personne qui m’a empêché de </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">progresser ? » </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Chacun à leur tour, les employés intrigués s’approchaient du cercueil, et </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">lorsqu’ils regardaient à l’intérieur, ils devenaient soudainement sans voix. Ils </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">sont tous restés debout près du cercueil en silence , bouleversés, comme si </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">quelqu’un avait atteint la partie la plus profonde de leur âme. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Il y avait un miroir à l’intérieur du cercueil : toutes les personnes qui regardaient à </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">l’intérieur se voyaient elles-mêmes. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Il y avait aussi un écriteau près du miroir qui disait :Il y a seulement une </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">personne capable de mettre des limites à votre progression et c’est vous-même ! </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Votre vie ne change pas lorsque votre patron change, lorsque vos amis </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">changent, vos parents changent, lorsque votre mari ou femme change, lorsque </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">vous changez de compagnie, vous changez d’église, vous déménagez, votre </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">argent fluctue, votre statut social change. </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">Non, votre vie change lorsque vous changez, lorsque vous allez au-delà de ce </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">que vous croyez être vos limites. Examinez-vous, observez-vous. N’ayez pas </span></p>\r\n<p class=\"MsoNormal\" style=\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',\'serif\'; mso-fareast-font-family: \'Times New Roman\';\">peur des difficultés, des impossibilités et des pertes. </span></p>','Des funérailles intéressantes ','','inherit','closed','closed','','650-revision-v1','','','2013-12-04 21:19:27','2013-12-05 02:19:27','',650,'http://divyayogamonteregie.org/french/?p=651',0,'revision','',0),(658,1,'2013-12-04 21:32:12','2013-12-05 02:32:12','<b><span style=\"text-decoration: underline;\">Des funérailles intéressantes </span></b>\r\n\r\nUn jour, tous les employés d’une entreprise marginale ont vu une grande affiche\r\n\r\ndans l’entrée principale disant ceci :\r\n\r\n« La personne qui a entravé votre progression au sein de la compagnie\r\n\r\nest décédée hier. Nous vous invitons à vous joindre aux funérailles qui se\r\n\r\ndérouleront dans la salle préparée à cet effet dans le gymnase ».\r\n\r\nAu début, tout le monde était attristé de la mort de l’un des leurs, mais après un\r\n\r\nlaps de temps les gens étaient curieux de savoir qui était la personne qui avait\r\n\r\nnui à la promotion de leurs collègues et à la croissance de la compagnie.\r\n\r\nL’excitation au gymnase était tel qu’on avait embauché des agents de sécurité\r\n\r\npour contrôler la foule dans la salle. Plus les gens approchaient du cercueil,\r\n\r\nplus on sentait monter la fébrilité.\r\n\r\nTout le monde se disait- « Qui est cette personne qui m’a empêché de\r\n\r\nprogresser ? »\r\n\r\nChacun à leur tour, les employés intrigués s’approchaient du cercueil, et\r\n\r\nlorsqu’ils regardaient à l’intérieur, ils devenaient soudainement sans voix. Ils\r\n\r\nsont tous restés debout près du cercueil en silence , bouleversés, comme si\r\n\r\nquelqu’un avait atteint la partie la plus profonde de leur âme.\r\n\r\nIl y avait un miroir à l’intérieur du cercueil : toutes les personnes qui regardaient à\r\n\r\nl’intérieur se voyaient elles-mêmes.\r\n\r\nIl y avait aussi un écriteau près du miroir qui disait :Il y a seulement une\r\n\r\npersonne capable de mettre des limites à votre progression et c’est vous-même !\r\n\r\nVotre vie ne change pas lorsque votre patron change, lorsque vos amis\r\n\r\nchangent, vos parents changent, lorsque votre mari ou femme change, lorsque\r\n\r\nvous changez de compagnie, vous changez d’église, vous déménagez, votre\r\n\r\nargent fluctue, votre statut social change.\r\n\r\nNon, votre vie change lorsque vous changez, lorsque vous allez au-delà de ce\r\n\r\nque vous croyez être vos limites. Examinez-vous, observez-vous. N’ayez pas\r\n\r\npeur des difficultés, des impossibilités et des pertes.\r\n\r\nSoyez un gagnant, construisez-vous et construisez votre réalité. C’est la façon\r\n\r\ndont vous vous entrevoyez la vie qui fait toute la différence.\r\n\r\nIl y a quelques années, un étudiant universitaire qui travaillait fort pour bâtir sa\r\n\r\ncarrière s’est présenté à son examen professionnel. Il a essayé de faire son\r\n\r\npremier test parfaitement mais en imaginant qu’il l’avait mal rédigé.\r\n\r\nGardant cette attitude, il a perdu sa concentration pour le reste de l’examen et\r\n\r\nn’a pas bien écrit sur les autres sujets. Plus tard, les résultats sont apparus\r\n\r\nindiquant qu’il avait obtenu parmi les meilleures notes de l’université pour\r\n\r\nl’article qu’il croyait avoir mal écrit mais qu’il avait échoué les autres sujets.\r\n\r\n&nbsp;\r\n\r\nPourquoi cela s’était produit ? La raison est simple : un manque de confiance en\r\n\r\nlui-même.\r\n\r\n<!--[if gte mso 9]><xml>\r\n<w:worddocument>\r\n<w:view>Normal</w:view>\r\n<w:zoom>0</w:zoom>\r\n<w:trackmoves></w:trackmoves>\r\n<w:trackformatting></w:trackformatting>\r\n<w:punctuationkerning></w:punctuationkerning>\r\n<w:validateagainstschemas></w:validateagainstschemas>\r\n<w:saveifxmlinvalid>false</w:saveifxmlinvalid>\r\n<w:ignoremixedcontent>false</w:ignoremixedcontent>\r\n<w:alwaysshowplaceholdertext>false</w:alwaysshowplaceholdertext>\r\n<w:donotpromoteqf></w:donotpromoteqf>\r\n<w:lidthemeother>EN-US</w:lidthemeother>\r\n<w:lidthemeasian>X-NONE</w:lidthemeasian>\r\n<w:lidthemecomplexscript>X-NONE</w:lidthemecomplexscript>\r\n<w:compatibility>\r\n<w:breakwrappedtables></w:breakwrappedtables>\r\n<w:snaptogridincell></w:snaptogridincell>\r\n<w:wraptextwithpunct></w:wraptextwithpunct>\r\n<w:useasianbreakrules></w:useasianbreakrules>\r\n<w:dontgrowautofit></w:dontgrowautofit>\r\n<w:splitpgbreakandparamark></w:splitpgbreakandparamark>\r\n<w:dontvertaligncellwithsp></w:dontvertaligncellwithsp>\r\n<w:dontbreakconstrainedforcedtables></w:dontbreakconstrainedforcedtables>\r\n<w:dontvertalignintxbx></w:dontvertalignintxbx>\r\n<w:word11kerningpairs></w:word11kerningpairs>\r\n<w:cachedcolbalance></w:cachedcolbalance>\r\n</w:compatibility>\r\n<w:browserlevel>MicrosoftInternetExplorer4</w:browserlevel>\r\n<m:mathpr>\r\n<m:mathfont m:val=\"Cambria Math\"></m:mathfont>\r\n<m:brkbin m:val=\"before\"></m:brkbin>\r\n<m:brkbinsub m:val=\"--\"></m:brkbinsub>\r\n<m:smallfrac m:val=\"off\"></m:smallfrac>\r\n<m:dispdef></m:dispdef>\r\n<m:lmargin m:val=\"0\"></m:lmargin>\r\n<m:rmargin m:val=\"0\"></m:rmargin>\r\n<m:defjc m:val=\"centerGroup\"></m:defjc>\r\n<m:wrapindent m:val=\"1440\"></m:wrapindent>\r\n<m:intlim m:val=\"subSup\"></m:intlim>\r\n<m:narylim m:val=\"undOvr\"></m:narylim>\r\n</m:mathpr></w:worddocument>\r\n</xml>< ![endif]-->','Des funérailles intéressantes ','','inherit','closed','closed','','650-revision-v1','','','2013-12-04 21:32:12','2013-12-05 02:32:12','',650,'http://divyayogamonteregie.org/french/?p=658',0,'revision','',0),(659,1,'2013-12-06 20:18:22','2013-12-07 01:18:22','Voir la link\r\n\r\n<a href=\"https://drive.google.com/file/d/0B1FLFC0zADNaSFl5VzQtRHBiQ3V3UVNxMW1jMy1SaHFMWnBV/view?usp=sharing\" target=\"_blank\">https://drive.google.com/file/<wbr></wbr>d/<wbr></wbr>0B1FLFC0zADNaSFl5VzQtRHBiQ3V3U<wbr></wbr>VNxMW1jMy1SaHFMWnBV/view?usp=<wbr></wbr>sharing</a>','Événements à venir :- Confrance 26 decembre 2015 avec Yoga Guru Dr. Bali','','publish','closed','closed','','evenements-a-venir','','','2015-12-21 18:18:11','2015-12-21 23:18:11','',0,'http://divyayogamonteregie.org/french/?page_id=659',0,'page','',0),(660,1,'2013-12-06 20:18:22','2013-12-07 01:18:22',' ','','','publish','closed','closed','','660','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=660',64,'nav_menu_item','',0),(661,1,'2013-12-06 20:18:22','2013-12-07 01:18:22','','Événements à venir','','inherit','closed','closed','','659-revision-v1','','','2013-12-06 20:18:22','2013-12-07 01:18:22','',659,'http://divyayogamonteregie.org/french/?p=661',0,'revision','',0),(662,1,'2013-12-06 20:19:16','2013-12-07 01:19:16',' ','','','publish','closed','closed','','662','','','2013-12-06 20:19:16','2013-12-07 01:19:16','',0,'http://divyayogamonteregie.org/french/?p=662',6,'nav_menu_item','',0),(665,1,'2014-02-11 20:41:10','2014-02-12 01:41:10','','20131229_075932','','inherit','closed','closed','','20131229_075932','','','2014-02-11 20:41:10','2014-02-12 01:41:10','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2014/02/20131229_075932.jpg',0,'attachment','image/jpeg',0),(666,1,'2014-02-11 20:43:25','2014-02-12 01:43:25','','Comitee','','inherit','closed','closed','','comitee','','','2014-02-11 20:43:25','2014-02-12 01:43:25','',0,'http://divyayogamonteregie.org/french/wp-content/uploads/2014/02/Comitee.jpg',0,'attachment','image/jpeg',0),(669,1,'2014-03-29 18:22:05','0000-00-00 00:00:00','Bientot','Upma ','','draft','closed','closed','','','','','2014-03-29 18:22:05','2014-03-29 22:22:05','',190,'http://divyayogamonteregie.org/french/?page_id=669',0,'page','',0),(670,1,'2014-03-29 18:22:05','2014-03-29 22:22:05','Bientot','Upma ','','inherit','closed','closed','','669-revision-v1','','','2014-03-29 18:22:05','2014-03-29 22:22:05','',669,'http://divyayogamonteregie.org/french/?p=670',0,'revision','',0),(671,1,'2014-03-29 18:23:05','0000-00-00 00:00:00','Bientot','Poppy seed thing by Mihaela','','draft','closed','closed','','','','','2014-03-29 18:23:05','2014-03-29 22:23:05','',190,'http://divyayogamonteregie.org/french/?page_id=671',0,'page','',0),(672,1,'2014-03-29 18:23:05','2014-03-29 22:23:05','Bientot','Poppy seed thing by Mihaela','','inherit','closed','closed','','671-revision-v1','','','2014-03-29 18:23:05','2014-03-29 22:23:05','',671,'http://divyayogamonteregie.org/french/?p=672',0,'revision','',0),(673,1,'2014-03-29 18:23:58','0000-00-00 00:00:00','Bientot','Sour dough bread','','draft','closed','closed','','','','','2014-03-29 18:23:58','2014-03-29 22:23:58','',190,'http://divyayogamonteregie.org/french/?page_id=673',0,'page','',0),(674,1,'2014-03-29 18:23:58','2014-03-29 22:23:58','Bientot','Sour dough bread','','inherit','closed','closed','','673-revision-v1','','','2014-03-29 18:23:58','2014-03-29 22:23:58','',673,'http://divyayogamonteregie.org/french/?p=674',0,'revision','',0),(675,1,'2015-12-21 18:17:21','2015-12-21 23:17:21','Conférence et repas chaque dernier samedi du mois après YOGA.','Événements à venir :- Confrance 26 decembre 2015 avec Yoga Guru Dr.','','inherit','closed','closed','','659-autosave-v1','','','2015-12-21 18:17:21','2015-12-21 23:17:21','',659,'http://divyayogamonteregie.org/french/?p=675',0,'revision','',0),(676,1,'2014-03-29 18:55:54','2014-03-29 22:55:54','Conférence et repas chaque dernier samedi du mois.','Événements à venir','','inherit','closed','closed','','659-revision-v1','','','2014-03-29 18:55:54','2014-03-29 22:55:54','',659,'http://divyayogamonteregie.org/french/?p=676',0,'revision','',0),(677,1,'2014-03-29 18:57:46','2014-03-29 22:57:46','Conférence et repas chaque dernier samedi du mois après YOGA.','Événements à venir','','inherit','closed','closed','','659-revision-v1','','','2014-03-29 18:57:46','2014-03-29 22:57:46','',659,'http://divyayogamonteregie.org/french/?p=677',0,'revision','',0),(682,1,'2015-12-21 18:18:11','2015-12-21 23:18:11','Voir la link\r\n\r\n<a href=\"https://drive.google.com/file/d/0B1FLFC0zADNaSFl5VzQtRHBiQ3V3UVNxMW1jMy1SaHFMWnBV/view?usp=sharing\" target=\"_blank\">https://drive.google.com/file/<wbr></wbr>d/<wbr></wbr>0B1FLFC0zADNaSFl5VzQtRHBiQ3V3U<wbr></wbr>VNxMW1jMy1SaHFMWnBV/view?usp=<wbr></wbr>sharing</a>','Événements à venir :- Confrance 26 decembre 2015 avec Yoga Guru Dr. Bali','','inherit','open','closed','','659-revision-v1','','','2015-12-21 18:18:11','2015-12-21 23:18:11','',659,'http://divyayogamonteregie.org/french/?p=682',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_spidercalendar_calendar`
--

DROP TABLE IF EXISTS `wp_spidercalendar_calendar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_spidercalendar_calendar` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `gid` varchar(255) NOT NULL,
  `time_format` tinyint(1) NOT NULL,
  `allow_publish` varchar(255) NOT NULL,
  `def_year` varchar(512) NOT NULL,
  `def_month` varchar(255) NOT NULL,
  `published` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_spidercalendar_calendar`
--

LOCK TABLES `wp_spidercalendar_calendar` WRITE;
/*!40000 ALTER TABLE `wp_spidercalendar_calendar` DISABLE KEYS */;
INSERT INTO `wp_spidercalendar_calendar` (`id`, `title`, `gid`, `time_format`, `allow_publish`, `def_year`, `def_month`, `published`) VALUES (1,'Calender of events','',0,'','2010','01',1),(2,'','',0,'','','',1);
/*!40000 ALTER TABLE `wp_spidercalendar_calendar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_spidercalendar_event`
--

DROP TABLE IF EXISTS `wp_spidercalendar_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_spidercalendar_event` (
  `id` int NOT NULL AUTO_INCREMENT,
  `calendar` int NOT NULL,
  `date` date NOT NULL,
  `date_end` date NOT NULL,
  `title` text NOT NULL,
  `time` varchar(20) NOT NULL,
  `text_for_date` longtext NOT NULL,
  `userID` varchar(255) NOT NULL,
  `repeat_method` varchar(255) NOT NULL,
  `repeat` varchar(255) NOT NULL,
  `week` varchar(255) NOT NULL,
  `month` varchar(255) NOT NULL,
  `month_type` varchar(255) NOT NULL,
  `monthly_list` varchar(255) NOT NULL,
  `month_week` varchar(255) NOT NULL,
  `year_month` varchar(255) NOT NULL,
  `published` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_spidercalendar_event`
--

LOCK TABLES `wp_spidercalendar_event` WRITE;
/*!40000 ALTER TABLE `wp_spidercalendar_event` DISABLE KEYS */;
INSERT INTO `wp_spidercalendar_event` (`id`, `calendar`, `date`, `date_end`, `title`, `time`, `text_for_date`, `userID`, `repeat_method`, `repeat`, `week`, `month`, `month_type`, `monthly_list`, `month_week`, `year_month`, `published`) VALUES (1,1,'2010-01-16','2020-12-30','Divya yoga Monteregie by Vinesh & Meera Saxena','09:00-11:00','<h1><span style=\"color: #0000ff;\">We do yoga on every Saturday from 9-11 am</span></h1>','','weekly','1','Sat,','','1','','','1',0),(2,1,'2011-01-29','2020-12-29','Last Saturday of the month conference','11:00-11:30','<h1><strong><span style=\"color: #0000ff;\">There will be a guest speaker who will talk on the health related topics.</span></strong></h1>','','monthly','1','','','2','last','Sat','1',0),(3,1,'2011-01-29','2020-08-29','Last Saturday of the month brunch','11:30-01:30','After conference we all will have vegetarian simple brunch.','','monthly','1','','','2','last','Sat','1',1);
/*!40000 ALTER TABLE `wp_spidercalendar_event` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_spidercalendar_theme`
--

DROP TABLE IF EXISTS `wp_spidercalendar_theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_spidercalendar_theme` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `width` varchar(255) NOT NULL,
  `cell_height` varchar(255) NOT NULL,
  `bg_top` varchar(255) NOT NULL,
  `bg_bottom` varchar(255) NOT NULL,
  `border_color` varchar(255) NOT NULL,
  `text_color_year` varchar(255) NOT NULL,
  `text_color_month` varchar(255) NOT NULL,
  `text_color_week_days` varchar(255) NOT NULL,
  `text_color_other_months` varchar(255) NOT NULL,
  `text_color_this_month_unevented` varchar(255) NOT NULL,
  `text_color_this_month_evented` varchar(255) NOT NULL,
  `event_title_color` varchar(255) NOT NULL,
  `current_day_border_color` varchar(255) NOT NULL,
  `bg_color_this_month_evented` varchar(255) NOT NULL,
  `next_prev_event_arrowcolor` varchar(255) NOT NULL,
  `show_event_bgcolor` varchar(255) NOT NULL,
  `cell_border_color` varchar(255) NOT NULL,
  `arrow_color_year` varchar(255) NOT NULL,
  `week_days_cell_height` varchar(255) NOT NULL,
  `arrow_color_month` varchar(255) NOT NULL,
  `text_color_sun_days` varchar(255) NOT NULL,
  `title_color` varchar(255) NOT NULL,
  `next_prev_event_bgcolor` varchar(255) NOT NULL,
  `title_font_size` varchar(255) NOT NULL,
  `title_font` varchar(255) NOT NULL,
  `title_style` varchar(255) NOT NULL,
  `date_color` varchar(255) NOT NULL,
  `date_size` varchar(255) NOT NULL,
  `date_font` varchar(255) NOT NULL,
  `date_style` varchar(255) NOT NULL,
  `popup_width` varchar(255) NOT NULL,
  `popup_height` varchar(255) NOT NULL,
  `number_of_shown_evetns` varchar(255) NOT NULL,
  `sundays_font_size` varchar(255) NOT NULL,
  `other_days_font_size` varchar(255) NOT NULL,
  `weekdays_font_size` varchar(255) NOT NULL,
  `border_width` varchar(255) NOT NULL,
  `top_height` varchar(255) NOT NULL,
  `bg_color_other_months` varchar(255) NOT NULL,
  `sundays_bg_color` varchar(255) NOT NULL,
  `weekdays_bg_color` varchar(255) NOT NULL,
  `week_start_day` varchar(255) NOT NULL,
  `weekday_sunday_bg_color` varchar(255) NOT NULL,
  `border_radius` varchar(255) NOT NULL,
  `year_font_size` varchar(255) NOT NULL,
  `month_font_size` varchar(255) NOT NULL,
  `arrow_size` varchar(255) NOT NULL,
  `next_month_text_color` varchar(255) NOT NULL,
  `prev_month_text_color` varchar(255) NOT NULL,
  `next_month_arrow_color` varchar(255) NOT NULL,
  `prev_month_arrow_color` varchar(255) NOT NULL,
  `next_month_font_size` varchar(255) NOT NULL,
  `prev_month_font_size` varchar(255) NOT NULL,
  `month_type` varchar(255) NOT NULL,
  `date_format` varchar(255) NOT NULL,
  `show_time` int NOT NULL,
  `show_repeat` int NOT NULL,
  `date_bg_color` varchar(255) NOT NULL,
  `event_bg_color1` varchar(255) NOT NULL,
  `event_bg_color2` varchar(255) NOT NULL,
  `event_num_bg_color1` varchar(255) NOT NULL,
  `event_num_bg_color2` varchar(255) NOT NULL,
  `event_num_color` varchar(255) NOT NULL,
  `date_font_size` varchar(255) NOT NULL,
  `event_num_font_size` varchar(255) NOT NULL,
  `event_table_height` varchar(255) NOT NULL,
  `date_height` varchar(255) NOT NULL,
  `ev_title_bg_color` varchar(255) NOT NULL,
  `week_font_size` varchar(255) NOT NULL,
  `day_month_font_size` varchar(255) NOT NULL,
  `week_font_color` varchar(255) NOT NULL,
  `day_month_font_color` varchar(255) NOT NULL,
  `views_tabs_bg_color` varchar(255) NOT NULL,
  `views_tabs_text_color` varchar(255) NOT NULL,
  `views_tabs_font_size` varchar(255) NOT NULL,
  `day_start` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_spidercalendar_theme`
--

LOCK TABLES `wp_spidercalendar_theme` WRITE;
/*!40000 ALTER TABLE `wp_spidercalendar_theme` DISABLE KEYS */;
INSERT INTO `wp_spidercalendar_theme` (`id`, `title`, `width`, `cell_height`, `bg_top`, `bg_bottom`, `border_color`, `text_color_year`, `text_color_month`, `text_color_week_days`, `text_color_other_months`, `text_color_this_month_unevented`, `text_color_this_month_evented`, `event_title_color`, `current_day_border_color`, `bg_color_this_month_evented`, `next_prev_event_arrowcolor`, `show_event_bgcolor`, `cell_border_color`, `arrow_color_year`, `week_days_cell_height`, `arrow_color_month`, `text_color_sun_days`, `title_color`, `next_prev_event_bgcolor`, `title_font_size`, `title_font`, `title_style`, `date_color`, `date_size`, `date_font`, `date_style`, `popup_width`, `popup_height`, `number_of_shown_evetns`, `sundays_font_size`, `other_days_font_size`, `weekdays_font_size`, `border_width`, `top_height`, `bg_color_other_months`, `sundays_bg_color`, `weekdays_bg_color`, `week_start_day`, `weekday_sunday_bg_color`, `border_radius`, `year_font_size`, `month_font_size`, `arrow_size`, `next_month_text_color`, `prev_month_text_color`, `next_month_arrow_color`, `prev_month_arrow_color`, `next_month_font_size`, `prev_month_font_size`, `month_type`, `date_format`, `show_time`, `show_repeat`, `date_bg_color`, `event_bg_color1`, `event_bg_color2`, `event_num_bg_color1`, `event_num_bg_color2`, `event_num_color`, `date_font_size`, `event_num_font_size`, `event_table_height`, `date_height`, `ev_title_bg_color`, `week_font_size`, `day_month_font_size`, `week_font_color`, `day_month_font_color`, `views_tabs_bg_color`, `views_tabs_text_color`, `views_tabs_font_size`, `day_start`) VALUES (13,'Shiny Blue','700','70','005478','E1E1E1','005478','F9F2F4','F9F2F4','005D78','B0B0B0','6A6A6A','6A6A6A','236283','005478','B4C5CC','97A0A6','B4C5CC','A9A9A9','CCD1D2','50','CCD1D2','6A6A6A','FFFFFF','00608A','','','normal','262626','','','normal','600','500','1','25','25','25','0','100','E1E1E1','E1E1E1','D6D6D6','su','B5B5B5','0','25','25','50','CCD1D2','CCD1D2','CCD1D2','1010A4','16','16','2','w/d/m/y',1,1,'D6D4D5','E1E1E1','DEDCDD','005478','006E91','FFFFFF','15','13','30','25','C3D0D6','15','12','005476','737373','01799C','FFFFFF','13',1);
/*!40000 ALTER TABLE `wp_spidercalendar_theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_spidercalendar_widget_theme`
--

DROP TABLE IF EXISTS `wp_spidercalendar_widget_theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_spidercalendar_widget_theme` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `width` varchar(255) NOT NULL,
  `week_start_day` varchar(255) NOT NULL,
  `font_year` varchar(255) NOT NULL,
  `font_month` varchar(255) NOT NULL,
  `font_day` varchar(255) NOT NULL,
  `font_weekday` varchar(255) NOT NULL,
  `header_bgcolor` varchar(255) NOT NULL,
  `footer_bgcolor` varchar(255) NOT NULL,
  `text_color_month` varchar(255) NOT NULL,
  `text_color_week_days` varchar(255) NOT NULL,
  `text_color_other_months` varchar(255) NOT NULL,
  `text_color_this_month_unevented` varchar(255) NOT NULL,
  `text_color_this_month_evented` varchar(255) NOT NULL,
  `bg_color_this_month_evented` varchar(255) NOT NULL,
  `bg_color_selected` varchar(255) NOT NULL,
  `arrow_color` varchar(255) NOT NULL,
  `text_color_selected` varchar(255) NOT NULL,
  `border_day` varchar(255) NOT NULL,
  `text_color_sun_days` varchar(255) NOT NULL,
  `weekdays_bg_color` varchar(255) NOT NULL,
  `su_bg_color` varchar(255) NOT NULL,
  `cell_border_color` varchar(255) NOT NULL,
  `year_font_size` varchar(255) NOT NULL,
  `year_font_color` varchar(255) NOT NULL,
  `year_tabs_bg_color` varchar(255) NOT NULL,
  `date_format` varchar(255) NOT NULL,
  `title_color` varchar(255) NOT NULL,
  `title_font_size` varchar(255) NOT NULL,
  `title_font` varchar(255) NOT NULL,
  `title_style` varchar(255) NOT NULL,
  `date_color` varchar(255) NOT NULL,
  `date_size` varchar(255) NOT NULL,
  `date_font` varchar(255) NOT NULL,
  `date_style` varchar(255) NOT NULL,
  `next_prev_event_bgcolor` varchar(255) NOT NULL,
  `next_prev_event_arrowcolor` varchar(255) NOT NULL,
  `show_event_bgcolor` varchar(255) NOT NULL,
  `popup_width` varchar(255) NOT NULL,
  `popup_height` varchar(255) NOT NULL,
  `show_repeat` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_spidercalendar_widget_theme`
--

LOCK TABLES `wp_spidercalendar_widget_theme` WRITE;
/*!40000 ALTER TABLE `wp_spidercalendar_widget_theme` DISABLE KEYS */;
INSERT INTO `wp_spidercalendar_widget_theme` (`id`, `title`, `width`, `week_start_day`, `font_year`, `font_month`, `font_day`, `font_weekday`, `header_bgcolor`, `footer_bgcolor`, `text_color_month`, `text_color_week_days`, `text_color_other_months`, `text_color_this_month_unevented`, `text_color_this_month_evented`, `bg_color_this_month_evented`, `bg_color_selected`, `arrow_color`, `text_color_selected`, `border_day`, `text_color_sun_days`, `weekdays_bg_color`, `su_bg_color`, `cell_border_color`, `year_font_size`, `year_font_color`, `year_tabs_bg_color`, `date_format`, `title_color`, `title_font_size`, `title_font`, `title_style`, `date_color`, `date_size`, `date_font`, `date_style`, `next_prev_event_bgcolor`, `next_prev_event_arrowcolor`, `show_event_bgcolor`, `popup_width`, `popup_height`, `show_repeat`) VALUES (1,'Shiny Blue','200','mo','','','','','005478','E1E1E1','FFFFFF','2F647D','939699','989898','FBFFFE','005478','005478','CED1D0','FFFFFF','005478','989898','D6D6D6','B5B5B5','D2D2D2','13','ACACAC','ECECEC','w/d/m/y','FFFFFF','','','normal','262626','','','normal','00608A','97A0A6','B4C5CC','600','500','1');
/*!40000 ALTER TABLE `wp_spidercalendar_widget_theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
  `term_order` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0),(438,5,0),(1,5,0),(438,1,0),(440,1,0),(440,5,0),(564,2,0),(568,2,0),(567,2,0),(566,2,0),(565,2,0),(573,2,0),(569,2,0),(570,2,0),(571,2,0),(572,2,0),(574,2,0),(584,2,0),(596,2,0),(597,2,0),(598,2,0),(599,2,0),(600,2,0),(601,2,0),(602,2,0),(603,2,0),(604,2,0),(605,2,0),(606,2,0),(607,2,0),(608,2,0),(609,2,0),(610,2,0),(611,2,0),(612,2,0),(613,2,0),(614,2,0),(615,2,0),(616,2,0),(617,2,0),(618,2,0),(619,2,0),(620,2,0),(621,2,0),(622,2,0),(623,2,0),(624,2,0),(625,2,0),(626,2,0),(627,2,0),(628,2,0),(629,2,0),(630,2,0),(631,2,0),(632,2,0),(633,2,0),(634,2,0),(635,2,0),(637,2,0),(638,2,0),(639,2,0),(640,2,0),(645,2,0),(642,2,0),(644,2,0),(641,2,0),(652,2,0),(653,2,0),(660,2,0),(662,2,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint unsigned NOT NULL DEFAULT '0',
  `count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,3),(2,2,'nav_menu','',0,64),(3,3,'post_format','',0,0),(4,4,'post_format','',0,0),(5,5,'post_format','',0,3);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0),(2,'main','main',0),(3,'post-format-aside','post-format-aside',0),(4,'post-format-quote','post-format-quote',0),(5,'post-format-gallery','post-format-gallery',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (1,1,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','admin'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,easmedia_pointer_pointer,wp360_revisions'),(13,1,'show_welcome_panel','1'),(14,1,'wp_dashboard_quick_press_last_post_id','685'),(15,1,'wp_user-settings','libraryContent=browse&editor=tinymce&hidetb=1&emediagallery_tab=pop&align=center&imgsize=medium'),(16,1,'wp_user-settings-time','1376503662'),(17,1,'closedpostboxes_dashboard','a:1:{i:0;s:19:\"dashboard_right_now\";}'),(18,1,'metaboxhidden_dashboard','a:1:{i:0;s:21:\"dashboard_browser_nag\";}'),(19,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(20,1,'metaboxhidden_nav-menus','a:3:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}'),(21,1,'closedpostboxes_page','a:1:{i:0;s:9:\"submitdiv\";}'),(22,1,'metaboxhidden_page','a:6:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";i:5;s:12:\"revisionsdiv\";}'),(23,1,'meta-box-order_page','a:3:{s:4:\"side\";s:36:\"submitdiv,pageparentdiv,postimagediv\";s:6:\"normal\";s:70:\"postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv,revisionsdiv\";s:8:\"advanced\";s:0:\"\";}'),(24,1,'screen_layout_page','2'),(25,1,'wporg_favorites',''),(26,1,'nav_menu_recently_edited','2'),(27,1,'edit_page_per_page','60'),(28,1,'manageedit-pagecolumnshidden','a:4:{i:0;s:6:\"author\";i:1;s:8:\"comments\";i:2;s:0:\"\";i:3;s:0:\"\";}'),(29,1,'manageuploadcolumnshidden','a:4:{i:0;s:6:\"author\";i:1;s:8:\"comments\";i:2;s:0:\"\";i:3;s:0:\"\";}'),(30,1,'upload_per_page','100'),(31,1,'al2fb_like_faces','1'),(32,2,'first_name',''),(33,2,'last_name',''),(34,2,'nickname','denis'),(35,2,'description',''),(36,2,'rich_editing','true'),(37,2,'comment_shortcuts','false'),(38,2,'admin_color','fresh'),(39,2,'use_ssl','0'),(40,2,'show_admin_bar_front','true'),(41,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(42,2,'wp_user_level','10'),(43,2,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks'),(44,2,'wp_dashboard_quick_press_last_post_id','684'),(45,1,'session_tokens','a:1:{s:64:\"db3d079680f83f0e9eb9af999923a829db690b92d96eb58f92de9c6e98568dcc\";a:4:{s:10:\"expiration\";i:1683029861;s:2:\"ip\";s:10:\"148.0.26.7\";s:2:\"ua\";s:80:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/112.0\";s:5:\"login\";i:1682857061;}}'),(46,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"148.0.26.0\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_users` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int NOT NULL DEFAULT '0',
  `display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (1,'admin','$P$B6DCv6bN71muzXWLDcvtsm0NBuQ9Yd/','admin','webmaster@divyayogamonteregie.org','','2013-05-08 17:12:14','',0,'admin'),(2,'denis','$P$B70HP7VqnT2Z.xQX4MnsUGIFa1bEzR.','denis','denis@centerforconsciousnessdevelopment.ca','','2022-10-19 02:42:31','',0,'denis');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'divya_wp909'
--

--
-- Dumping routines for database 'divya_wp909'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2024-11-22 17:34:06
