CREATE TABLE `user_list` ( `list_id` int(10) unsigned NOT NULL, `user_id` int(10) unsigned NOT NULL, `sub_date` int(10) unsigned default '0', `unsub_date` int(10) unsigned default '0', PRIMARY KEY (`list_id`,`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german1_ci; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL auto_increment, `comment_id` bigint(20) unsigned NOT NULL default '0', `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL auto_increment, `comment_post_ID` bigint(20) unsigned NOT NULL default '0', `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL default '', `comment_author_url` varchar(200) NOT NULL default '', `comment_author_IP` varchar(100) 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` text NOT NULL, `comment_karma` int(11) NOT NULL default '0', `comment_approved` varchar(20) NOT NULL default '1', `comment_agent` varchar(255) NOT NULL default '', `comment_type` varchar(20) NOT NULL default '', `comment_parent` bigint(20) unsigned NOT NULL default '0', `user_id` bigint(20) unsigned NOT NULL default '0', PRIMARY KEY (`comment_ID`), KEY `comment_approved` (`comment_approved`), 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`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; CREATE TABLE `wp_gsom_subscribers` ( `intId` int(10) unsigned NOT NULL auto_increment, `dtTime` datetime NOT NULL, `varIP` varchar(50) NOT NULL, `varEmail` varchar(255) NOT NULL, `textCustomFields` text NOT NULL, `intStatus` tinyint(3) unsigned NOT NULL default '0', `varUCode` varchar(255) NOT NULL, `gsom_fname_field` text, PRIMARY KEY (`intId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL auto_increment, `link_url` varchar(255) NOT NULL default '', `link_name` varchar(255) NOT NULL default '', `link_image` varchar(255) NOT NULL default '', `link_target` varchar(25) NOT NULL default '', `link_description` varchar(255) NOT NULL default '', `link_visible` varchar(20) NOT NULL default 'Y', `link_owner` bigint(20) unsigned NOT NULL default '1', `link_rating` int(11) NOT NULL default '0', `link_updated` datetime NOT NULL default '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL default '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL default '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL auto_increment, `blog_id` int(11) NOT NULL default '0', `option_name` varchar(64) NOT NULL default '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL default 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=MyISAM AUTO_INCREMENT=1269 DEFAULT CHARSET=utf8; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL auto_increment, `post_id` bigint(20) unsigned NOT NULL default '0', `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM AUTO_INCREMENT=1279 DEFAULT CHARSET=utf8; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL auto_increment, `post_author` bigint(20) 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 NOT NULL, `post_title` text NOT NULL, `post_excerpt` text NOT NULL, `post_status` varchar(20) NOT NULL default 'publish', `comment_status` varchar(20) NOT NULL default 'open', `ping_status` varchar(20) NOT NULL default 'open', `post_password` varchar(20) NOT NULL default '', `post_name` varchar(200) NOT NULL default '', `to_ping` text NOT NULL, `pinged` text 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` text NOT NULL, `post_parent` bigint(20) unsigned NOT NULL default '0', `guid` varchar(255) NOT NULL default '', `menu_order` int(11) NOT NULL default '0', `post_type` varchar(20) NOT NULL default 'post', `post_mime_type` varchar(100) NOT NULL default '', `comment_count` bigint(20) NOT NULL default '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=MyISAM AUTO_INCREMENT=492 DEFAULT CHARSET=utf8; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL auto_increment, `name` varchar(200) NOT NULL default '', `slug` varchar(200) NOT NULL default '', `term_group` bigint(10) NOT NULL default '0', PRIMARY KEY (`term_id`), UNIQUE KEY `slug` (`slug`), KEY `name` (`name`) ) ENGINE=MyISAM AUTO_INCREMENT=380 DEFAULT CHARSET=utf8; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL default '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL default '0', `term_order` int(11) NOT NULL default '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL auto_increment, `term_id` bigint(20) unsigned NOT NULL default '0', `taxonomy` varchar(32) NOT NULL default '', `description` longtext NOT NULL, `parent` bigint(20) unsigned NOT NULL default '0', `count` bigint(20) NOT NULL default '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=MyISAM AUTO_INCREMENT=380 DEFAULT CHARSET=utf8; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL auto_increment, `user_id` bigint(20) unsigned NOT NULL default '0', `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL auto_increment, `user_login` varchar(60) NOT NULL default '', `user_pass` varchar(64) NOT NULL default '', `user_nicename` varchar(50) NOT NULL default '', `user_email` varchar(100) NOT NULL default '', `user_url` varchar(100) NOT NULL default '', `user_registered` datetime NOT NULL default '0000-00-00 00:00:00', `user_activation_key` varchar(60) NOT NULL default '', `user_status` int(11) NOT NULL default '0', `display_name` varchar(250) NOT NULL default '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; CREATE TABLE `wp_wysija_campaign` ( `campaign_id` int(10) unsigned NOT NULL auto_increment, `name` varchar(250) default NULL, `description` text NOT NULL, PRIMARY KEY (`campaign_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='A campaign is a private name to manage e-mails'; CREATE TABLE `wp_wysija_campaign_list` ( `list_id` int(10) unsigned NOT NULL, `campaign_id` int(10) unsigned NOT NULL, `filter` text NOT NULL, PRIMARY KEY (`list_id`,`campaign_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='attach a campaign to one or several lists'; CREATE TABLE `wp_wysija_email` ( `email_id` int(10) unsigned NOT NULL auto_increment, `campaign_id` int(10) unsigned NOT NULL default '0', `subject` varchar(250) NOT NULL default '', `body` longtext NOT NULL, `created_at` int(10) unsigned default NULL, `sent_at` int(10) unsigned default NULL, `from_email` varchar(250) default NULL, `from_name` varchar(250) default NULL, `replyto_email` varchar(250) default NULL, `replyto_name` varchar(250) default NULL, `attachments` text NOT NULL, `status` tinyint(4) NOT NULL default '0', `type` tinyint(4) NOT NULL default '1', `number_sent` int(10) unsigned NOT NULL default '0', `number_opened` int(10) unsigned NOT NULL default '0', `number_clicked` int(10) unsigned NOT NULL default '0', `number_unsub` int(10) unsigned NOT NULL default '0', `number_bounce` int(10) unsigned NOT NULL default '0', `number_forward` int(10) unsigned NOT NULL default '0', `params` text NOT NULL, `wj_data` longtext, `wj_styles` longtext, PRIMARY KEY (`email_id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='this table stores all the e-mails'; CREATE TABLE `wp_wysija_email_user_stat` ( `user_id` int(10) unsigned NOT NULL, `email_id` int(10) unsigned NOT NULL, `sent_at` int(10) unsigned NOT NULL, `opened_at` int(10) unsigned default NULL, `status` tinyint(4) NOT NULL default '0', PRIMARY KEY (`user_id`,`email_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='handle detailed statistics'; CREATE TABLE `wp_wysija_email_user_url` ( `email_id` int(10) unsigned NOT NULL, `user_id` int(10) unsigned NOT NULL, `url_id` int(10) unsigned NOT NULL, `clicked_at` int(10) unsigned default NULL, `number_clicked` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`user_id`,`email_id`,`url_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='handle detail stats, who clicked on which link'; CREATE TABLE `wp_wysija_list` ( `list_id` int(10) unsigned NOT NULL auto_increment, `name` varchar(250) default NULL, `description` text NOT NULL, `unsub_mail_id` int(10) unsigned NOT NULL default '0', `welcome_mail_id` int(10) unsigned NOT NULL default '0', `is_enabled` tinyint(3) unsigned NOT NULL default '0', `created_at` int(10) unsigned default NULL, `ordering` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`list_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='save list'; CREATE TABLE `wp_wysija_queue` ( `user_id` int(10) unsigned NOT NULL, `email_id` int(10) unsigned NOT NULL, `send_at` int(10) unsigned NOT NULL default '0', `priority` tinyint(4) NOT NULL default '0', `number_try` tinyint(3) unsigned NOT NULL default '0', PRIMARY KEY (`user_id`,`email_id`), KEY `SENT_AT_INDEX` (`send_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='handle the queue management'; CREATE TABLE `wp_wysija_url` ( `url_id` int(10) unsigned NOT NULL auto_increment, `name` varchar(250) default NULL, `url` text NOT NULL, PRIMARY KEY (`url_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='all urls'; CREATE TABLE `wp_wysija_url_mail` ( `email_id` int(11) NOT NULL auto_increment, `url_id` int(10) unsigned NOT NULL, `unique_clicked` int(10) unsigned NOT NULL default '0', `total_clicked` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`email_id`,`url_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `wp_wysija_user` ( `user_id` int(10) unsigned NOT NULL auto_increment, `wpuser_id` int(10) unsigned NOT NULL default '0', `email` varchar(255) NOT NULL, `firstname` varchar(255) NOT NULL default '', `lastname` varchar(255) NOT NULL default '', `ip` varchar(100) NOT NULL, `keyuser` varchar(255) NOT NULL default '', `created_at` int(10) unsigned default NULL, `status` tinyint(4) NOT NULL default '0', PRIMARY KEY (`user_id`), UNIQUE KEY `EMAIL_UNIQUE` (`email`) ) ENGINE=MyISAM AUTO_INCREMENT=290 DEFAULT CHARSET=utf8 COMMENT='store user information'; CREATE TABLE `wp_wysija_user_field` ( `field_id` int(10) unsigned NOT NULL auto_increment, `name` varchar(250) default NULL, `column_name` varchar(250) NOT NULL default '', `type` tinyint(3) unsigned default '0', `values` text NOT NULL, `default` varchar(250) NOT NULL default '', `is_required` tinyint(3) unsigned NOT NULL default '0', `error_message` varchar(250) NOT NULL default '', PRIMARY KEY (`field_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Handle extra fields for the user table'; CREATE TABLE `wp_wysija_user_history` ( `history_id` int(10) unsigned NOT NULL auto_increment, `user_id` int(10) unsigned NOT NULL, `email_id` int(10) unsigned default '0', `type` varchar(250) NOT NULL default '', `details` text, `executed_at` int(10) unsigned default NULL, `executed_by` int(10) unsigned default NULL, `source` text, PRIMARY KEY (`history_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='keep an history of the user modification'; CREATE TABLE `wp_wysija_user_list` ( `list_id` int(10) unsigned NOT NULL, `user_id` int(10) unsigned NOT NULL, `sub_date` int(10) unsigned default '0', `unsub_date` int(10) unsigned default '0', PRIMARY KEY (`list_id`,`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Save the user subscription'; 12akismet_resultfalse
22akismet_historya:4:{s:4:"time";s:15:"1326883803.9052";s:7:"message";s:47:"Akismet a revérifié et validé ce commentaire";s:5:"event";s:9:"check-ham";s:4:"user";s:10:"alicepegie";}
32akismet_as_submitteda:58:{s:15:"comment_post_ID";s:2:"17";s:14:"comment_author";s:10:"alicepegie";s:20:"comment_author_email";s:24:"webmaster@alicepegie.com";s:18:"comment_author_url";s:0:"";s:15:"comment_content";s:3:"fjf";s:12:"comment_type";s:0:"";s:14:"comment_parent";s:1:"0";s:7:"user_ID";s:1:"1";s:7:"user_ip";s:12:"81.93.17.182";s:10:"user_agent";s:67:"Mozilla/5.0 (Windows NT 6.1; rv:8.0.1) Gecko/20100101 Firefox/8.0.1";s:8:"referrer";s:51:"http://www.alicepegie.com/wordpress/wordpress/?p=17";s:4:"blog";s:45:"http://www.alicepegie.com/wordpress/wordpress";s:9:"blog_lang";s:5:"fr_FR";s:12:"blog_charset";s:5:"UTF-8";s:9:"permalink";s:51:"http://www.alicepegie.com/wordpress/wordpress/?p=17";s:9:"user_role";s:13:"administrator";s:21:"akismet_comment_nonce";s:6:"passed";s:12:"POST_comment";s:3:"fjf";s:11:"POST_submit";s:22:"Laisser un commentaire";s:20:"POST_comment_post_ID";s:2:"17";s:19:"POST_comment_parent";s:1:"0";s:32:"POST__wp_unfiltered_html_comment";s:10:"80981ea5aa";s:26:"POST_akismet_comment_nonce";s:10:"0dbeb2f8d3";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:11:"REQUEST_URI";s:41:"/wordpress/wordpress/wp-comments-post.php";s:9:"UNIQUE_ID";s:24:"Txaj2l1Y8NAAABl1ae0AAAGK";s:10:"SCRIPT_URL";s:41:"/wordpress/wordpress/wp-comments-post.php";s:10:"SCRIPT_URI";s:66:"http://www.alicepegie.com/wordpress/wordpress/wp-comments-post.php";s:18:"HTTP_AUTHORIZATION";s:0:"";s:9:"HTTP_HOST";s:18:"www.alicepegie.com";s:15:"HTTP_USER_AGENT";s:67:"Mozilla/5.0 (Windows NT 6.1; rv:8.0.1) Gecko/20100101 Firefox/8.0.1";s:11:"HTTP_ACCEPT";s:63:"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";s:20:"HTTP_ACCEPT_LANGUAGE";s:35:"fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3";s:20:"HTTP_ACCEPT_ENCODING";s:13:"gzip, deflate";s:19:"HTTP_ACCEPT_CHARSET";s:30:"ISO-8859-1,utf-8;q=0.7,*;q=0.7";s:15:"HTTP_CONNECTION";s:10:"keep-alive";s:12:"HTTP_REFERER";s:51:"http://www.alicepegie.com/wordpress/wordpress/?p=17";s:11:"HTTP_COOKIE";s:0:"";s:12:"CONTENT_TYPE";s:33:"application/x-www-form-urlencoded";s:14:"CONTENT_LENGTH";s:3:"149";s:4:"PATH";s:127:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/opt/freeipmi/bin/:/opt/ipmitool/bin/:/opt/mysql/bin/";s:16:"SERVER_SIGNATURE";s:0:"";s:11:"SERVER_NAME";s:18:"www.alicepegie.com";s:11:"SERVER_ADDR";s:13:"93.88.240.208";s:11:"SERVER_PORT";s:2:"80";s:11:"REMOTE_ADDR";s:12:"81.93.17.182";s:13:"DOCUMENT_ROOT";s:46:"/home/www/4dc3c71ed1fc2fcacb3bf61fa0d99a79/web";s:12:"SERVER_ADMIN";s:24:"webmaster@alicepegie.com";s:15:"SCRIPT_FILENAME";s:87:"/home/www/4dc3c71ed1fc2fcacb3bf61fa0d99a79/web/wordpress/wordpress/wp-comments-post.php";s:11:"REMOTE_PORT";s:4:"6041";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.1";s:14:"REQUEST_METHOD";s:4:"POST";s:12:"QUERY_STRING";s:0:"";s:11:"SCRIPT_NAME";s:41:"/wordpress/wordpress/wp-comments-post.php";s:8:"PHP_SELF";s:41:"/wordpress/wordpress/wp-comments-post.php";s:12:"REQUEST_TIME";s:10:"1326883802";s:25:"comment_post_modified_gmt";s:19:"2012-01-18 10:21:58";}
42akismet_historya:4:{s:4:"time";s:15:"1326888383.1667";s:7:"message";s:54:"alicepegie a changé le statut du commentaire en trash";s:5:"event";s:12:"status-trash";s:4:"user";s:10:"alicepegie";}
52_wp_trash_meta_status1
62_wp_trash_meta_time1326888383
73akismet_resultfalse
83akismet_historya:4:{s:4:"time";s:15:"1327019018.7875";s:7:"message";s:47:"Akismet a revérifié et validé ce commentaire";s:5:"event";s:9:"check-ham";s:4:"user";s:0:"";}
93akismet_as_submitteda:44:{s:15:"comment_post_ID";s:3:"354";s:14:"comment_author";s:42:"Abonnez-Vous!!! | Une Graine de Maniguette";s:18:"comment_author_url";s:52:"http://www.alicepegie.com/wordpress/wordpress/?p=288";s:20:"comment_author_email";s:0:"";s:15:"comment_content";s:22:"[...] Newsletter [...]";s:12:"comment_type";s:8:"pingback";s:7:"user_ip";s:13:"93.88.240.208";s:10:"user_agent";s:50:"The Incutio XML-RPC PHP Library -- WordPress/3.3.1";s:8:"referrer";s:0:"";s:4:"blog";s:45:"http://www.alicepegie.com/wordpress/wordpress";s:9:"blog_lang";s:5:"fr_FR";s:12:"blog_charset";s:5:"UTF-8";s:9:"permalink";s:58:"http://www.alicepegie.com/wordpress/wordpress/?page_id=354";s:21:"akismet_comment_nonce";s:6:"failed";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:11:"REQUEST_URI";s:31:"/wordpress/wordpress/xmlrpc.php";s:9:"UNIQUE_ID";s:24:"Txi0CF1Y8NAAAFlwgO4AAADH";s:10:"SCRIPT_URL";s:31:"/wordpress/wordpress/xmlrpc.php";s:10:"SCRIPT_URI";s:56:"http://www.alicepegie.com/wordpress/wordpress/xmlrpc.php";s:18:"HTTP_AUTHORIZATION";s:0:"";s:15:"HTTP_USER_AGENT";s:50:"The Incutio XML-RPC PHP Library -- WordPress/3.3.1";s:9:"HTTP_HOST";s:18:"www.alicepegie.com";s:11:"HTTP_ACCEPT";s:3:"*/*";s:12:"CONTENT_TYPE";s:8:"text/xml";s:20:"HTTP_ACCEPT_ENCODING";s:29:"deflate;q=1.0, compress;q=0.5";s:14:"CONTENT_LENGTH";s:3:"311";s:4:"PATH";s:127:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/opt/freeipmi/bin/:/opt/ipmitool/bin/:/opt/mysql/bin/";s:16:"SERVER_SIGNATURE";s:0:"";s:11:"SERVER_NAME";s:18:"www.alicepegie.com";s:11:"SERVER_ADDR";s:13:"93.88.240.208";s:11:"SERVER_PORT";s:2:"80";s:11:"REMOTE_ADDR";s:13:"93.88.240.208";s:13:"DOCUMENT_ROOT";s:46:"/home/www/4dc3c71ed1fc2fcacb3bf61fa0d99a79/web";s:12:"SERVER_ADMIN";s:24:"webmaster@alicepegie.com";s:15:"SCRIPT_FILENAME";s:77:"/home/www/4dc3c71ed1fc2fcacb3bf61fa0d99a79/web/wordpress/wordpress/xmlrpc.php";s:11:"REMOTE_PORT";s:5:"50592";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.0";s:14:"REQUEST_METHOD";s:4:"POST";s:12:"QUERY_STRING";s:0:"";s:11:"SCRIPT_NAME";s:31:"/wordpress/wordpress/xmlrpc.php";s:8:"PHP_SELF";s:31:"/wordpress/wordpress/xmlrpc.php";s:12:"REQUEST_TIME";s:10:"1327019016";s:25:"comment_post_modified_gmt";s:19:"2012-01-19 23:47:49";}
103akismet_historya:4:{s:4:"time";s:14:"1327064531.395";s:7:"message";s:57:"alicepegie a changé le statut du commentaire en approved";s:5:"event";s:15:"status-approved";s:4:"user";s:10:"alicepegie";}
113akismet_historya:4:{s:4:"time";s:15:"1327067162.8005";s:7:"message";s:54:"alicepegie a changé le statut du commentaire en trash";s:5:"event";s:12:"status-trash";s:4:"user";s:10:"alicepegie";}
123_wp_trash_meta_status1
133_wp_trash_meta_time1327067162
144akismet_resulttrue
154akismet_historya:4:{s:4:"time";s:15:"1327070083.7297";s:7:"message";s:60:"Akismet a considéré que ce commentaire est un indésirable";s:5:"event";s:10:"check-spam";s:4:"user";s:0:"";}
164akismet_as_submitteda:54:{s:15:"comment_post_ID";s:2:"53";s:14:"comment_author";s:10:"chair rail";s:20:"comment_author_email";s:22:"anime4lovrrr@gmail.com";s:18:"comment_author_url";s:21:"http://chairrail.net/";s:15:"comment_content";s:7:"Thanks!";s:12:"comment_type";s:0:"";s:14:"comment_parent";s:1:"0";s:7:"user_ID";s:1:"0";s:7:"user_ip";s:12:"38.106.29.28";s:10:"user_agent";s:101:"Mozilla/5.0 (X11; U; Linux i686; it-IT; rv:1.9.0.2) Gecko/2008092313 Ubuntu/9.25 (jaunty) Firefox/3.8";s:8:"referrer";s:25:"http://www.alicepegie.com";s:4:"blog";s:45:"http://www.alicepegie.com/wordpress/wordpress";s:9:"blog_lang";s:5:"fr_FR";s:12:"blog_charset";s:5:"UTF-8";s:9:"permalink";s:51:"http://www.alicepegie.com/wordpress/wordpress/?p=53";s:21:"akismet_comment_nonce";s:6:"failed";s:11:"POST_author";s:10:"chair rail";s:10:"POST_email";s:22:"anime4lovrrr@gmail.com";s:8:"POST_url";s:21:"http://chairrail.net/";s:12:"POST_comment";s:7:"Thanks!";s:11:"POST_submit";s:14:"Submit Comment";s:20:"POST_comment_post_ID";s:2:"53";s:19:"POST_comment_parent";s:1:"0";s:15:"SERVER_SOFTWARE";s:6:"Apache";s:11:"REQUEST_URI";s:41:"/wordpress/wordpress/wp-comments-post.php";s:9:"UNIQUE_ID";s:24:"Txl7gl1Y8NAAAHoqBO4AAAFc";s:10:"SCRIPT_URL";s:41:"/wordpress/wordpress/wp-comments-post.php";s:10:"SCRIPT_URI";s:66:"http://www.alicepegie.com/wordpress/wordpress/wp-comments-post.php";s:18:"HTTP_AUTHORIZATION";s:0:"";s:11:"HTTP_ACCEPT";s:63:"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";s:12:"HTTP_REFERER";s:25:"http://www.alicepegie.com";s:20:"HTTP_ACCEPT_LANGUAGE";s:1:"*";s:12:"CONTENT_TYPE";s:33:"application/x-www-form-urlencoded";s:15:"HTTP_USER_AGENT";s:101:"Mozilla/5.0 (X11; U; Linux i686; it-IT; rv:1.9.0.2) Gecko/2008092313 Ubuntu/9.25 (jaunty) Firefox/3.8";s:9:"HTTP_HOST";s:18:"www.alicepegie.com";s:14:"CONTENT_LENGTH";s:3:"164";s:4:"PATH";s:127:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/opt/freeipmi/bin/:/opt/ipmitool/bin/:/opt/mysql/bin/";s:16:"SERVER_SIGNATURE";s:0:"";s:11:"SERVER_NAME";s:18:"www.alicepegie.com";s:11:"SERVER_ADDR";s:13:"93.88.240.208";s:11:"SERVER_PORT";s:2:"80";s:11:"REMOTE_ADDR";s:12:"38.106.29.28";s:13:"DOCUMENT_ROOT";s:46:"/home/www/4dc3c71ed1fc2fcacb3bf61fa0d99a79/web";s:12:"SERVER_ADMIN";s:24:"webmaster@alicepegie.com";s:15:"SCRIPT_FILENAME";s:87:"/home/www/4dc3c71ed1fc2fcacb3bf61fa0d99a79/web/wordpress/wordpress/wp-comments-post.php";s:11:"REMOTE_PORT";s:4:"1394";s:17:"GATEWAY_INTERFACE";s:7:"CGI/1.1";s:15:"SERVER_PROTOCOL";s:8:"HTTP/1.0";s:14:"REQUEST_METHOD";s:4:"POST";s:12:"QUERY_STRING";s:0:"";s:11:"SCRIPT_NAME";s:41:"/wordpress/wordpress/wp-comments-post.php";s:8:"PHP_SELF";s:41:"/wordpress/wordpress/wp-comments-post.php";s:12:"REQUEST_TIME";s:10:"1327070082";s:25:"comment_post_modified_gmt";s:19:"2012-01-17 16:16:56";}
217alicepegiewebmaster@alicepegie.com81.93.17.1822012-01-18 11:50:032012-01-18 10:50:03fjf0trashMozilla/5.0 (Windows NT 6.1; rv:8.0.1) Gecko/20100101 Firefox/8.0.101
3354Abonnez-Vous!!! | Une Graine de Maniguettehttp://www.alicepegie.com/wordpress/wordpress/?p=28893.88.240.2082012-01-20 01:23:382012-01-20 00:23:38[...] Newsletter [...]0trashThe Incutio XML-RPC PHP Library -- WordPress/3.3.1pingback00
453chair railanime4lovrrr@gmail.comhttp://chairrail.net/38.106.29.282012-01-20 15:34:432012-01-20 14:34:43Thanks!0spamMozilla/5.0 (X11; U; Linux i686; it-IT; rv:1.9.0.2) Gecko/2008092313 Ubuntu/9.25 (jaunty) Firefox/3.800
1http://codex.wordpress.org/DocumentationY100000-00-00 00:00:00
2http://wordpress.org/news/WordPress BlogY100000-00-00 00:00:00http://wordpress.org/news/feed/
3http://wordpress.org/extend/ideas/Suggest IdeasY100000-00-00 00:00:00
4http://wordpress.org/support/Support ForumY100000-00-00 00:00:00
5http://wordpress.org/extend/plugins/PluginsY100000-00-00 00:00:00
6http://wordpress.org/extend/themes/ThemesY100000-00-00 00:00:00
7http://planet.wordpress.org/WordPress PlanetY100000-00-00 00:00:00
12580_site_transient_timeout_theme_roots1327150550yes
12590_site_transient_theme_rootsa:3:{s:16:"maniguettepress2";s:7:"/themes";s:12:"twentyeleven";s:7:"/themes";s:9:"twentyten";s:7:"/themes";}yes
30siteurlhttp://www.alicepegie.com/wordpress/wordpressyes
40blognameUne Graine de Maniguetteyes
50blogdescriptionCuisine & Cosmétiques Exotiquesyes
60users_can_register1yes
70admin_emailwebmaster@alicepegie.comyes
80start_of_week1yes
90use_balanceTags1yes
100use_smilies1yes
110require_name_email1yes
120comments_notify1yes
130posts_per_rss10yes
140rss_use_excerpt1yes
150mailserver_urlmail.example.comyes
160mailserver_loginlogin@example.comyes
170mailserver_passpasswordyes
180mailserver_port110yes
190default_category10yes
200default_comment_statusopenyes
210default_ping_statusopenyes
220default_pingback_flag1yes
230default_post_edit_rows20yes
240posts_per_page10yes
250date_formatd/m/Yyes
260time_formatyes
270links_updated_date_formatj F Y, G \h i \m\i\nyes
280links_recently_updated_prepend<em>yes
290links_recently_updated_append</em>yes
300links_recently_updated_time120yes
310comment_moderationyes
320moderation_notify1yes
330permalink_structureyes
340gzipcompression0yes
350hack_file0yes
360blog_charsetUTF-8yes
370moderation_keysno
380active_pluginsa:7:{i:0;s:19:"akismet/akismet.php";i:1;s:38:"cispm-contact-mail/cispm09_contact.php";i:2;s:57:"facebook-comments-importer/facebook-comments-importer.php";i:3;s:51:"facebook-like-thumbnail/facebook-like-thumbnail.php";i:4;s:39:"post-category-index-generator/index.php";i:5;s:53:"related-posts-thumbnails/related-posts-thumbnails.php";i:6;s:28:"wysija-newsletters/index.php";}yes
390homehttp://www.alicepegie.com/wordpress/wordpressyes
400category_baseyes
410ping_siteshttp://rpc.pingomatic.com/yes
420advanced_edit0yes
430comment_max_links2yes
440gmt_offset1yes
450default_email_category1yes
460recently_editeda:5:{i:0;s:114:"/home/www/4dc3c71ed1fc2fcacb3bf61fa0d99a79/web/wordpress/wordpress/wp-content/themes/maniguettepress/functions.php";i:1;s:110:"/home/www/4dc3c71ed1fc2fcacb3bf61fa0d99a79/web/wordpress/wordpress/wp-content/themes/maniguettepress/style.css";i:3;s:113:"/home/www/4dc3c71ed1fc2fcacb3bf61fa0d99a79/web/wordpress/wordpress/wp-content/themes/maniguettepress/comments.php";i:4;s:115:"/home/www/4dc3c71ed1fc2fcacb3bf61fa0d99a79/web/wordpress/wordpress/wp-content/themes/maniguettepress2/functions.php";i:5;s:111:"/home/www/4dc3c71ed1fc2fcacb3bf61fa0d99a79/web/wordpress/wordpress/wp-content/themes/maniguettepress2/style.css";}no
470templatemaniguettepress2yes
480stylesheetmaniguettepress2yes
490comment_whitelist1yes
500blacklist_keysno
510comment_registrationyes
520rss_languageenyes
530html_typetext/htmlyes
540use_trackback0yes
550default_rolesubscriberyes
560db_version19470yes
570uploads_use_yearmonth_folders1yes
580upload_pathyes
590blog_public1yes
600default_link_category2yes
610show_on_frontpostsyes
620tag_baseyes
630show_avatars1yes
640avatar_ratingGyes
650upload_url_pathyes
660thumbnail_size_w150yes
670thumbnail_size_h150yes
680thumbnail_crop1yes
690medium_size_w300yes
700medium_size_h300yes
710avatar_defaultwavataryes
720enable_app1yes
730enable_xmlrpc1yes
740large_size_w1024yes
750large_size_h1024yes
760image_default_link_typeyes
770image_default_sizeyes
780image_default_alignyes
790close_comments_for_old_postsyes
800close_comments_days_old14yes
810thread_comments1yes
820thread_comments_depth5yes
830page_commentsyes
840comments_per_page50yes
850default_comments_pagenewestyes
860comment_orderdescyes
870sticky_postsa:0:{}yes
880widget_categoriesa:1:{s:12:"_multiwidget";i:1;}yes
890widget_texta:2:{i:2;a:3:{s:5:"title";s:24:"Vous aimez mes Articles?";s:4:"text";s:1786:"<h1><a title="Abonnez-Vous!" href="http://www.alicepegie.com/wordpress/wordpress/?p=288"><strong>Abonnez-Vous!</strong></a></h1> <a href="http://www.alicepegie.com/wordpress/wordpress/?page_id=354"> <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> <a title="facebook" href="http://www.facebook.com/Alicepegie1" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a> <a href="https://twitter.com/#!/ALICEPEGIE"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a> <a href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /> </a><strong><a title="Newsletter" href="http://www.alicepegie.com/wordpress/wordpress/?page_id=354"><span style="color: #000000;">Newsletter</span></a> <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a> <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a> <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;">RSS</span></a></strong>";s:6:"filter";b:1;}s:12:"_multiwidget";i:1;}yes
900widget_rssa:0:{}yes
910timezone_stringyes
920embed_autourls1yes
930embed_size_wyes
940embed_size_h600yes
950page_for_posts0yes
960page_on_front0yes
970default_post_formatgalleryyes
980initial_db_version19470yes
990wp_user_rolesa:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:62:{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:9:"add_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
1000widget_searcha:3:{i:3;a:1:{s:5:"title";s:0:"";}i:4;a:1:{s:5:"title";s:24:"Recherche par mots clés";}s:12:"_multiwidget";i:1;}yes
1010widget_recent-postsa:1:{s:12:"_multiwidget";i:1;}yes
1020widget_recent-commentsa:1:{s:12:"_multiwidget";i:1;}yes
1030widget_archivesa:1:{s:12:"_multiwidget";i:1;}yes
1040widget_metaa:1:{s:12:"_multiwidget";i:1;}yes
1050sidebars_widgetsa:12:{s:19:"wp_inactive_widgets";a:0:{}s:19:"primary-widget-area";a:3:{i:0;s:8:"search-4";i:1;s:6:"text-2";i:2;s:13:"vmenuwidget-2";}s:21:"secondary-widget-area";a:1:{i:0;s:8:"search-3";}s:21:"first-top-widget-area";a:0:{}s:22:"second-top-widget-area";a:0:{}s:24:"first-bottom-widget-area";a:0:{}s:25:"second-bottom-widget-area";a:0:{}s:24:"first-footer-widget-area";a:0:{}s:25:"second-footer-widget-area";a:0:{}s:24:"third-footer-widget-area";a:0:{}s:25:"fourth-footer-widget-area";a:0:{}s:13:"array_version";i:3;}yes
1590_transient_random_seed91a6e6eba1cc5cf2dde76979eac53027yes
1060crona:7:{i:1327146917;a:1:{s:17:"wysija_cron_queue";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1327147041;a:3:{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;}}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:1327147054;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:1327147200;a:1:{s:16:"fbci_cron_import";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1327157168;a:1:{s:17:"wysija_cron_daily";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1327229403;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;}}}s:7:"version";i:2;}yes
1080_site_transient_update_coreO:8:"stdClass":3:{s:7:"updates";a:2:{i:0;O:8:"stdClass":9:{s:8:"response";s:6:"latest";s:8:"download";s:49:"http://fr.wordpress.org/wordpress-3.3.1-fr_FR.zip";s:6:"locale";s:5:"fr_FR";s:8:"packages";O:8:"stdClass":4:{s:4:"full";s:49:"http://fr.wordpress.org/wordpress-3.3.1-fr_FR.zip";s:10:"no_content";b:0;s:11:"new_bundled";b:0;s:7:"partial";b:0;}s:7:"current";s:5:"3.3.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.2";s:15:"partial_version";s:0:"";}i:1;O:8:"stdClass":9:{s:8:"response";s:6:"latest";s:8:"download";s:40:"http://wordpress.org/wordpress-3.3.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":4:{s:4:"full";s:40:"http://wordpress.org/wordpress-3.3.1.zip";s:10:"no_content";s:51:"http://wordpress.org/wordpress-3.3.1-no-content.zip";s:11:"new_bundled";s:52:"http://wordpress.org/wordpress-3.3.1-new-bundled.zip";s:7:"partial";b:0;}s:7:"current";s:5:"3.3.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.2";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1327103865;s:15:"version_checked";s:5:"3.3.1";}yes
11420akismet_spam_count1yes
12680_transient_doing_cron1327149932yes
1110_site_transient_timeout_browser_43f563bf057dd1165aa558218d4e670d1327406254yes
1120_site_transient_browser_43f563bf057dd1165aa558218d4e670da:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:7:"Firefox";s:7:"version";s:5:"8.0.1";s:10:"update_url";s:23:"http://www.firefox.com/";s:7:"img_src";s:50:"http://s.wordpress.org/images/browsers/firefox.png";s:11:"img_src_ssl";s:49:"https://wordpress.org/images/browsers/firefox.png";s:15:"current_version";s:1:"9";s:7:"upgrade";b:1;s:8:"insecure";b:0;}yes
1130dashboard_widget_optionsa:4:{s:25:"dashboard_recent_comments";a:1:{s:5:"items";i:5;}s:24:"dashboard_incoming_links";a:5:{s:4:"home";s:45:"http://www.alicepegie.com/wordpress/wordpress";s:4:"link";s:121:"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://www.alicepegie.com/wordpress/wordpress/";s:3:"url";s:154:"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://www.alicepegie.com/wordpress/wordpress/";s:5:"items";i:10;s:9:"show_date";b:0;}s:17:"dashboard_primary";a:7:{s:4:"link";s:35:"http://www.wordpress-fr.net/planet/";s:3:"url";s:55:"http://feeds2.feedburner.com/WordpressFrancophonePlanet";s:5:"title";s:14:"Blog WordPress";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:35:"http://www.wordpress-fr.net/planet/";s:3:"url";s:55:"http://feeds2.feedburner.com/WordpressFrancophonePlanet";s:5:"title";s:46:"Autres actualités de WordPress (en français)";s:5:"items";i:5;s:12:"show_summary";i:0;s:11:"show_author";i:0;s:9:"show_date";i:0;}}yes
11730_transient_timeout_feed_mod_2fb9572e3d6a42f680e36370936a57ae1327164145no
11740_transient_feed_mod_2fb9572e3d6a42f680e36370936a57ae1327120945no
11750_transient_timeout_dash_4077549d03da2e451c8b5f002294ff511327164145no
11760_transient_dash_4077549d03da2e451c8b5f002294ff51<div class="rss-widget"><ul><li><a class='rsswidget' href='http://www.geekpress.fr/wordpress/astuce/widget-page-article-779/' title='Cette astuce permet d&#039;ajouter le contenu d&#039;un widget n&#039;importe où dans une page ou dans un article WordPress. [&hellip;]'>GeekPress : Afficher un widget sur une page</a> <span class="rss-date">20/01/2012</span><div class='rssSummary'>Cette astuce permet d&#039;ajouter le contenu d&#039;un widget n&#039;importe où dans une page ou dans un article WordPress. [&hellip;]</div></li><li><a class='rsswidget' href='http://www.geekpress.fr/wordpress/astuce/reparer-installation-wordpress-834/' title='Cette astuce permet de résoudre le problème suivant lors d&#039;une mise à jour d&#039;un site WordPress : &quot;Indisponibilité temporaire pour cause de maintenance. Veuillez revenir dans un instant.&quot; [&hellip;]'>GeekPress : Réparer une mise à jour WordPress (Indisponibilité temporaire pour cause de maintenance…)</a> <span class="rss-date">19/01/2012</span><div class='rssSummary'>Cette astuce permet de résoudre le problème suivant lors d&#039;une mise à jour d&#039;un site WordPress : &quot;Indisponibilité temporaire pour cause de maintenance. Veuillez revenir dans un instant.&quot; [&hellip;]</div></li></ul></div>no
11770_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f01327164145no
11780_transient_dash_aa95765b5cc111c56d5993d476b1c2f0<div class="rss-widget"><ul><li><a class='rsswidget' href='http://www.geekpress.fr/wordpress/astuce/widget-page-article-779/' title='Cette astuce permet d&#039;ajouter le contenu d&#039;un widget n&#039;importe où dans une page ou dans un article WordPress. [&hellip;]'>GeekPress : Afficher un widget sur une page</a></li><li><a class='rsswidget' href='http://www.geekpress.fr/wordpress/astuce/reparer-installation-wordpress-834/' title='Cette astuce permet de résoudre le problème suivant lors d&#039;une mise à jour d&#039;un site WordPress : &quot;Indisponibilité temporaire pour cause de maintenance. Veuillez revenir dans un instant.&quot; [&hellip;]'>GeekPress : Réparer une mise à jour WordPress (Indisponibilité temporaire pour cause de maintenance…)</a></li><li><a class='rsswidget' href='http://the-loop.fr/ajouter-taille-image-gestionnaire-medias-wordpress/?utm_source=rss&#038;amp;utm_medium=rss&#038;amp;utm_campaign=ajouter-taille-image-gestionnaire-medias-wordpress' title='Le gestionnaire de média de WordPress, qui vous permet d’envoyer et ajouter, dans vos articles/pages, des fichiers multimédias, propose par défaut 4 choix de tailles d’images différentes : miniature, moyenne, large et taille réelle. Depuis la version 3.3, il est possible d’y ajouter des choix supplémentaires, grâce au filtre image_size_name_choose. Cette pos [&hellip;]'>The Loop : Ajouter une taille d’image au gestionnaire de médias WordPress</a></li><li><a class='rsswidget' href='http://feedproxy.google.com/~r/WP-Themes-Pro/~3/-If5_nszM0U/' title='Vous le savez, utiliser un thème WordPress premium est l’assurance d’avoir d’une part, un design et des fonctionnalités remarquables et d’autre part un prix défiant toute concurrence. Aucun web designer ne pourrait vous créer un thème WordPress sur mesure qui possèderait ne serait-ce qu’un dixième de ce que ces thèmes renferment Lire la suite de &quot;ThemeF [&hellip;]'>WP Themes Pro : ThemeForest : Les 20 Meilleurs Thèmes Premium pour Créer des Sites de Pros</a></li><li><a class='rsswidget' href='http://feedproxy.google.com/~r/WordpressChannel/~3/zkz1UcaQYZ8/' title='WP-Shopified est un thème / plugin premium e-commerce spécialement conçu pour WordPress par l’agence Web IWEBIX, basée en Allemagne. Cette nouvelle solution de boutique en ligne vient s’attaquer au marché dominé par WP e-commerce, Jigoshop ou encore le WooCommerce. Principales fonctionnalités La liste des fonctionnalités est tout simplement hallucinante et j [&hellip;]'>WordPress Channel : WP-Shopified, une solution e-commerce pour WordPress</a></li></ul></div>no
1310can_compress_scripts1yes
11350WT_ReadMoreRightHere_PluginOptionsa:8:{s:14:"loaderImageURL";s:0:"";s:13:"duplicateLink";b:0;s:12:"animateSpeed";s:4:"1000";s:12:"expandedText";s:0:"";s:12:"includePages";b:0;s:15:"loadDebugScript";b:0;s:9:"pluginUrl";s:86:"http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/read-more-right-here/";s:13:"useUtf8Decode";b:0;}yes
11680_transient_timeout_feed_mod_253de389bad96c5309a80d6ac32e94d01327164145no
11690_transient_feed_mod_253de389bad96c5309a80d6ac32e94d01327120945no
11700_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f1327164145no
11710_transient_dash_20494a3d90a6669585674ed0eb8dcd8f<p>Ce widget envoie une requête vers <a href="http://blogsearch.google.com/">le moteur de recherche des blogs de Google</a>, de sorte que quand un autre blog fera un lien vers le vôtre, son nom s&rsquo;affichera ici. Ce moteur n&rsquo;a pas encore trouvé de lien entrant&hellip; Ce n&rsquo;est pas grave, on n&rsquo;est pas pressé.</p> no
11720_transient_feed_2fb9572e3d6a42f680e36370936a57aea:4:{s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"feed";a:1:{i:0;a:6:{s:4:"data";s:303:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:27:"http://www.w3.org/2005/Atom";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"WordPress Francophone : Planet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"subtitle";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:35:"http://www.wordpress-fr.net/planet/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:3:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:9:"alternate";s:4:"type";s:9:"text/html";s:4:"href";s:35:"http://www.wordpress-fr.net/planet/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:1;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:4:"self";s:4:"type";s:20:"application/atom+xml";s:4:"href";s:54:"http://feeds.feedburner.com/WordpressFrancophonePlanet";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}i:2;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:3:"hub";s:4:"href";s:32:"http://pubsubhubbub.appspot.com/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"updated";a:1:{i:0;a:5:{s:4:"data";s:20:"2012-01-20T23:43:06Z";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:6:"Author";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:5:"entry";a:20:{i:0;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"GeekPress : Afficher un widget sur une page";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:65:"http://www.geekpress.fr/wordpress/astuce/widget-page-article-779/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:65:"http://www.geekpress.fr/wordpress/astuce/widget-page-article-779/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-20T10:00:30+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:8:"jonathan";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:110:"Cette astuce permet d'ajouter le contenu d'un widget n'importe où dans une page ou dans un article WordPress.";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:106:"GeekPress : Réparer une mise à jour WordPress (Indisponibilité temporaire pour cause de maintenance…)";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:76:"http://www.geekpress.fr/wordpress/astuce/reparer-installation-wordpress-834/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:76:"http://www.geekpress.fr/wordpress/astuce/reparer-installation-wordpress-834/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-19T23:50:08+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:8:"jonathan";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:190:"Cette astuce permet de résoudre le problème suivant lors d'une mise à jour d'un site WordPress : "Indisponibilité temporaire pour cause de maintenance. Veuillez revenir dans un instant."";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:76:"The Loop : Ajouter une taille d’image au gestionnaire de médias WordPress";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:172:"http://the-loop.fr/ajouter-taille-image-gestionnaire-medias-wordpress/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ajouter-taille-image-gestionnaire-medias-wordpress";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:172:"http://the-loop.fr/ajouter-taille-image-gestionnaire-medias-wordpress/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ajouter-taille-image-gestionnaire-medias-wordpress";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-19T15:34:32+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:5:"Rémy";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:6561:"<p><a href="http://media.the-loop.fr/2012/01/taille-image-gestionnaire-media-wordpress.png"><img class="alignleft size-thumbnail wp-image-309" title="Taille d'image supplémentaire dans le gestionnaire de médias de WordPress" src="http://media.the-loop.fr/2012/01/taille-image-gestionnaire-media-wordpress-150x150.png" alt="Taille d'image supplémentaire dans le gestionnaire de médias de WordPress" width="150" height="150" /></a>Le gestionnaire de média de WordPress, qui vous permet d&#8217;envoyer et ajouter, dans vos articles/pages, des fichiers multimédias, propose par défaut 4 choix de tailles d&#8217;images différentes : miniature, moyenne, large et taille réelle. Depuis la version 3.3, il est possible d&#8217;y ajouter des choix supplémentaires, grâce au filtre image_size_name_choose.</p> <p><span id="more-307"></span></p> <p>Cette possibilité peut vous être utile si par exemple vous souhaitez définir une nouvelle taille d&#8217;image grâce à <a href="http://codex.wordpress.org/Function_Reference/add_image_size">add_image_size</a>, et que vous souhaitez la rendre accessible aux utilisateurs de votre site. Pour cela, il vous faudra reprendre le code ci-dessous, dans le fichier functions.php de votre thème ou dans <a title="Créer une extension pour alléger le functions.php de votre thème" href="http://the-loop.fr/creer-extension-pour-alleger-functions-php/">une extension de site</a>. J&#8217;ai pris pour exemple l&#8217;ajout d&#8217;une taille d&#8217;image qui serait utilisée pour les articles mis en avant.</p> <div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'add_image_size'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> add_image_size<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'featured'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">350</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">350</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// on vérifie que la fonction existe, puis on crée la nouvelle taille d'image. Le dernier paramètre à true indique qu'il faut rogner l'image pour qu'elle s'adapte aux dimensions</span> <span style="color: #009900;">&#125;</span> &nbsp; add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'image_size_names_choose'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'my_image_sizes'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// le filtre qui permet d'ajouter la nouvelle taille au gestionnaire de médias</span> <span style="color: #000000; font-weight: bold;">function</span> my_image_sizes<span style="color: #009900;">&#40;</span><span style="color: #000088;">$sizes</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000088;">$addsizes</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;featured&quot;</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;Featured&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #666666; font-style: italic;">// on indique ici le nom de la nouvelle image (défini dans add_image_size), et le texte qui doit apparaître pour la sélection</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$newsizes</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array_merge</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$sizes</span><span style="color: #339933;">,</span> <span style="color: #000088;">$addsizes</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">return</span> <span style="color: #000088;">$newsizes</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span></pre></div></div> <p lang="php">Une fois la modification sauvegardée, vous pourrez voir la modification dans votre gestionnaire de médias, comme vous pouvez le voir ci-dessous.</p> <p lang="php"><a href="http://media.the-loop.fr/2012/01/choix-taille-image-supplementaire-wordpress.png"><img class="aligncenter size-full wp-image-310" title="Choix de la taille supplémentaire dans le gestionnaire de médias WordPress" src="http://media.the-loop.fr/2012/01/choix-taille-image-supplementaire-wordpress.png" alt="Choix de la taille supplémentaire dans le gestionnaire de médias WordPress" width="511" height="148" /></a></p> <p lang="php">Cette option supplémentaire ne sera prise en compte que pour les nouvelles images envoyées. Si vous voulez pouvoir modifier vos anciennes images, utilisez l&#8217;extension <a href="http://www.geekeries.fr/wordpress/regenerez-miniatures-images-blog-2947">Regenerate Thumbnails</a> qui créera les tailles manquantes.</p> <h3>Ces articles pourront vous intéresser</h3> <ol class="related-posts"> <li><a href="http://the-loop.fr/wp-smushit-optimiser-images/" rel="bookmark" title="WP Smush.it : optimisez le poids de vos images sans effort"><img width="150" height="150" src="http://media.the-loop.fr/2011/10/bibliotheque-smushit-150x150.png" class="attachment-thumbnail wp-post-image" alt="Bibliothèque Médias Smush.it" title="Bibliothèque Médias Smush.it" /> <h4>WP Smush.it : optimisez le poids de vos images sans effort</h4></a></li> </ol> <p>Article original <a href="http://the-loop.fr/ajouter-taille-image-gestionnaire-medias-wordpress/">Ajouter une taille d&#8217;image au gestionnaire de médias WordPress</a> publié sur <a href="http://the-loop.fr">The Loop</a> par <a rel="author" href="http://the-loop.fr/author/remy/">Rémy</a></p>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:92:"WP Themes Pro : ThemeForest : Les 20 Meilleurs Thèmes Premium pour Créer des Sites de Pros";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:60:"http://feedproxy.google.com/~r/WP-Themes-Pro/~3/-If5_nszM0U/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:60:"http://feedproxy.google.com/~r/WP-Themes-Pro/~3/-If5_nszM0U/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-19T06:50:56+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:4:"Alex";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:1047:"<p><a href="http://wp-themes-pro.com/theme-wordpress-themeforest/" title="ThemeForest : Les 20 Meilleurs Thèmes Premium pour Créer des Sites de Pros"><img width="624" height="213" src="http://wp-themes-pro.com/wp-content/uploads/2012/01/theme-wordpress-themeforest.jpg" class="attachment-large wp-post-image" alt="theme-wordpress-themeforest" title="theme-wordpress-themeforest" /></a></p><p>Vous le savez, utiliser un thème WordPress premium est l&#8217;assurance d&#8217;avoir d&#8217;une part, un design et des fonctionnalités remarquables et d&#8217;autre part un prix défiant toute concurrence. Aucun web designer ne pourrait vous créer un thème WordPress sur mesure qui possèderait ne serait-ce qu&#8217;un dixième de ce que ces thèmes renferment<p><a href="http://wp-themes-pro.com/theme-wordpress-themeforest/" rel="nofollow"> Lire la suite de "ThemeForest : Les 20 Meilleurs Thèmes Premium pour Créer des Sites de Pros"</a></p></p><img src="http://feeds.feedburner.com/~r/WP-Themes-Pro/~4/-If5_nszM0U" height="1" width="1" />";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:72:"WordPress Channel : WP-Shopified, une solution e-commerce pour WordPress";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:63:"http://feedproxy.google.com/~r/WordpressChannel/~3/zkz1UcaQYZ8/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:63:"http://feedproxy.google.com/~r/WordpressChannel/~3/zkz1UcaQYZ8/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-18T15:35:58+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:37:"wpchannel@gmail.com (Aurélien Denis)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:5966:"<p>WP-Shopified est un thème / plugin premium e-commerce spécialement conçu pour WordPress par l&#8217;agence Web IWEBIX, basée en Allemagne. Cette nouvelle solution de boutique en ligne vient s&#8217;attaquer au marché dominé par <a title="WordPress e-Commerce, le plugin ultime de commerce électronique" href="http://wpchannel.com/wordpress-e-commerce-le-plugin-ultime-de-commerce-electronique/">WP e-commerce</a>, <a title="Jigoshop, créez votre boutique e-commerce avec WordPress" href="http://wpchannel.com/jigoshop-creez-boutique-e-commerce-wordpress/">Jigoshop</a> ou encore le <a title="WooCommerce, plugin e-commerce gratuit" href="http://www.woothemes.com/affiliate-program?act=getcode&amp;banner_id=16&amp;width=480&amp;height=500">WooCommerce</a>.<span id="more-12374"></span></p> <h2>Principales fonctionnalités</h2> <p>La liste des fonctionnalités est tout simplement hallucinante et je vous renvoie sur le <a href="http://www.wp-shopified.com/features/">site officiel de WP-Shopified</a> pour en consulter la totalité. Voici tout de même une sélection d&#8217;options très intéressantes :</p> <ul> <li>Installation comme un thème WordPress : au-delà des options du plugin, WP-Shopified s&#8217;installe comme un thème ;</li> <li>Intégration complète à Paypal pour accepter les paiements par carte bleue ou Paypal ;</li> <li>Widgets : produits les mieux notés, produits les plus populaires, rotation de produits, produits mis en avant ;</li> <li>Utilisation de jQuery : zone de connexion en pop-up, panier dynamique, survol des photos dans une galerie produits, etc. ;</li> <li>Envoi automatique par PDF de la facture au client ;</li> <li>Utilisation intensive des <a title="Créer des custom post types avec WordPress" href="http://wpchannel.com/creer-custom-post-types-wordpress/">custom post types pour WordPress</a> ;</li> <li>Gestion des stocks ;</li> <li>Gestion multi-devises ;</li> <li>Ajout de caractéristiques personnalisées pour vos produits (exemple : choix des composants informatiques d&#8217;un ordinateur) ;</li> <li>Création de catégories ;</li> <li>Prise en charge de produits à télécharger ;</li> <li>Modification des chaînes de traduction directement via l&#8217;interface de WordPress ;</li> <li>Statistiques de vente et de paiements ;</li> <li>Gestion de la clientèle ;</li> <li>Fourni avec un manuel de documentation complet ;</li> </ul> <h2>Captures d&#8217;écran</h2> <div> <div id="attachment_12385" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-12385" title="Live démo de WP-Shopified" src="http://wpchannel.com/images/2012/01/wp-shopified-2.jpg" alt="Capture d'écran - WP-Shopified" width="600" height="495" /><p class="wp-caption-text">Démonstration d&#39;une boutique WP-Shopified</p></div> <div id="attachment_12386" class="wp-caption alignnone" style="width: 613px"><img class="size-full wp-image-12386" title="Configuration du plugin / thème WP-Shopified" src="http://wpchannel.com/images/2012/01/wp-shopified-1.jpg" alt="Capture d'écran - WP-Shopified, options de configuration" width="603" height="501" /><p class="wp-caption-text">WP-Shopified dispose de nombreux paramètres pour gérer votre site e-commerce</p></div> <div id="attachment_12384" class="wp-caption alignnone" style="width: 571px"><img class="size-full wp-image-12384" title="WP-Shopified, options de produits" src="http://wpchannel.com/images/2012/01/wp-shopified-3.jpg" alt="Capture d'écran - Options de produits" width="561" height="315" /><p class="wp-caption-text">WP-Shopified permet de personnaliser chaque produit mis en vente</p></div> <div id="attachment_12387" class="wp-caption alignnone" style="width: 567px"><img class="size-full wp-image-12387" title="WP-Shopified menu trois niveaux" src="http://wpchannel.com/images/2012/01/wp-shopified-4.jpg" alt="Capture d'écran - Menus déroulants WP-Shopified" width="557" height="410" /><p class="wp-caption-text">Trois niveaux de navigation avec WP-Shopified</p></div> </div> <h2>Obtenir WP-Shopified</h2> <p>Ce plugin ne coûte que 29,95 € ! Autant dire qu&#8217;il est quasi-gratuit pour un usage e-commerce.</p> Note: There is a file embedded within this post, please visit this post to download the file. <p><strong>Intégration poussée sous WordPress 3.x, gestion de produits personnalisés, panier d&#8217;achat jQuery, paiements gérés via Paypal&#8230; bref, WP-Shopified n&#8217;a rien à envier à ses concurrents. Une alternative qui monte très vite en puissance : 2012, année du développement e-commerce sous WordPress ?</strong></p> <div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=zkz1UcaQYZ8:W14T5T5zs0M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=zkz1UcaQYZ8:W14T5T5zs0M:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=zkz1UcaQYZ8:W14T5T5zs0M:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=zkz1UcaQYZ8:W14T5T5zs0M:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=zkz1UcaQYZ8:W14T5T5zs0M:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=zkz1UcaQYZ8:W14T5T5zs0M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=zkz1UcaQYZ8:W14T5T5zs0M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=zkz1UcaQYZ8:W14T5T5zs0M:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=zkz1UcaQYZ8:W14T5T5zs0M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/WordpressChannel/~4/zkz1UcaQYZ8" height="1" width="1" />";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:81:"GeekPress : Recently Registered : Trier ces utilisateurs par date d’inscription";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:100:"http://www.geekpress.fr/wordpress/extension/recently-update-trier-utilisateurs-date-inscription-780/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:100:"http://www.geekpress.fr/wordpress/extension/recently-update-trier-utilisateurs-date-inscription-780/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-18T09:00:32+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:8:"jonathan";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:135:"Recently Update est un plugin qui permet d'afficher la liste des utilisateurs de l'administration en fonction de la date d'inscription.";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:96:"css4design : Le petit journal du web — Les fruits de la veille ont gardé toute leur fraicheur";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:94:"http://css4design.com/le-petit-journal-du-web-les-fruits-de-la-veille-ont-garde-leur-fraicheur";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:94:"http://css4design.com/le-petit-journal-du-web-les-fruits-de-la-veille-ont-garde-leur-fraicheur";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-17T20:42:53+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:12:"Bruno Bichet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:12690:"<div class="tweetmeme_button" style="float: right; margin-left: 18px;"> <a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcss4design.com%2Fle-petit-journal-du-web-les-fruits-de-la-veille-ont-garde-leur-fraicheur"> <img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcss4design.com%2Fle-petit-journal-du-web-les-fruits-de-la-veille-ont-garde-leur-fraicheur&amp;source=br1o&amp;style=normal&amp;service=bit.ly&amp;service_api=R_0c1ee4b64f105d1b2672690740a77d6a&amp;b=2" height="61" width="50" /> </a> </div><p>La périodicité du blog est devenue <em>irrégulomadaire à tendance bimensuelle</em>… Malgré tout, je tiens à partager avec vous les fruits de la veille. Dans le panier&nbsp;: des trucs sympas et pratiques pour WordPress ; un plugin pour splitter du contenu avec jQuery ; des formulaires HTML plus efficaces ; une astuce toute simple pour connaitre personnellement vos visiteurs via Google Analytics, quelques liens pour compresser et organiser vos CSS et tout un tas d’autres choses dont l’énumération serait longue et fastidieuse.<span id="more-2724"></span></p> <h2>Liens WordPress</h2> <h3>WordPress Theme Generator</h3> <p><a href="http://www.yvoschaap.com/wpthemegen/">WP Generator Blog</a> est assez bluffant : votre thème pour WordPress est plié en quelques clics, sans connaissance préalable en HTML, JS, PHP ou même CSS ! Changez les couleurs, le nombre de colonnes, etc. L’outil produit des thèmes compatibles à partir de WordPress 2.1 jusqu’à la version 2.7 au moins, et embarque le framework <a href="http://developer.yahoo.com/yui/">Yahoo! UI</a>.</p> <h3>Affichez votre nombre de followers Twitter sur votre blog</h3> <p>Il n’y a pas que le compteur <a href="http://feedburner.google.com/">Google Feedburner</a> pour gonfler notre égo virtuel. Le nombre de <em>followers</em> que l’on peut avoir sur son <a href="http://twitter.com/br1o">compte Twitter</a> peut à lui seul vous gonfler un égo capable d&#8217;atteindre la <del>blogosphère</del> stratosphère ^__^ Le <a href="http://www.wprecipes.com/display-the-total-number-of-your-twitter-followers-on-your-wordpress-blog">code fourni par wpRecipes</a> est composée d’une partie à copier dans le fichier <em>functions.php</em> de votre blog et d’une autre partie à placer là où vous désirez afficher l’information.</p> <h3>Random « Read More »</h3> <p>Ces deux bouts de code dégottés sur <a href="http://wpguy.com/articles/how-to-display-a-random-read-more-link/">wpguy</a> affichent un lien « lire la suite » aléatoire pour chacun de vos articles. Le premier est à placer avant <a href="http://codex.wordpress.org/The_Loop">The Loop</a> : <pre> &lt;?php $more_strings = array( "Read More...", "Keep on Reading...", "Wait! There's more...", "Read the rest of the article..." ); ?&gt; &lt;?php the_content($more_strings[rand(0,count($more_strings))]); ?&gt; </pre></p> <h2>Liens intégration web</h2> <h3>Organisation, compression, vos CSS vont adorer !</h3> <ul> <li><a href="http://www.cleancss.com/">cleancss</a> — Cet outil en version française très complet propose quatre niveaux de compression et permet de personnaliser les paramètres en précisant un <a href="http://csstidy.sourceforge.net/templates.php">gabarit de formatage</a> pour votre feuille de style, dont voici un <a href="http://csstidy.sourceforge.net/template3.tpl">exemple de compression maximale</a>,</li> <li><a href="http://www.styleneat.com/">Styleneat</a> — Trie (ou pas) les sélecteurs ou les déclarations dans l&#8217;ordre alphabétique. Affiche les déclarations sur plusieurs lignes. Possibilité de coller la feuille de style, de saisir l’URL de la CSS ou enfin de l’uploader depuis votre poste de travail. Via <a href="http://roget.biz/">roget.biz</a>,</li> <li><a href="http://www.sitepoint.com/dustmeselectors/">dustmeselectors</a> — Extension pour Firefox qui traque les sélecteurs CSS inutilisés dans votre page web,</li> <li><a href="http://riddle.pl/emcalc/">Em Calculator</a> — Pratique pour obtenir des valeurs en <code>em</code> pour les éléments de votre document HTML à partir d’une taille exprimée en <code>px</code>,</li> <li><a href="http://www.constructyourcss.com/">Construct Your CSS</a> — Construct est un éditeur visuel basé sur Blueprint et jQuery. Ce projet est commis par <a href="http://www.christianmontoya.com/">Christian Montoya</a>. Il montre que l’on peut mettre à la disposition des intégrateurs web une boite à outil, ainsi qu’un éditeur visuel pour faire des CSS et du HTML sémantique,</li> <li><a href="http://www.pagecolumn.com/">pagecolumn</a> — Générateur de maquette en plusieurs colonnes avec CSS 2.0 en utilisant les <code>%</code>, les <code>px</code> ou les <code>em</code>. Possibilité d’imbriquer plusieurs colonnes ou des faire des effets de menus à onglets,</li> <li><a href="http://drawter.com/">drawter</a> — Déjà évoqué sur ce blog : <a href="http://www.css4design.com/drawter-dessiner-integrer-wysywyg">drawter, dessiné, c’est gagné</a>,</li> <li><a href="http://www.gwhite.us/downloads/css_grid_calc.html">CSS Grid Calculator</a> — Pour visualiser rapidement une maquette à partir d’une grille : les blocs de texte et les divisions de la page en colonnes (et les goutières qu vont avec) s’affichent dans le navigateur. En prime, vous obtiendrez les déclarations des styles CSS !</li> </ul> <h4>Encore un effort !</h4> <ul> <li><a href="http://iceyboard.no-ip.org/projects/css_compressor">CSS Compressor</a>,</li> <li><a href="http://www.cssdrive.com/index.php/main/csscompressoradvanced/">CSS Compressor Advanced</a> (cssdrive),</li> <li><a href="http://cssoptimiser.com/">Cascading Style Sheets Optimization</a>,</li> <li><a href="http://labocss.free.fr/">Labo CSS</a>.</li> </ul> <h3>Formulaires HTML efficaces en 10 étapes</h3> <p>Consultez l’excellent article de <a href="http://bbxdesign.com/">bbxdesign</a> sur les <a href="http://bbxdesign.com/2009/04/21/comment-realiser-un-bon-formulaire-html/">10 bonnes pratiques pour réaliser un formulaire</a> basé sur la conférence de <a href="http://www.lukew.com/ff/index.asp">Luke Wrobleski</a> de Yahoo! dont voici le sommaire :</p> <ol> <li>Aller droit au but,</li> <li>Alignement des labels,</li> <li>Aide et astuces,</li> <li>Validation,</li> <li>Actions primaires et secondaires,</li> <li>Actions en cours,</li> <li>Erreurs,</li> <li>Input inutiles,</li> <li>Organisation du formulaire,</li> <li>Engagement graduel.</li> </ol> <p>Téléchargez la conférence audio <a href="http://download.infragistics.com/pixel8/media/pixel8-2009-04-09-lukew.mp3">The Value of Web Forms and Design Constraints</a> au format mp3 (27.9 MB).</p> <h3>Autres ressources pour les formulaires HTML</h3> <ul> <li><a href="http://www.jotform.com/">JotForm</a> — Création de formulaires en ligne,</li> <li><a href="http://webjackalope.com/lazy-registration/">webjackalope</a> — 12 exemples de formulaires d’inscription pour «feignasse».</li> </ul> <h3>Splittez votre contenu en plusieurs parties redimensionnables avec jQuery Splitter</h3> <p>C’est sur <a href="http://www.dator.fr/jquery-splitter-un-plugin-permettant-de-separer-votre-contenu-en-plusieurs-parties/">Dator Blog</a> que j’ai déniché <a href="http://methvin.com/splitter/">jQuery Splitter</a> tout droit sorti de chez <a href="http://methvin.com/">Dave Methvin</a>. Ce plugin permet d’afficher une séparation entre deux contenus de la forme :</p> <p><pre> &lt;div id="MySplitter"&gt; &lt;div&gt; Left content goes here &lt;/div&gt; &lt;div&gt; Right content goes here &lt;/div&gt; &lt;/div&gt; </pre></p> <p>L’appel de la fonction étant réduit au strict minimum :</p> <p><pre> $().ready(function(){ $("#MySplitter").splitter(); }); </pre></p> <p>La <em>splitbar</em> peut être déplacée très facilement de manière accessible en cliquant-glissant, avec une <code>accessKey</code> ou encore via la touche <code>tab</code>.</p> <h5>Autres ressources Javascript</h5> <ul> <li><a href="http://css4design.com/liens-javascript-jquery">390 ressources Javascript et jQuery</a> — Les fruits de la veille documentée que j’effectue depuis deux ans sur le blog <a href="http://js4design.com/">Javascript &amp; Webdesign</a>.</li> </ul> <h3>20 mémos utiles pour tout webdesigner</h3> <p>Une bonne palanquée de <em>Cheat Sheet</em> (à vos souhaits) pour ne plus oublier les raccourcis Photoshop, les propriétés des CSS, les éléments HTML, etc. Mention spéciale pour :</p> <ul> <li><a href="http://blueprintcss.org/media/BlueprintV0.8byGJMS.pdf">Blueprint 0.8</a> (via <a href="http://www.christianmontoya.com/2007/11/12/blueprint-css-cheat-sheet/">Christian Montoya</a>),</li> <li><a href="http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html">récapitulatif des fontes communes</a> (ou pas) entre les systèmes d’exploitation Windows et MacOS,</li> <li><a href="http://kitdesurvie.metiers-graphiques.fr/">Kit de survie du créatif</a> oeuvrant dans les métiers du graphisme,</li> <li>Les <a href="http://www.pompage.net/pompe/coulisses/">coulisses d’un design</a> par <a href="http://dbowman.com/">Douglas</a> <a href="http://stopdesign.com/">Bowman</a>,</li> <li><a href="http://romy.tetue.net/memo-de-la-maquette-web">Mémo de la maquette web</a> par Romy Duhem-Verdière qui nous rappelle les éléments à prendre en compte et les <a href="http://fr.opquast.com/">bonnes pratiques</a> pour la composition de vos pages, les hyperliens, les textes, les formulaires, les éléments multimédias, ainsi que les mentions o-bli-ga-toires.</li> </ul> <h2>Miscellannées</h2> <h3>Google Analytics — Identifiez les lecteurs en provenance de Netvibes</h3> <p>Généralement, les informations aggrégées par les outils de mesure d’audience ne permettent pas de connaitre le nom (ou le pseudo) des visiteurs ! <a href="http://www.google.com/analytics/fr-FR/">Google Analytics</a> vous permet en seulement trois clics d’en savoir plus :</p> <ol> <li>Cliquez sur <em>Traffic Sources</em> (Sources de trafic),</li> <li>Puis sur <em>Referring Site</em> (Sites Référents),</li> <li>Rendez-vous dans la liste des sites et cliquez sur <em>Netvibes</em>,</li> <li>Enjoy ;)</li> </ol> <p>Bref, je suis sûrement le dernier à avoir cliqué sur <em>Netvibes</em> pour afficher les visiteurs concernés, mais si je suis l’avant-dernier, je me dis que ça servira au moins à une personne ;)</p> <h3>T&#8217;es qui, toi, déjà ?</h3> <p><a href="http://ping.eu/">Ping.eu</a> ou tout ce que vous avez toujours voulu savoir sur une adresse IP ou un nom de domaine sans jamais avoir osé le demander : Ping, Traceroute, DNS lookup, WHOIS, Port check, Reverse lookup, Proxy checker, Mail relaying, Bandwidth meter, Network calculator, Network mask calculator, Country by IP, Unit converter  !</p> <p><em>Stay tuned and mind the gap!</em></p> <p>PS : n’oubliez pas la grosse grosse liste de <a href="http://www.css4design.com/1000-ressources-pour-wordpress-et-le-developpement-web">1000 ressources pour webdesiger et développeurs web</a> !</p> <h3 class='related_post_title'>Articles sur le même sujet</h3> <ul class='related_post'><li><a href="http://css4design.com/100-comptes-twitter-pour-webdesigner" title="100+ comptes Twitter pour webdesigner">100+ comptes Twitter pour webdesigner</a></li><li><a href="http://css4design.com/ameliorations-cosmetiques-et-ergonomiques-sur-ce-blog" title="Améliorations cosmétiques et ergonomiques sur ce blog">Améliorations cosmétiques et ergonomiques sur ce blog</a></li><li><a href="http://css4design.com/le-petit-journal-du-web-novembre-2011" title="Le petit journal du web — WordPress, développement web, etc.">Le petit journal du web &#8212; WordPress, développement web, etc.</a></li><li><a href="http://css4design.com/liens-javascript-jquery" title="390 ressources Javascript &amp; jQuery">390 ressources Javascript &#038; jQuery</a></li><li><a href="http://css4design.com/wordpress-a-z-extension-plugin" title="WordPress de A à Z — E comme Extensions (les plugins)">WordPress de A à Z &#8212; E comme Extensions (les plugins)</a></li></ul> <p><a href="http://css4design.com/?flattrss_redirect&amp;id=2724&amp;md5=f757ed3c98f848278173dec8dcbe1470" title="Flattr" target="_blank"><img src="http://css4design.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!" /></a></p>";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"WordPress Francophone : L’Hebdo WordPress : Android – Akismet – BuddyPress";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/G4qxZQ47IrI/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:67:"http://feedproxy.google.com/~r/WordpressFrancophone/~3/G4qxZQ47IrI/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-17T07:13:18+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:7:"Benoît";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:4935:"<h3>WordPress pour Android 2.0.4</h3> <p>La version pour Android poursuit son <a href="https://twitter.com/#!/WPAndroid/statuses/158952514153234432">évolution et passe en version 2.0.4</a>. Mettez donc à jour.</p> <h3>Akismet 2.5.5</h3> <p>L&#8217;extension antispam la plus célèbre évolue beaucoup ces dernières semaines. 2 <a href="http://plugins.trac.wordpress.org/changeset?old_path=/akismet/tags/2.5.4&amp;old=&amp;new_path=/akismet/tags/2.5.5&amp;new">mises à jour</a> en quelques jours la font arriver en <a href="http://wordpress.org/extend/plugins/akismet/">version 2.5.5</a>.</p> <h3>BuddyPress 1.5.3</h3> <p>Une mise à jour mineure de BuddyPress est sortie cette semaine : <a href="http://buddypress.org/2012/01/buddypress-1-5-3/">BuddyPress 1.5.3</a>. Cette version a été aussitôt suivie par une autre mise à jour moindre <a href="http://buddypress.org/2012/01/buddypress-1-5-3-1/">puisqu&#8217;une version 1.5.3.1</a> est disponible.</p> <h3>Les résolutions de la nouvelle année de Lorelle</h3> <p><a href="http://lorelle.wordpress.com/2012/01/11/creating-a-wordpress-and-blogging-new-years-resolutions-list/">Lorelle présente une liste de résolutions pour 2012</a>, ou plutôt quelles devraient être les bonnes résolutions des blogueurs&#8230;</p> <h3>Comment contribuer à WordPress quand on est pas développeur ?</h3> <p>Voici une question que beaucoup doivent se poser. <a href="http://wpmu.org/want-to-contribute-to-wordpress-not-a-developer-no-problem/">WPMU.org propose une liste de suggestions</a> pour celles et ceux qui ne sauraient pas comment participer à la communauté WordPress alors qu&#8217;ils ne sont pas développeurs. Je suis, je pense, un bon exemple de cette catégorie de personnes d&#8217;ailleurs <img src="http://www.wordpress-fr.net/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> Chacun peut faire selon ses connaissances et son envie.</p> <h3>Une extension pour remplacer functions.php</h3> <p>Aurélien explique comment conserver certaines fonctions ajoutées dans un thème lorsqu&#8217;on change justement ce dernier. <a href="http://wpchannel.com/creer-plugin-fonctions-globales-site-wordpress/">L&#8217;idée est de les réunir au sein d&#8217;une extension</a>.</p> <h3>Quand WordPress remplace PowerPoint</h3> <p><a href="http://imath.owni.fr/2012/01/14/easy-prez/">iMath vient de réussir un petit exploit</a>, utiliser WordPress et son shortcode pour intégrer un diaporama PowerPoint trop lourd pour être uploadé. Le concept est original et la technique est très fine. Je décerne la palme de la semaine à cette astuce pour sa qualité.</p> <h3>Présentation de la nouvelle barre d&#8217;outils</h3> <p>Il y avait la barre d&#8217;admin, maintenant, il y a la barre d&#8217;outils. <a href="http://digwp.com/2012/01/goodbye-admin-bar-hello-toolbar/">Une présentation s’impose</a>.</p> <h3>Un tuto pour les débutants</h3> <p>Voici un tutoriel pour les débutants qui souhaitent mieux connaitre <a href="http://wpmu.org/wordpress-tutorial-for-beginners-the-new-post-page-screens/">l&#8217;écran d&#8217;édition des articles et des pages</a>.</p> <h3>7 conseils de sécurité</h3> <p>GeekPress revient sur la sécurité de votre site en donnant <a href="http://www.geekpress.fr/wordpress/guide/7-conseils-securite-wordpress-802/">7 conseils utiles pour se protéger</a>.</p> <h3>Les types de contenus personnalisés abordables ?</h3> <p>C&#8217;est ce que propose <a href="http://www.wpmayor.com/plugin-reviews/wordpress-post-formats-admin-ui/">cette interface d&#8217;administration</a> afin de faciliter l&#8217;usage des CPT par tout un chacun. Intéressant !</p> <h3>20 thèmes gratuits</h3> <p><a href="http://wp-themes-pro.com/theme-wordpress-gratuit-2012/">WP-Themes-pro propose une sélection de 20 thèmes</a> récents et gratuits. La qualité est au rendez-vous et les thèmes pourvu de cryptage ont été nettoyés au préalable.</p> <div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=G4qxZQ47IrI:iVdI9gAjElg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=G4qxZQ47IrI:iVdI9gAjElg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=G4qxZQ47IrI:iVdI9gAjElg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=G4qxZQ47IrI:iVdI9gAjElg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressFrancophone?a=G4qxZQ47IrI:iVdI9gAjElg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/WordpressFrancophone?i=G4qxZQ47IrI:iVdI9gAjElg:gIN9vFwOqvQ" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/WordpressFrancophone/~4/G4qxZQ47IrI" height="1" width="1" />";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:80:"WordPress Channel : Wysija, un plugin de newsletter user-friendly pour WordPress";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:63:"http://feedproxy.google.com/~r/WordpressChannel/~3/qPkHDv4HSko/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:63:"http://feedproxy.google.com/~r/WordpressChannel/~3/qPkHDv4HSko/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-16T12:04:02+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:37:"wpchannel@gmail.com (Aurélien Denis)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:4168:"<p>Wysija est un plugin de newsletter pour WordPress qui se démarque de ses concurrents de par sa simplicité déconcertante. Revue de détails des fonctionnalités de cet outil découvert au WordCamp Paris 2012 autour d&#8217;un verre avec son créateur Kim Gjerstad.<span id="more-12004"></span></p> <h2>Principales fonctionnalités</h2> <p><a href="http://www.wysija.com/">Wysija Newsletters</a> est disponible en plusieurs versions : une version gratuite que je vous détaille ici et une version premium. Un bon moyen de proposer un plugin plus complet pour des utilisateurs aux besoins plus avancés.</p> <p>Dans sa version gratuite, Wysija dispose des fonctionnalités suivantes :</p> <ul> <li>Editeur &laquo;&nbsp;What you see what you get&nbsp;&raquo; : pas besoin de connaître le code HTML ;</li> <li>Limite de 2 000 abonnés ;</li> <li>Composition de votre newsletter par glisser / déposer ;</li> <li>Possibilité d&#8217;insérer vos articles WordPress ;</li> <li>6 thèmes prêts-à-l&#8217;emploi ;</li> <li>Widget d&#8217;abonnement ou shortcode ;</li> <li>Import / export de listes d&#8217;abonnés ;</li> <li>Synchronisation avec les utilisateurs WordPress ;</li> <li>Activation ou non par e-mail (opt-in) ;</li> <li>Statistiques ;</li> </ul> <h2>Captures d&#8217;écran</h2> <div id="attachment_12379" class="wp-caption aligncenter" style="width: 669px"><img class="size-full wp-image-12379" title="Wysija templates newsletter" src="http://wpchannel.com/images/2012/01/wysija-newsletter-1.jpg" alt="Capture d'écran - Thème Wysija" width="659" height="531" /><p class="wp-caption-text">Les thèmes disponibles sont d&#39;excellente qualité !</p></div> <div id="attachment_12380" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-12380" title="Configuration de Wysija Newsletters" src="http://wpchannel.com/images/2012/01/wysija-newsletter-2.jpg" alt="Capture d'écran - Paramètre de newsletter Wysija" width="600" height="436" /><p class="wp-caption-text">Une configuration simple mais suffisante, accessible à tous les niveaux d&#39;utilisateurs</p></div> <h2>Vidéo de présentation</h2> <p><iframe src="http://player.vimeo.com/video/35054446?byline=0" width="580" height="326" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p> <h2>Obtenir Wysija Newsletters</h2> <p>Téléchargez sans plus attendre cet excellent plugin sur le référentiel WordPress :</p> Note: There is a file embedded within this post, please visit this post to download the file. <p><strong>Wysija remplit à merveille son objectif : concevoir une newsletter de qualité avec WordPress en toute simplicité. Pari réussi pour une extension qui se veut à l&#8217;opposé d&#8217;une usine à gaz. A tester d&#8217;urgence !</strong></p> <div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=qPkHDv4HSko:d0c7rhTpU5Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=qPkHDv4HSko:d0c7rhTpU5Y:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=qPkHDv4HSko:d0c7rhTpU5Y:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=qPkHDv4HSko:d0c7rhTpU5Y:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=qPkHDv4HSko:d0c7rhTpU5Y:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=qPkHDv4HSko:d0c7rhTpU5Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=qPkHDv4HSko:d0c7rhTpU5Y:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=qPkHDv4HSko:d0c7rhTpU5Y:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=qPkHDv4HSko:d0c7rhTpU5Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/WordpressChannel/~4/qPkHDv4HSko" height="1" width="1" />";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:75:"GeekPress : Ajouter/Supprimer des éléments de la barre d’administration";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:84:"http://www.geekpress.fr/wordpress/astuce/ajouter-supprimer-barre-administration-815/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:84:"http://www.geekpress.fr/wordpress/astuce/ajouter-supprimer-barre-administration-815/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-16T10:00:44+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:8:"Rtransat";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:433:"Sur WordPress, il est possible de supprimer des éléments de la barre d&#8217;administration, disponible lorsque vous êtes connecté. Pour cela rien de plus simple, ouvrez votre fichier functions.php présent à la racine de votre thème et ajoutez le code suivant : function edit_admin_bar() { global $wp_admin_bar; $wp_admin_bar->remove_menu('wp-logo'); // Logo $wp_admin_bar->remove_menu('about'); // A propos de WordPress [...]";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:96:"WP Themes Pro : Etude de Cas : Comment j’ai aidé Cédric Annicette à Créer son Nouveau Blog";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:60:"http://feedproxy.google.com/~r/WP-Themes-Pro/~3/Z2m0aXPqYvc/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:60:"http://feedproxy.google.com/~r/WP-Themes-Pro/~3/Z2m0aXPqYvc/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-16T09:46:56+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:4:"Alex";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:1018:"<p><a href="http://wp-themes-pro.com/etude-de-cas-cedric-annicette/" title="Etude de Cas : Comment j'ai aidé Cédric Annicette à Créer son Nouveau Blog"><img width="624" height="213" src="http://wp-themes-pro.com/wp-content/uploads/2012/01/forme-attitude-cedric-annicette.jpg" class="attachment-large wp-post-image" alt="forme-attitude-cedric-annicette" title="forme-attitude-cedric-annicette" /></a></p><p>Bonjour à tous et bienvenue dans ce nouvel article, aujourd&#8217;hui je vais vous parlez d&#8217;un de mes clients. Vous ne le savez peut-être pas mais je propose mes services sur ce blog afin d&#8217;aider des blogueurs, des professionnels et des particuliers à mettre en place des sites sous WordPress dotés<p><a href="http://wp-themes-pro.com/etude-de-cas-cedric-annicette/" rel="nofollow"> Lire la suite de "Etude de Cas : Comment j&#8217;ai aidé Cédric Annicette à Créer son Nouveau Blog"</a></p></p><img src="http://feeds.feedburner.com/~r/WP-Themes-Pro/~4/Z2m0aXPqYvc" height="1" width="1" />";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:98:"GeekPress : Désactiver l’éditeur de thèmes et de plugins dans l’administration de WordPress";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:79:"http://www.geekpress.fr/wordpress/astuce/desactiver-editeur-themes-plugins-765/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:79:"http://www.geekpress.fr/wordpress/astuce/desactiver-editeur-themes-plugins-765/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-14T14:00:26+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:8:"jonathan";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:129:"Cette astuce permet de désactiver l'édition des fichiers des thèmes et des plugins à partir de l'administration de WordPress.";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:73:"WordPress Channel : Créer un plugin de fonctions globales sous WordPress";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:63:"http://feedproxy.google.com/~r/WordpressChannel/~3/2icH3hi3JTI/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:63:"http://feedproxy.google.com/~r/WordpressChannel/~3/2icH3hi3JTI/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-13T14:32:46+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:37:"wpchannel@gmail.com (Aurélien Denis)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:6840:"<p>Un thème WordPress est composé d&#8217;un fichier functions.php regroupant des fonctions PHP propre au thème ou à WordPress. Comment faire en sorte que certaines fonctionnalités agissent de manière globale et non de façon localisée, de manière à les conserver intactes lors d&#8217;un changement de thème ? La réponse : créer un plugin de fonctions.<span id="more-11363"></span></p> <h2>Quel est l&#8217;intérêt de créer un plugin de fonctions pour WordPress ?</h2> <p>On a tendance à insérer de nombreuses fonctions PHP dans le fameux fichier functions.php présent dans n&#8217;importe quel thème WordPress.</p> <p>Cette technique est simple à comprendre pour des utilisateurs débutants mais pour un projet professionnel, il peut être intéressant de séparer les fonctions qui ont un impact direct sur le thème de celles qui ont un impact sur le contenu.</p> <p>Ainsi, il est possible de créer un rapide plugin &#8211; quelques lignes de code très simple, pour appliquer de façon automatique vos fonctions qui n&#8217;ont pas de liens avec le thème. Vous aurez ainsi la possibilité de tester différents thèmes tout en conservant les fonctionnalités de votre plugin.</p> <h2>Comment créer votre plugin de fonctionnalités ?</h2> <p><object width="580" height="423"><param name="movie" value="http://www.youtube.com/v/7PEI__T_mYI?version=3&amp;hl=fr_FR"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/7PEI__T_mYI?version=3&amp;hl=fr_FR" type="application/x-shockwave-flash" width="580" height="423" allowscriptaccess="always" allowfullscreen="true"></embed></object></p> <p>Pour ce faire, connectez-vous sur votre serveur FTP puis rendez-vous dans le dossier <strong>/wp-content/plugins/</strong></p> <p>Créez dans ce répertoire un nouveau dossier intitulé <strong>votresite-fonctions</strong>.</p> <p>Le titre de ce dossier est important car il devra être réutilisé pour créer un fichier <strong>votresite-fonctions.php</strong> dans ce nouveau dossier.</p> <p>Adaptez ensuite les lignes de code suivantes à votre site :</p> <pre>&lt;?php /* Plugin Name: WordPress Channel fonctions Description: L'ensemble des fonctions globales du site. Version: 0.1 License: GPL Author: Aurelien Denis Author URI: http://wpchannel.com/ */ ?&gt;</pre> <h3>Fonctionnalités à insérer dans votre plugin de fonctions</h3> <p>Il nous faut à présent copier / coller ici dans ce fichier les fonctions PHP qui n&#8217;ont rien à faire dans un thème. Par exemple :</p> <ul> <li>Les <em><a title="Créer des custom post types avec WordPress" href="http://wpchannel.com/creer-custom-post-types-wordpress/">custom post types</a></em> ou type de contenu personnalisé ;</li> <li>Les <em>custom taxonomies</em> ou taxonomies personnalisées ;</li> <li><a title="Obtenir la dernière version de jQuery via Google pour WordPress" href="http://wpchannel.com/obtenir-derniere-version-jquery-google-wordpress/">L&#8217;ajout de jQuery via Google</a> ;</li> <li>Les <a title="30 hacks PHP pour WordPress 3" href="http://wpchannel.com/30-hacks-php-wordpress-3/">hacks pour personnaliser l&#8217;administration de WordPress</a> ;</li> </ul> <h3>Fonctionnalités à conserver dans le fichier functions.php du thème</h3> <p>Gardez tout ce qui concerne directement le thème, autrement dit le contenant :</p> <ul> <li>Les <a title="Créer des menus personnalisés avec WordPress 3.0" href="http://wpchannel.com/creer-menus-personnalises-wordpress-3-0/">menus personnalisés</a> ;</li> <li>Les <a title="Créer une sidebar widgétisée avec WordPress" href="http://wpchannel.com/creer-sidebar-widgetisee-wordpress/">sidebars widgetisées</a> ;</li> <li>Certains scripts jQuery relatifs à votre thème ;</li> </ul> <p>Bien évidemment, ces 2 listes ne sont pas exhaustives. Il faut vérifier au cas par cas par rapport à vos besoins réels.</p> <p>Une fois les fonctions ajoutées, n&#8217;oubliez pas d&#8217;activer votre plugin !</p> <div id="attachment_12158" class="wp-caption alignnone" style="width: 509px"><img class="size-full wp-image-12158" title="Fonctionnalités globales de WordPress" src="http://wpchannel.com/images/2011/12/wordpress-functions-plugin.jpg" alt="Capture d'écran - Activation du plugin de fonctionnalités de WordPress Channel" width="499" height="123" /><p class="wp-caption-text">Prenez soin de distinguer les fonctions dans un plugin</p></div> <h2>Activer automatiquement votre plugin de fonctionnalités</h2> <p>Pour aller plus loin, je vous conseille de créer un répertoire <strong>mu-plugins</strong> dans le dossier <strong>/wp-content/plugins</strong> et d&#8217;y placer directement votre plugin.</p> <p>De cette manière, le plugin sera automatiquement activé et l&#8217;administrateur du site ne pourra pas le désactiver. Idéal pour appliquer des fonctions de masse.</p> <p>Un dernier conseil consistera à créer un fichier <strong>lisez-moi.txt</strong> pour récapituler l&#8217;intégralité des fonctionnalités que vous aurez ajoutées au fil du temps.</p> <p><strong>Séparer le contenu du contenant est la base d&#8217;un site Web moderne, séparer les fonctionnalités qui impactent le contenant et le contenu est sans doute la prochaine étape. Au boulot ! </strong></p> <p><small>Crédits photo : <a href="http://www.flickr.com/photos/smemon/4850586965/" rel="nofollow">Sean MacEntee</a></small></p> <div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=2icH3hi3JTI:fbn06ZNPqdI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=2icH3hi3JTI:fbn06ZNPqdI:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=2icH3hi3JTI:fbn06ZNPqdI:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=2icH3hi3JTI:fbn06ZNPqdI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=2icH3hi3JTI:fbn06ZNPqdI:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=2icH3hi3JTI:fbn06ZNPqdI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=2icH3hi3JTI:fbn06ZNPqdI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=2icH3hi3JTI:fbn06ZNPqdI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=2icH3hi3JTI:fbn06ZNPqdI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/WordpressChannel/~4/2icH3hi3JTI" height="1" width="1" />";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:69:"GeekPress : Twitter Feed for WordPress : afficher vos derniers tweets";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:75:"http://www.geekpress.fr/wordpress/extension/twitter-feed-for-wordpress-768/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:75:"http://www.geekpress.fr/wordpress/extension/twitter-feed-for-wordpress-768/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-13T13:00:30+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:8:"jonathan";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:135:"Le plugin WordPress Twitter Feed to Twitter permet d'afficher les derniers tweets d'un utilisateur dans vos articles, pages ou widgets.";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:67:"GeekPress : Ajouter vos Custom Post Type dans le flux RSS principal";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:71:"http://www.geekpress.fr/wordpress/astuce/custom-post-type-flux-rss-766/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:71:"http://www.geekpress.fr/wordpress/astuce/custom-post-type-flux-rss-766/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-13T10:00:28+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:8:"jonathan";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:71:"Cette astuce permet d'ajouter vos custom post type dans votre flux RSS.";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:15;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:110:"Homo Sapiens Internetus : Free Mobile, Orange, SFR, Bouygues Telecom et les autres sont sur le même bateau…";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:68:"http://feedproxy.google.com/~r/HomoSapiensInternetus/~3/yhMEDfTv6wY/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:68:"http://feedproxy.google.com/~r/HomoSapiensInternetus/~3/yhMEDfTv6wY/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-12T17:46:34+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:10:"Christophe";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:7273:"<p>&#8230; la suite pourrait peut-être s&#8217;écrire par &laquo;&nbsp;Free Mobile pousse tout le monde par dessus bord. Qui reste-t&#8217;il ?&nbsp;&raquo; &#8230; ou pas. Bref je ne prend pas le clavier pour vous faire un 36è billet sur ce que propose Free, ni les réponses, les mises à jour, les contre-attaques et passements de jambes des uns et des autres, mais plutôt pour une petite réflexion qui vaut se qu&#8217;elle vaut concernant le monde de la téléphonie mobile.</p> <p>Tout d&#8217;abord je dois dire que je ne suis certainement pas l&#8217;utilisateur lambda classique visé par les opérateurs traditionnels, oui je travaille dans le web mais non je n&#8217;ai pas de smartphone, même pas de forfait ou abonnement quelconque. J&#8217;ai un pauvre portable que je recharge de 5 euros par mois et qui m&#8217;a coûté à l&#8217;achat 19 euros. Et je ne &#8216;tue&#8217; même pas mes 5 euros en utilisation, bien souvent j&#8217;ai 2-3 euros qui disparaissent parce que je ne les ai juste pas utilisés. <span id="more-1688"></span></p> <p><img class="aligncenter" src="http://www.logiste.be/blog/wp-content/uploads/2012/01/free-mobile.jpg" alt="Free Mobile, Orange, SFR, Bouygues Telecom et les autres sont sur le même bateau..." width="540" height="268" title="Free Mobile, Orange, SFR, Bouygues Telecom et les autres sont sur le même bateau... Image" /></p> <p>Non ce n&#8217;est pas parce que je suis dans la misère complète (<em>mais si vous voulez m&#8217;envoyer des chèques ne vous gênez pas hein ;)</em>) c&#8217;est simplement que je ne veux surtout pas être connecté lorsque je sors de chez moi. Je veux pouvoir joindre les gens ou être joint si nécessaire, pouvoir recevoir un coup de fil urgent ou en donner un mais pas avoir à gérer des mails, des alertes réseaux (encore que là <a title="Abandonner les réseaux sociaux" href="http://www.logiste.be/blog/3-mois-sans-reseaux-sociaux-mon-bilan/">j&#8217;ai coupé à la source</a> le soucis), des lectures, des jeux, des applis ou quoi que ce soit. Donc le téléphone et le SMS me suffisent amplement.</p> <p>Pourtant Free me fait rêver et pas seulement parce que je vais p-e avoir un forfait à 0 euros qui me conviendra très bien. Chaque utilisateur de portable ou de smartphone savait depuis longtemps qu&#8217;il se faisait entuber par bidon de 50l de vaseline mais puisqu&#8217;il y avait arrangement entre les opérateurs il ne pouvait pas y faire grand-chose. Rien n&#8217;était réellement plus intéressant chez l&#8217;un ou l&#8217;autre (un petit plus d&#8217;un côté contrebalancé d&#8217;un petit moins). Bien entendu il existait des moyens de payer un peu moins mais ces solutions n&#8217;étaient pas à portée de tous, ne concernaient que certains cas d&#8217;utilisation particulier, etc. Même moi avec un portable qui me revient à moins de 100 euros l&#8217;année j&#8217;avais un petit goût amer en bouche.</p> <p>Que l&#8217;offre de Free ne soit pas idéale, soit (difficile de rependre tous les cas de figures dés le début). Qu&#8217;il y aie des cas dans lesquels elle soit moins intéressante que les autres, soit (personne n&#8217;est obligé d&#8217;aller chez eux). Qu&#8217;ils vendent des iPhone &amp; Co plus cher qu&#8217;ailleurs, soit (personne n&#8217;est obligé d&#8217;acheter les terminaux chez eux). Le but reste tout de même d&#8217;être bénéficiaire et ne pas être à perte. Sur le point du rapport qualité-prix j&#8217;ai un peu l&#8217;impression que ceux qui se plaignent sont ceux qui s&#8217;attendaient à tout avoir gratuit avec une crémière offerte en cadeau bonus.</p> <p><img class="aligncenter" src="http://www.logiste.be/blog/wp-content/uploads/2012/01/free-mobile-2.jpg" alt="Free Mobile, Orange, SFR, Bouygues Telecom et les autres sont sur le même bateau..." width="500" height="448" title="Free Mobile, Orange, SFR, Bouygues Telecom et les autres sont sur le même bateau... Image" /></p> <p>Mais au-delà même du contenu de l&#8217;offre, l&#8217;action de Free a le mérite de tout secouer. Et malgré ce que peuvent dire les concurrents pour se défendre ces derniers auraient très bien pu proposer des prix plus attrayants depuis TRÈS longtemps : la preuve à peine 48h plus tard <strong>Virgin, SFR,</strong> etc. revoient déjà tout à la baisse. Donc c&#8217;est clairement un indice que nous étions prit pour des volatiles depuis le début et qu&#8217;ils pouvaient tout mettre en place depuis longtemps.</p> <p>La question que je me pose alors est &laquo;&nbsp;si quelqu&#8217;un me prend pour un con, vais-je l&#8217;apprécier ou l&#8217;aimer ?&nbsp;&raquo; &#8230; je ne sais pas vous mais personnellement il y a peu de chances ;) Comme la plupart des gens, voire moins vu mes maigres dépenses dans l&#8217;aspect téléphonie mobile, je me suis fais entuber. <strong>Free</strong> a annoncé que même avec son forfait social à 2 euros ils faisaient 1 euro de marge !</p> <p>Et même si demain Orange &amp; Co me proposaient des forfaits similaires à ceux de Free pour 50% moins cher, <strong>rien que pour le principe je me dois d&#8217;aller chez Freemobile.</strong></p> <p>Pour une fois, j&#8217;ai la chance de dire à ceux qui m&#8217;ont prit pour un con durant des années un bon &laquo;&nbsp;DTC, fallait y penser avant&nbsp;&raquo;. Et je ne vais pas me faire prier pour le dire. Même si dans 1 an je refais marche arrière pour n&#8217;importe quelle raison que ce soit (clauses cachées, modifications des CGV, SAV pourrit, couverture pourrie, etc.). Peut-être qu&#8217;à l&#8217;avenir eux et d&#8217;autres dans d&#8217;autres domaines se poseront la question de savoir s&#8217;il faut prendre le risque de presser les gens au max et si le retour de bâton ne risque pas de leur faire mal au point de ne plus se relever (Free va amener à des pertes d&#8217;emplois, des rachats, &#8230; c&#8217;est quasi certain).</p> <p>Voilà c&#8217;était juste le petit coup de gueule du jour, maintenant si <strong>Xavier Niel</strong> me lit j&#8217;aimerai lui proposer un autre marché à venir bousculer &#8230; celui des impôts sur les revenus, là aussi il y a entente concertée et pot de vaseline &#8230; D&#8217;avance merci ;)<br /> <p style="border-top: 2px solid rgb(181, 212, 254); border-bottom: 2px solid rgb(181, 212, 254); padding: 5px 20px 5px 45px; background: rgb(248, 250, 252) url(http://www.logiste.be/blog/wp-content/plugins/NiceWeb2CSS/icon/info.png) no-repeat scroll 15px 50%;color: rgb(94, 98, 115); text-align: left;">Et pour le fun le site <a title="Je me casse chez Free" href="http://jemecassechezfree.com/">Jemecassechezfree.com</a> ou déjà plus de 195.000 personnes ont annoncés quitter les anciens opérateurs (site HS au moment ou j&#8217;écris ces lignes).</p></p> <p style="text-align: right;">Crédit image : Booska-p.com</p> <hr /> <em>Article original écrit par Christophe et publié sur © <a href="http://www.logiste.be/blog">Homo Sapiens Internetus</a>, le 12/01/2012 </em><br/> <a href="http://www.twitter.com/chrislogiste">Twitter</a> - <a href="https://plus.google.com/113857713997823886995">Google+</a> <img src="http://feeds.feedburner.com/~r/HomoSapiensInternetus/~4/yhMEDfTv6wY" height="1" width="1" />";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:16;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:100:"GeekPress : 7 Conseils pour sécuriser votre WordPress et éviter que ce soit un véritable gruyère";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:74:"http://www.geekpress.fr/wordpress/guide/7-conseils-securite-wordpress-802/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:74:"http://www.geekpress.fr/wordpress/guide/7-conseils-securite-wordpress-802/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-12T10:00:25+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:21:"Alex de WP Themes Pro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:112:"Découvrez une liste de 7 conseils indispensables pour limiter les risques de piratage sur votre site WordPress.";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:17;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:64:"WP Themes Pro : 20 Nouveaux Thèmes WordPress Gratuits pour 2012";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:60:"http://feedproxy.google.com/~r/WP-Themes-Pro/~3/R5nJaijeMCU/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:60:"http://feedproxy.google.com/~r/WP-Themes-Pro/~3/R5nJaijeMCU/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-12T06:58:15+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:4:"Alex";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:987:"<p><a href="http://wp-themes-pro.com/theme-wordpress-gratuit-2012/" title="20 Nouveaux Thèmes Wordpress Gratuits pour 2012"><img width="624" height="213" src="http://wp-themes-pro.com/wp-content/uploads/2012/01/theme-wordpress-gratuit-2012.jpg" class="attachment-large wp-post-image" alt="theme-wordpress-gratuit-2012" title="theme-wordpress-gratuit-2012" /></a></p><p>Il était hors de question de commencer l&#8217;année sans publier une nouvelle sélection de thèmes WordPress gratuits ! Voici des thèmes tout beaux tous neufs pour apprendre à utiliser WordPress sans risque. J&#8217;ai également traqué et éradiqué les moindres traces de code crypté à l&#8217;intérieur de ces thèmes. Je n&#8217;accepte pas que<p><a href="http://wp-themes-pro.com/theme-wordpress-gratuit-2012/" rel="nofollow"> Lire la suite de "20 Nouveaux Thèmes WordPress Gratuits pour 2012"</a></p></p><img src="http://feeds.feedburner.com/~r/WP-Themes-Pro/~4/R5nJaijeMCU" height="1" width="1" />";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:18;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:66:"GeekPress : Afficher une date relative dans vos articles WordPress";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:68:"http://www.geekpress.fr/wordpress/astuce/date-relative-articles-764/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:68:"http://www.geekpress.fr/wordpress/astuce/date-relative-articles-764/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-11T10:00:42+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:8:"jonathan";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:92:"Cette astuce permet d'afficher une date relative (Publié il y a X jours) dans vos articles.";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:19;a:6:{s:4:"data";s:68:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:61:"WordPress Channel : jQuery &amp; WordPress – User Interface";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:2:"id";a:1:{i:0;a:5:{s:4:"data";s:63:"http://feedproxy.google.com/~r/WordpressChannel/~3/gWOFaWZQk_s/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:9:"alternate";s:4:"href";s:63:"http://feedproxy.google.com/~r/WordpressChannel/~3/gWOFaWZQk_s/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"published";a:1:{i:0;a:5:{s:4:"data";s:25:"2012-01-10T21:23:05+00:00";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"author";a:1:{i:0;a:6:{s:4:"data";s:0:"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"name";a:1:{i:0;a:5:{s:4:"data";s:37:"wpchannel@gmail.com (Aurélien Denis)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:7:"content";a:1:{i:0;a:5:{s:4:"data";s:9469:"<p>Dans ce tuto, je tenais à vous présenter une sous-librairie de jQuery, il s&#8217;agit de jQuery UI. Qui, même si elle est dépendante de jQuery, est très complète. Nous verrons dans un premier temps comment l&#8217;utiliser dans votre projet puis je proposerai des exemples d&#8217;applications pratiques.<span id="more-11874"></span></p> <h2>Importation des éléments jQuery</h2> <p>La première chose à faire est de visiter le site web contenant cette libraire : <a href="http://jqueryui.com/">jQuery UI</a>.</p> <p>Ensuite, nous allons fabriquer notre thème. Pour ce faire, rendez vous dans la section <a href="http://jqueryui.com/themeroller/">&laquo;&nbsp;Design a custom theme&nbsp;&raquo;</a>. Choisissez vos couleurs, polices, textures, arrondis, etc.</p> <p>Une fois l&#8217;opération terminée, téléchargez grâce au bouton <strong>Download Theme</strong> situé en-haut du <strong>theme roller</strong>.</p> <p>Dans la page suivante, vous pourrez enlever les effets que vous ne désirez pas télécharger. Quand vous aurez terminé de sélectionner vos effets cliquez sur <strong>Download</strong>.</p> <p>Vous vous retrouverez avec une archive composée des fichiers suivants :</p> <ul> <li><strong>index.html : </strong>le fichier de présentation de l&#8217;interface, il reprend la plupart des effets et les met sous le thème que vous avez fabriqué ;</li> <li><strong>js/jquery-ui-1.8.16.custom.min.js : </strong>c&#8217;est le fichier JavaScript qui contient les éléments sélectionnés de votre interface ;</li> <li><strong>js/jquery-1.6.2.min.js : </strong>la libraire jQuery au complet&#8230; Il vaut mieux l&#8217;importer pour jQuery UI et enlever l&#8217;intégration de WordPress (nous y reviendrons plus loin) ;</li> <li><strong>development-bundle/ : </strong>dossier servant à développer de nouveaux plugins jQuery&#8230; Absolument inutile à votre niveau ;</li> <li><strong>css/custom-theme/images OU css/nomdutheme-theme/images : </strong>vous l&#8217;aurez compris c&#8217;est ici que sont stockés les images et <em>sprites</em> nécessaires au fonctionnement de jQuery UI ;</li> <li><strong>css/custom-theme/jquery-ui-1.8.16.custom.css OU css/nomdutheme-theme/jquery-ui-1.8.16.custom.css : </strong>le css de votre interface, il met en place le theming choisi, vous pourrez également faire appel à ces quelques classes pour modeler votre site web ;</li> </ul> <p>Pour importer votre libraire dans votre thème WordPress voici les différentes étapes à suivre :</p> <ol> <li>Placer votre dossier <strong>js</strong> directement dans votre thème selon le chemin <strong>/wp-content/themes/nom_du_theme/js/</strong> ;</li> <li>Placer également votre dossier <strong>css</strong> directement dans votre thème comme suit <strong>/wp-content/themes/nom_du_theme/css/</strong> ;</li> <li>Ensuite ouvrez votre fichier <strong>header.php</strong>. Juste après <code>&lt;?php wp_head(); ?&gt;</code>, imputez ceci : <pre>&lt;script src="/js/jquery-1.6.2.min.js"&gt; &lt;script src="/js/jquery-ui-1.8.16.custom.min.js"&gt;</pre> </li> <li>Dans votre fichier <strong>style.css</strong>de votre thème, insérez au tout début la ligne suivante : <pre>@import url(css/jquery-ui-1.8.16.custom.css);</pre> </li> </ol> <p>Félicitations, vous venez d&#8217;installer votre librairie jQuery UI. On va maintenant pouvoir s&#8217;amuser ! <img src="http://wpchannel.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p> <h2>Exemples d&#8217;utilisation</h2> <h3>#1 &#8211; L&#8217;accordéon</h3> <p>Vous avez peut-être déjà tenté de créer, sur votre site, ce type d&#8217;animation. Et vous savez donc à quel point cela relève du défi sans jQuery et jQuery UI.</p> <p>Je vais vous expliquer comment utilisé cet effet. Mais pour commencer, voici quelques pré-requis :</p> <ul> <li><strong>Un bloc <code>&lt;div&gt;</code> dit container</strong> : ce bloc est dit <em>container</em>, c&#8217;est à dire qu&#8217;il englobera votre accordéon ;</li> <li><strong>Un titre pour chaque partie de l&#8217;accordéon</strong> : le titre d&#8217;un bloc servira à le rétracter ou à l&#8217;étirer.</li> <li><strong>Un bloc <code>&lt;div&gt;</code> pour chaque partie de l&#8217;accordéon</strong> : vous l&#8217;aurez compris, chaque partie de l&#8217;accordéon sera composée d&#8217;un titre et d&#8217;un bloc ;</li> </ul> <p>Exemple de code :</p> <pre>&lt;div id="accordion"&gt; &lt;!-- PARTIE 1 --&gt; &lt;h3&gt;&lt;a href="#"&gt;Partie 1&lt;/a&gt;&lt;/h3&gt; &lt;div&gt; &lt;p&gt;Contenu de la partie 1 de votre accordéon.&lt;/p&gt; &lt;/div&gt; &lt;!-- END OF PARTIE 1 --&gt; &lt;!-- PARTIE 2 --&gt; &lt;h3&gt;&lt;a href="#"&gt;Partie 2&lt;/a&gt;&lt;/h3&gt; &lt;div&gt; &lt;p&gt;Contenu de la partie 2 de votre accordéon.&lt;/p&gt; &lt;/div&gt; &lt;!-- END OF PARTIE 2 --&gt; ETC..... &lt;/div&gt;</pre> <p>Et c&#8217;est tout&#8230; Et bien oui. Le reste sera géré par jQuery UI.</p> <p>Voici maintenant le code JavaScript :</p> <pre>jQuery(function() {     jQuery( "#accordion" ).accordion({         autoHeight: false,         }); });</pre> <p>Au final, vous devriez obtenir quelque chose dans ce goût là :</p> <div id="attachment_12248" class="wp-caption alignnone" style="width: 595px"><img class="size-medium wp-image-12248" src="http://wpchannel.com/images/2012/01/accordionform-585x386.jpg" alt="" width="585" height="386" /><p class="wp-caption-text">Exemple d&#39;accordéon utilisé dans un formulaire</p></div> <h3>#2 &#8211; Datepicker</h3> <p>Sous ce nom barbare se cache un outil qui permet d&#8217;afficher un calendrier lorsque qu&#8217;on entre dans un champ formulaire de type date. Ce champ référence alors la date sélectionnée. C&#8217;est un sélecteur de date de l&#8217;anglais <em>date picker</em><strong> - vous connaissez sûrement le <em>color picker</em>.</strong></p> <p>Pré-requis :</p> <ul> <li>Un champ date : celui-ci n&#8217;est autre qu&#8217;un input de type text. Mais il servira à renvoyer une date ;</li> </ul> <p>Exemple de code :</p> <pre>&lt;label for="date"&gt;Date&lt;/label&gt; &lt;input type="text" id="date" value="jj/mm/aa" /&gt;</pre> <p>Ensuite viens la partie JavaScript :</p> <pre> jQuery(function() {     jQuery('.date').datepicker({         dateFormat: 'dd-mm-yy',         dayNames: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'],         dayNamesMin: ['Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa'],         dayNamesShort : ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'],         monthNames: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Aout', 'Septembre', 'Octobre', 'Novembre', 'Décembre'],         monthNamesMin: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Aout', 'Septembre', 'Octobre', 'Novembre', 'Décembre'],         monthNamesShort: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Aout', 'Septembre', 'Octobre', 'Novembre', 'Décembre'],         changeYear: true,         yearRange: 'c-100:c',         showAnim: 'fold'         }); });</pre> <p>Cet exemple est, pour moi, un bon exercice d&#8217;intégration des options dans jQuery UI.</p> <p>En effet, afin d&#8217;avoir un affichage correct et en français de votre datepicker. Vous devrez inscrire une série d&#8217;option à votre fonction.</p> <p>Et enfin voici ce à quoi votre champ devrait ressembler :</p> <div id="attachment_12251" class="wp-caption alignnone" style="width: 310px"><img class="size-full wp-image-12251" src="http://wpchannel.com/images/2012/01/datepicker.jpg" alt="Sélecteur de date" width="300" height="251" /><p class="wp-caption-text">Voici un sélecteur de date (et il est même daté du 4/01/2012)</p></div> <p><strong>C&#8217;est tout pour le moment. Entrainez-vous sur d&#8217;autres effets&#8230;. J&#8217;expliquerais plus en détails des exemples d&#8217;utilisation plus complexes de cette formidable librairie. Cela fera l&#8217;objet d&#8217;autres tutoriels.</strong></p> <div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=gWOFaWZQk_s:emqmx4R3cKk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=gWOFaWZQk_s:emqmx4R3cKk:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=gWOFaWZQk_s:emqmx4R3cKk:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=gWOFaWZQk_s:emqmx4R3cKk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=gWOFaWZQk_s:emqmx4R3cKk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=gWOFaWZQk_s:emqmx4R3cKk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?i=gWOFaWZQk_s:emqmx4R3cKk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=gWOFaWZQk_s:emqmx4R3cKk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/WordpressChannel?a=gWOFaWZQk_s:emqmx4R3cKk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/WordpressChannel?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/WordpressChannel/~4/gWOFaWZQk_s" height="1" width="1" />";s:7:"attribs";a:1:{s:0:"";a:1:{s:4:"type";s:4:"html";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:4:"info";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:1:{s:3:"uri";s:26:"wordpressfrancophoneplanet";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}s:4:"type";i:512;s:7:"headers";a:9:{s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:4:"etag";s:27:"DvoNaHtvrp26iTrQtpZkMcngiTo";s:13:"last-modified";s:29:"Sat, 21 Jan 2012 04:41:23 GMT";s:4:"date";s:29:"Sat, 21 Jan 2012 04:42:25 GMT";s:7:"expires";s:29:"Sat, 21 Jan 2012 04:42:25 GMT";s:13:"cache-control";s:18:"private, max-age=0";s:22:"x-content-type-options";s:7:"nosniff";s:16:"x-xss-protection";s:13:"1; mode=block";s:6:"server";s:3:"GSE";}s:5:"build";s:14:"20090627192103";}no
11650_transient_timeout_feed_253de389bad96c5309a80d6ac32e94d01327164145no
11660_transient_timeout_feed_2fb9572e3d6a42f680e36370936a57ae1327164145no
11670_transient_feed_253de389bad96c5309a80d6ac32e94d0a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:4:" ";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:33:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:72:"link:http://www.alicepegie.com/wordpress/wordpress/ - Google Blog Search";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:109:"http://www.google.com/search?ie=utf-8&q=link:http://www.alicepegie.com/wordpress/wordpress/&tbm=blg&tbs=sbd:1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"Your search - <b>link:http://www.alicepegie.com/wordpress/wordpress/</b> - did not match any documents. ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://a9.com/-/spec/opensearch/1.1/";a:3:{s:12:"totalResults";a:1:{i:0;a:5:{s:4:"data";s:1:"0";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:10:"startIndex";a:1:{i:0;a:5:{s:4:"data";s:1:"1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:12:"itemsPerPage";a:1:{i:0;a:5:{s:4:"data";s:2:"10";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:9:{s:12:"content-type";s:28:"text/xml; charset=ISO-8859-1";s:4:"date";s:29:"Sat, 21 Jan 2012 04:42:25 GMT";s:7:"expires";s:2:"-1";s:13:"cache-control";s:18:"private, max-age=0";s:10:"set-cookie";a:2:{i:0;s:143:"PREF=ID=06357418a7ecc028:FF=0:TM=1327120945:LM=1327120945:S=OYIXRUwuXMxMfDIW; expires=Mon, 20-Jan-2014 04:42:25 GMT; path=/; domain=.google.com";i:1;s:212:"NID=56=yo4wLfSaMQXo44a_f_z0SSazWQdIlQDW9jBtgN6A6bWJoDkPcYSnlL09kYrUnCeaCngVBB8ZZOM1FPcdyyQ_3fb0KaqzeV87I5cYr1_ne9CJWy9EUbUAys4VhS7cIEdk; expires=Sun, 22-Jul-2012 04:42:25 GMT; path=/; domain=.google.com; HttpOnly";}s:3:"p3p";s:122:"CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info."";s:6:"server";s:3:"gws";s:16:"x-xss-protection";s:13:"1; mode=block";s:15:"x-frame-options";s:10:"SAMEORIGIN";}s:5:"build";s:14:"20090627192103";}no
11790_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc1327164146no
11800_transient_feed_a5420c83891a9c88ad2a4f04584a5efca:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:" ";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"http://wordpress.org/extend/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 21 Jan 2012 04:40:36 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:25:"http://bbpress.org/?v=1.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"Matt Mullenweg on "Akismet"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:52:"http://wordpress.org/extend/plugins/akismet/#post-15";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:11:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:39:"15@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:98:"Akismet checks your comments against the Akismet web service to see if they look like spam or not.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Matt Mullenweg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"Alex Rabe on "NextGEN Gallery"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"http://wordpress.org/extend/plugins/nextgen-gallery/#post-1169";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 23 Apr 2007 20:08:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"1169@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:108:"NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with dozens of options and features.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:9:"Alex Rabe";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"uberdose on "All in One SEO Pack"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:40:"753@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:92:"Automatically optimizes your Wordpress blog for Search Engines (Search Engine Optimization).";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:36:"Takayuki Miyoshi on "Contact Form 7"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wordpress.org/extend/plugins/contact-form-7/#post-2141";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 02 Aug 2007 12:45:03 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"2141@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:54:"Just another contact form plugin. Simple but flexible.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:29:"Arne on "Google XML Sitemaps"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:70:"http://wordpress.org/extend/plugins/google-sitemap-generator/#post-132";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 22:31:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:40:"132@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Arne";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:41:"Joost de Valk on "WordPress SEO by Yoast"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/extend/plugins/wordpress-seo/#post-8321";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 Jan 2009 20:34:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"8321@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:131:"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Joost de Valk";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:38:"Brian Colinger on "WordPress Importer"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:66:"http://wordpress.org/extend/plugins/wordpress-importer/#post-18101";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 May 2010 17:42:45 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"18101@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"Brian Colinger";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"BraveNewCode Inc. on "WPtouch"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/extend/plugins/wptouch/#post-5468";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 May 2008 04:58:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"5468@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"WPtouch: A simple, powerful and elegant mobile theme for your website. WPtouch automatically transforms your WordPress website into an application-li";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"BraveNewCode Inc.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:42:"Vladimir Prelovac on "SEO Friendly Images"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:56:"http://wordpress.org/extend/plugins/seo-image/#post-4729";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 01 Mar 2008 15:03:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"4729@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"SEO Friendly Images automatically adds alt and title attributes to all your images. Improves traffic from search engines and makes the image tags W3C/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"Vladimir Prelovac";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:66:"eight7teen on "SexyBookmarks | email, bookmark, and share buttons"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/extend/plugins/sexybookmarks/#post-9249";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 22 Feb 2009 11:30:11 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"9249@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:104:"Adds an attractive social bookmarking menu to your posts, pages, index, or any combination of the three.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"eight7teen";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"kikadev on "gtrans"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/extend/plugins/gtrans/#post-30417";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 22 Sep 2011 11:48:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"30417@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:45:"GTranslate: Google Translate for your website";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"kikadev";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"Takayuki Miyoshi on "Really Simple CAPTCHA"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.org/extend/plugins/really-simple-captcha/#post-9542";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 09 Mar 2009 02:17:35 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"9542@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:138:"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Takayuki Miyoshi";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:36:"Donncha O Caoimh on "WP Super Cache"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wordpress.org/extend/plugins/wp-super-cache/#post-2572";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 05 Nov 2007 11:40:04 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"2572@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:73:"A very fast caching engine for WordPress that produces static html files.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:16:"Donncha O Caoimh";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:54:"Michael Adams (mdawaffe) on "Jetpack by WordPress.com"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/extend/plugins/jetpack/#post-23862";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Jan 2011 02:21:38 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"23862@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:104:"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:24:"Michael Adams (mdawaffe)";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"Lester Chan on "WP-PageNavi"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:57:"http://wordpress.org/extend/plugins/wp-pagenavi/#post-363";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 09 Mar 2007 23:17:57 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:40:"363@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:49:"Adds a more advanced paging navigation interface.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:11:"Lester Chan";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:52:"http://wordpress.org/extend/plugins/rss/view/popular";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 21 Jan 2012 04:42:26 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:19:"2007-03-09 22:11:30";s:14:"content-length";s:4:"7801";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20090627192103";}no
11850_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c21327164147no
11860_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c21327120947no
11870_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e1327164147no
11880_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e<h4>Plus populaire</h4> <h5><a href='http://wordpress.org/extend/plugins/really-simple-captcha/'>Really Simple CAPTCHA</a></h5>&nbsp;<span>(<a href='plugin-install.php?tab=plugin-information&amp;plugin=really-simple-captcha&amp;_wpnonce=8a61de1c8b&amp;TB_iframe=true&amp;width=600&amp;height=800' class='thickbox' title='Really Simple CAPTCHA'>Installer</a>)</span> <p>Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.</p> <h4>Mises à jour récentes</h4> <h5><a href='http://wordpress.org/extend/plugins/artisteer-buddy/'>Artisteer Buddy</a></h5>&nbsp;<span>(<a href='plugin-install.php?tab=plugin-information&amp;plugin=artisteer-buddy&amp;_wpnonce=26f405b065&amp;TB_iframe=true&amp;width=600&amp;height=800' class='thickbox' title='Artisteer Buddy'>Installer</a>)</span> <p>A collection of functions to better Artisteer built themes.</p> no
11920moreLink_isJumpDisabledyes
11930moreLink_isOpenNewWindowyes
11940moreLink_limitTypenoneyes
11950moreLink_maxLimityes
11960moreLink_showEllipsisyes
11970moreLink_linkTextContinue reading '[TITLE]'yes
8140widget_pagesa:1:{s:12:"_multiwidget";i:1;}yes
1440_transient_timeout_plugin_slugs1327215150no
1450_transient_plugin_slugsa:7:{i:0;s:19:"akismet/akismet.php";i:1;s:38:"cispm-contact-mail/cispm09_contact.php";i:2;s:57:"facebook-comments-importer/facebook-comments-importer.php";i:3;s:51:"facebook-like-thumbnail/facebook-like-thumbnail.php";i:4;s:39:"post-category-index-generator/index.php";i:5;s:53:"related-posts-thumbnails/related-posts-thumbnails.php";i:6;s:28:"wysija-newsletters/index.php";}no
12000_site_transient_timeout_wporg_theme_feature_list1327154155yes
12010_site_transient_wporg_theme_feature_lista:5:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:7:"Columns";a:6:{i:0;s:10:"one-column";i:1;s:11:"two-columns";i:2;s:13:"three-columns";i:3;s:12:"four-columns";i:4;s:12:"left-sidebar";i:5;s:13:"right-sidebar";}s:5:"Width";a:2:{i:0;s:11:"fixed-width";i:1;s:14:"flexible-width";}s:8:"Features";a:18:{i:0;s:8:"blavatar";i:1;s:10:"buddypress";i:2;s:17:"custom-background";i:3;s:13:"custom-colors";i:4;s:13:"custom-header";i:5;s:11:"custom-menu";i:6;s:12:"editor-style";i:7;s:21:"featured-image-header";i:8;s:15:"featured-images";i:9;s:20:"front-page-post-form";i:10;s:19:"full-width-template";i:11;s:12:"microformats";i:12;s:12:"post-formats";i:13;s:20:"rtl-language-support";i:14;s:11:"sticky-post";i:15;s:13:"theme-options";i:16;s:17:"threaded-comments";i:17;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}yes
1500recently_activateda:12:{s:25:"subscribe2/subscribe2.php";i:1327128738;s:32:"more-link-modifier/more-link.php";i:1327121881;s:45:"read-more-right-here/read-more-right-here.php";i:1327121687;s:44:"g-lock-double-opt-in-manager/glsft-optin.php";i:1327121676;s:31:"df-pagination/df-pagination.php";i:1327121670;s:55:"custom-more-link-complete/custom-more-link-complete.php";i:1327067449;s:50:"children-index-shortcode-plugin/children-index.php";i:1327067067;s:37:"wp-content-index/wp-content-index.php";i:1327067037;s:29:"rss-importer/rss-importer.php";i:1326974142;s:29:"dynamicwp-running-rss/rss.php";i:1326918506;s:41:"joomla-15-importer/joomla-15-importer.php";i:1326916716;s:52:"joomla-to-wordpress-migrator/joomla2wp-functions.php";i:1326916703;}yes
11890_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a1327132259yes
11900_site_transient_poptags_40cd750bba9870f18aada2478b24840aa:40:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"2477";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"1672";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"1488";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"1249";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"1237";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1202";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:3:"881";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:3:"809";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:3:"778";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:3:"758";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:3:"739";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:3:"686";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:3:"675";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:3:"600";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"530";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:3:"517";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"445";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"443";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"439";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:3:"430";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:3:"428";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:3:"400";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:3:"389";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"379";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"373";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"355";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"354";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"354";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"350";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"345";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"345";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"340";}s:5:"flash";a:3:{s:4:"name";s:5:"flash";s:4:"slug";s:5:"flash";s:5:"count";s:3:"328";}s:4:"tags";a:3:{s:4:"name";s:4:"tags";s:4:"slug";s:4:"tags";s:5:"count";s:3:"318";}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";s:3:"312";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"309";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"301";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"289";}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";s:3:"289";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"283";}}yes
9350content_index_optiona:13:{s:8:"position";s:5:"right";s:2:"ds";b:1;s:7:"dbcache";b:0;s:7:"listnum";b:0;s:5:"level";b:0;s:5:"title";b:1;s:10:"title_text";s:5:"Index";s:6:"hidebt";b:0;s:9:"showempty";b:0;s:10:"showmirage";b:0;s:14:"excerpt_append";b:0;s:13:"excerpt_fixed";b:0;s:11:"signheading";b:0;}yes
1550theme_mods_diarya:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1326814355;s:4:"data";a:2:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:1:{i:0;s:12:"categories-2";}}}}yes
1560theme_switchedyes
1680widget_nav_menua:1:{s:12:"_multiwidget";i:1;}yes
2100ftp_credentialsa:3:{s:8:"hostname";s:18:"ftp.alicepegie.com";s:8:"username";s:12:"sys_alicepeg";s:15:"connection_type";s:3:"ftp";}yes
5860theme_header_show_headline1yes
5870theme_header_show_slogan1yes
2120gsom_msg_confirmation_succeedyes
9950wysijeyYTozOntzOjExOiJkb21haW5fbmFtZSI7czoxNDoiYWxpY2VwZWdpZS5jb20iO3M6MzoidXJsIjtzOjgzOiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtYWRtaW4vYWRtaW4ucGhwP3BhZ2U9d3lzaWphX2NvbmZpZyI7czoxMzoiNGYxODMzZmQ3NjBmNiI7czoxOToiV1lTSUpBNGYxODMzZmQ3ODgwOCI7fQ==yes
9960wysicheckyes
2130gsom_db_version2.5.0yes
2140gsom_form_titleNewsletteryes
2150gsom_email_fromwebmaster@alicepegie.comyes
2160gsom_name_fromUne Graine de Maniguetteyes
2170gsom_email_confirmation_subjyes
2180gsom_email_confirmation_msgyes
2190gsom_email_welcome_subjMerci de votre inscription à la Newsletter de mon Blog $blog_urlyes
2200gsom_email_welcome_msgVous êtes désormais abonnez à ma Newsletter hebdomadaire. Vous recevrez donc chaque Samedi la liste de mes derniers articles publiés dans la semaine. Bien entendu je m’engage à ne divulguer, sous aucun prétexte, vos informations personnelles à des personnes tierces. Pour être sure de bien recevoir ma newsletter, pensez à m’ajouter dans vos contacts. Cordialement $from_name $blog_name $blog_url -- Vous recevez ce message suite à votre inscription le $subscription_time à $blog_url pour yn abonnement à notre e-newsletters. Vous pouvez modifier votre inscription via le lien ci dessous: $manage_subscription_linkyes
2210gsom_email_unsubscribe_subjDésabonnementyes
2220gsom_email_unsubscribe_msgChèr(e) $gsom_fname_field, Nous vous adressons ce message car nous avons reçu une demande de désabonnement à notre Newsletter: Nom: $gsom_fname_field Email: $gsom_email_field Vos données ont donc été effacées de notre base de données. Cordialement. $from_name $from_email $blog_urlyes
2230gsom_send_welcome_message1yes
2240gsom_send_unsubscibed_message1yes
2250gsom_msg_confirmation_requiredyes
9930wysija_import_fieldsa:11:{s:5:"fname";s:9:"firstname";s:9:"firstname";s:9:"firstname";s:6:"prenom";s:9:"firstname";s:3:"nom";s:8:"lastname";s:4:"name";s:8:"lastname";s:8:"lastname";s:8:"lastname";s:5:"lname";s:8:"lastname";s:9:"ipaddress";s:2:"ip";s:2:"ip";s:2:"ip";s:10:"addresseip";s:2:"ip";s:5:"email";s:5:"email";}yes
12530_site_transient_update_themesO:8:"stdClass":3:{s:12:"last_checked";i:1327143350;s:7:"checked";a:3:{s:16:"maniguettepress2";s:3:"1.0";s:12:"twentyeleven";s:3:"1.3";s:9:"twentyten";s:3:"1.3";}s:8:"response";a:0:{}}yes
11830_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c21327164147no
11840_transient_feed_1a5f760f2e2b48827d4974a60857e7c2a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:" ";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"WordPress Plugins » View: Recently Updated";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"http://wordpress.org/extend/plugins/browse/updated/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:43:"WordPress Plugins » View: Recently Updated";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 21 Jan 2012 04:31:07 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:25:"http://bbpress.org/?v=1.1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:41:"Collin Donahue-Oponski on "CF Whiteboard"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:61:"http://wordpress.org/extend/plugins/cf-whiteboard/#post-32651";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 04 Dec 2011 00:15:26 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"32651@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:95:"CF Whiteboard is a CrossFit&#8482; workout tracker that integrates with your affiliate website.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:22:"Collin Donahue-Oponski";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"robpachasa on "Artisteer Buddy"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/extend/plugins/artisteer-buddy/#post-34043";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 20 Jan 2012 00:15:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"34043@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:59:"A collection of functions to better Artisteer built themes.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"robpachasa";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:2;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"fasqu on "MasterIT Authors List"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"http://wordpress.org/extend/plugins/masterit-authors-list/#post-34012";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 19 Jan 2012 09:26:31 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"34012@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:49:"Plugin for ordered authors list in WordPress blog";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"fasqu";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:3;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"luyi0619 on "Topcoder Rating Show"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.org/extend/plugins/topcoder-rating-show/#post-34052";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 20 Jan 2012 08:25:52 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"34052@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:47:"Display the information of your TopCoder Rating";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"luyi0619";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:4;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:47:"Jeremy B. Shapiro on "GoToWebinar Registration"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/extend/plugins/gtwregister/#post-28180";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 07 Jul 2011 23:53:55 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"28180@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:98:"This WordPress plugin background registers folks for a GoToWebinar right from your WordPress site.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:17:"Jeremy B. Shapiro";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:5;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Arpit Shah on "WP Archive-Sitemap Generator"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:76:"http://wordpress.org/extend/plugins/wp-archive-sitemap-generator/#post-12014";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 26 Jul 2009 03:11:24 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"12014@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:100:"WP Archive-Sitemap Generator plugin Generates simple Archives/Sitemap based on your posts and pages.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Arpit Shah";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:6;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"Arpit Shah on "Facebook Members"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/extend/plugins/facebook-members/#post-21215";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Sep 2010 17:39:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"21215@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:128:"Facebook Members is a WordPres Social Plugin that enables Facebook Page owners to attract and gain Likes from their own website.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Arpit Shah";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:7;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:36:"Arpit Shah on "All in One Webmaster"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.org/extend/plugins/all-in-one-webmaster/#post-14498";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 30 Nov 2009 22:28:51 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"14498@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"Sitemap submission to Google,Bing,Yahoo &#38; Ask. Webmaster option for Google,Bing,Alexa,Yahoo,Facebook &#38; BlogCatalog. Analytics option for Googl";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Arpit Shah";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:8;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"SocialBlogsite on "SOPA censured intro page"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:72:"http://wordpress.org/extend/plugins/sopa-censored-intro-page/#post-34056";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 20 Jan 2012 11:12:44 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"34056@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:148:"SOPA censured intro page will help will show your support, with a touch of humor, with a &#34;Censured&#34; splash page for 10 seconds before to rev";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:14:"SocialBlogsite";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:9;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:38:"nick_thegeek on "Genesis Style Select"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.org/extend/plugins/genesis-style-select/#post-18552";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 13 Jun 2010 02:09:25 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"18552@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:89:"Permits users to quickly and easily change style sheets with the Genesis framework themes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"nick_thegeek";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:10;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"nick_thegeek on "Genesis Simple Breadcrumbs"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"http://wordpress.org/extend/plugins/genesis-simple-breadcrumbs/#post-26679";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 18 May 2011 20:10:40 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"26679@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:91:"Genesis Menu options with custom menu, categories, pages, and primary/secondary nav extras.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"nick_thegeek";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:11;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"nick_thegeek on "Genesis Nav Menu Amplified"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:74:"http://wordpress.org/extend/plugins/genesis-nav-menu-amplified/#post-26499";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 12 May 2011 13:38:37 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"26499@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:91:"Genesis Menu options with custom menu, categories, pages, and primary/secondary nav extras.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"nick_thegeek";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:12;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:29:"Glenn Ansley on "FT Calendar"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/extend/plugins/ft-calendar/#post-24823";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 01 Mar 2011 04:51:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"24823@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:206:"A calendar plugin supporting multiple calendars, recurring events, and several different widgets / shortcodes. More info at <a href="http://calendar-plugin.com" rel="nofollow">http://calendar-plugin.com</a>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Glenn Ansley";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:13;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"fd on "FD Word Statistics Plugin"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:69:"http://wordpress.org/extend/plugins/word-statistics-plugin/#post-4910";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 20 Mar 2008 21:48:32 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"4910@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:141:"Shows word and sentence counts plus a readability analysis of the post currently being edited using three different readability measurements.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:2:"fd";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:14;a:6:{s:4:"data";s:30:" ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"Carreg on "Text Obfuscator"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:63:"http://wordpress.org/extend/plugins/text-obfuscator/#post-14235";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 16 Nov 2009 14:00:05 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"14235@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:90:"Replaces words and phrases in your posts&#039; content with alternative words and phrases.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:6:"Carreg";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}s:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:52:"http://wordpress.org/extend/plugins/rss/view/updated";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Sat, 21 Jan 2012 04:42:27 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:19:"2011-12-04 00:15:26";s:14:"content-length";s:4:"7981";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20090627192103";}no
2260gsom_msg_unsubscribe_succeedyes
2270gsom_msg_bad_email_address<h2>Veuillez rentrer une adresse e-mail valide SVP</h2>yes
2280gsom_msg_email_subscribed_and_confirmedyes
9860wysija_queriesno
9870wysija_msgno
2290gsom_msg_email_subscribed_but_not_confirmedyes
9810uninstall_pluginsa:2:{i:0;b:0;s:32:"wysija-newsletters/core/base.php";s:16:"wysija_uninstall";}yes
9830wysija_post_type_updated1326984369yes
9840wysija_post_type_created1326984369yes
9850wysijaYTozNTp7czoxNzoidG90YWxfc3Vic2NyaWJlcnMiO3M6MzoiMjg5IjtzOjk6ImZyb21fbmFtZSI7czoyNDoiVW5lIEdyYWluZSBkZSBNYW5pZ3VldHRlIjtzOjEyOiJyZXBseXRvX25hbWUiO3M6MjQ6IlVuZSBHcmFpbmUgZGUgTWFuaWd1ZXR0ZSI7czoxMDoiZnJvbV9lbWFpbCI7czoyNDoid2VibWFzdGVyQGFsaWNlcGVnaWUuY29tIjtzOjEzOiJyZXBseXRvX2VtYWlsIjtzOjI0OiJ3ZWJtYXN0ZXJAYWxpY2VwZWdpZS5jb20iO3M6MTU6ImVtYWlsc19ub3RpZmllZCI7czoyNDoid2VibWFzdGVyQGFsaWNlcGVnaWUuY29tIjtzOjE1OiJkZWZhdWx0X2xpc3RfaWQiO2k6MTtzOjE2OiJpbXBvcnR3cF9saXN0X2lkIjtpOjI7czoxODoiY29uZmlybV9lbWFpbF9saW5rIjtpOjMxNTtzOjEyOiJ1cGxvYWRmb2xkZXIiO3M6OTM6Ii9ob21lL3d3dy80ZGMzYzcxZWQxZmMyZmNhY2IzYmY2MWZhMGQ5OWE3OS93ZWIvd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3VwbG9hZHMvd3lzaWphLyI7czo5OiJ1cGxvYWR1cmwiO3M6NzI6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3VwbG9hZHMvd3lzaWphLyI7czoxNjoiY29uZmlybV9lbWFpbF9pZCI7aToyO3M6OToiaW5zdGFsbGVkIjtiOjE7czoxNDoiaW5zdGFsbGVkX3RpbWUiO2k6MTMyNjk4NDM3MDtzOjE1OiJjb21wYW55X2FkZHJlc3MiO3M6MTg6Ind3dy5hbGljZXBlZ2llLmNvbSI7czoyNDoiZW1haWxzX25vdGlmaWVkX3doZW5fc3ViIjtzOjE6IjEiO3M6MzM6ImVtYWlsc19ub3RpZmllZF93aGVuX2RhaWx5c3VtbWFyeSI7czoxOiIxIjtzOjk6InNtdHBfaG9zdCI7czoxOToibWFpbC5pbmZvbWFuaWFrLmNvbSI7czoxMDoic210cF9sb2dpbiI7czoyNDoid2VibWFzdGVyQGFsaWNlcGVnaWUuY29tIjtzOjEzOiJzbXRwX3Bhc3N3b3JkIjtzOjk6Im5nYTAxMDY4MCI7czoxMToic210cF9zZWN1cmUiO3M6MToiMCI7czoxOToic2VuZGluZ19lbWFpbHNfZWFjaCI7czo2OiJob3VybHkiO3M6MTI6ImJvdW5jZV9lbWFpbCI7czowOiIiO3M6OToibGFzdF9zYXZlIjtpOjEzMjY5ODQ5MTc7czoxNzoiY29uZmlybV9kYmxlb3B0aW4iO3M6MToiMCI7czoxNDoic2VuZGluZ19tZXRob2QiO3M6NDoic210cCI7czo5OiJzbXRwX3BvcnQiO3M6MzoiNTg3IjtzOjg6Il93cG5vbmNlIjtzOjEwOiI2NDgxMzFlNTE5IjtzOjE2OiJfd3BfaHR0cF9yZWZlcmVyIjtzOjU4OiIvd29yZHByZXNzL3dvcmRwcmVzcy93cC1hZG1pbi9hZG1pbi5waHA/cGFnZT13eXNpamFfY29uZmlnIjtzOjY6ImFjdGlvbiI7czo0OiJzYXZlIjtzOjExOiJyZWRpcmVjdHRhYiI7czoxNDoiI3NlbmRpbmdtZXRob2QiO3M6MTc6InNlbmRpbmdfZW1haWxzX29rIjtiOjE7czoxMToicHJlbWl1bV9rZXkiO3M6MDoiIjtzOjExOiJwcmVtaXVtX3ZhbCI7czowOiIiO3M6MjY6ImVtYWlsc19ub3RpZmllZF93aGVuX3Vuc3ViIjtiOjA7fQ==yes
2300gsom_msg_change_subscription You can change your subscription email <b>$decoded_email</b> <p> <form style="text-align: left;" method="POST" action="$blog_url"> <input type="hidden" name="u" value="$ucode"> <label for="gsom-chsub-newemail">New Email:</label><input type="text" name="gsom-chsub-newemail" /> <input type="submit" value="Change my email" name="gsom-chsub" /> </form> </p> <p> You can unsubscribe from our mailing list: <form style="text-align: left;" action="$blog_url" method="post"> <input type="hidden" name="u" value="$ucode"> $gsom_unsubscribe_reason_form <p style="margin-top:5px;"> <input type="submit" value="Unsubscribe" name="gsom-unsubscribe" /></p> </form> </p>yes
2310gsom_sform_headeryes
2320gsom_sform_footerMerciyes
2800gsom_cron_clean_unsubscribed_every_weekyes
2330gsom_def_form[{"label": "First Name:", "name": "gsom_fname_field", "value": "", "type": "text"}, {"label": "Last Name:", "name": "Last_Name1", "value": "", "type": "text"}, {"label": "Email:", "name": "gsom_email_field", "value": "", "type": "text"}, {"label": "", "name": "gsomsubscribe", "value": "Subscribe", "type": "submit"}]yes
2340gsom_form[{"label":"Nom","name":"gsom_fname_field","oldName":"","value":"","type":"text"},{"label":"Email:","name":"gsom_email_field","oldName":"","value":"","type":"text"},{"label":"","name":"gsomsubscribe","oldName":"","value":"Inscription","type":"submit"}]yes
2350gsom_email_address_changed_msg Thank you! Your email address was changed to $gsom_email_field. You can modify your subscription via the link below: $manage_subscription_linkyes
2360gsom_email_address_changed_subj$blog_url Subscription Email Address Updatedyes
2370gsom_email_subscribtion_event_subjA contact has joined your mailing list at $blog_nameyes
2380gsom_email_subscribtion_event_msg A contact has joined your mailing list. The contact's details are listed below: $gsom_form_data -- $blog_urlwp-admin/ -> Settings -> G-Lock Double Opt-In Manageryes
2390gsom_email_unsubscribtion_event_subjA contact has unsubscribed from your mailing list at $blog_nameyes
2400gsom_email_unsubscribtion_event_msg A contact has unsubscribed from your mailing list. The contact's details are listed below: $gsom_form_data Reason: $u_reason -- $blog_urlwp-admin/ -> Settings -> G-Lock Double Opt-In Manageryes
2410gsom_send_event_notif1yes
2420gsom_mail_delivery_optionsendmailyes
2430gsom_smtp_hostnameyes
2440gsom_smtp_usernameyes
2450gsom_smtp_passwordyes
2460gsom_smtp_portyes
2470gsom_dashboard_statsoffyes
2480gsom_smtp_secure_connoffyes
2490gsom_bcst_email_subj$last_rss_item_date - $last_rss_item_titleyes
2500gsom_bcst_email_msgHi $gsom_fname_field,<br><br> Here's what's new at the <a target="" title="" href="$blog_url">$blog_url</a> over the past few days. Your comments and feedback are always welcome.<br> <ol>$rss_itemblock <li><a href="$rss_item_link">$rss_item_title</a> - $rss_item_date<br> $rss_item_description<br><br> </li> /$rss_itemblock</ol>Sincerely,<br> $from_name<br> <a href="$blog_url">$blog_name</a><br> <br> <br> --<br> You are receiving this email because on $subscription_time at <a href="$blog_url">$blog_url</a> you subscribed to receive our e-newsletters.<br> <br> You can modify your subscription via the link below:<br> <a href="$manage_subscription_link">$manage_subscription_link</a><br>yes
2510gsom_bcst_email_msg_plainWelcome to the $blog_name newsletter. Here's what's new at the $blog_url over the past few days. Your comments and feedback are always welcome. $rss_channel_title $rss_channel_link $rss_channel_description $rss_itemblock $rss_item_number. $rss_item_link - $rss_item_date $rss_item_title. $rss_item_description /$rss_itemblock Sincerely, $from_name $blog_name $blog_url -- You are receiving this email because on $subscription_time at $blog_url you subscribed to receive our e-newsletters. You can modify your subscription via the link below: $manage_subscription_linkyes
2520gsom_bcst_number_of_posts6yes
2530gsom_bcst_day_number15yes
2540gsom_bcst_whensatyes
2550gsom_bcst_senddateyes
2560gsom_def_bcst_email_subj$last_rss_item_date - $last_rss_item_titleyes
2570gsom_def_bcst_email_msgHi $gsom_fname_field,<br><br> Here's what's new at the <a target="" title="" href="$blog_url">$blog_url</a> over the past few days. Your comments and feedback are always welcome.<br> <ol>$rss_itemblock <li><a href="$rss_item_link">$rss_item_title</a> - $rss_item_date<br> $rss_item_description<br><br> </li> /$rss_itemblock</ol>Sincerely,<br> $from_name<br> <a href="$blog_url">$blog_name</a><br> <br> <br> --<br> You are receiving this email because on $subscription_time at <a href="$blog_url">$blog_url</a> you subscribed to receive our e-newsletters.<br> <br> You can modify your subscription via the link below:<br> <a href="$manage_subscription_link">$manage_subscription_link</a><br>yes
2580gsom_def_bcst_email_msg_plainWelcome to the $blog_name newsletter. Here's what's new at the $blog_url over the past few days. Your comments and feedback are always welcome. $rss_channel_title $rss_channel_link $rss_channel_description $rss_itemblock $rss_item_number. $rss_item_link - $rss_item_date $rss_item_title. $rss_item_description /$rss_itemblock Sincerely, $from_name $blog_name $blog_url -- You are receiving this email because on $subscription_time at $blog_url you subscribed to receive our e-newsletters. You can modify your subscription via the link below: $manage_subscription_linkyes
2590gsom_bcst_dom_post_limit10yes
2600gsom_rss_excerpt_length350yes
2610gsom_write_debug_logyes
2620gsom_feed_limit6yes
2630gsom_filter_images0yes
2640gsom_form_xdataaHRtbCBlbWFpbCBtYXJrZXRpbmcgc29mdHdhcmU=yes
2650gsom_last_broadcast1327674300yes
2660gsom_broadcast_lock0yes
2720DynamicwpAjaxRssAdminOptionsa:9:{s:7:"feedurl";s:0:"";s:6:"apikey";s:0:"";s:9:"rssnumber";s:0:"";s:11:"scrollspeed";s:0:"";s:15:"backgroundcolor";s:0:"";s:5:"title";s:0:"";s:9:"textcolor";s:0:"";s:13:"rsstitlecolor";s:0:"";s:9:"datecolor";s:0:"";}yes
2850gsom_bcst_sel_catyes
2860gsom_bcst_sel_authyes
2870gsom_show_full_posts0yes
2760cispm_mail_receptionwebmaster@alicepegie.comyes
2770cispm_width_form450yes
10170category_childrena:8:{i:6;a:7:{i:0;i:12;i:1;i:13;i:2;i:14;i:3;i:15;i:4;i:16;i:5;i:17;i:6;i:18;}i:7;a:11:{i:0;i:19;i:1;i:20;i:2;i:21;i:3;i:22;i:4;i:23;i:5;i:24;i:6;i:25;i:7;i:26;i:8;i:27;i:9;i:189;i:10;i:230;}i:8;a:9:{i:0;i:28;i:1;i:29;i:2;i:30;i:3;i:31;i:4;i:32;i:5;i:33;i:6;i:34;i:7;i:35;i:8;i:45;}i:9;a:3:{i:0;i:36;i:1;i:37;i:2;i:38;}i:29;a:5:{i:0;i:40;i:1;i:41;i:2;i:42;i:3;i:43;i:4;i:44;}i:45;a:7:{i:0;i:46;i:1;i:47;i:2;i:48;i:3;i:49;i:4;i:50;i:5;i:51;i:6;i:52;}i:30;a:5:{i:0;i:53;i:1;i:54;i:2;i:55;i:3;i:56;i:4;i:57;}i:32;a:10:{i:0;i:58;i:1;i:59;i:2;i:60;i:3;i:61;i:4;i:62;i:5;i:63;i:6;i:64;i:7;i:65;i:8;i:66;i:9;i:250;}}yes
2890fbci_lock1327133028yes
3230akismet_available_serversa: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
3240akismet_connectivity_time1326915188yes
3280wordpress_api_key9664c7b3eb90yes
3290akismet_discard_monthtrueyes
3300akismet_show_user_comments_approvedtrueyes
4430theme_mods_maniguetteworda:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1326857404;s:4:"data";a:11:{s:19:"wp_inactive_widgets";a:0:{}s:19:"primary-widget-area";a:1:{i:0;s:12:"categories-2";}s:21:"secondary-widget-area";a:0:{}s:21:"first-top-widget-area";a:0:{}s:22:"second-top-widget-area";a:0:{}s:24:"first-bottom-widget-area";a:0:{}s:25:"second-bottom-widget-area";N;s:24:"first-footer-widget-area";N;s:25:"second-footer-widget-area";N;s:24:"third-footer-widget-area";N;s:25:"fourth-footer-widget-area";N;}}}yes
12660current_thememaniguettepress2yes
12640theme_mods_twentytena:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1327143354;s:4:"data";a:7:{s:19:"wp_inactive_widgets";a:3:{i:0;s:8:"search-3";i:1;s:8:"search-4";i:2;s:6:"text-2";}s:19:"primary-widget-area";a:0:{}s:21:"secondary-widget-area";a:0:{}s:24:"first-footer-widget-area";a:0:{}s:25:"second-footer-widget-area";a:0:{}s:24:"third-footer-widget-area";a:0:{}s:25:"fourth-footer-widget-area";N;}}}yes
4440_site_transient_timeout_browser_55acc71f55ed4da024b5e6b1c4b138171327461592yes
4450_site_transient_browser_55acc71f55ed4da024b5e6b1c4b13817a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:7:"Firefox";s:7:"version";s:5:"9.0.1";s:10:"update_url";s:23:"http://www.firefox.com/";s:7:"img_src";s:50:"http://s.wordpress.org/images/browsers/firefox.png";s:11:"img_src_ssl";s:49:"https://wordpress.org/images/browsers/firefox.png";s:15:"current_version";s:1:"9";s:7:"upgrade";b:0;s:8:"insecure";b:0;}yes
11810_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc1327164146no
11820_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc1327120946no
4750theme_show_post_titlea:284:{i:73;i:1;i:17;i:1;i:125;i:1;i:124;i:1;i:137;i:1;i:138;i:1;i:24;i:1;i:139;i:1;i:70;i:1;i:141;i:1;i:67;i:1;i:142;i:1;i:65;i:1;i:144;i:1;i:145;i:1;i:31;i:1;i:146;i:1;i:55;i:1;i:147;i:1;i:148;i:1;i:57;i:1;i:149;i:1;i:59;i:1;i:150;i:1;i:63;i:1;i:152;i:1;i:151;i:1;i:154;i:1;i:153;i:1;i:156;i:1;i:155;i:1;i:157;i:1;i:158;i:1;i:159;i:1;i:160;i:1;i:161;i:1;i:164;i:1;i:163;i:1;i:166;i:1;i:165;i:1;i:167;i:1;i:170;i:1;i:169;i:1;i:172;i:1;i:171;i:1;i:174;i:1;i:173;i:1;i:176;i:1;i:175;i:1;i:177;i:1;i:179;i:1;i:178;i:1;i:180;i:1;i:183;i:1;i:182;i:1;i:184;i:1;i:186;i:1;i:185;i:1;i:188;i:1;i:187;i:1;i:190;i:1;i:189;i:1;i:192;i:1;i:191;i:1;i:194;i:1;i:193;i:1;i:196;i:1;i:195;i:1;i:198;i:1;i:197;i:1;i:199;i:1;i:200;i:1;i:202;i:1;i:201;i:1;i:206;i:1;i:205;i:1;i:208;i:1;i:207;i:1;i:210;i:1;i:209;i:1;i:213;i:1;i:212;i:1;i:215;i:1;i:217;i:1;i:216;i:1;i:237;i:1;i:236;i:1;i:239;i:1;i:238;i:1;i:241;i:1;i:240;i:1;i:243;i:1;i:242;i:1;i:245;i:1;i:244;i:1;i:247;i:1;i:246;i:1;i:249;i:1;i:248;i:1;i:251;i:1;i:250;i:1;i:253;i:1;i:252;i:1;i:255;i:1;i:254;i:1;i:258;i:1;i:260;i:1;i:259;i:1;i:261;i:1;i:263;i:1;i:262;i:1;i:265;i:1;i:264;i:1;i:266;i:1;i:268;i:1;i:267;i:1;i:271;i:1;i:270;i:1;i:272;i:1;i:274;i:1;i:273;i:1;i:276;i:1;i:275;i:1;i:278;i:1;i:277;i:1;i:280;i:1;i:284;i:1;i:283;i:1;i:286;i:1;i:285;i:1;i:289;i:1;i:288;i:1;i:290;i:1;i:306;i:1;i:307;i:1;i:308;i:1;i:309;i:1;i:310;i:1;i:311;i:1;i:317;i:1;i:319;i:1;i:318;i:1;i:321;i:1;i:320;i:1;i:323;i:1;i:322;i:1;i:325;i:1;i:324;i:1;i:327;i:1;i:326;i:1;i:329;i:1;i:331;i:1;i:330;i:1;i:332;i:1;i:334;i:1;i:333;i:1;i:335;i:1;i:337;i:1;i:336;i:1;i:338;i:1;i:340;i:1;i:339;i:1;i:342;i:1;i:341;i:1;i:344;i:1;i:343;i:1;i:345;i:1;i:347;i:1;i:346;i:1;i:348;i:1;i:350;i:1;i:365;i:1;i:366;i:1;i:367;i:1;i:368;i:1;i:369;i:1;i:371;i:1;i:372;i:1;i:374;i:1;i:373;i:1;i:376;i:1;i:375;i:1;i:378;i:1;i:380;i:1;i:379;i:1;i:383;i:1;i:382;i:1;i:385;i:1;i:387;i:1;i:386;i:1;i:389;i:1;i:388;i:1;i:391;i:1;i:390;i:1;i:393;i:1;i:392;i:1;i:395;i:1;i:394;i:1;i:396;i:1;i:398;i:1;i:397;i:1;i:400;i:1;i:399;i:1;i:402;i:1;i:401;i:1;i:404;i:1;i:403;i:1;i:406;i:1;i:405;i:1;i:408;i:1;i:407;i:1;i:409;i:1;i:411;i:1;i:410;i:1;i:413;i:1;i:412;i:1;i:415;i:1;i:414;i:1;i:417;i:1;i:416;i:1;i:419;i:1;i:418;i:1;i:421;i:1;i:420;i:1;i:423;i:1;i:422;i:1;i:425;i:1;i:424;i:1;i:427;i:1;i:426;i:1;i:429;i:1;i:428;i:1;i:431;i:1;i:430;i:1;i:433;i:1;i:432;i:1;i:435;i:1;i:434;i:1;i:436;i:1;i:446;i:1;i:445;i:1;i:448;i:1;i:447;i:1;i:450;i:1;i:449;i:1;i:452;i:1;i:451;i:1;i:455;i:1;i:454;i:1;i:457;i:1;i:456;i:1;i:459;i:1;i:458;i:1;i:460;i:1;i:463;i:1;i:462;i:1;i:465;i:1;i:464;i:1;i:467;i:1;i:466;i:1;i:469;i:1;i:468;i:1;i:471;i:1;i:470;i:1;i:473;i:1;i:472;i:1;i:475;i:1;i:474;i:1;i:477;i:1;i:476;i:1;i:478;i:1;i:480;i:1;i:479;i:1;i:482;i:1;i:481;i:1;i:483;i:1;i:485;i:1;i:484;i:1;i:487;i:1;i:486;i:1;i:489;i:1;i:488;i:1;i:491;i:1;i:490;i:1;}yes
10420theme_mods_maniguettepressa:3:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:12:"primary-menu";i:0;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1327134091;s:4:"data";a:11:{s:19:"wp_inactive_widgets";a:0:{}s:19:"primary-widget-area";a:3:{i:0;s:8:"search-4";i:1;s:6:"text-2";i:2;s:13:"vmenuwidget-2";}s:21:"secondary-widget-area";a:1:{i:0;s:8:"search-3";}s:21:"first-top-widget-area";a:0:{}s:22:"second-top-widget-area";a:0:{}s:24:"first-bottom-widget-area";a:0:{}s:25:"second-bottom-widget-area";a:0:{}s:24:"first-footer-widget-area";a:0:{}s:25:"second-footer-widget-area";a:0:{}s:24:"third-footer-widget-area";a:0:{}s:25:"fourth-footer-widget-area";a:0:{}}}}yes
4780theme_mods_maniguettewordpressa:3:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:12:"primary-menu";i:5;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1327017604;s:4:"data";a:11:{s:19:"wp_inactive_widgets";a:2:{i:0;s:8:"search-3";i:1;s:8:"search-4";}s:19:"primary-widget-area";a:2:{i:0;s:6:"text-2";i:1;s:13:"vmenuwidget-2";}s:21:"secondary-widget-area";a:0:{}s:21:"first-top-widget-area";a:0:{}s:22:"second-top-widget-area";a:0:{}s:24:"first-bottom-widget-area";a:0:{}s:25:"second-bottom-widget-area";a:0:{}s:24:"first-footer-widget-area";a:0:{}s:25:"second-footer-widget-area";a:0:{}s:24:"third-footer-widget-area";a:0:{}s:25:"fourth-footer-widget-area";a:0:{}}}}yes
4800nav_menu_optionsa:2:{i:0;b:0;s:8:"auto_add";a:0:{}}yes
4870theme_title_in_menua:39:{i:131;s:0:"";i:130;s:0:"";i:204;s:0:"";i:203;s:0:"";i:223;s:0:"";i:224;s:0:"";i:225;s:0:"";i:226;s:0:"";i:228;s:0:"";i:229;s:0:"";i:230;s:0:"";i:231;s:0:"";i:232;s:0:"";i:233;s:0:"";i:234;s:0:"";i:235;s:0:"";i:257;s:0:"";i:291;s:0:"";i:287;s:0:"";i:292;s:0:"";i:294;s:0:"";i:295;s:0:"";i:296;s:0:"";i:297;s:0:"";i:298;s:0:"";i:299;s:0:"";i:300;s:0:"";i:301;s:0:"";i:302;s:0:"";i:303;s:0:"";i:313;s:0:"";i:314;s:0:"";i:355;s:0:"";i:354;s:0:"";i:357;s:0:"";i:358;s:0:"";i:359;s:0:"";i:361;s:0:"";i:362;s:0:"";}yes
4850theme_show_in_menua:39:{i:131;i:1;i:130;i:1;i:204;i:1;i:203;i:1;i:223;i:1;i:224;i:1;i:225;i:1;i:226;i:1;i:228;i:1;i:229;i:1;i:230;i:1;i:231;i:1;i:232;i:1;i:233;i:1;i:234;i:1;i:235;i:1;i:257;i:1;i:291;i:1;i:287;i:1;i:292;i:1;i:294;i:1;i:295;i:1;i:296;i:1;i:297;i:1;i:298;i:1;i:299;i:1;i:300;i:1;i:301;i:1;i:302;i:1;i:303;i:1;i:313;i:1;i:314;i:1;i:355;i:1;i:354;i:1;i:357;i:1;i:358;i:1;i:359;i:1;i:361;i:1;i:362;i:1;}yes
4860theme_show_as_separatora:39:{i:131;i:0;i:130;i:0;i:204;i:0;i:203;i:0;i:223;i:0;i:224;i:0;i:225;i:0;i:226;i:0;i:228;i:0;i:229;i:0;i:230;i:0;i:231;i:0;i:232;i:0;i:233;i:0;i:234;i:0;i:235;i:0;i:257;i:0;i:291;i:0;i:287;i:0;i:292;i:0;i:294;i:0;i:295;i:0;i:296;i:0;i:297;i:0;i:298;i:0;i:299;i:0;i:300;i:0;i:301;i:0;i:302;i:0;i:303;i:0;i:313;i:0;i:314;i:0;i:355;i:0;i:354;i:0;i:357;i:0;i:358;i:0;i:359;i:0;i:361;i:0;i:362;i:0;}yes
4880theme_show_page_titlea:39:{i:131;i:1;i:130;i:1;i:204;i:1;i:203;i:1;i:223;i:1;i:224;i:1;i:225;i:1;i:226;i:1;i:228;i:1;i:229;i:1;i:230;i:1;i:231;i:1;i:232;i:1;i:233;i:1;i:234;i:1;i:235;i:1;i:257;i:1;i:291;i:1;i:287;i:1;i:292;i:1;i:294;i:1;i:295;i:1;i:296;i:1;i:297;i:1;i:298;i:1;i:299;i:1;i:300;i:1;i:301;i:1;i:302;i:1;i:303;i:1;i:313;i:1;i:314;i:1;i:355;i:1;i:354;i:1;i:357;i:1;i:358;i:1;i:359;i:1;i:361;i:1;i:362;i:1;}yes
4900cispm_prefixe[Une Graine de Maniguette]yes
4910cispm_nomNomyes
4920cispm_radio_nomoyes
4930cispm_radio_nom_obloyes
4940cispm_titre_formulaireFormulaire de contactyes
4950cispm_prenomPrénomyes
4960cispm_radio_prenomnyes
4970cispm_radio_prenom_oblnyes
4980cispm_mailMailyes
4990cispm_site_webSite internetyes
5000cispm_radio_site_weboyes
5010cispm_radio_site_web_oblnyes
5020cispm_objetSujetyes
5030cispm_messageMessageyes
5040cispm_copieRecevoir une copie du mailyes
5050cispm_radio_copieoyes
5060cispm_validerEnvoyer le mailyes
5070cispm_hexae5e5e5yes
5080cispm_hexa_titre777777yes
5090cispm_hexa_texte777777yes
5100cispm_taille_texte15yes
5110cispm_police_texteCambriayes
5120cispm_taille_titre30yes
5130cispm_police_titreCambriayes
5140cispm_radio_poscenteryes
5150cispm_nom_taille260yes
5160cispm_prenom_taille260yes
5170cispm_mail_taille260yes
5180cispm_site_web_taille260yes
5190cispm_objet_taille260yes
5200cispm_message_taille260yes
5210cispm_valider_taille200yes
5220cispm_obligatoire* Champ(s) Obligatoire(s)yes
5230cispm_obligatoire_posoutyes
5240cispm_hexa_texte_erreurC9DF0Dyes
5250cispm_hexa_input_erreurC9DF0Dyes
5260cispm_hexa_form_erreurC9DF0Dyes
5270cispm_dessus_formulaireyes
5280cispm_dessous_champyes
5290cispm_mess_erreurCe champ est obligatoireyes
5300cispm_radio_captchacispm_aucunyes
5310cispm_question_texteyes
5320cispm_reponse_texteyes
5330cispm_caseacocher_texteyes
5340cispm_taille_reponse150yes
5350cispm_captcha_texteyes
5360cispm_captcha_texte_couleurFFFFFFyes
5370cispm_captcha_fond_couleur000000yes
5380cispm_debut_message[DEBUT DU MESSAGE]yes
5390fbci_page_idAlicepegie1yes
5400fbci_author_str%name% via Facebookyes
5410fbci_schedulerhourlyyes
5470fb_like_thumbnaila:1:{s:7:"default";s:0:"";}yes
5500relpoststh_single_only1yes
5510relpoststh_post_typesa:3:{i:0;s:4:"post";i:1;s:4:"page";i:2;s:10:"attachment";}yes
5520relpoststh_onlywiththumbsyes
5530relpoststh_output_styledivyes
5540relpoststh_cleanhtmlyes
5550relpoststh_auto1yes
5560relpoststh_top_text<h3>A Voir Aussi!!:</h3>yes
5570relpoststh_number4yes
5580relpoststh_relationbothyes
5590relpoststh_default_imagehttp://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/related-posts-thumbnails/img/default.pngyes
5600relpoststh_poststhnamethumbnailyes
5610relpoststh_background#FFFFFFyes
5620relpoststh_hoverbackground#EEEEEFyes
5630relpoststh_bordercolor#DDDDDDyes
5640relpoststh_fontcolor#333333yes
5650relpoststh_fontsize12yes
5660relpoststh_fontfamilyArialyes
5670relpoststh_textlength100yes
5680relpoststh_excerptlength0yes
5690relpoststh_thsourcepost-thumbnailsyes
5700relpoststh_customfieldyes
5710relpoststh_theme_resize_urlyes
5720relpoststh_customwidth100yes
5730relpoststh_customheight100yes
5740relpoststh_textblockheight75yes
5750relpoststh_categoriesall1yes
5760relpoststh_categoriesyes
5770relpoststh_show_categoriesall1yes
5780relpoststh_show_categoriesyes
5790relpoststh_devmodeyes
5800relpoststh_startdateyes
5810relpoststh_custom_taxonomiesyes
5820theme_widget_stylesa:9:{s:12:"categories-2";s:5:"block";s:12:"categories-3";s:7:"default";s:7:"pages-2";s:7:"default";s:6:"text-2";s:5:"block";s:8:"search-2";s:7:"default";s:8:"search-3";s:7:"default";s:6:"text-3";s:5:"block";s:8:"wysija-2";s:5:"block";s:8:"search-4";s:7:"default";}yes
5840widget_vmenuwidgeta:2:{i:2;a:3:{s:5:"title";s:11:"Catégories";s:6:"source";s:10:"Categories";s:8:"nav_menu";i:3;}s:12:"_multiwidget";i:1;}yes
5880theme_menu_showHome1yes
5890theme_menu_homeCaptionAccueilyes
5900theme_menu_highlight_active_categories1yes
5910theme_menu_trim_title0yes
5920theme_menu_trim_len45yes
5930theme_submenu_trim_len40yes
5940theme_menu_sourcePagesyes
5950theme_home_top_posts_navigation0yes
5960theme_top_posts_navigation0yes
5970theme_bottom_posts_navigation1yes
5980theme_top_single_navigation0yes
5990theme_bottom_single_navigation1yes
6000theme_single_navigation_trim_title0yes
6010theme_single_navigation_trim_len80yes
6020theme_metadata_use_featured_image_as_thumbnail1yes
6030theme_metadata_thumbnail_auto1yes
6040theme_metadata_thumbnail_width128yes
6050theme_metadata_thumbnail_height128yes
6060theme_metadata_excerpt_auto1yes
6070theme_metadata_excerpt_words40yes
6080theme_metadata_excerpt_min_remainder5yes
6090theme_metadata_excerpt_use_tag_filter0yes
6100theme_metadata_excerpt_allowed_tagsa, abbr, blockquote, b, cite, pre, code, em, label, i, p, strong, ul, ol, li, h1, h2, h3, h4, h5, h6, object, param, embedyes
6110theme_show_random_posts_on_404_page1yes
6120theme_show_random_posts_title_on_404_pageoups la cuillere est tombée dans la sauce!yes
6130theme_show_tags_on_404_page0yes
6140theme_show_tags_title_on_404_pageTag Cloudyes
6150theme_allow_comments1yes
6160theme_comment_use_smilies1yes
6170theme_sidebars_style_defaultblockyes
6180theme_sidebars_style_secondaryblockyes
6190theme_sidebars_style_topblockyes
6200theme_sidebars_style_bottomblockyes
6210theme_sidebars_style_footersimpleyes
6220theme_footer_content<a href="http://alicepegie.com/divers/2806-conditions-generales-dutilisation">Mentions légales et CGU</a> <p>Copyright Alicepégie © 2010-2012. All Rights Reserved.</p>yes
6230theme_ad_code_1yes
6240theme_ad_code_2yes
6250theme_ad_code_3yes
6260theme_ad_code_4yes
6270theme_ad_code_5yes
6280theme_posts_headline_tagh1yes
6290theme_posts_slogan_tagh2yes
6300theme_posts_article_title_tagh2yes
6310theme_posts_widget_title_tagh3yes
6320theme_single_headline_tagdivyes
6330theme_single_slogan_tagdivyes
6340theme_single_article_title_tagh1yes
6350theme_single_widget_title_tagdivyes
6780dl_custom_more_link_complete_pattern<a href=\"%permalink%\" class=\"%Lire la suite de%\">%linktext% %title%</a>yes
6790dl_custom_more_link_complete_limitTypenoneyes
6800dl_custom_more_link_complete_maxLimityes
6810dl_custom_more_link_complete_showEllipsisyes
7420j2wp_mysql_change_varsoffyes
7400joomla-importer.db_infoa:0:{}no
7430j2wp_cpage_convoffyes
7440j2wp_cms_type0yes
7450j2wp_cat_selonyes
7460j2wp_page_selonyes
7470j2wp_users_selonyes
7480j2wp_mysql_srvlocalhostyes
7490j2wp_mysql_use_one_srv0yes
7500j2wp_mysql_usryes
7510j2wp_mysql_pswdyes
7520j2wp_joomla_mysql_srv_nameyes
7530j2wp_joomla_db_charsetutf8yes
7540j2wp_joomla_db_nameyes
7550j2wp_joomla_db_usr_nameyes
7560j2wp_joomla_db_usr_pswdyes
7570j2wp_joomla_tb_prefixjos_yes
7580j2wp_joomla_images_pathyes
7590j2wp_joomla_images_folder/images/storiesyes
7600j2wp_joomla_web_urlyes
7610j2wp_wp_mysql_srv_nameyes
7620j2wp_wp_db_nameyes
7630j2wp_wp_db_user_nameyes
7640j2wp_wp_db_user_pswdyes
7650j2wp_wp_db_charsetutf8yes
7660j2wp_wp_tb_prefixwp_yes
7670j2wp_wp_images_folder/wp-content/themes/twentyten/imagesyes
7680j2wp_wp_web_urlyes
9940widget_wysijaa:1:{s:12:"_multiwidget";i:1;}yes
8530theme_mods_maniguetteworprs2a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1327014781;s:4:"data";a:11:{s:19:"wp_inactive_widgets";a:0:{}s:19:"primary-widget-area";a:3:{i:0;s:6:"text-2";i:1;s:13:"vmenuwidget-2";i:2;s:8:"wysija-2";}s:21:"secondary-widget-area";a:1:{i:0;s:8:"search-3";}s:21:"first-top-widget-area";a:0:{}s:22:"second-top-widget-area";a:0:{}s:24:"first-bottom-widget-area";a:0:{}s:25:"second-bottom-widget-area";a:0:{}s:24:"first-footer-widget-area";a:0:{}s:25:"second-footer-widget-area";a:0:{}s:24:"third-footer-widget-area";a:0:{}s:25:"fourth-footer-widget-area";a:0:{}}}}yes
9250_transient_plugins_delete_result_11yes
12620theme_mods_twentyelevena:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1327143227;s:4:"data";a:6:{s:19:"wp_inactive_widgets";a:3:{i:0;s:8:"search-3";i:1;s:8:"search-4";i:2;s:6:"text-2";}s:18:"orphaned_widgets_1";a:0:{}s:18:"orphaned_widgets_2";a:0:{}s:18:"orphaned_widgets_3";a:0:{}s:18:"orphaned_widgets_4";a:0:{}s:18:"orphaned_widgets_5";a:0:{}}}}yes
12560theme_mods_desk-mess-mirroreda:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1327143217;s:4:"data";a:4:{s:19:"wp_inactive_widgets";a:3:{i:0;s:8:"search-3";i:1;s:8:"search-4";i:2;s:6:"text-2";}s:9:"sidebar-1";a:0:{}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}}}}yes
10480theme_mods_maniguettepress2a:1:{i:0;b:0;}yes
12080_site_transient_update_pluginsO:8:"stdClass":3:{s:12:"last_checked";i:1327134320;s:7:"checked";a:7:{s:19:"akismet/akismet.php";s:5:"2.5.5";s:38:"cispm-contact-mail/cispm09_contact.php";s:5:"2.2.6";s:57:"facebook-comments-importer/facebook-comments-importer.php";s:3:"1.2";s:51:"facebook-like-thumbnail/facebook-like-thumbnail.php";s:3:"0.2";s:39:"post-category-index-generator/index.php";s:5:"0.1.5";s:53:"related-posts-thumbnails/related-posts-thumbnails.php";s:5:"1.3.1";s:28:"wysija-newsletters/index.php";s:5:"1.0.1";}s:8:"response";a:0:{}}yes
12_wp_page_templatedefault
24_menu_item_typetaxonomy
34_menu_item_menu_item_parent0
44_menu_item_object_id10
54_menu_item_objectcategory
64_menu_item_target
74_menu_item_classesa:1:{i:0;s:0:"";}
84_menu_item_xfn
94_menu_item_url
104_menu_item_orphaned1326804014
115_menu_item_typetaxonomy
125_menu_item_menu_item_parent0
135_menu_item_object_id11
145_menu_item_objectcategory
155_menu_item_target
165_menu_item_classesa:1:{i:0;s:0:"";}
175_menu_item_xfn
185_menu_item_url
195_menu_item_orphaned1326804014
206_menu_item_typetaxonomy
216_menu_item_menu_item_parent0
226_menu_item_object_id8
236_menu_item_objectcategory
246_menu_item_target
256_menu_item_classesa:1:{i:0;s:0:"";}
266_menu_item_xfn
276_menu_item_url
286_menu_item_orphaned1326804014
297_menu_item_typetaxonomy
307_menu_item_menu_item_parent0
317_menu_item_object_id6
327_menu_item_objectcategory
337_menu_item_target
347_menu_item_classesa:1:{i:0;s:0:"";}
357_menu_item_xfn
367_menu_item_url
377_menu_item_orphaned1326804014
388_menu_item_typetaxonomy
398_menu_item_menu_item_parent0
408_menu_item_object_id7
418_menu_item_objectcategory
428_menu_item_target
438_menu_item_classesa:1:{i:0;s:0:"";}
448_menu_item_xfn
458_menu_item_url
468_menu_item_orphaned1326804014
479_menu_item_typetaxonomy
489_menu_item_menu_item_parent0
499_menu_item_object_id9
509_menu_item_objectcategory
519_menu_item_target
529_menu_item_classesa:1:{i:0;s:0:"";}
539_menu_item_xfn
549_menu_item_url
559_menu_item_orphaned1326804014
1084382_edit_lock1327064122:1
1080379_edit_lock1327064037:1
1079379_edit_last1
1073375_edit_last1
1074375_edit_lock1327063871:1
1069373_edit_last1
1070373_edit_lock1327063734:1
7517_edit_last1
7617_edit_lock1326997412:1
8124_edit_last1
8626_edit_lock1326815095:1
8526_edit_last1
8424_edit_lock1326997487:1
9631_edit_lock1326890945:1
9531_edit_last1
11742_edit_last1
11017_wp_old_slug17
11842_edit_lock1326816748:1
12847_edit_lock1326816711:1
12747_edit_last1
13450_edit_lock1326816829:1
13350_edit_last1
14053_edit_lock1326816921:1
13953_edit_last1
14455_edit_lock1326890995:1
14355_edit_last1
14857_edit_lock1326891039:1
14757_edit_last1
15259_edit_lock1326891063:1
15159_edit_last1
16063_edit_lock1326891092:1
15963_edit_last1
16465_edit_lock1326891103:1
16365_edit_last1
16867_edit_lock1326891117:1
16767_edit_last1
17470_edit_lock1327063641:1
17370_edit_last1
17974_menu_item_typetaxonomy
18074_menu_item_menu_item_parent0
18174_menu_item_object_id10
18274_menu_item_objectcategory
18374_menu_item_target
18474_menu_item_classesa:1:{i:0;s:0:"";}
18574_menu_item_xfn
18674_menu_item_url
675133_menu_item_menu_item_parent0
18875_menu_item_typetaxonomy
18975_menu_item_menu_item_parent0
19075_menu_item_object_id11
19175_menu_item_objectcategory
19275_menu_item_target
19375_menu_item_classesa:1:{i:0;s:0:"";}
19475_menu_item_xfn
19575_menu_item_url
674133_menu_item_typetaxonomy
19776_menu_item_typetaxonomy
19876_menu_item_menu_item_parent0
19976_menu_item_object_id8
20076_menu_item_objectcategory
20176_menu_item_target
20276_menu_item_classesa:1:{i:0;s:0:"";}
20376_menu_item_xfn
20476_menu_item_url
732153_edit_lock1326891621:1
20677_menu_item_typetaxonomy
20777_menu_item_menu_item_parent0
20877_menu_item_object_id31
20977_menu_item_objectcategory
21077_menu_item_target
21177_menu_item_classesa:1:{i:0;s:0:"";}
21277_menu_item_xfn
21377_menu_item_url
672132_menu_item_url
21578_menu_item_typetaxonomy
21678_menu_item_menu_item_parent0
21778_menu_item_object_id45
21878_menu_item_objectcategory
21978_menu_item_target
22078_menu_item_classesa:1:{i:0;s:0:"";}
22178_menu_item_xfn
22278_menu_item_url
671132_menu_item_xfn
22479_menu_item_typetaxonomy
22579_menu_item_menu_item_parent0
22679_menu_item_object_id49
22779_menu_item_objectcategory
22879_menu_item_target
22979_menu_item_classesa:1:{i:0;s:0:"";}
23079_menu_item_xfn
23179_menu_item_url
23380_menu_item_typetaxonomy
23480_menu_item_menu_item_parent0
23580_menu_item_object_id52
23680_menu_item_objectcategory
23780_menu_item_target
23880_menu_item_classesa:1:{i:0;s:0:"";}
23980_menu_item_xfn
24080_menu_item_url
670132_menu_item_classesa:1:{i:0;s:0:"";}
24281_menu_item_typetaxonomy
24381_menu_item_menu_item_parent0
24481_menu_item_object_id46
24581_menu_item_objectcategory
24681_menu_item_target
24781_menu_item_classesa:1:{i:0;s:0:"";}
24881_menu_item_xfn
24981_menu_item_url
669132_menu_item_target
25182_menu_item_typetaxonomy
25282_menu_item_menu_item_parent0
25382_menu_item_object_id47
25482_menu_item_objectcategory
25582_menu_item_target
25682_menu_item_classesa:1:{i:0;s:0:"";}
25782_menu_item_xfn
25882_menu_item_url
668132_menu_item_objectpage
26083_menu_item_typetaxonomy
26183_menu_item_menu_item_parent0
26283_menu_item_object_id48
26383_menu_item_objectcategory
26483_menu_item_target
26583_menu_item_classesa:1:{i:0;s:0:"";}
26683_menu_item_xfn
26783_menu_item_url
667132_menu_item_object_id130
26984_menu_item_typetaxonomy
27084_menu_item_menu_item_parent0
27184_menu_item_object_id34
27284_menu_item_objectcategory
27384_menu_item_target
27484_menu_item_classesa:1:{i:0;s:0:"";}
27584_menu_item_xfn
27684_menu_item_url
666132_menu_item_menu_item_parent0
27885_menu_item_typetaxonomy
27985_menu_item_menu_item_parent0
28085_menu_item_object_id33
28185_menu_item_objectcategory
28285_menu_item_target
28385_menu_item_classesa:1:{i:0;s:0:"";}
28485_menu_item_xfn
28585_menu_item_url
665132_menu_item_typepost_type
28786_menu_item_typetaxonomy
28886_menu_item_menu_item_parent0
28986_menu_item_object_id32
29086_menu_item_objectcategory
29186_menu_item_target
29286_menu_item_classesa:1:{i:0;s:0:"";}
29386_menu_item_xfn
29486_menu_item_url
664130_wp_page_templatedefault
29687_menu_item_typetaxonomy
29787_menu_item_menu_item_parent0
29887_menu_item_object_id59
29987_menu_item_objectcategory
30087_menu_item_target
30187_menu_item_classesa:1:{i:0;s:0:"";}
30287_menu_item_xfn
30387_menu_item_url
663130_edit_lock1326857840:1
30588_menu_item_typetaxonomy
30688_menu_item_menu_item_parent0
30788_menu_item_object_id60
30888_menu_item_objectcategory
30988_menu_item_target
31088_menu_item_classesa:1:{i:0;s:0:"";}
31188_menu_item_xfn
31288_menu_item_url
662130_edit_last1
31489_menu_item_typetaxonomy
31589_menu_item_menu_item_parent0
31689_menu_item_object_id61
31789_menu_item_objectcategory
31889_menu_item_target
31989_menu_item_classesa:1:{i:0;s:0:"";}
32089_menu_item_xfn
32189_menu_item_url
6612_wp_trash_meta_time1326857881
32390_menu_item_typetaxonomy
32490_menu_item_menu_item_parent0
32590_menu_item_object_id65
32690_menu_item_objectcategory
32790_menu_item_target
32890_menu_item_classesa:1:{i:0;s:0:"";}
32990_menu_item_xfn
33090_menu_item_url
6602_wp_trash_meta_statuspublish
33291_menu_item_typetaxonomy
33391_menu_item_menu_item_parent0
33491_menu_item_object_id63
33591_menu_item_objectcategory
33691_menu_item_target
33791_menu_item_classesa:1:{i:0;s:0:"";}
33891_menu_item_xfn
33991_menu_item_url
659128_menu_item_orphaned1326857833
34192_menu_item_typetaxonomy
34292_menu_item_menu_item_parent0
34392_menu_item_object_id62
34492_menu_item_objectcategory
34592_menu_item_target
34692_menu_item_classesa:1:{i:0;s:0:"";}
34792_menu_item_xfn
34892_menu_item_url
658128_menu_item_url
35093_menu_item_typetaxonomy
35193_menu_item_menu_item_parent0
35293_menu_item_object_id64
35393_menu_item_objectcategory
35493_menu_item_target
35593_menu_item_classesa:1:{i:0;s:0:"";}
35693_menu_item_xfn
35793_menu_item_url
657128_menu_item_xfn
35994_menu_item_typetaxonomy
36094_menu_item_menu_item_parent0
36194_menu_item_object_id29
36294_menu_item_objectcategory
36394_menu_item_target
36494_menu_item_classesa:1:{i:0;s:0:"";}
36594_menu_item_xfn
36694_menu_item_url
36895_menu_item_typetaxonomy
36995_menu_item_menu_item_parent0
37095_menu_item_object_id44
37195_menu_item_objectcategory
37295_menu_item_target
37395_menu_item_classesa:1:{i:0;s:0:"";}
37495_menu_item_xfn
37595_menu_item_url
656128_menu_item_classesa:1:{i:0;s:0:"";}
37796_menu_item_typetaxonomy
37896_menu_item_menu_item_parent0
37996_menu_item_object_id41
38096_menu_item_objectcategory
38196_menu_item_target
38296_menu_item_classesa:1:{i:0;s:0:"";}
38396_menu_item_xfn
38496_menu_item_url
655128_menu_item_target
38697_menu_item_typetaxonomy
38797_menu_item_menu_item_parent0
38897_menu_item_object_id42
38997_menu_item_objectcategory
39097_menu_item_target
39197_menu_item_classesa:1:{i:0;s:0:"";}
39297_menu_item_xfn
39397_menu_item_url
654128_menu_item_objectcategory
39598_menu_item_typetaxonomy
39698_menu_item_menu_item_parent0
39798_menu_item_object_id28
39898_menu_item_objectcategory
39998_menu_item_target
40098_menu_item_classesa:1:{i:0;s:0:"";}
40198_menu_item_xfn
40298_menu_item_url
653128_menu_item_object_id111
40499_menu_item_typetaxonomy
40599_menu_item_menu_item_parent0
40699_menu_item_object_id35
40799_menu_item_objectcategory
40899_menu_item_target
40999_menu_item_classesa:1:{i:0;s:0:"";}
41099_menu_item_xfn
41199_menu_item_url
652128_menu_item_menu_item_parent0
413100_menu_item_typetaxonomy
414100_menu_item_menu_item_parent0
415100_menu_item_object_id30
416100_menu_item_objectcategory
417100_menu_item_target
418100_menu_item_classesa:1:{i:0;s:0:"";}
419100_menu_item_xfn
420100_menu_item_url
651128_menu_item_typetaxonomy
422101_menu_item_typetaxonomy
423101_menu_item_menu_item_parent0
424101_menu_item_object_id56
425101_menu_item_objectcategory
426101_menu_item_target
427101_menu_item_classesa:1:{i:0;s:0:"";}
428101_menu_item_xfn
429101_menu_item_url
650127_menu_item_orphaned1326857833
431102_menu_item_typetaxonomy
432102_menu_item_menu_item_parent0
433102_menu_item_object_id53
434102_menu_item_objectcategory
435102_menu_item_target
436102_menu_item_classesa:1:{i:0;s:0:"";}
437102_menu_item_xfn
438102_menu_item_url
649127_menu_item_url
440103_menu_item_typetaxonomy
441103_menu_item_menu_item_parent0
442103_menu_item_object_id54
443103_menu_item_objectcategory
444103_menu_item_target
445103_menu_item_classesa:1:{i:0;s:0:"";}
446103_menu_item_xfn
447103_menu_item_url
648127_menu_item_xfn
449104_menu_item_typetaxonomy
450104_menu_item_menu_item_parent0
451104_menu_item_object_id6
452104_menu_item_objectcategory
453104_menu_item_target
454104_menu_item_classesa:1:{i:0;s:0:"";}
455104_menu_item_xfn
456104_menu_item_url
458105_menu_item_typetaxonomy
459105_menu_item_menu_item_parent0
460105_menu_item_object_id13
461105_menu_item_objectcategory
462105_menu_item_target
463105_menu_item_classesa:1:{i:0;s:0:"";}
464105_menu_item_xfn
465105_menu_item_url
647127_menu_item_classesa:1:{i:0;s:0:"";}
467106_menu_item_typetaxonomy
468106_menu_item_menu_item_parent0
469106_menu_item_object_id14
470106_menu_item_objectcategory
471106_menu_item_target
472106_menu_item_classesa:1:{i:0;s:0:"";}
473106_menu_item_xfn
474106_menu_item_url
646127_menu_item_target
476107_menu_item_typetaxonomy
477107_menu_item_menu_item_parent0
478107_menu_item_object_id12
479107_menu_item_objectcategory
480107_menu_item_target
481107_menu_item_classesa:1:{i:0;s:0:"";}
482107_menu_item_xfn
483107_menu_item_url
645127_menu_item_objectcategory
485108_menu_item_typetaxonomy
486108_menu_item_menu_item_parent0
487108_menu_item_object_id15
488108_menu_item_objectcategory
489108_menu_item_target
490108_menu_item_classesa:1:{i:0;s:0:"";}
491108_menu_item_xfn
492108_menu_item_url
644127_menu_item_object_id112
494109_menu_item_typetaxonomy
495109_menu_item_menu_item_parent0
496109_menu_item_object_id17
497109_menu_item_objectcategory
498109_menu_item_target
499109_menu_item_classesa:1:{i:0;s:0:"";}
500109_menu_item_xfn
501109_menu_item_url
643127_menu_item_menu_item_parent0
503110_menu_item_typetaxonomy
504110_menu_item_menu_item_parent0
505110_menu_item_object_id7
506110_menu_item_objectcategory
507110_menu_item_target
508110_menu_item_classesa:1:{i:0;s:0:"";}
509110_menu_item_xfn
510110_menu_item_url
642127_menu_item_typetaxonomy
512111_menu_item_typetaxonomy
513111_menu_item_menu_item_parent0
514111_menu_item_object_id26
515111_menu_item_objectcategory
516111_menu_item_target
517111_menu_item_classesa:1:{i:0;s:0:"";}
518111_menu_item_xfn
519111_menu_item_url
641126_menu_item_orphaned1326857812
521112_menu_item_typetaxonomy
522112_menu_item_menu_item_parent0
523112_menu_item_object_id19
524112_menu_item_objectcategory
525112_menu_item_target
526112_menu_item_classesa:1:{i:0;s:0:"";}
527112_menu_item_xfn
528112_menu_item_url
530113_menu_item_typetaxonomy
531113_menu_item_menu_item_parent0
532113_menu_item_object_id24
533113_menu_item_objectcategory
534113_menu_item_target
535113_menu_item_classesa:1:{i:0;s:0:"";}
536113_menu_item_xfn
537113_menu_item_url
640126_menu_item_urlhttp://www.alicepegie.com/wordpress/wordpress/
539114_menu_item_typetaxonomy
540114_menu_item_menu_item_parent0
541114_menu_item_object_id20
542114_menu_item_objectcategory
543114_menu_item_target
544114_menu_item_classesa:1:{i:0;s:0:"";}
545114_menu_item_xfn
546114_menu_item_url
639126_menu_item_xfn
548115_menu_item_typetaxonomy
549115_menu_item_menu_item_parent0
550115_menu_item_object_id21
551115_menu_item_objectcategory
552115_menu_item_target
553115_menu_item_classesa:1:{i:0;s:0:"";}
554115_menu_item_xfn
555115_menu_item_url
557116_menu_item_typetaxonomy
558116_menu_item_menu_item_parent0
559116_menu_item_object_id22
560116_menu_item_objectcategory
561116_menu_item_target
562116_menu_item_classesa:1:{i:0;s:0:"";}
563116_menu_item_xfn
564116_menu_item_url
638126_menu_item_classesa:1:{i:0;s:0:"";}
566117_menu_item_typetaxonomy
567117_menu_item_menu_item_parent0
568117_menu_item_object_id23
569117_menu_item_objectcategory
570117_menu_item_target
571117_menu_item_classesa:1:{i:0;s:0:"";}
572117_menu_item_xfn
573117_menu_item_url
637126_menu_item_target
575118_menu_item_typetaxonomy
576118_menu_item_menu_item_parent0
577118_menu_item_object_id27
578118_menu_item_objectcategory
579118_menu_item_target
580118_menu_item_classesa:1:{i:0;s:0:"";}
581118_menu_item_xfn
582118_menu_item_url
636126_menu_item_objectcustom
584119_menu_item_typetaxonomy
585119_menu_item_menu_item_parent0
586119_menu_item_object_id9
587119_menu_item_objectcategory
588119_menu_item_target
589119_menu_item_classesa:1:{i:0;s:0:"";}
590119_menu_item_xfn
591119_menu_item_url
635126_menu_item_object_id126
593120_menu_item_typetaxonomy
594120_menu_item_menu_item_parent0
595120_menu_item_object_id38
596120_menu_item_objectcategory
597120_menu_item_target
598120_menu_item_classesa:1:{i:0;s:0:"";}
599120_menu_item_xfn
600120_menu_item_url
633126_menu_item_typecustom
602121_menu_item_typetaxonomy
603121_menu_item_menu_item_parent0
604121_menu_item_object_id36
605121_menu_item_objectcategory
606121_menu_item_target
607121_menu_item_classesa:1:{i:0;s:0:"";}
608121_menu_item_xfn
609121_menu_item_url
634126_menu_item_menu_item_parent0
611122_menu_item_typetaxonomy
612122_menu_item_menu_item_parent0
613122_menu_item_object_id37
614122_menu_item_objectcategory
615122_menu_item_target
616122_menu_item_classesa:1:{i:0;s:0:"";}
617122_menu_item_xfn
618122_menu_item_url
630124_edit_lock1326981001:1
1094390_edit_lock1327128812:1
1093390_edit_last1
1092388_edit_lock1327128798:1
1091388_edit_last1
1090386_edit_lock1327128672:1
1089386_edit_last1
1083382_edit_last1
629124_edit_last1
676133_menu_item_object_id112
677133_menu_item_objectcategory
678133_menu_item_target
679133_menu_item_classesa:1:{i:0;s:0:"";}
680133_menu_item_xfn
681133_menu_item_url
727151_edit_last1
683134_menu_item_typetaxonomy
684134_menu_item_menu_item_parent0
685134_menu_item_object_id111
686134_menu_item_objectcategory
687134_menu_item_target
688134_menu_item_classesa:1:{i:0;s:0:"";}
689134_menu_item_xfn
690134_menu_item_url
728151_edit_lock1326891834:1
692135_menu_item_typecustom
693135_menu_item_menu_item_parent0
694135_menu_item_object_id135
695135_menu_item_objectcustom
696135_menu_item_target
697135_menu_item_classesa:1:{i:0;s:0:"";}
698135_menu_item_xfn
699135_menu_item_urlhttp://www.alicepegie.com/wordpress/wordpress/
731153_edit_last1
736155_edit_lock1326891675:1
735155_edit_last1
749163_edit_last1
750163_edit_lock1326892162:1
754165_edit_lock1326892037:1
753165_edit_last1
760169_edit_lock1326892265:1
759169_edit_last1
764171_edit_lock1326892331:1
763171_edit_last1
768173_edit_lock1326892704:1
767173_edit_last1
772175_edit_lock1326892635:1
771175_edit_last1
778178_edit_lock1326892958:1
777178_edit_last1
784182_edit_lock1326893082:1
783182_edit_last1
790185_edit_lock1326895118:1
789185_edit_last1
794187_edit_lock1327011161:1
793187_edit_last1
798189_edit_lock1326894539:1
797189_edit_last1
802191_edit_lock1326894659:1
801191_edit_last1
806193_edit_lock1326894863:1
805193_edit_last1
810195_edit_lock1326894968:1
809195_edit_last1
814197_edit_lock1326895094:1
813197_edit_last1
826203_edit_lock1326915332:1
822201_edit_lock1326895250:1
821201_edit_last1
825203_edit_last1
827203_wp_page_templatedefault
828205_edit_last1
829205_edit_lock1326899863:1
833207_edit_lock1326901278:1
832207_edit_last1
837209_edit_lock1326900532:1
836209_edit_last1
841212_edit_lock1326900970:1
840212_edit_last1
847216_edit_lock1326901084:1
846216_edit_last1
852219_wp_attached_file2012/01/news2.jpg
853219_wp_attachment_metadataa:5:{s:5:"width";s:2:"48";s:6:"height";s:2:"37";s:14:"hwstring_small";s:22:"height='37' width='48'";s:4:"file";s:17:"2012/01/news2.jpg";s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}
854220_wp_attached_file2012/01/facebook-icone-9714-32.png
855220_wp_attachment_metadataa:5:{s:5:"width";s:2:"32";s:6:"height";s:2:"32";s:14:"hwstring_small";s:22:"height='32' width='32'";s:4:"file";s:34:"2012/01/facebook-icone-9714-32.png";s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}
856221_wp_attached_file2012/01/twitter-icone-8387-321.png
857221_wp_attachment_metadataa:5:{s:5:"width";s:2:"32";s:6:"height";s:2:"32";s:14:"hwstring_small";s:22:"height='32' width='32'";s:4:"file";s:34:"2012/01/twitter-icone-8387-321.png";s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}
858222_wp_attached_file2012/01/rss-picto-flux-format-18-icone-6712-32.png
859222_wp_attachment_metadataa:5:{s:5:"width";s:2:"32";s:6:"height";s:2:"32";s:14:"hwstring_small";s:22:"height='32' width='32'";s:4:"file";s:50:"2012/01/rss-picto-flux-format-18-icone-6712-32.png";s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}
860236_edit_last1
861236_edit_lock1326903494:1
865238_edit_lock1326903610:1
864238_edit_last1
869240_edit_lock1326903688:1
868240_edit_last1
873242_edit_lock1326903775:1
872242_edit_last1
877244_edit_lock1326903881:1
876244_edit_last1
881246_edit_lock1326916466:1
880246_edit_last1
885248_edit_lock1326904095:1
884248_edit_last1
889250_edit_lock1326904213:1
888250_edit_last1
893252_edit_lock1326904277:1
892252_edit_last1
897254_edit_lock1326904398:1
896254_edit_last1
904259_edit_last1
905259_edit_lock1327064197:1
911262_edit_lock1326972863:1
910262_edit_last1
915264_edit_lock1326973213:1
914264_edit_last1
921267_edit_lock1326973055:1
920267_edit_last1
927270_edit_lock1326973249:1
926270_edit_last1
933273_edit_lock1326973332:1
932273_edit_last1
937275_edit_lock1326973433:1
936275_edit_last1
941277_edit_lock1326973903:1
940277_edit_last1
946283_edit_last1
951285_edit_lock1326975671:1
950285_edit_last1
949283_edit_lock1326975518:1
957285_content_index_enable1
959287_edit_lock1326981834:1
958287_edit_last1
960288_edit_last1
961288_edit_lock1327019452:1
990320_edit_lock1326997711:1
966287_wp_page_templatedefault
989320_edit_last1
986318_edit_lock1326997584:1
985318_edit_last1
994322_edit_lock1327010060:1
993322_edit_last1
995324_edit_last1
996324_edit_lock1326998052:1
1000326_edit_lock1327002045:1
999326_edit_last1
1006330_edit_lock1327002736:1
1005330_edit_last1
1012333_edit_lock1327010003:1
1011333_edit_last1
1018336_edit_lock1327010275:1
1017336_edit_last1
1022339_edit_lock1327010332:1
1021339_edit_last1
1026341_edit_lock1327010453:1
1025341_edit_last1
1030343_edit_lock1327010713:1
1029343_edit_last1
1034346_edit_lock1327063571:1
1033346_edit_last1
1039352_menu_item_typepost_type
1040352_menu_item_menu_item_parent0
1041352_menu_item_object_id287
1042352_menu_item_objectpage
1043352_menu_item_target
1044352_menu_item_classesa:1:{i:0;s:0:"";}
1045352_menu_item_xfn
1046352_menu_item_url
1048287_wp_trash_meta_statuspublish
1049287_wp_trash_meta_time1327015240
1050354_edit_last1
1051354_edit_lock1327016814:1
1052354_wp_page_templatedefault
1053363_edit_last1
1054363_edit_lock1327017052:1
1096392_edit_lock1327128826:1
1095392_edit_last1
1097394_edit_last1
1098394_edit_lock1327064824:1
1104397_edit_lock1327064911:1
1103397_edit_last1
1108399_edit_lock1327065029:1
1107399_edit_last1
1112401_edit_lock1327065147:1
1111401_edit_last1
1116403_edit_lock1327065247:1
1115403_edit_last1
1120405_edit_lock1327128836:1
1119405_edit_last1
1121407_edit_last1
1122407_edit_lock1327128848:1
1123410_edit_last1
1124410_edit_lock1327065532:1
1128412_edit_lock1327065606:1
1127412_edit_last1
1132414_edit_lock1327128859:1
1131414_edit_last1
1133416_edit_last1
1134416_edit_lock1327065837:1
1138418_edit_lock1327065953:1
1137418_edit_last1
1142420_edit_lock1327128870:1
1141420_edit_last1
1143422_edit_last1
1144422_edit_lock1327128880:1
1145424_edit_last1
1146424_edit_lock1327066259:1
1150426_edit_lock1327066374:1
1149426_edit_last1
1154428_edit_lock1327066464:1
1153428_edit_last1
1158430_edit_lock1327066604:1
1157430_edit_last1
1162432_edit_lock1327066672:1
1161432_edit_last1
1166434_edit_lock1327066750:1
1165434_edit_last1
1187445_edit_last1
1188445_edit_lock1327128886:1
1192447_edit_lock1327129049:1
1191447_edit_last1
1196449_edit_lock1327129146:1
1195449_edit_last1
1200451_edit_lock1327129404:1
1199451_edit_last1
1204454_edit_lock1327129897:1
1203454_edit_last1
1208456_edit_lock1327129536:1
1207456_edit_last1
1212458_edit_lock1327129718:1
1211458_edit_last1
1220462_edit_lock1327129958:1
1219462_edit_last1
1224464_edit_lock1327130071:1
1223464_edit_last1
1228466_edit_lock1327130185:1
1227466_edit_last1
1232468_edit_lock1327130324:1
1231468_edit_last1
1236470_edit_lock1327130500:1
1235470_edit_last1
1240472_edit_lock1327130641:1
1239472_edit_last1
1244474_edit_lock1327130748:1
1243474_edit_last1
1248476_edit_lock1327130932:1
1247476_edit_last1
1254479_edit_lock1327131050:1
1253479_edit_last1
1258481_edit_lock1327131179:1
1257481_edit_last1
1264484_edit_lock1327131293:1
1263484_edit_last1
1268486_edit_lock1327131429:1
1267486_edit_last1
1272488_edit_lock1327131592:1
1271488_edit_last1
1276490_edit_lock1327131663:1
1275490_edit_last1
212012-01-17 11:56:042012-01-17 11:56:04Voici un exemple de page. Elle est différente d'un article de blog, en cela qu'elle restera à la même place, et s'affichera dans le menu de navigation de votre site (en fonction de votre thème). La plupart des gens commencent par écrire une page &laquo;&nbsp;À Propos&nbsp;&raquo; qui les présente aux visiteurs potentiels du site. Vous pourriez y écrire quelque chose de ce tenant&nbsp;: <blockquote>Bonjour&nbsp;! Je suis un mécanicien qui aspire à devenir un acteur, et ceci est mon blog. J'habite à Bordeaux, j'ai un super chien baptisé Russell, et j'aime la vodka-ananas (ainsi que perdre mon temps à regarder la pluie tomber).</blockquote> ...ou bien quelque chose comme ça&nbsp;: <blockquote>La société 123 Machin Truc a été créée en 1971, et n'a cessé de proposer au public des machins-trucs de qualité depuis cette année. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2&nbsp;000 personnes, et fabrique toutes sortes de bidules super pour la communauté bouzemontoise.</blockquote> Etant donné que vous êtes un nouvel utilisateur de WordPress, vous devriez vous rendre sur votre <a href="http://www.alicepegie.com/wordpress/wordpress/wp-admin/">tableau de bord</a> pour effacer la présente page, et créer de nouvelles pages avec votre propre contenu. Amusez-vous bien&nbsp;!Page d&rsquo;exempletrashopenopenpage-d-exemple2012-01-18 04:38:012012-01-18 03:38:010http://www.alicepegie.com/wordpress/wordpress/?page_id=20page0
312012-01-17 11:57:340000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-17 11:57:340000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=30post0
412012-01-17 13:40:140000-00-00 00:00:00 draftopenopen2012-01-17 13:40:140000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=41nav_menu_item0
512012-01-17 13:40:140000-00-00 00:00:00 draftopenopen2012-01-17 13:40:140000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=51nav_menu_item0
612012-01-17 13:40:140000-00-00 00:00:00 draftopenopen2012-01-17 13:40:140000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=61nav_menu_item0
712012-01-17 13:40:140000-00-00 00:00:00 draftopenopen2012-01-17 13:40:140000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=71nav_menu_item0
812012-01-17 13:40:140000-00-00 00:00:00 draftopenopen2012-01-17 13:40:140000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=81nav_menu_item0
912012-01-17 13:40:140000-00-00 00:00:00 draftopenopen2012-01-17 13:40:140000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=91nav_menu_item0
36612012-01-19 14:58:502012-01-19 13:58:50Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="index.php/2011-10-12-10-56-19/newsletter">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision-92012-01-19 14:58:502012-01-19 13:58:50288http://www.alicepegie.com/wordpress/wordpress/?p=3660revision0
1612012-01-17 16:12:210000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-17 16:12:210000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=160post0
1712011-12-23 16:24:472011-12-23 15:24:47<img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/1.JPG" alt="bierre au gingembre" width="600" height="741" />Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre.<!--more--> <div class="art-postcontent"> <div class="art-article"> <strong>Pour 2l de bière env.</strong> 1 citron jaune coupé en rondelles 1 citron vert coupé en rondelles<strong> </strong> <ul> <li>2l d'eau</li> <li>75g de gingembre frais, haché grossièrement</li> <li>300g de sucre</li> <li>1 cc de jus de citron</li> <li>15g de levure sèche de boulangerie (3 cuillères à café)</li> </ul> &nbsp; <strong>Préparation</strong> <ul> <li>Dans une grande casserole, versez les 2 litres d'eau, les rondelles de citron et le gingembre haché et portez le tout à ébullition et laissez mijoter 5mn puis coupez la source de chaleur et laissez infuser 30 mn.</li> </ul> <img src="/images/stories/BIERRE/2.JPG" alt="2" width="350" height="263" /><img src="/images/stories/BIERRE/4.JPG" alt="4" width="350" height="263" /> <ul> <li>Ajoutez le reste des ingrédients</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Laisser macérer 48 heures, à couvert dans un endroit chaud à l’abri des courant d’air</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/7.JPG" alt="7" width="600" height="450" />filtrez et versez la préparation dans une bouteille pouvant contenir 3l ou dans 3 bouteilles de 1l en laissant de l’espace. <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/8.JPG" alt="8" width="600" height="450" />Fermez la (les) bouteilles et laissez fermenter au frais pendant 24 heures <ul> <li>pour servir diluez avec un peu d’eau gazeuse !!</li> </ul> <img src="/images/stories/BIERRE/9.JPG" alt="bierre au gingembre" width="326" height="593" /><img src="/images/stories/BIERRE/10.JPG" alt="bierre au gingembre" width="362" height="594" /> C’est sur cette note épicée qu<strong><a href="http://www.alicepegie.com">’Une Graine de Maniguette </a>va faire une pause et vous donne de nouveau rendez vous à compter du 9 Janvier 2012 s’il plait à Dieu. Bonnes fêtes de fin d'année à tous!!</strong> <strong><img src="/images/stories/BIERRE/11.JPG" alt="bierre au gingembre" width="327" height="503" /><img src="/images/stories/BIERRE/12.JPG" alt="bierre au gingembre" width="361" height="505" /></strong> </div> </div>La Bière au Gingembre Maisonpublishopenopen182012-01-19 19:25:222012-01-19 18:25:220http://www.alicepegie.com/wordpress/wordpress/?p=170post0
13712012-01-18 11:21:362012-01-18 10:21:36<img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/1.JPG" alt="bierre au gingembre" width="600" height="741" />Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre.<!--more--> <div class="art-postcontent"> <div class="art-article"> <strong>Pour 2l de bière env.</strong> 1 citron jaune coupé en rondelles 1 citron vert coupé en rondelles<strong> </strong> <ul> <li>2l d'eau</li> <li>75g de gingembre frais, haché grossièrement</li> <li>300g de sucre</li> <li>1 cc de jus de citron</li> <li>15g de levure sèche de boulangerie (3 cuillères à café)</li> </ul> &nbsp; <strong>Préparation</strong> <ul> <li>Dans une grande casserole, versez les 2 litres d'eau, les rondelles de citron et le gingembre haché et portez le tout à ébullition et laissez mijoter 5mn puis coupez la source de chaleur et laissez infuser 30 mn.</li> </ul> <img src="/images/stories/BIERRE/2.JPG" alt="2" width="350" height="263" /><img src="/images/stories/BIERRE/4.JPG" alt="4" width="350" height="263" /> <ul> <li>Ajoutez le reste des ingrédients</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Laisser macérer 48 heures, à couvert dans un endroit chaud à l’abri des courant d’air</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/7.JPG" alt="7" width="600" height="450" />filtrez et versez la préparation dans une bouteille pouvant contenir 3l ou dans 3 bouteilles de 1l en laissant de l’espace. <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/8.JPG" alt="8" width="600" height="450" />Fermez la (les) bouteilles et laissez fermenter au frais pendant 24 heures <ul> <li>pour servir diluez avec un peu d’eau gazeuse !!</li> </ul> <img src="/images/stories/BIERRE/9.JPG" alt="bierre au gingembre" width="326" height="593" /><img src="/images/stories/BIERRE/10.JPG" alt="bierre au gingembre" width="362" height="594" /> C’est sur cette note épicée qu<strong><a href="http://www.alicepegie.com">’Une Graine de Maniguette </a>va faire une pause et vous donne de nouveau rendez vous à compter du 9 Janvier 2012 s’il plait à Dieu. Bonnes fêtes de fin d'année à tous!!</strong> <strong><img src="/images/stories/BIERRE/11.JPG" alt="bierre au gingembre" width="327" height="503" /><img src="/images/stories/BIERRE/12.JPG" alt="bierre au gingembre" width="361" height="505" /></strong> </div> </div>La Bière au Gingembre Maisoninheritopenopen17-revision-72012-01-18 11:21:362012-01-18 10:21:3617http://www.alicepegie.com/wordpress/wordpress/?p=1370revision0
7512012-01-18 04:30:522012-01-18 03:30:52 publishopenopen752012-01-18 04:30:522012-01-18 03:30:520http://www.alicepegie.com/wordpress/wordpress/?p=752nav_menu_item0
7612012-01-18 04:30:522012-01-18 03:30:52 publishopenopen762012-01-18 04:30:522012-01-18 03:30:520http://www.alicepegie.com/wordpress/wordpress/?p=763nav_menu_item0
7712012-01-18 04:30:522012-01-18 03:30:52 publishopenopen772012-01-18 04:30:522012-01-18 03:30:528http://www.alicepegie.com/wordpress/wordpress/?p=774nav_menu_item0
7812012-01-18 04:30:522012-01-18 03:30:52 publishopenopen782012-01-18 04:30:522012-01-18 03:30:528http://www.alicepegie.com/wordpress/wordpress/?p=785nav_menu_item0
7912012-01-18 04:30:522012-01-18 03:30:52 publishopenopen792012-01-18 04:30:522012-01-18 03:30:5245http://www.alicepegie.com/wordpress/wordpress/?p=796nav_menu_item0
8012012-01-18 04:30:522012-01-18 03:30:52 publishopenopen802012-01-18 04:30:522012-01-18 03:30:5245http://www.alicepegie.com/wordpress/wordpress/?p=807nav_menu_item0
1812012-01-17 16:23:362012-01-17 15:23:36<a class="PostHeader" href="/ma-cuisine/boissons/3067-la-biere-au-gingembre-maison">La Bière au Gingembre maison</a> <div class="art-postheadericons art-metadata-icons"><span class="art-postdateicon">Date de publication</span> | <a title="Imprimer" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;" href="/ma-cuisine/boissons/3067-la-biere-au-gingembre-maison?tmpl=component&amp;print=1&amp;layout=default&amp;page=" rel="nofollow"><img src="/templates/maniguettebis1/images/system/printButton.png" alt="Imprimer" /></a> | <a title="E-mail" onclick="window.open(this.href,'win2','width=400,height=350,menubar=yes,resizable=yes'); return false;" href="/component/mailto/?tmpl=component&amp;template=maniguettebis1&amp;link=495678c1afa50b03210cc89a9f2890d74d962a23"><img src="/templates/maniguettebis1/images/system/emailButton.png" alt="E-mail" /></a> | Affichages : 257</div> <div class="art-postcontent"> <div class="art-article"> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/1.JPG" alt="bierre au gingembre" width="600" height="741" />Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre. <strong>Pour 2l de bière env.</strong> 1 citron jaune coupé en rondelles 1 citron vert coupé en rondelles<strong> </strong> <ul> <li>2l d'eau</li> <li>75g de gingembre frais, haché grossièrement</li> <li>300g de sucre</li> <li>1 cc de jus de citron</li> <li>15g de levure sèche de boulangerie (3 cuillères à café)</li> </ul> &nbsp; <strong>Préparation</strong> <ul> <li>Dans une grande casserole, versez les 2 litres d'eau, les rondelles de citron et le gingembre haché et portez le tout à ébullition et laissez mijoter 5mn puis coupez la source de chaleur et laissez infuser 30 mn.</li> </ul> <img src="/images/stories/BIERRE/2.JPG" alt="2" width="350" height="263" /><img src="/images/stories/BIERRE/4.JPG" alt="4" width="350" height="263" /> <ul> <li>Ajoutez le reste des ingrédients</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Laisser macérer 48 heures, à couvert dans un endroit chaud à l’abri des courant d’air</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/7.JPG" alt="7" width="600" height="450" />filtrez et versez la préparation dans une bouteille pouvant contenir 3l ou dans 3 bouteilles de 1l en laissant de l’espace. <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/8.JPG" alt="8" width="600" height="450" />Fermez la (les) bouteilles et laissez fermenter au frais pendant 24 heures <ul> <li>pour servir diluez avec un peu d’eau gazeuse !!</li> </ul> <img src="/images/stories/BIERRE/9.JPG" alt="bierre au gingembre" width="326" height="593" /><img src="/images/stories/BIERRE/10.JPG" alt="bierre au gingembre" width="362" height="594" /> C’est sur cette note épicée qu<strong><a href="http://www.alicepegie.com">’Une Graine de Maniguette </a>va faire une pause et vous donne de nouveau rendez vous à compter du 9 Janvier 2012 s’il plait à Dieu. Bonnes fêtes de fin d'année à tous!!</strong> <strong><img src="/images/stories/BIERRE/11.JPG" alt="bierre au gingembre" width="327" height="503" /><img src="/images/stories/BIERRE/12.JPG" alt="bierre au gingembre" width="361" height="505" /></strong> </div> </div>inheritopenopen17-revision2012-01-17 16:23:362012-01-17 15:23:3617http://www.alicepegie.com/wordpress/wordpress/?p=180revision0
1912012-01-17 16:24:082012-01-17 15:24:08<a class="PostHeader" href="/ma-cuisine/boissons/3067-la-biere-au-gingembre-maison">La Bière au Gingembre maison</a> <div class="art-postheadericons art-metadata-icons"><span class="art-postdateicon">Date de publication</span> | <a title="Imprimer" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;" href="/ma-cuisine/boissons/3067-la-biere-au-gingembre-maison?tmpl=component&amp;print=1&amp;layout=default&amp;page=" rel="nofollow"><img src="/templates/maniguettebis1/images/system/printButton.png" alt="Imprimer" /></a> | <a title="E-mail" onclick="window.open(this.href,'win2','width=400,height=350,menubar=yes,resizable=yes'); return false;" href="/component/mailto/?tmpl=component&amp;template=maniguettebis1&amp;link=495678c1afa50b03210cc89a9f2890d74d962a23"><img src="/templates/maniguettebis1/images/system/emailButton.png" alt="E-mail" /></a> | Affichages : 257</div> <div class="art-postcontent"> <div class="art-article"> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/1.JPG" alt="bierre au gingembre" width="600" height="741" />Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre. <strong>Pour 2l de bière env.</strong> 1 citron jaune coupé en rondelles 1 citron vert coupé en rondelles<strong> </strong> <ul> <li>2l d'eau</li> <li>75g de gingembre frais, haché grossièrement</li> <li>300g de sucre</li> <li>1 cc de jus de citron</li> <li>15g de levure sèche de boulangerie (3 cuillères à café)</li> </ul> &nbsp; <strong>Préparation</strong> <ul> <li>Dans une grande casserole, versez les 2 litres d'eau, les rondelles de citron et le gingembre haché et portez le tout à ébullition et laissez mijoter 5mn puis coupez la source de chaleur et laissez infuser 30 mn.</li> </ul> <img src="/images/stories/BIERRE/2.JPG" alt="2" width="350" height="263" /><img src="/images/stories/BIERRE/4.JPG" alt="4" width="350" height="263" /> <ul> <li>Ajoutez le reste des ingrédients</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Laisser macérer 48 heures, à couvert dans un endroit chaud à l’abri des courant d’air</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/7.JPG" alt="7" width="600" height="450" />filtrez et versez la préparation dans une bouteille pouvant contenir 3l ou dans 3 bouteilles de 1l en laissant de l’espace. <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/8.JPG" alt="8" width="600" height="450" />Fermez la (les) bouteilles et laissez fermenter au frais pendant 24 heures <ul> <li>pour servir diluez avec un peu d’eau gazeuse !!</li> </ul> <img src="/images/stories/BIERRE/9.JPG" alt="bierre au gingembre" width="326" height="593" /><img src="/images/stories/BIERRE/10.JPG" alt="bierre au gingembre" width="362" height="594" /> C’est sur cette note épicée qu<strong><a href="http://www.alicepegie.com">’Une Graine de Maniguette </a>va faire une pause et vous donne de nouveau rendez vous à compter du 9 Janvier 2012 s’il plait à Dieu. Bonnes fêtes de fin d'année à tous!!</strong> <strong><img src="/images/stories/BIERRE/11.JPG" alt="bierre au gingembre" width="327" height="503" /><img src="/images/stories/BIERRE/12.JPG" alt="bierre au gingembre" width="361" height="505" /></strong> </div> </div>inheritopenopen17-revision-22012-01-17 16:24:082012-01-17 15:24:0817http://www.alicepegie.com/wordpress/wordpress/?p=190revision0
2012012-01-17 16:24:472012-01-17 15:24:47<a class="PostHeader" href="/ma-cuisine/boissons/3067-la-biere-au-gingembre-maison">La Bière au Gingembre maison</a> <div class="art-postheadericons art-metadata-icons"><span class="art-postdateicon">Date de publication</span> | <a title="Imprimer" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;" href="/ma-cuisine/boissons/3067-la-biere-au-gingembre-maison?tmpl=component&amp;print=1&amp;layout=default&amp;page=" rel="nofollow"><img src="/templates/maniguettebis1/images/system/printButton.png" alt="Imprimer" /></a> | <a title="E-mail" onclick="window.open(this.href,'win2','width=400,height=350,menubar=yes,resizable=yes'); return false;" href="/component/mailto/?tmpl=component&amp;template=maniguettebis1&amp;link=495678c1afa50b03210cc89a9f2890d74d962a23"><img src="/templates/maniguettebis1/images/system/emailButton.png" alt="E-mail" /></a> | Affichages : 257</div> <div class="art-postcontent"> <div class="art-article"> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/1.JPG" alt="bierre au gingembre" width="600" height="741" />Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre. <strong>Pour 2l de bière env.</strong> 1 citron jaune coupé en rondelles 1 citron vert coupé en rondelles<strong> </strong> <ul> <li>2l d'eau</li> <li>75g de gingembre frais, haché grossièrement</li> <li>300g de sucre</li> <li>1 cc de jus de citron</li> <li>15g de levure sèche de boulangerie (3 cuillères à café)</li> </ul> &nbsp; <strong>Préparation</strong> <ul> <li>Dans une grande casserole, versez les 2 litres d'eau, les rondelles de citron et le gingembre haché et portez le tout à ébullition et laissez mijoter 5mn puis coupez la source de chaleur et laissez infuser 30 mn.</li> </ul> <img src="/images/stories/BIERRE/2.JPG" alt="2" width="350" height="263" /><img src="/images/stories/BIERRE/4.JPG" alt="4" width="350" height="263" /> <ul> <li>Ajoutez le reste des ingrédients</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Laisser macérer 48 heures, à couvert dans un endroit chaud à l’abri des courant d’air</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/7.JPG" alt="7" width="600" height="450" />filtrez et versez la préparation dans une bouteille pouvant contenir 3l ou dans 3 bouteilles de 1l en laissant de l’espace. <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/8.JPG" alt="8" width="600" height="450" />Fermez la (les) bouteilles et laissez fermenter au frais pendant 24 heures <ul> <li>pour servir diluez avec un peu d’eau gazeuse !!</li> </ul> <img src="/images/stories/BIERRE/9.JPG" alt="bierre au gingembre" width="326" height="593" /><img src="/images/stories/BIERRE/10.JPG" alt="bierre au gingembre" width="362" height="594" /> C’est sur cette note épicée qu<strong><a href="http://www.alicepegie.com">’Une Graine de Maniguette </a>va faire une pause et vous donne de nouveau rendez vous à compter du 9 Janvier 2012 s’il plait à Dieu. Bonnes fêtes de fin d'année à tous!!</strong> <strong><img src="/images/stories/BIERRE/11.JPG" alt="bierre au gingembre" width="327" height="503" /><img src="/images/stories/BIERRE/12.JPG" alt="bierre au gingembre" width="361" height="505" /></strong> </div> </div>inheritopenopen17-revision-32012-01-17 16:24:472012-01-17 15:24:4717http://www.alicepegie.com/wordpress/wordpress/?p=200revision0
7412012-01-18 04:30:522012-01-18 03:30:52 publishopenopen742012-01-18 04:30:522012-01-18 03:30:520http://www.alicepegie.com/wordpress/wordpress/?p=741nav_menu_item0
2112012-01-17 16:26:490000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-17 16:26:490000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=210post0
2212012-01-17 16:27:290000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-17 16:27:290000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=220post0
2312012-01-17 16:28:410000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-17 16:28:410000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=230post0
2412011-12-22 16:30:372011-12-22 15:30:37<div class="art-postcontent"> <div class="art-article"> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/1.JPG" alt="buche ananas" width="600" height="273" />J’ai commencé à m’exercer à faire des buches maison l’année dernière. Le résultat était plutôt concluant alors j’ai décidé de réitérer cette année avec cette buche légère et fruitée. <!--more--></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Ingrédients pour 2 personne(s) </strong></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le biscuit</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Farine</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 œuf</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>La crème</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de sel</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus de mangue</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1/2cc de jus de citron</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">36g de beurre coupé en morceaux</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le sirop</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125 ml de jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">40g de Sucre</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125ml de Jus de mangu</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Le glaçage</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de chocolat blanc à pâtisser Nestlé</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de crème entière liquide</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre glace</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de colorant alimentaire en poudre orange (évitez les colorants liquides avec le chocolat)</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Préparation de la crème :</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Dans un saladier résistant à la chaleur, mettre les œufs, le sucre, et le sel.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ajoutez progressivement les jus. Poser ensuite le récipient dans un bain-marie et cuire lentement à feu doux jusqu'à épaississement env. 8mn.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/2.JPG" alt="2" width="600" height="450" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Retirez du feu et continuez de fouetter pour abaisser la température env 2-3mn.</span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Lorsqu'il est possible de toucher les bords du récipient sans se brûler, ajouter progressivement le beurre froid coupé en petits cubes. </span></li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/3.JPG" alt="3" width="600" height="450" /> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Une fois le beurre incorporé, couvrez le saladier et réservez au frais pendant au moins 1 h.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/4.JPG" alt="4" width="600" height="450" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <strong>Préparation du sirop :</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Mélangez les jus d’ananas et de mangue et le sucre, puis porter à ébullition et stopper le feu. Laissez ensuite refroidir à température ambiante.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/5.JPG" alt="5" width="600" height="450" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <strong>Cuisson du biscuit :</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Préparez tous les ingrédients. Mettez le sucre et les œufs dans la cuve de votre robot.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Fouettez l’ensemble pendant 10mn à vitesse maximale, la préparation doit doubler de volume.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Incorporer la farine préalablement tamisée délicatement à l'aide d'une maryse ou à l'écumoire en effectuant un mouvement de rotation.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="/images/stories/buche%20ananas/8.JPG" alt="8" width="350" height="263" /><img src="/images/stories/buche%20ananas/9.JPG" alt="9" width="350" height="263" /> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Versez sur une sur plaque recouverte de papier sulfurisé.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="/images/stories/buche%20ananas/11.JPG" alt="11" width="350" height="263" /><img src="/images/stories/buche%20ananas/12.JPG" alt="12" width="350" height="263" /> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Enfourner à four chaud, 180°C pour 8-10mn.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/13.JPG" alt="13" width="600" height="450" /> </span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation du glaçage</span></strong> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Faites fondre au bain-marie le chocolat, la crème et le sucre glace.</span></li> </ul> <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/6.JPG" alt="6" width="600" height="450" /></span><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mélangez bien la préparation de façon à avoir une préparation homogène</span> <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/7.JPG" alt="7" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le montage : </strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Décollez le biscuit du tapis et en couper les bords pour l'égaliser, puis le poser sur un papier sulfurisé. A l'aide d'un pinceau, imbiber généreusement le biscuit de sirop d'ananas. Étaler ensuite la crème au citron dessus puis rouler le tout en escargot.</span></li> </ul> <img src="/images/stories/buche%20ananas/SAM_1444.JPG" alt="SAM 1444" width="350" height="263" /><img src="/images/stories/buche%20ananas/14.JPG" alt="14" width="277" height="265" /> &nbsp; &nbsp; <ul> <li><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Glacez votre buche soit à l’aide d’une spatule soit à en versant directement le glacage diectement sur le biscuit </span></span></li> </ul> &nbsp; <span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/15.JPG" alt="15" width="600" height="283" /></span> <span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/16.JPG" alt="16" width="600" height="457" /></span> &nbsp; <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Laissez la bûche reposer au réfrigérateur pendant 4 h.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/17.JPG" alt="17" width="600" height="552" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">décorez avec des copeaux de chocolat blanc</span></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/18.JPG" alt="18" width="600" height="393" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">et de quelque sujets en chocolat au lait</span> </span> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/19.JPG" alt="19" width="600" height="450" /><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">sortez votre buche 15mn avant de servir </span> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/20.JPG" alt="20" width="600" height="532" /></span> </div> </div>Bûche de Noël à l'Ananaspublishopenopenbuche-de-noel-a-lananas2012-01-19 19:24:462012-01-19 18:24:460http://www.alicepegie.com/wordpress/wordpress/?p=240post0
2512012-01-17 16:29:452012-01-17 15:29:45Brouillon autoinheritopenopen24-revision2012-01-17 16:29:452012-01-17 15:29:4524http://www.alicepegie.com/wordpress/wordpress/?p=250revision0
13912012-01-17 17:27:282012-01-17 16:27:28<p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><img src="images/stories/abakuya.jpg" alt="abakuya" title="abakuya,268073.jpg" style="float: left;" border="0" height="293" width="193" /></span></span></span></p> <p><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';"><hr id="system-readmore" />{nmap}normal|250|150|images/stories/audio/centre_sud/abakuya|1||a{/nmap}<span style="font-size: 12pt; line-height: 115%;"></span></span></p> <p>&nbsp; </p> <p><strong></strong><strong>Un voyage rythmique redoutable. </strong></p> <p>&nbsp; </p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><span style="font-size: small;">Ab</span></span>akuya, la nouvelle mouvance tradi-urbaine venue du Cameroun... Les compositions d’Abakuya vont du conte, des musiques traditionnelles et des compositions puisés dans un folklore Fang, Beti, Bulu, Ntumu Mbidambani... Cette fusion parfois mi transe mi rock amène l’auditeur dans un voyage à travers le monde. Ce son si enchantant est issu d’une fusion d’instruments traditionnels, modernes, et improvisés ou acoustiques ; la basse, le violon, la voix, parfois une batterie, des percussions, le mvet, le ngomo, et d’autres encore… </span></span></p> <p>&nbsp;</p> <p style="text-align: justify;">La musique du groupe Abakuya est le résultat de recherches pour la réhabilitation des musiques traditionnelles polyphoniques d'Afrique centrale, en particulier l'Ekang et le Bal (à prononcer BÖL).</p> <p style="text-align: justify;">L'Ekang: Ce son sacré et enchanté est caractérisé par la diversité de ses mélodies, de ses harmonies et de ses rythmes complexes. Jouée par le Mvet, chanté par un (Mbom mvet), c'est une musique de transe qui emmène l'auditeur en voyage à travers le passé et le futur, en lui montrant toute la beauté du monde dans lequel nous vivons. <br /><br />Le Bal (BÖL): Musique née vers le xve siècle. Un mélange d'accordéon (l'accordéon est un instrument venu par la mer; des Portugais et des Espagnols, premiers explorateurs... En ce temps là, les colons espagnols organisaient des bals dansants, auxquels les musiciens indigènes étaient invités. Curieux et déterminés, certains indigènes, après des échanges, réussirent à obtenir un accordéon. À leur tour, ils essayeront de faire plaisir aux colons en leur jouant leur répertoire. C'est là alors que l'histoire commence.</p> <p>&nbsp;</p> <p style="text-align: justify;">Les africains organisent donc des bals dansants et invitent leurs amis européens. Et quand les Blancs arrivent dans ces bals organisés par des Africains, ils sont morts...<br /><br />Morts parce que: Ils écoutent une musique surprenante, entraînante et emvoutante. Un mélange de langues (espagnole, portugaise, africaine) et de style... <br /><br />Le malentendu: Le Bal se dansait le samedi soir, et dimanche il y avait la messe. À un moment, les prêtres ont constaté que les églises étaient vides les dimanches, et même, que certains dimanches, à l’heure de midi, le tambour du BÖL résonnait encore. C'est pour cela que le BöL devint petit à petit l’ennemi de Dieu, de l’Église et ils commencèrent à condamner le BÖL. Des histoires racontent que le BÖL était si entraînant que certains prêtres le condamnaient le jour, mais assistaient à des BÖL entiers la nuit, en se déguisant.<br /><br />Le BÖL est une fête où se mêle bal masqué, bal royal... Donc le déguisement était autorisé...<br /><br />L'histoire raconte que les prêtres colons ont fini par maudir le BÖL...<br /><br /> Les instruments et l’orchestre du BÖL:<br />- le chanteur<br />- l'orateur (animateur)<br />- l'accordéon<br />- le tambour<br />- les maracasses<br /><br />Le groupe Abakuya joue le BÖL avec:<br /><br />- l'accordéon: François Marnier<br />- le tambour, orateur, chanteur: François Essindi<br />- le contre bassiste: Jimi Sofo<br />- le violon: Melissa Cox<br /><br /> La danse Böl:<br /><br />Orateur: Hi mobilimencement, animez les cinq coups!<br />l'Assistance: Nous sommes ici pour animer la danse...<br />Orateur: Kob étan!<br /><br />Les Eboxé:<br />-Eboxé Mandjounga...<br />-Eboxé bizimba bi maria...<br />-Eboxé Kpwam-kpwam deux fois...<br /><br />Et d'autres encore...<br /><br />Abakuya est à la recherche d'une musique qui emporte l'auditeur dans un voyage à travers le passé et le futur, en lui montrant toute la beauté du monde dans lequel nous vivons.</p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.concerts.fr/Biographie/abakuya">Source</a></span></p>Abakuyainheritopenopen70-revision-22012-01-17 17:27:282012-01-17 16:27:2870http://www.alicepegie.com/wordpress/wordpress/?p=1390revision0
2612010-01-14 16:34:192010-01-14 15:34:19<img style="display: block; margin-left: auto; margin-right: auto;" src="/images/sapo.jpg" alt="">Avant de commencer, quelques notions</span></span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">La Saponification ?</span></strong></em><strong><span style="color: black;"><br> </span></strong><span style="color: black;">La saponification est une réaction chimique entre des acides<strong> </strong>gras (huiles, beurres végétaux...) et une<strong> </strong>base<strong> </strong>forte (Soude NaOH, ou Potasse<strong> </strong>KOH si l'on veut faire du savon liquide)&nbsp; qui donne du savon et de la glycérine</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Quelle Soude utiliser</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">La soude utilisée pour faire du savon artisanal est de l'hydroxyde de Sodium de formule NaOH pour les savons solides. On la trouve généralement dans les magasins de bricolage, quincaillerie près des produits pour déboucher les éviers. <br> La plupart du temps sous l'appellation Soude Caustique, en perles, poudres ou liquide déjà diluée (lessive de soude).&nbsp; Attention il ne s’agit pas de Cristaux de Soude, ni de Bicarbonate de Soude.<br> La Potasse, Hydroxyde de Potassium sert à réaliser du savon liquide.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Pour éviter d’avoir un savon trop corrosif&nbsp; soyez attentifs à la quantité de Soude que vous mettez </span></strong></em><span style="color: black;"> (aidez vous du &nbsp;<a href="http://calc.mendrulandia.es/?lg=fr"><span style="color: black;">Calculateur de Saponification</span></a> par exemple) et &nbsp;surgraissez vos savons. Après la période de cure, vous pouvez également tester le pH de votre savon (à l’aide d’un papier PH , il doit être compris en 7 et 9 pas plus (si lorsque vous mettez votre langue sur le savon vous avez comme une décharge électrique, c'est que votre savon est trop caustique).<br> Souvent un savon qui contient trop de Soude est cassant.</span></span></span></span></p> <p style="text-align: justify;">&nbsp;</p> <p class="MsoNormal" style="margin: 4.5pt 0in 2.25pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Le pH :</span></strong></span></span></p> <p class="MsoNormal" style="margin-bottom: 4.5pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le pH est le taux d'acidité d'un produit. Il est compris entre 1 et 14. Le citron, acide, a un pH très faible, alors que l'eau, dite "neutre", a un pH d'environ 7.<br> Un shampooing doit avoir un pH adapté à celui du cheveu (entre 4.5 et 7), c'est à dire légèrement acide, afin de resserrer les écailles. Il est conseillé lors de la réalisation de vos formules de vérifier le pH obtenu à la fin, à l'aide d'un papier pH. Si votre pH est trop haut, faites-le baisser en ajoutant de l'acide citrique ou lactique. S'il est trop bas, augmentez-le en ajoutant de l'eau de chaux ou du bicarbonate de sodium.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><strong><span style="color: black;">Si vous voulez donner un couleur spéciale à votre savon, vous pouvez utiliser les</span></strong></em><span style="color: black;"> Argiles, les colorants alimentaires, les épices….. Attention la Soude peut faire virer votre couleur!</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;"><strong>Pour les extraits végétaux,</strong> utilisez les beurres et huiles qui conviennent à votre peau. (moi j’utilise quasiment les mêmes huiles et beurres pour ma crème et mes savons) </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><strong><span style="color: black;">Pour une action plus poussée sur votre peau vous pouvez remplacer l’eau par </span></strong></em><span style="color: black;"> du jus de fruit, de légumes, du lait, du thé, du café... pour dissoudre votre soude. Dans ce cas congeler les</span><em><strong><span style="color: black;"> pour </span></strong></em><span style="color: black;">éviter qu'ils perdent leurs propriétés ou ne soient altérés..</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">ATTENTION&nbsp;!</span></strong></em></span></span></span></p> <ul style="text-align: justify;"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">ajoutez toujours la soude à l'eau et non le contraire. </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Protégez-vous bien : Porter des lunettes de protection (elles sont disponibles dans les quincailleries), des gants, un tablier, des manches longues et pantalons de préférence. En cas de projections de soude ou de pâte à savon, verser du vinaigre sur les parties touchées.</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Utiliser toujours un récipient en verre ou en acier inoxydable, ainsi que des cuillères en bois, pas de plastique (ca fondrait) ni d’aluminium (réaction &nbsp;à la soude). </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il est préférable de faire son savon à l'extérieur ou dans un espace bien ventilé pour éviter d’inhaler les fumées dégagées par la soude </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Faites les vide autour de vous. Surtout pas d’enfant, d’animaux et encore moins de portable.</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Protégez votre plan de travail avec des papiers journaux (la soude est très corrosive)</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Allouez des ustensiles à la savonnerie, ne surtout pas les réutiliser pour la cuisine. </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Nettoyez vos ustensiles de savonnerie en les trempant dans une eau bien vinaigrée, avant de les laver soigneusement.</span></span></span></span></li> </ul> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;"><strong>Quelle quantité de Soude et d’eau&nbsp;?</strong> </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il existe pas mal de site aidant à calculer les doses nécessaires de soude et d’eau pour un bon savon celui que je préfère est <a href="http://calc.mendrulandia.es/?lg=fr">là</a></span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">La Trace ?</span></strong></em><span style="color: black;"><br> C’est lorsqu'on sort la cuillère, mixeur, fouet, &nbsp;et que les gouttes qui retombent dans la préparation laissent une marque à la surface du mélange sans disparaître immédiatement. C'est à ce moment que l'on peut surgraisser. </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Le Surgraissage ?</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il s'agit d'un excèdent d'huiles, contenu dans le savon. Ces huiles ne sont pas transformées par la soude et restent dans le savon.&nbsp; Ce surplus&nbsp; permet de nourrir votre peau et de donner un savon très doux. Plus un savon est surgraissé plus il sera doux mais aussi mou,&nbsp; il fondra plus vite et se conservera moins longtemps. </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Les Moules?</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">On peut utiliser des &nbsp;moules de cuisine en silicones, des briques de lait, surtout pas d'aluminium &nbsp;si vous utilisez des moules en bois, cartons, protégez les par du film plastique. Une fois votre pâte de savon moulées&nbsp; recouvrez-la d'une pellicule de Film plastique. &nbsp;Pour faciliter le démoulage, huilez un peu vos moules avant de verser votre pâte de savons, les moules en Silicones sont les plus pratiques. On peut également mettre les moules au congélateur 10 minutes avant le démoulage, qui intervient en général au moins 48h après le coulage.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;"> <strong><em>La Cure ?</em></strong><em><br> </em>C'est le &nbsp;temps de séchage pendant lequel les restants de soude vont se neutraliser et l'eau s'évaporer de vos savons. Cette étape est indispensable dure au moins une semaine de préférable 3 semaines à l’air libre sur du papier, un torchon…, elle permet de rendre le savon utilisable et bien dur.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes recettes de Savons Maison.</strong>Le Savonpublishopenopenle-savon2012-01-17 16:44:552012-01-17 15:44:550http://www.alicepegie.com/wordpress/wordpress/?p=260post0
2712012-01-17 16:34:162012-01-17 15:34:16<img style="display: block; margin-left: auto; margin-right: auto;" src="/images/sapo.jpg" alt="">Avant de commencer, quelques notions</span></span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">La Saponification ?</span></strong></em><strong><span style="color: black;"><br> </span></strong><span style="color: black;">La saponification est une réaction chimique entre des acides<strong> </strong>gras (huiles, beurres végétaux...) et une<strong> </strong>base<strong> </strong>forte (Soude NaOH, ou Potasse<strong> </strong>KOH si l'on veut faire du savon liquide)&nbsp; qui donne du savon et de la glycérine</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Quelle Soude utiliser</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">La soude utilisée pour faire du savon artisanal est de l'hydroxyde de Sodium de formule NaOH pour les savons solides. On la trouve généralement dans les magasins de bricolage, quincaillerie près des produits pour déboucher les éviers. <br> La plupart du temps sous l'appellation Soude Caustique, en perles, poudres ou liquide déjà diluée (lessive de soude).&nbsp; Attention il ne s’agit pas de Cristaux de Soude, ni de Bicarbonate de Soude.<br> La Potasse, Hydroxyde de Potassium sert à réaliser du savon liquide.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Pour éviter d’avoir un savon trop corrosif&nbsp; soyez attentifs à la quantité de Soude que vous mettez </span></strong></em><span style="color: black;"> (aidez vous du &nbsp;<a href="http://calc.mendrulandia.es/?lg=fr"><span style="color: black;">Calculateur de Saponification</span></a> par exemple) et &nbsp;surgraissez vos savons. Après la période de cure, vous pouvez également tester le pH de votre savon (à l’aide d’un papier PH , il doit être compris en 7 et 9 pas plus (si lorsque vous mettez votre langue sur le savon vous avez comme une décharge électrique, c'est que votre savon est trop caustique).<br> Souvent un savon qui contient trop de Soude est cassant.</span></span></span></span></p> <p style="text-align: justify;">&nbsp;</p> <p class="MsoNormal" style="margin: 4.5pt 0in 2.25pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Le pH :</span></strong></span></span></p> <p class="MsoNormal" style="margin-bottom: 4.5pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le pH est le taux d'acidité d'un produit. Il est compris entre 1 et 14. Le citron, acide, a un pH très faible, alors que l'eau, dite "neutre", a un pH d'environ 7.<br> Un shampooing doit avoir un pH adapté à celui du cheveu (entre 4.5 et 7), c'est à dire légèrement acide, afin de resserrer les écailles. Il est conseillé lors de la réalisation de vos formules de vérifier le pH obtenu à la fin, à l'aide d'un papier pH. Si votre pH est trop haut, faites-le baisser en ajoutant de l'acide citrique ou lactique. S'il est trop bas, augmentez-le en ajoutant de l'eau de chaux ou du bicarbonate de sodium.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><strong><span style="color: black;">Si vous voulez donner un couleur spéciale à votre savon, vous pouvez utiliser les</span></strong></em><span style="color: black;"> Argiles, les colorants alimentaires, les épices….. Attention la Soude peut faire virer votre couleur!</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;"><strong>Pour les extraits végétaux,</strong> utilisez les beurres et huiles qui conviennent à votre peau. (moi j’utilise quasiment les mêmes huiles et beurres pour ma crème et mes savons) </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><strong><span style="color: black;">Pour une action plus poussée sur votre peau vous pouvez remplacer l’eau par </span></strong></em><span style="color: black;"> du jus de fruit, de légumes, du lait, du thé, du café... pour dissoudre votre soude. Dans ce cas congeler les</span><em><strong><span style="color: black;"> pour </span></strong></em><span style="color: black;">éviter qu'ils perdent leurs propriétés ou ne soient altérés..</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">ATTENTION&nbsp;!</span></strong></em></span></span></span></p> <ul style="text-align: justify;"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">ajoutez toujours la soude à l'eau et non le contraire. </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Protégez-vous bien : Porter des lunettes de protection (elles sont disponibles dans les quincailleries), des gants, un tablier, des manches longues et pantalons de préférence. En cas de projections de soude ou de pâte à savon, verser du vinaigre sur les parties touchées.</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Utiliser toujours un récipient en verre ou en acier inoxydable, ainsi que des cuillères en bois, pas de plastique (ca fondrait) ni d’aluminium (réaction &nbsp;à la soude). </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il est préférable de faire son savon à l'extérieur ou dans un espace bien ventilé pour éviter d’inhaler les fumées dégagées par la soude </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Faites les vide autour de vous. Surtout pas d’enfant, d’animaux et encore moins de portable.</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Protégez votre plan de travail avec des papiers journaux (la soude est très corrosive)</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Allouez des ustensiles à la savonnerie, ne surtout pas les réutiliser pour la cuisine. </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Nettoyez vos ustensiles de savonnerie en les trempant dans une eau bien vinaigrée, avant de les laver soigneusement.</span></span></span></span></li> </ul> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;"><strong>Quelle quantité de Soude et d’eau&nbsp;?</strong> </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il existe pas mal de site aidant à calculer les doses nécessaires de soude et d’eau pour un bon savon celui que je préfère est <a href="http://calc.mendrulandia.es/?lg=fr">là</a></span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">La Trace ?</span></strong></em><span style="color: black;"><br> C’est lorsqu'on sort la cuillère, mixeur, fouet, &nbsp;et que les gouttes qui retombent dans la préparation laissent une marque à la surface du mélange sans disparaître immédiatement. C'est à ce moment que l'on peut surgraisser. </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Le Surgraissage ?</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il s'agit d'un excèdent d'huiles, contenu dans le savon. Ces huiles ne sont pas transformées par la soude et restent dans le savon.&nbsp; Ce surplus&nbsp; permet de nourrir votre peau et de donner un savon très doux. Plus un savon est surgraissé plus il sera doux mais aussi mou,&nbsp; il fondra plus vite et se conservera moins longtemps. </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Les Moules?</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">On peut utiliser des &nbsp;moules de cuisine en silicones, des briques de lait, surtout pas d'aluminium &nbsp;si vous utilisez des moules en bois, cartons, protégez les par du film plastique. Une fois votre pâte de savon moulées&nbsp; recouvrez-la d'une pellicule de Film plastique. &nbsp;Pour faciliter le démoulage, huilez un peu vos moules avant de verser votre pâte de savons, les moules en Silicones sont les plus pratiques. On peut également mettre les moules au congélateur 10 minutes avant le démoulage, qui intervient en général au moins 48h après le coulage.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;"> <strong><em>La Cure ?</em></strong><em><br> </em>C'est le &nbsp;temps de séchage pendant lequel les restants de soude vont se neutraliser et l'eau s'évaporer de vos savons. Cette étape est indispensable dure au moins une semaine de préférable 3 semaines à l’air libre sur du papier, un torchon…, elle permet de rendre le savon utilisable et bien dur.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes recettes de Savons Maison.</strong>Le Savoninheritopenopen26-revision2012-01-17 16:34:162012-01-17 15:34:1626http://www.alicepegie.com/wordpress/wordpress/?p=270revision0
2812012-01-17 16:34:192012-01-17 15:34:19<img style="display: block; margin-left: auto; margin-right: auto;" src="/images/sapo.jpg" alt="">Avant de commencer, quelques notions</span></span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">La Saponification ?</span></strong></em><strong><span style="color: black;"><br> </span></strong><span style="color: black;">La saponification est une réaction chimique entre des acides<strong> </strong>gras (huiles, beurres végétaux...) et une<strong> </strong>base<strong> </strong>forte (Soude NaOH, ou Potasse<strong> </strong>KOH si l'on veut faire du savon liquide)&nbsp; qui donne du savon et de la glycérine</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Quelle Soude utiliser</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">La soude utilisée pour faire du savon artisanal est de l'hydroxyde de Sodium de formule NaOH pour les savons solides. On la trouve généralement dans les magasins de bricolage, quincaillerie près des produits pour déboucher les éviers. <br> La plupart du temps sous l'appellation Soude Caustique, en perles, poudres ou liquide déjà diluée (lessive de soude).&nbsp; Attention il ne s’agit pas de Cristaux de Soude, ni de Bicarbonate de Soude.<br> La Potasse, Hydroxyde de Potassium sert à réaliser du savon liquide.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Pour éviter d’avoir un savon trop corrosif&nbsp; soyez attentifs à la quantité de Soude que vous mettez </span></strong></em><span style="color: black;"> (aidez vous du &nbsp;<a href="http://calc.mendrulandia.es/?lg=fr"><span style="color: black;">Calculateur de Saponification</span></a> par exemple) et &nbsp;surgraissez vos savons. Après la période de cure, vous pouvez également tester le pH de votre savon (à l’aide d’un papier PH , il doit être compris en 7 et 9 pas plus (si lorsque vous mettez votre langue sur le savon vous avez comme une décharge électrique, c'est que votre savon est trop caustique).<br> Souvent un savon qui contient trop de Soude est cassant.</span></span></span></span></p> <p style="text-align: justify;">&nbsp;</p> <p class="MsoNormal" style="margin: 4.5pt 0in 2.25pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Le pH :</span></strong></span></span></p> <p class="MsoNormal" style="margin-bottom: 4.5pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le pH est le taux d'acidité d'un produit. Il est compris entre 1 et 14. Le citron, acide, a un pH très faible, alors que l'eau, dite "neutre", a un pH d'environ 7.<br> Un shampooing doit avoir un pH adapté à celui du cheveu (entre 4.5 et 7), c'est à dire légèrement acide, afin de resserrer les écailles. Il est conseillé lors de la réalisation de vos formules de vérifier le pH obtenu à la fin, à l'aide d'un papier pH. Si votre pH est trop haut, faites-le baisser en ajoutant de l'acide citrique ou lactique. S'il est trop bas, augmentez-le en ajoutant de l'eau de chaux ou du bicarbonate de sodium.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><strong><span style="color: black;">Si vous voulez donner un couleur spéciale à votre savon, vous pouvez utiliser les</span></strong></em><span style="color: black;"> Argiles, les colorants alimentaires, les épices….. Attention la Soude peut faire virer votre couleur!</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;"><strong>Pour les extraits végétaux,</strong> utilisez les beurres et huiles qui conviennent à votre peau. (moi j’utilise quasiment les mêmes huiles et beurres pour ma crème et mes savons) </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><strong><span style="color: black;">Pour une action plus poussée sur votre peau vous pouvez remplacer l’eau par </span></strong></em><span style="color: black;"> du jus de fruit, de légumes, du lait, du thé, du café... pour dissoudre votre soude. Dans ce cas congeler les</span><em><strong><span style="color: black;"> pour </span></strong></em><span style="color: black;">éviter qu'ils perdent leurs propriétés ou ne soient altérés..</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">ATTENTION&nbsp;!</span></strong></em></span></span></span></p> <ul style="text-align: justify;"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">ajoutez toujours la soude à l'eau et non le contraire. </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Protégez-vous bien : Porter des lunettes de protection (elles sont disponibles dans les quincailleries), des gants, un tablier, des manches longues et pantalons de préférence. En cas de projections de soude ou de pâte à savon, verser du vinaigre sur les parties touchées.</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Utiliser toujours un récipient en verre ou en acier inoxydable, ainsi que des cuillères en bois, pas de plastique (ca fondrait) ni d’aluminium (réaction &nbsp;à la soude). </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il est préférable de faire son savon à l'extérieur ou dans un espace bien ventilé pour éviter d’inhaler les fumées dégagées par la soude </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Faites les vide autour de vous. Surtout pas d’enfant, d’animaux et encore moins de portable.</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Protégez votre plan de travail avec des papiers journaux (la soude est très corrosive)</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Allouez des ustensiles à la savonnerie, ne surtout pas les réutiliser pour la cuisine. </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Nettoyez vos ustensiles de savonnerie en les trempant dans une eau bien vinaigrée, avant de les laver soigneusement.</span></span></span></span></li> </ul> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;"><strong>Quelle quantité de Soude et d’eau&nbsp;?</strong> </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il existe pas mal de site aidant à calculer les doses nécessaires de soude et d’eau pour un bon savon celui que je préfère est <a href="http://calc.mendrulandia.es/?lg=fr">là</a></span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">La Trace ?</span></strong></em><span style="color: black;"><br> C’est lorsqu'on sort la cuillère, mixeur, fouet, &nbsp;et que les gouttes qui retombent dans la préparation laissent une marque à la surface du mélange sans disparaître immédiatement. C'est à ce moment que l'on peut surgraisser. </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Le Surgraissage ?</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il s'agit d'un excèdent d'huiles, contenu dans le savon. Ces huiles ne sont pas transformées par la soude et restent dans le savon.&nbsp; Ce surplus&nbsp; permet de nourrir votre peau et de donner un savon très doux. Plus un savon est surgraissé plus il sera doux mais aussi mou,&nbsp; il fondra plus vite et se conservera moins longtemps. </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Les Moules?</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">On peut utiliser des &nbsp;moules de cuisine en silicones, des briques de lait, surtout pas d'aluminium &nbsp;si vous utilisez des moules en bois, cartons, protégez les par du film plastique. Une fois votre pâte de savon moulées&nbsp; recouvrez-la d'une pellicule de Film plastique. &nbsp;Pour faciliter le démoulage, huilez un peu vos moules avant de verser votre pâte de savons, les moules en Silicones sont les plus pratiques. On peut également mettre les moules au congélateur 10 minutes avant le démoulage, qui intervient en général au moins 48h après le coulage.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;"> <strong><em>La Cure ?</em></strong><em><br> </em>C'est le &nbsp;temps de séchage pendant lequel les restants de soude vont se neutraliser et l'eau s'évaporer de vos savons. Cette étape est indispensable dure au moins une semaine de préférable 3 semaines à l’air libre sur du papier, un torchon…, elle permet de rendre le savon utilisable et bien dur.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes recettes de Savons Maison.</strong>Le Savoninheritopenopen26-revision-22012-01-17 16:34:192012-01-17 15:34:1926http://www.alicepegie.com/wordpress/wordpress/?p=280revision0
3112010-01-14 15:41:532010-01-14 14:41:53<span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" title="alambic" src="images/alambic-espagnol1-2.jpg" alt="alambic" width="600" height="641" border="0" />L’hydrolathérapie, ou thérapie par les hydrolats, est une branche de l’aromathérapie, elle-même issue de l’ensemble plus vaste de la phytothérapie. C’est une thérapie holistique, c’est à dire qu’elle soigne et cherche à équilibrer l’entité Corps-Esprit. Si l’on assiste à la distillation d’une plante, deux produits très précieux émergent, bien distincts l’un de l’autre : d’une part l’<strong class="spip">HE</strong> (<em class="spip">huile essentielle</em>) et d’autre part l’<strong class="spip">HA</strong> (<em class="spip">hydrolat</em>), à savoir l’eau imprégnée des mêmes molécules aromatiques que les HE. En l’espace d’une décennie, les HE ont fait un chemin remarquable dans la conscience collective et nous ne pouvons que nous en réjouir. En revanche, il n’en va pas de même pour les hydrolats qui restent bien souvent peu connus, voire méconnus du grand public. Ces "<em class="spip">eaux magiques</em>" ont pourtant elles aussi des vertus thérapeutiques hors pairs, issues de la plante, mais aussi de la faculté purificatrice incommensurable de l’eau. Ces qualités permettent à ceux qui les utilisent de se purifier et de se soigner simultanément, ce qui accélère souvent le processus de guérison, surtout si des facteurs psycho-émotionnels entrent en jeu.</span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Source: Lydia Bosson/Guénolée Dietz - Editions Amyris</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">ci dessous un schéma des soins que l'on peu prodiqguer par Hydraloat Thérapie. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a title="HA thérapie.pdf" href="http://s1.e-monsite.com/2009/10/19/35190278ha-therapie-pdf.pdf" target="_blank"><img title="Fichier" src="http://www.e-monsite.com/im/stockage/pdf.png" alt="" align="absmiddle" border="0" />HA thérapie.pdf</a></span></span></p>L'Hydrolathérapiepublishopenopenlhydrolatherapie2012-01-18 13:50:532012-01-18 12:50:530http://www.alicepegie.com/wordpress/wordpress/?p=310post0
3212012-01-17 16:42:132012-01-17 15:42:13<p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img src="images/alambic-espagnol1-2.jpg" alt="alambic" title="alambic" style="display: block; margin-left: auto; margin-right: auto;" height="641" width="600" border="0" />L’hydrolathérapie, ou thérapie par les hydrolats, est une branche de l’aromathérapie, elle-même issue de l’ensemble plus vaste de la phytothérapie. C’est une thérapie holistique, c’est à dire qu’elle soigne et cherche à équilibrer l’entité Corps-Esprit. Si l’on assiste à la distillation d’une plante, deux produits très précieux émergent, bien distincts l’un de l’autre&nbsp;: d’une part l’<strong class="spip">HE</strong> (<em class="spip">huile essentielle</em>) et d’autre part l’<strong class="spip">HA</strong> (<em class="spip">hydrolat</em>), à savoir l’eau imprégnée des mêmes molécules aromatiques que les HE. En l’espace d’une décennie, les HE ont fait un chemin remarquable dans la conscience collective et nous ne pouvons que nous en réjouir. En revanche, il n’en va pas de même pour les hydrolats qui restent bien souvent peu connus, voire méconnus du grand public. Ces "<em class="spip">eaux magiques</em>" ont pourtant elles aussi des vertus thérapeutiques hors pairs, issues de la plante, mais aussi de la faculté purificatrice incommensurable de l’eau. Ces qualités permettent à ceux qui les utilisent de se purifier et de se soigner simultanément, ce qui accélère souvent le processus de guérison, surtout si des facteurs psycho-émotionnels entrent en jeu.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Source: Lydia Bosson/Guénolée Dietz - Editions Amyris</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">ci dessous un schéma des soins que l'on peu prodiqguer par Hydraloat Thérapie.<br /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://s1.e-monsite.com/2009/10/19/35190278ha-therapie-pdf.pdf" target="_blank" title="HA thérapie.pdf"><img src="http://www.e-monsite.com/im/stockage/pdf.png" alt="" title="Fichier" align="absmiddle" border="0" />HA thérapie.pdf</a></span></span></p> <p style="text-align: justify;">&nbsp;</p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p>L'Hydrolathérapieinheritopenopen31-revision2012-01-17 16:42:132012-01-17 15:42:1331http://www.alicepegie.com/wordpress/wordpress/?p=320revision0
14612012-01-17 17:17:502012-01-17 16:17:50<p> </p> <p style="text-align: justify;"><a class="mb" href="http://s2.e-monsite.com/2009/11/04/09/resize_550_550/rotate_0//acne.png"><img src="http://s2.e-monsite.com/2009/11/04/09/resize_550_550/rotate_0//acne.png" border="0" alt="" align="left" /></a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peau sèche, peau grasse, démangeaisons, boutons, comédons, on peut venir à bout de certains problèmes de peau bénins par une meilleure hygiène et des produits adéquats.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Bien que la peau se renouvelle sans cesse en surface, elle a besoin d'être régulièrement nettoyée et nourrie pour demeurer saine. Il est cependant recommandé de consulter un dermatologue pour recevoir un diagnostic précis avant de vous soigner. Ici pas de distinctions, les peaux blanches ou noires sont soumises aux mêmes problèmes, même s'il est vrai que les conséquences sur les peaux noires sont souvent plus visibles que sur les peaux blanches.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les problèmes de peau les plus fréquents</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'eczéma</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : peau sèche, éruption de plaies et démangeaisons intenses. Les crèmes à la cortisone sont souvent prescrites mais ne font que calmer les démangeaisons et finissent par affaiblir graduellement les structures cutanées.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : l'hydratation est ici très importante. Évitez les bains trop froids ou trop chauds et privilégiez les pains dermatologiques surgras. Utilisez quotidiennement un bon hydratant, ou émollient (glycérine).</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le psoriasis</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : plaques cutanées recouvertes de squames (peaux mortes). Les plaques peuvent apparaître partout, mais elles apparaissent le plus souvent sur les genoux, les coudes, le cuir chevelu, les mains et les pieds. L'acide salicylique à des concentrations de 2 à 10% adoucit la peau, réduit l'épaisseur des plaques et facilite l'élimination des squames.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong><strong> :</strong> évitez les produits irritants; laisser votre peau respirer (habillez vous en conséquence). Mettez un humidificateur dans la maison si le taux d'humidité est trop bas. HYDRATEZ-vous pour éviter le desséchement et les démangeaisons. Évitez l'eau très chaude, qui peut irriter la peau et empirer les symptômes. Laver délicatement vos cheveux et épongez avec une serviette douce. Lorsque c'est possible, évitez le sèche-cheveux.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'acné</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : l'acné vulgaire est causée par une hypersécrétion de sébum qui bouche les pores de la peau et qui s'accumule en formant des kystes, des points noirs, des comédons, des lésions inflammatoires (papules, pustules,) et parfois des nodules (kystes profonds). Elle affecte surtout le visage, les oreilles, la poitrine, les épaules et le dos. Comme elle se manifeste principalement à l'adolescence ou aux périodes de bouleversements hormonaux, elle s'atténue ou guérit spontanément la plupart du temps après ces périodes.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : ne pas toucher à son visage et ne jamais percer un bouton. Privilégiez les nettoyants doux qui limitent la production de sébum sans irriter la peau, et les hydratants sans huile. Les topicals comme le peroxyde de benzoyle qui ont un effet de séchage sur la peau devrait être employé sous la surveillance d'un dermatologue.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La rosacée</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : les papules et pustules inflammatoires de la rosacée ressemblent beaucoup à celles de l'acné vulgaire. La peau a une apparence plus grasse et les petits vaisseaux sanguins du visage peuvent être dilatés.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : évitez les facteurs favorisant la dilatation des vaisseaux tels que certaines boissons ou aliments trop chauds, les épices, une ambiance surchauffée.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'herpès labial (feu sauvage)</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : règle générale, il s'agit d'une affection bénigne sauf chez la femme enceinte en fin de grossesse à cause du risque pour le nouveau-né au moment de l'accouchement. Il se manifeste par des picotements, une rougeur, une sensation de brûlure avant que n'apparaisse une lésion très contagieuse sur le contour extérieur de la bouche.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : évitez le contact direct avec la lésion. Bien se laver les mains immédiatement après avoir touché le feu sauvage. Protégez les lèvres avec un baume pour éviter le dessèchement.</span></span></p>Problèmes de peau et solutionsinheritopenopen55-revision-22012-01-17 17:17:502012-01-17 16:17:5055http://www.alicepegie.com/wordpress/wordpress/?p=1460revision0
3412012-01-17 16:35:352012-01-17 15:35:35<img style="display: block; margin-left: auto; margin-right: auto;" src="/images/sapo.jpg" alt="">Avant de commencer, quelques notions</span></span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">La Saponification ?</span></strong></em><strong><span style="color: black;"><br> </span></strong><span style="color: black;">La saponification est une réaction chimique entre des acides<strong> </strong>gras (huiles, beurres végétaux...) et une<strong> </strong>base<strong> </strong>forte (Soude NaOH, ou Potasse<strong> </strong>KOH si l'on veut faire du savon liquide)&nbsp; qui donne du savon et de la glycérine</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Quelle Soude utiliser</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">La soude utilisée pour faire du savon artisanal est de l'hydroxyde de Sodium de formule NaOH pour les savons solides. On la trouve généralement dans les magasins de bricolage, quincaillerie près des produits pour déboucher les éviers. <br> La plupart du temps sous l'appellation Soude Caustique, en perles, poudres ou liquide déjà diluée (lessive de soude).&nbsp; Attention il ne s’agit pas de Cristaux de Soude, ni de Bicarbonate de Soude.<br> La Potasse, Hydroxyde de Potassium sert à réaliser du savon liquide.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Pour éviter d’avoir un savon trop corrosif&nbsp; soyez attentifs à la quantité de Soude que vous mettez </span></strong></em><span style="color: black;"> (aidez vous du &nbsp;<a href="http://calc.mendrulandia.es/?lg=fr"><span style="color: black;">Calculateur de Saponification</span></a> par exemple) et &nbsp;surgraissez vos savons. Après la période de cure, vous pouvez également tester le pH de votre savon (à l’aide d’un papier PH , il doit être compris en 7 et 9 pas plus (si lorsque vous mettez votre langue sur le savon vous avez comme une décharge électrique, c'est que votre savon est trop caustique).<br> Souvent un savon qui contient trop de Soude est cassant.</span></span></span></span></p> <p style="text-align: justify;">&nbsp;</p> <p class="MsoNormal" style="margin: 4.5pt 0in 2.25pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Le pH :</span></strong></span></span></p> <p class="MsoNormal" style="margin-bottom: 4.5pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le pH est le taux d'acidité d'un produit. Il est compris entre 1 et 14. Le citron, acide, a un pH très faible, alors que l'eau, dite "neutre", a un pH d'environ 7.<br> Un shampooing doit avoir un pH adapté à celui du cheveu (entre 4.5 et 7), c'est à dire légèrement acide, afin de resserrer les écailles. Il est conseillé lors de la réalisation de vos formules de vérifier le pH obtenu à la fin, à l'aide d'un papier pH. Si votre pH est trop haut, faites-le baisser en ajoutant de l'acide citrique ou lactique. S'il est trop bas, augmentez-le en ajoutant de l'eau de chaux ou du bicarbonate de sodium.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><strong><span style="color: black;">Si vous voulez donner un couleur spéciale à votre savon, vous pouvez utiliser les</span></strong></em><span style="color: black;"> Argiles, les colorants alimentaires, les épices….. Attention la Soude peut faire virer votre couleur!</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;"><strong>Pour les extraits végétaux,</strong> utilisez les beurres et huiles qui conviennent à votre peau. (moi j’utilise quasiment les mêmes huiles et beurres pour ma crème et mes savons) </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><strong><span style="color: black;">Pour une action plus poussée sur votre peau vous pouvez remplacer l’eau par </span></strong></em><span style="color: black;"> du jus de fruit, de légumes, du lait, du thé, du café... pour dissoudre votre soude. Dans ce cas congeler les</span><em><strong><span style="color: black;"> pour </span></strong></em><span style="color: black;">éviter qu'ils perdent leurs propriétés ou ne soient altérés..</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">ATTENTION&nbsp;!</span></strong></em></span></span></span></p> <ul style="text-align: justify;"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">ajoutez toujours la soude à l'eau et non le contraire. </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Protégez-vous bien : Porter des lunettes de protection (elles sont disponibles dans les quincailleries), des gants, un tablier, des manches longues et pantalons de préférence. En cas de projections de soude ou de pâte à savon, verser du vinaigre sur les parties touchées.</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Utiliser toujours un récipient en verre ou en acier inoxydable, ainsi que des cuillères en bois, pas de plastique (ca fondrait) ni d’aluminium (réaction &nbsp;à la soude). </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il est préférable de faire son savon à l'extérieur ou dans un espace bien ventilé pour éviter d’inhaler les fumées dégagées par la soude </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Faites les vide autour de vous. Surtout pas d’enfant, d’animaux et encore moins de portable.</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Protégez votre plan de travail avec des papiers journaux (la soude est très corrosive)</span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Allouez des ustensiles à la savonnerie, ne surtout pas les réutiliser pour la cuisine. </span></span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Nettoyez vos ustensiles de savonnerie en les trempant dans une eau bien vinaigrée, avant de les laver soigneusement.</span></span></span></span></li> </ul> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;"><strong>Quelle quantité de Soude et d’eau&nbsp;?</strong> </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il existe pas mal de site aidant à calculer les doses nécessaires de soude et d’eau pour un bon savon celui que je préfère est <a href="http://calc.mendrulandia.es/?lg=fr">là</a></span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">La Trace ?</span></strong></em><span style="color: black;"><br> C’est lorsqu'on sort la cuillère, mixeur, fouet, &nbsp;et que les gouttes qui retombent dans la préparation laissent une marque à la surface du mélange sans disparaître immédiatement. C'est à ce moment que l'on peut surgraisser. </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Le Surgraissage ?</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">Il s'agit d'un excèdent d'huiles, contenu dans le savon. Ces huiles ne sont pas transformées par la soude et restent dans le savon.&nbsp; Ce surplus&nbsp; permet de nourrir votre peau et de donner un savon très doux. Plus un savon est surgraissé plus il sera doux mais aussi mou,&nbsp; il fondra plus vite et se conservera moins longtemps. </span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><em><strong><span style="color: black;">Les Moules?</span></strong></em></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;">On peut utiliser des &nbsp;moules de cuisine en silicones, des briques de lait, surtout pas d'aluminium &nbsp;si vous utilisez des moules en bois, cartons, protégez les par du film plastique. Une fois votre pâte de savon moulées&nbsp; recouvrez-la d'une pellicule de Film plastique. &nbsp;Pour faciliter le démoulage, huilez un peu vos moules avant de verser votre pâte de savons, les moules en Silicones sont les plus pratiques. On peut également mettre les moules au congélateur 10 minutes avant le démoulage, qui intervient en général au moins 48h après le coulage.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: rgb(0, 0, 0);"><span style="color: black;"> <strong><em>La Cure ?</em></strong><em><br> </em>C'est le &nbsp;temps de séchage pendant lequel les restants de soude vont se neutraliser et l'eau s'évaporer de vos savons. Cette étape est indispensable dure au moins une semaine de préférable 3 semaines à l’air libre sur du papier, un torchon…, elle permet de rendre le savon utilisable et bien dur.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes recettes de Savons Maison.</strong>Le Savoninheritopenopen26-revision-32012-01-17 16:35:352012-01-17 15:35:3526http://www.alicepegie.com/wordpress/wordpress/?p=340revision0
3712012-01-17 16:25:162012-01-17 15:25:16<a class="PostHeader" href="/ma-cuisine/boissons/3067-la-biere-au-gingembre-maison">La Bière au Gingembre maison</a> <div class="art-postheadericons art-metadata-icons"><span class="art-postdateicon">Date de publication</span> | <a title="Imprimer" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;" href="/ma-cuisine/boissons/3067-la-biere-au-gingembre-maison?tmpl=component&amp;print=1&amp;layout=default&amp;page=" rel="nofollow"><img src="/templates/maniguettebis1/images/system/printButton.png" alt="Imprimer" /></a> | <a title="E-mail" onclick="window.open(this.href,'win2','width=400,height=350,menubar=yes,resizable=yes'); return false;" href="/component/mailto/?tmpl=component&amp;template=maniguettebis1&amp;link=495678c1afa50b03210cc89a9f2890d74d962a23"><img src="/templates/maniguettebis1/images/system/emailButton.png" alt="E-mail" /></a> | Affichages : 257</div> <div class="art-postcontent"> <div class="art-article"> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/1.JPG" alt="bierre au gingembre" width="600" height="741" />Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre. <strong>Pour 2l de bière env.</strong> 1 citron jaune coupé en rondelles 1 citron vert coupé en rondelles<strong> </strong> <ul> <li>2l d'eau</li> <li>75g de gingembre frais, haché grossièrement</li> <li>300g de sucre</li> <li>1 cc de jus de citron</li> <li>15g de levure sèche de boulangerie (3 cuillères à café)</li> </ul> &nbsp; <strong>Préparation</strong> <ul> <li>Dans une grande casserole, versez les 2 litres d'eau, les rondelles de citron et le gingembre haché et portez le tout à ébullition et laissez mijoter 5mn puis coupez la source de chaleur et laissez infuser 30 mn.</li> </ul> <img src="/images/stories/BIERRE/2.JPG" alt="2" width="350" height="263" /><img src="/images/stories/BIERRE/4.JPG" alt="4" width="350" height="263" /> <ul> <li>Ajoutez le reste des ingrédients</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Laisser macérer 48 heures, à couvert dans un endroit chaud à l’abri des courant d’air</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/7.JPG" alt="7" width="600" height="450" />filtrez et versez la préparation dans une bouteille pouvant contenir 3l ou dans 3 bouteilles de 1l en laissant de l’espace. <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/8.JPG" alt="8" width="600" height="450" />Fermez la (les) bouteilles et laissez fermenter au frais pendant 24 heures <ul> <li>pour servir diluez avec un peu d’eau gazeuse !!</li> </ul> <img src="/images/stories/BIERRE/9.JPG" alt="bierre au gingembre" width="326" height="593" /><img src="/images/stories/BIERRE/10.JPG" alt="bierre au gingembre" width="362" height="594" /> C’est sur cette note épicée qu<strong><a href="http://www.alicepegie.com">’Une Graine de Maniguette </a>va faire une pause et vous donne de nouveau rendez vous à compter du 9 Janvier 2012 s’il plait à Dieu. Bonnes fêtes de fin d'année à tous!!</strong> <strong><img src="/images/stories/BIERRE/11.JPG" alt="bierre au gingembre" width="327" height="503" /><img src="/images/stories/BIERRE/12.JPG" alt="bierre au gingembre" width="361" height="505" /></strong> </div> </div>La Bière au Gingembre Maisoninheritopenopen17-revision-42012-01-17 16:25:162012-01-17 15:25:1617http://www.alicepegie.com/wordpress/wordpress/?p=370revision0
3812012-01-17 16:42:502012-01-17 15:42:50<p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img src="images/alambic-espagnol1-2.jpg" alt="alambic" title="alambic" style="display: block; margin-left: auto; margin-right: auto;" height="641" width="600" border="0" />L’hydrolathérapie, ou thérapie par les hydrolats, est une branche de l’aromathérapie, elle-même issue de l’ensemble plus vaste de la phytothérapie. C’est une thérapie holistique, c’est à dire qu’elle soigne et cherche à équilibrer l’entité Corps-Esprit. Si l’on assiste à la distillation d’une plante, deux produits très précieux émergent, bien distincts l’un de l’autre&nbsp;: d’une part l’<strong class="spip">HE</strong> (<em class="spip">huile essentielle</em>) et d’autre part l’<strong class="spip">HA</strong> (<em class="spip">hydrolat</em>), à savoir l’eau imprégnée des mêmes molécules aromatiques que les HE. En l’espace d’une décennie, les HE ont fait un chemin remarquable dans la conscience collective et nous ne pouvons que nous en réjouir. En revanche, il n’en va pas de même pour les hydrolats qui restent bien souvent peu connus, voire méconnus du grand public. Ces "<em class="spip">eaux magiques</em>" ont pourtant elles aussi des vertus thérapeutiques hors pairs, issues de la plante, mais aussi de la faculté purificatrice incommensurable de l’eau. Ces qualités permettent à ceux qui les utilisent de se purifier et de se soigner simultanément, ce qui accélère souvent le processus de guérison, surtout si des facteurs psycho-émotionnels entrent en jeu.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Source: Lydia Bosson/Guénolée Dietz - Editions Amyris</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">ci dessous un schéma des soins que l'on peu prodiqguer par Hydraloat Thérapie.<br /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://s1.e-monsite.com/2009/10/19/35190278ha-therapie-pdf.pdf" target="_blank" title="HA thérapie.pdf"><img src="http://www.e-monsite.com/im/stockage/pdf.png" alt="" title="Fichier" align="absmiddle" border="0" />HA thérapie.pdf</a></span></span></p> <p style="text-align: justify;">&nbsp;</p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p>L'Hydrolathérapieinheritopenopen31-revision-22012-01-17 16:42:502012-01-17 15:42:5031http://www.alicepegie.com/wordpress/wordpress/?p=380revision0
3912012-01-17 16:30:372012-01-17 15:30:37<span class="art-postdateicon">Date de publication</span> | <a href="/ma-cuisine/desserts/111-gateaux/3059-buche-de-noel-a-lananas?tmpl=component&amp;print=1&amp;layout=default&amp;page=" title="Imprimer" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;" rel="nofollow"><img src="/templates/maniguettebis1/images/system/printButton.png" alt="Imprimer"></a> | <a href="/component/mailto/?tmpl=component&amp;template=maniguettebis1&amp;link=1aba85bd5eca38f53d4e877962cb98f8384753b9" title="E-mail" onclick="window.open(this.href,'win2','width=400,height=350,menubar=yes,resizable=yes'); return false;"><img src="/templates/maniguettebis1/images/system/emailButton.png" alt="E-mail"></a> | Affichages : 188 </div> <div class="art-postcontent"> <div class="art-article"><p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="buche ananas" src="/images/stories/buche%20ananas/1.JPG" height="273" width="600">J’ai commencé à m’exercer à faire des buches maison l’année dernière. Le résultat était plutôt concluant alors j’ai décidé de réitérer cette année avec cette buche légère et fruitée. </span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Ingrédients pour 2 personne(s) </b></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le biscuit</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Farine</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 œuf</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>La crème</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de sel</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus de mangue</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1/2cc de jus de citron</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">36g de beurre coupé en morceaux</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le sirop</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125 ml de jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">40g de Sucre</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125ml de Jus de mangu</span></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Le glaçage</span></strong></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de chocolat blanc à pâtisser Nestlé</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de crème entière liquide</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre glace</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de colorant alimentaire en poudre orange (évitez les colorants liquides avec le chocolat)</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Préparation de la crème :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Dans un saladier résistant à la chaleur, mettre les œufs, le sucre, et le sel.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ajoutez progressivement les jus. Poser ensuite le récipient dans un bain-marie et cuire lentement à feu doux jusqu'à épaississement env. 8mn.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="2" src="/images/stories/buche%20ananas/2.JPG" height="450" width="600"></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Retirez du feu et continuez de fouetter pour abaisser la température env 2-3mn.</span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Lorsqu'il est possible de toucher les bords du récipient sans se brûler, ajouter progressivement le beurre froid coupé en petits cubes. <br></span></li> </ul> <p><img style="display: block; margin-left: auto; margin-right: auto;" alt="3" src="/images/stories/buche%20ananas/3.JPG" height="450" width="600"><br><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Une fois le beurre incorporé, couvrez le saladier et réservez au frais pendant au moins 1 h.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="4" src="/images/stories/buche%20ananas/4.JPG" height="450" width="600"><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <b>Préparation du sirop :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Mélangez les jus d’ananas et de mangue et le sucre, puis porter à ébullition et stopper le feu. Laissez ensuite refroidir à température ambiante.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="5" src="/images/stories/buche%20ananas/5.JPG" height="450" width="600"><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <b>Cuisson du biscuit :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Préparez tous les ingrédients. Mettez le sucre et les œufs dans la cuve de votre robot.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Fouettez l’ensemble pendant 10mn à vitesse maximale, la préparation doit doubler de volume.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Incorporer la farine préalablement tamisée délicatement à l'aide d'une maryse ou à l'écumoire en effectuant un mouvement de rotation.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="8" src="/images/stories/buche%20ananas/8.JPG" height="263" width="350"><img alt="9" src="/images/stories/buche%20ananas/9.JPG" height="263" width="350"><br></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Versez sur une sur plaque recouverte de papier sulfurisé.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="11" src="/images/stories/buche%20ananas/11.JPG" height="263" width="350"><img alt="12" src="/images/stories/buche%20ananas/12.JPG" height="263" width="350"><br></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Enfourner à four chaud, 180°C pour 8-10mn.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="13" src="/images/stories/buche%20ananas/13.JPG" height="450" width="600"><br></span></p> <p><b><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation du glaçage</span></b></p> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Faites fondre au bain-marie le chocolat, la crème et le sucre glace.</span></li> </ul> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="6" src="/images/stories/buche%20ananas/6.JPG" height="450" width="600"></span><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mélangez bien la préparation de façon à avoir une préparation homogène</span></p> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="7" src="/images/stories/buche%20ananas/7.JPG" height="450" width="600"></span></p> <p>&nbsp;<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le montage : </b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Décollez le biscuit du tapis et en couper les bords pour l'égaliser, puis le poser sur un papier sulfurisé. A l'aide d'un pinceau, imbiber généreusement le biscuit de sirop d'ananas. Étaler ensuite la crème au citron dessus puis rouler le tout en escargot.</span></li> </ul> <p><img alt="SAM 1444" src="/images/stories/buche%20ananas/SAM_1444.JPG" height="263" width="350"><img alt="14" src="/images/stories/buche%20ananas/14.JPG" height="265" width="277"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span></p> <p>&nbsp;</p> <p>&nbsp;</p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Glacez votre buche soit à l’aide d’une spatule soit à en versant directement le glacage diectement sur le biscuit<br></span></span></p> </span></li> </ul> <p>&nbsp;</p> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span> <img style="display: block; margin-left: auto; margin-right: auto;" alt="15" src="/images/stories/buche%20ananas/15.JPG" height="283" width="600"></span></p> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="16" src="/images/stories/buche%20ananas/16.JPG" height="457" width="600"></span></p> <p>&nbsp;</p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Laissez la bûche reposer au réfrigérateur pendant 4 h.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="17" src="/images/stories/buche%20ananas/17.JPG" height="552" width="600"></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">décorez avec des copeaux de chocolat blanc</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="18" src="/images/stories/buche%20ananas/18.JPG" height="393" width="600"></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">et de quelque sujets en chocolat au lait</span> </span><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="19" src="/images/stories/buche%20ananas/19.JPG" height="450" width="600"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">sortez votre buche 15mn avant de servir </span><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="20" src="/images/stories/buche%20ananas/20.JPG" height="532" width="600">Bûche de Noël à l'Ananas inheritopenopen24-revision-22012-01-17 16:30:372012-01-17 15:30:3724http://www.alicepegie.com/wordpress/wordpress/?p=390revision0
4012012-01-17 16:48:072012-01-17 15:48:07<span class="art-postdateicon">Date de publication</span> | <a href="/ma-cuisine/desserts/111-gateaux/3059-buche-de-noel-a-lananas?tmpl=component&amp;print=1&amp;layout=default&amp;page=" title="Imprimer" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;" rel="nofollow"><img src="/templates/maniguettebis1/images/system/printButton.png" alt="Imprimer"></a> | <a href="/component/mailto/?tmpl=component&amp;template=maniguettebis1&amp;link=1aba85bd5eca38f53d4e877962cb98f8384753b9" title="E-mail" onclick="window.open(this.href,'win2','width=400,height=350,menubar=yes,resizable=yes'); return false;"><img src="/templates/maniguettebis1/images/system/emailButton.png" alt="E-mail"></a> | Affichages : 188 </div> <div class="art-postcontent"> <div class="art-article"><p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="buche ananas" src="/images/stories/buche%20ananas/1.JPG" height="273" width="600">J’ai commencé à m’exercer à faire des buches maison l’année dernière. Le résultat était plutôt concluant alors j’ai décidé de réitérer cette année avec cette buche légère et fruitée. </span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Ingrédients pour 2 personne(s) </b></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le biscuit</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Farine</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 œuf</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>La crème</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de sel</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus de mangue</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1/2cc de jus de citron</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">36g de beurre coupé en morceaux</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le sirop</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125 ml de jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">40g de Sucre</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125ml de Jus de mangu</span></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Le glaçage</span></strong></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de chocolat blanc à pâtisser Nestlé</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de crème entière liquide</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre glace</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de colorant alimentaire en poudre orange (évitez les colorants liquides avec le chocolat)</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Préparation de la crème :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Dans un saladier résistant à la chaleur, mettre les œufs, le sucre, et le sel.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ajoutez progressivement les jus. Poser ensuite le récipient dans un bain-marie et cuire lentement à feu doux jusqu'à épaississement env. 8mn.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="2" src="/images/stories/buche%20ananas/2.JPG" height="450" width="600"></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Retirez du feu et continuez de fouetter pour abaisser la température env 2-3mn.</span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Lorsqu'il est possible de toucher les bords du récipient sans se brûler, ajouter progressivement le beurre froid coupé en petits cubes. <br></span></li> </ul> <p><img style="display: block; margin-left: auto; margin-right: auto;" alt="3" src="/images/stories/buche%20ananas/3.JPG" height="450" width="600"><br><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Une fois le beurre incorporé, couvrez le saladier et réservez au frais pendant au moins 1 h.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="4" src="/images/stories/buche%20ananas/4.JPG" height="450" width="600"><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <b>Préparation du sirop :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Mélangez les jus d’ananas et de mangue et le sucre, puis porter à ébullition et stopper le feu. Laissez ensuite refroidir à température ambiante.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="5" src="/images/stories/buche%20ananas/5.JPG" height="450" width="600"><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <b>Cuisson du biscuit :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Préparez tous les ingrédients. Mettez le sucre et les œufs dans la cuve de votre robot.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Fouettez l’ensemble pendant 10mn à vitesse maximale, la préparation doit doubler de volume.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Incorporer la farine préalablement tamisée délicatement à l'aide d'une maryse ou à l'écumoire en effectuant un mouvement de rotation.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="8" src="/images/stories/buche%20ananas/8.JPG" height="263" width="350"><img alt="9" src="/images/stories/buche%20ananas/9.JPG" height="263" width="350"><br></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Versez sur une sur plaque recouverte de papier sulfurisé.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="11" src="/images/stories/buche%20ananas/11.JPG" height="263" width="350"><img alt="12" src="/images/stories/buche%20ananas/12.JPG" height="263" width="350"><br></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Enfourner à four chaud, 180°C pour 8-10mn.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="13" src="/images/stories/buche%20ananas/13.JPG" height="450" width="600"><br></span></p> <p><b><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation du glaçage</span></b></p> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Faites fondre au bain-marie le chocolat, la crème et le sucre glace.</span></li> </ul> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="6" src="/images/stories/buche%20ananas/6.JPG" height="450" width="600"></span><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mélangez bien la préparation de façon à avoir une préparation homogène</span></p> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="7" src="/images/stories/buche%20ananas/7.JPG" height="450" width="600"></span></p> <p>&nbsp;<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le montage : </b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Décollez le biscuit du tapis et en couper les bords pour l'égaliser, puis le poser sur un papier sulfurisé. A l'aide d'un pinceau, imbiber généreusement le biscuit de sirop d'ananas. Étaler ensuite la crème au citron dessus puis rouler le tout en escargot.</span></li> </ul> <p><img alt="SAM 1444" src="/images/stories/buche%20ananas/SAM_1444.JPG" height="263" width="350"><img alt="14" src="/images/stories/buche%20ananas/14.JPG" height="265" width="277"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span></p> <p>&nbsp;</p> <p>&nbsp;</p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Glacez votre buche soit à l’aide d’une spatule soit à en versant directement le glacage diectement sur le biscuit<br></span></span></p> </span></li> </ul> <p>&nbsp;</p> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span> <img style="display: block; margin-left: auto; margin-right: auto;" alt="15" src="/images/stories/buche%20ananas/15.JPG" height="283" width="600"></span></p> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="16" src="/images/stories/buche%20ananas/16.JPG" height="457" width="600"></span></p> <p>&nbsp;</p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Laissez la bûche reposer au réfrigérateur pendant 4 h.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="17" src="/images/stories/buche%20ananas/17.JPG" height="552" width="600"></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">décorez avec des copeaux de chocolat blanc</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="18" src="/images/stories/buche%20ananas/18.JPG" height="393" width="600"></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">et de quelque sujets en chocolat au lait</span> </span><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="19" src="/images/stories/buche%20ananas/19.JPG" height="450" width="600"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">sortez votre buche 15mn avant de servir </span><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="20" src="/images/stories/buche%20ananas/20.JPG" height="532" width="600">Bûche de Noël à l'Ananasinheritopenopen24-revision-32012-01-17 16:48:072012-01-17 15:48:0724http://www.alicepegie.com/wordpress/wordpress/?p=400revision0
4112012-01-17 16:48:490000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-17 16:48:490000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=410post0
4212010-01-14 17:10:572010-01-14 16:10:57<table style="width: 600px; height: 6104px;" border="1" cellspacing="0" cellpadding="0"> <tbody> <tr> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HYDROLAT</strong></span></span></td> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>COSMETIQUE</strong></span></span></td> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SANTE ET BIEN ETRE</strong></span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>JASMIN SAMBAC</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sa <strong>senteur fleurie et délicate est divine</strong> ; ce qui en fait un hydrolat particulièrement apprécié seul ou en mélange comme<strong> tonique</strong> ou comme <strong>actif dans la composition de cosmétiques maison</strong>. Il est aussi d'un <strong>emploi très original en cuisine</strong>, notamment pour <strong>aromatiser des cocktails</strong>, pour apporter une note fleurie à un <strong>dessert</strong> ou en <strong>sorbet fleuri </strong>pour accompagner un plat ou un dessert...</span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Fragrance délicieusement fleurie, sucrée et subtile de jasmin</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Exceptionnel pour donner une note fleurie aux produits cosmétiques</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Revitalisant cutané doux</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Convient à toutes les peaux, même sensibles</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de lotions, sprays rafraîchissants</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soins nettoyants, masques visage, démaquillants</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Préparation de parfums fleuris, eaux de toilette, eaux de Cologne, eaux fraîches, brumes, après-rasage...</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un rendu original de type fruits rouges, frais et très aromatique.</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sa senteur et son arôme puissants et fleuris de Jasmin sambac :</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- permettent de préparer de délicieux desserts</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- accompagnent délicatement les salades de fruits et les boissons apéritives</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- se déclinent en sorbet floral</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>LAVANDE SAUVAGE</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Rafraîchissant, apaisant et adoucissant</strong>, cet hydrolat est recommandé pour les <strong>peaux fragiles des enfants</strong><strong>coups de soleil, irritations, brûlures, piqûres d'insectes</strong>. Il est souvent indiqué pour traiter les <strong>zones acnéiques ou grasses</strong>, pour favoriser la cicatrisation, pour désinfecter les boutons, et accélérer le renouvellement des cellules cutanées et en soin sur les </span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent, purifiant et tonifiant pour toutes les peaux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Cicatrisant, Antiride, régénérant, Rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, les coups de soleil, les démangeaisons et calme les irritations</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et astringent pour toutes les peaux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin purifiant et cicatrisant pour les peaux à tendance acnéique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation anti-odeur et rafraîchissante pour les pieds</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Éloigne les poux (et les puces)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calmant, anti-douleur</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Nervosité, agitation, hypertension, céphalées</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, agressivité, impatience</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Urticaire</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Aphtes</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acidité gastrique, mauvaise haleine</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta, chakra coronal bloqué</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Prévention contre les poux : à vaporiser sur le cuir chevelu et derrière les oreilles chaque matin</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Puces : à vaporiser sur l'animal et sur sa couche</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Aphtes : en bains de bouche</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>LEDON DU GROENLAND</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">C'est sans doute l'hydrolat le plus puissant sur le plan thérapeutique. Il est très connu pour <strong>ses vertus détoxifiantes et purificatrices de l'organisme</strong>, ainsi que pour régénérer le foie. Il s'emploie donc en cas d'<strong>intoxication alimentaire</strong> ou d'<strong>insuffisance hépatique ou pancréatique</strong>, ou tout simplement en <strong>cure de régénération et de purification du foie et du pancréas.</strong></span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant cutané</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Allergie cutanée</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Hypersensibilité cutanée</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, allergie, peau hypersensible....)</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>L'hydrolat le plus puissant sur le plan thérapeutique.</em></strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Détoxifiant de l'organisme</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Purification et régénération du foie, des reins, du pancréas et de la rate</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonise la digestion - Sur le plan énergétique, il est connu comme fontaine de jouvence du plexus solaire et des organes qui lui sont associés</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Insuffisance ou intoxication hépatique, rénale ou pancréatique</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Psoriasis dû à une paresse hépatique</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Néphrite, prostatite, congestion prostatique, hépatite</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ganglions lymphatiques enflammés</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Troubles du métabolisme</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>- Cure de désintoxication (après une chimiothérapie ou une intervention chirurgicale)</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Diarrhées, indigestion, gaz, ballonnements</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Insomnie, stress, dépression</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation </strong> en interne : cure de 40 jours, 1 cuillère à soupe maximum dans 1 litre d'eau.</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>MENTHE POIVREE</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Tonifiant et rafraîchissant</strong>, cet hydrolat nettoie la peau en profondeur, <strong>resserre les pores et ravive les teints ternes et fatigués</strong>. En vaporisation, il <strong>soulage les démangeaisons</strong> cutanées (piqûres d'insectes, varicelle, zona...). Cet hydrolat est aussi utilisé en cas de <strong>transpiration excessive, de bouffées de chaleur et pour stimuler la circulation sanguine</strong></span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent, purifiant et tonique pour toutes les peaux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, les coups de soleil, les démangeaisons et calme les irritations</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calme le feu du rasoir</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin "coup de fouet" astringent pour toutes les peaux, en particulier les peaux fatiguées et mal irriguées (teint terne, grisâtre)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin purifiant pour les peaux à tendance acnéique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin après-rasage</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation anti-odeur et rafraîchissante pour les pieds</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants ou rafraîchissants, ou encore dans les lotions après-rasage</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque "Bonne mine" pour le visage ajouté à de l'argile rose et d'huile végétale de carotte</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur de la circulation lymphatique et veineuse, y compris de la microcirculation cutanée</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant, digestif et antispasmodique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonisant du pancréas, de la rate et du foie</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-douleur</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Céphalées, migraines, maux de tête</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Eczéma, urticaire, démangeaisons cutanées, piqûres d'insecte, varicelle,...</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Transpiration excessive, bouffées de chaleur (notamment dues à la ménopause)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Douleurs nerveuses, zona, Nausées</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Agacement, irritabilité, colère, hyperémotivité</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pour lutter contre les bouffées de chaleur dues à la ménopause : en cure par voie interne en synergie avec l'hydrolat de sauge officinale (1 cuillère à soupe de chaque dans un litre d'eau à boire dans la journée)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pour les troubles circulatoires, acidité gastrique et troubles hépatiques, ajouter de l'hydrolat de rose et de menthe poivrée à l'eau bu pendant la journée.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Varicelle, démangeaisons, prurit, urticaire : vaporisation directe</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>MYRTE ROUGE</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Purifiante et respiratoire</strong>, elle est connue pour ses vertus en cas de problèmes respiratoires (<strong>bronchite, toux, asthme, rhinite allergique,...</strong>). Cet hydrolat est connu pour <strong>augmenter la capacité respiratoire</strong> et s'utilise dans les <strong>cures de sevrage tabagique</strong> En cosmétique, il est particulièrement connu pour <strong>apaiser les yeux irrités</strong>, et pour<strong> purifier les peaux sujettes à acné ou mycoses.</strong> combiné avec celui de Pin.</span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique cutané</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fongicide</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Acné</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Yeux irrités</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Mycoses cutanées</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En compresse sur les yeux irrités en association avec l'hydrolat de Bleuet</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, mycose cutanée,....)</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Mucolytique, expectorant : fluidifie le mucus des bronches et favorise l'expectoration</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Purificateur pulmonaire, renforce la capacité respiratoire, atténue l'envie de fumer (en synergie avec l'hydrolat de Pin)</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antihistaminique en cas d'allergies respiratoires (soulage l'asthme et le rhume des foins)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Immunostimulant : stimule le système immunitaire, Purificateur intestinal, Fongicide, Stimule la circulation veineuse</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Toux, toux du fumeur, sevrage tabagique</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Bronchite, sinusite, Asthme, rhume des foins, Infections oculaires, conjonctivite</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Mycose, candidose</strong>, Jambes lourdes, varices, Agitation, nervosité, Fatigue mentale et physique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Déséquilibre émotionnel (en synergie avec les hydrolats de Verveine et fleurs d'oranger), dépendance</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation </strong>en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>PIN DOUGLAS</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Respiratoire, antiseptique et tonique</strong>, cet hydrolat s'utilise en vaporisation pour <strong>assainir l'air ambiant</strong> - à celui de myrte rouge pour soulager <strong>bronchites et toux</strong>, et pour accompagner un <strong>sevrage tabagique</strong> - à celui de genévrier pour<strong> lutter contre la cellulite</strong> mais aussi en additif aux produits ménager pour le sol ou les salles de bain. C'est aussi un hydrolat à associer :</span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Possède une fragrance fraîche et aromatique très agréable, rappelant le sapin de Noël ou le bonbon à la sève de pin.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Très rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Décongestionnant lymphatique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Infections cutanées, acné</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de parfums, eaux fraîches, toniques</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Cellulite, stase lymphatique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (cellulite, infections cutanée</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Antiseptique des voies respiratoires</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Respiratoire, fluidifie le mucus des bronches et favorise l'expectoration</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Assainissant ambiant</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Rafraîchissant - Dynamisant, tonique</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Bronchite, toux, sinusite</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Sevrage tabagique (en combinaison avec l'hydrolat de Myrte)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Désodorisation et assainissement de locaux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fatigues mentale et physique, hypotension</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Susceptibilité</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROMARIN A VERBENONE</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Hydrolat par excellence pour les <strong>peaux grasses ou acnéiques</strong>, il nettoie et purifie la peau en douceur et <strong>prévient l'apparition des imperfections</strong>. Il est aussi utilisé en <strong>soin des cheveux</strong> pour prévenir chute et pellicules. C'est aussi un hydrolat connu comme <strong>tonique du système nerveux et du foie</strong>.</span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique, astringent et purifiant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Prévient la chute des cheveux et les pellicules</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régule les sécrétions de sébum</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et purifiant idéal pour les peaux mixtes et chargées, ainsi que pour les peaux à tendance acnéique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits toniques pour peaux mixtes ou à problèmes</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Soin tonique : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile jaune ou verte</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur du métabolisme, énergisant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Stimule le système cardio-vasculaire</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Stimulant hépato-biliaire et des fonctions rénales</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Expectorant et mucolytique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Détoxifiant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Manque d'énergie, hypotension, difficulté à mémoriser, manque de concentration</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Trouble hépato-biliaire, congestion du foie</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Prise de poids et rétention d'eau avant les menstruations, Faiblesse rénale, prostatite</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Attitude pessimiste, méfiante, critique, manque de flexibilité mentale</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Régénération du foie : par voie interne, en cure, notamment au printemps</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Prise de poids avant la menstruation : par voie interne, 10 jours avant et pendant la période des règles</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROSE DE DAMAS</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Astringent et tenseur</strong>, cet hydrolat est incontournable pour <strong>prévenir et lutter contre le vieillissement cutané</strong>. Il <strong>purifie, rafraîchit et adoucit</strong> la peau. Il est aussi connu pour <strong>calmer les irritations et les rougeurs. </strong>Tout comme l'huile essentielle, il procure une <strong>sensation de bien-être et d'harmonie</strong>.</span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent et tonifiant pour peaux normales et sèches</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-ride, régénérant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs et calme les réactions allergiques</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et anti-âge pour peaux normales et sèches</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits anti-âge et hydratants</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anxiolytique, euphorisant, harmonisant, apaisant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Neurotonique - Antispasmodique et antiseptique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Équilibrant hormonal</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Dépression, chagrin, tourments</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, irritation, agressivité</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Perfectionnisme abusif et contestation chronique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Chakra du coeur bloqué</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta (colère, chaleur,...)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- A vaporiser sur soi en évitant les yeux</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROSE DE MAI </strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Son odeur beaucoup plus <strong>sucrée et douce</strong> que la Rose de damas est un <strong>délice</strong>. <strong>Astringent et tenseur</strong>, cet hydrolat est incontournable pour <strong>prévenir et lutter contre le vieillissement cutané</strong>. Il <strong>purifie, rafraîchit et adoucit</strong> la peau. Il est aussi connu pour <strong>calmer les irritations et les rougeurs.</strong></span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent et tonifiant pour peaux normales et sèches</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiride, régénérant, Rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, la couperose et calme les réactions allergiques</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et anti-âge pour peaux normales et sèches</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits anti-âge et hydratants</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anxiolytique, euphorisant, harmonisant, apaisant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Neurotonique (tonique du système nerveux) - Antispasmodique et antiseptique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Équilibrant hormonal</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Dépression, chagrin, tourments</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, irritation, agressivité</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Perfectionnisme abusif et contestation chronique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Chakra du cœur bloqué</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta (colère, chaleur,...)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- A vaporiser sur soi en évitant les yeux</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SANTAL</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Son<strong> odeur boisée suave et envoûtante </strong>accompagne agréablement les notes<strong> fruitées et florales. </strong>C'est un <strong>apaisant et adoucissant cutané</strong> ; ce qui en fait un après-rasage de choix. <strong> </strong>Il est aussi connu pour ses vertus <strong>toniques et aphrodisiaques. </strong>Il s'utilise également pour soulager les <strong>congestions du petit bassin.</strong></span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Exceptionnel soin de la peau, très doux (pH neutre)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant cutané</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fragrance délicate de fond, très adaptée aux soins pour les hommes, mais aussi pour les femmes en mariage avec des notes fleuries comme le néroli ou le jasmin</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Peau irritée, sèche et sensible, couperose</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Démangeaisons cutanées, eczéma, psoriasis</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Soins pour hommes : baumes, lotions après-rasage, crèmes, gels</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour son activité dans un soin spécifique ou pour sa fragrance</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Active les organes génitaux et la fonction hormonale, activateur sexuel </strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Décongestionne le petit bassin</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Digestif et diurétique</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire<strong> </strong>- Tonique cardio-vasculaire</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>- Fatigue sexuelle</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Cellulite, congestion lymphatique et veineuse, hémorroïdes, varices</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Infections des voies uro-génitales, cystite, prostatite</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Douleurs dorsales (lombaires), sciatique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fatigue chronique, Arthrite</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SAUGE OFFICINALE</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Un hydrolat connu pour ses vertus <strong>régénérantes et anti-âge</strong> pour toutes les peaux. Il est particulièrement préconisé pour lutter contre les<strong> problèmes de peau liés aux changements hormonaux</strong><strong>réguler la transpiration et embellir les cheveux</strong>. Il s'utilise également comme <strong>coupe-faim.</strong> (cycle féminin et ménopause). C'est aussi un hydrolat connu pour<span style="color: #003366;"> <span style="color: #000000;"><strong>réguler la transpiration et embellir les cheveux</strong>. Il s'utilise également comme <strong>coupe-faim.</strong></span></span></span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régénérante et anti-âge pour tous les types de peau, anti-oxydant, combat les radicaux libres</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiante et équilibrante, aide à réguler les sécrétions de sébum</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régule la transpiration</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Embellisseur capillaire</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique régénérant et anti-âge pour toutes les peaux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des peaux grasses ou mixtes, pores dilatés</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - en lotion capillaire pour renforcer et embellir le cheveu</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - en lotion en cas de transpiration excessive</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes anti-rides</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans les déodorants naturels en synergie avec l'hydrolat d'hamamélis</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique régénérant cutané : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque anti-âge pour le visage ajouté à de l'argile blanche ou rose et à de l'huile végétale de rose musquée</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En ajout dans une base lavante neutre pour confectionner un shampooing fortifiant</span></span></td> <td><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonise les fonctions rénales, surrénales et hépatiques</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Mimétique des oestrogènes</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Renforce la flore intestinale et vaginale</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Mucolytique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Coupe-faim</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régénérateur et tonique des gencives, aides à cicatriser les aphtes</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Crée l'équilibre entre les systèmes sympathique et parasympathique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Insuffisance biliaire et hépatique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Symptômes pré-menstruels (ventre gonflé, crampes,...) ménopause, pré-ménopause, bouffées de chaleur, troubles circulatoire liés au système hormonal</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Asthme, bronchite, toux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Infections buccales, gingivites, aphtes</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Appétit excessif, boulimie, désir intense de sucreries,...</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en cure par voie interne diluée dans de l'eau</span></span></td> </tr> </tbody> </table> <div class="commentaires"><span style="font-family: arial,helvetica,sans-serif;"> </span></div>Les Hydrolats de I à Spublishopenopenles-hydrolats-de-i-a-s-22012-01-17 17:12:282012-01-17 16:12:280http://www.alicepegie.com/wordpress/wordpress/?p=420post0
4312012-01-17 17:10:532012-01-17 16:10:53<table style="width: 600px; height: 6104px;" border="1" cellspacing="0" cellpadding="0"> <tbody> <tr> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HYDROLAT</strong></span></span></td> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>COSMETIQUE</strong></span></span></td> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SANTE ET BIEN ETRE</strong></span></span></td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>JASMIN SAMBAC</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sa <strong>senteur fleurie et délicate est divine</strong> ; ce qui en fait un hydrolat particulièrement apprécié seul ou en mélange comme<strong> tonique</strong> ou comme <strong>actif dans la composition de cosmétiques maison</strong>. Il est aussi d'un <strong>emploi très original en cuisine</strong>, notamment pour <strong>aromatiser des cocktails</strong>, pour apporter une note fleurie à un <strong>dessert</strong> ou en <strong>sorbet fleuri </strong>pour accompagner un plat ou un dessert...</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Fragrance délicieusement fleurie, sucrée et subtile de jasmin</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Exceptionnel pour donner une note fleurie aux produits cosmétiques</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Revitalisant cutané doux</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Convient à toutes les peaux, même sensibles</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de lotions, sprays rafraîchissants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soins nettoyants, masques visage, démaquillants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Préparation de parfums fleuris, eaux de toilette, eaux de Cologne, eaux fraîches, brumes, après-rasage...</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un rendu original de type fruits rouges, frais et très aromatique.</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sa senteur et son arôme puissants et fleuris de Jasmin sambac :</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- permettent de préparer de délicieux desserts</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- accompagnent délicatement les salades de fruits et les boissons apéritives</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- se déclinent en sorbet floral</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>LAVANDE SAUVAGE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Rafraîchissant, apaisant et adoucissant</strong>, cet hydrolat est recommandé pour les <strong>peaux fragiles des enfants</strong><strong>coups de soleil, irritations, brûlures, piqûres d'insectes</strong>. Il est souvent indiqué pour traiter les <strong>zones acnéiques ou grasses</strong>, pour favoriser la cicatrisation, pour désinfecter les boutons, et accélérer le renouvellement des cellules cutanées et en soin sur les </span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent, purifiant et tonifiant pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Cicatrisant, Antiride, régénérant, Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, les coups de soleil, les démangeaisons et calme les irritations</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et astringent pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin purifiant et cicatrisant pour les peaux à tendance acnéique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation anti-odeur et rafraîchissante pour les pieds</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Éloigne les poux (et les puces)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calmant, anti-douleur</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Nervosité, agitation, hypertension, céphalées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, agressivité, impatience</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Urticaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Aphtes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acidité gastrique, mauvaise haleine</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta, chakra coronal bloqué</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Prévention contre les poux : à vaporiser sur le cuir chevelu et derrière les oreilles chaque matin</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Puces : à vaporiser sur l'animal et sur sa couche</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Aphtes : en bains de bouche</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>LEDON DU GROENLAND</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">C'est sans doute l'hydrolat le plus puissant sur le plan thérapeutique. Il est très connu pour <strong>ses vertus détoxifiantes et purificatrices de l'organisme</strong>, ainsi que pour régénérer le foie. Il s'emploie donc en cas d'<strong>intoxication alimentaire</strong> ou d'<strong>insuffisance hépatique ou pancréatique</strong>, ou tout simplement en <strong>cure de régénération et de purification du foie et du pancréas.</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Allergie cutanée</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Hypersensibilité cutanée</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, allergie, peau hypersensible....)</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>L'hydrolat le plus puissant sur le plan thérapeutique.</em></strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Détoxifiant de l'organisme</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Purification et régénération du foie, des reins, du pancréas et de la rate</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonise la digestion<br /> - Sur le plan énergétique, il est connu comme fontaine de jouvence du plexus solaire et des organes qui lui sont associés</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Insuffisance ou intoxication hépatique, rénale ou pancréatique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Psoriasis dû à une paresse hépatique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Néphrite, prostatite, congestion prostatique, hépatite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ganglions lymphatiques enflammés</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Troubles du métabolisme</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>- Cure de désintoxication (après une chimiothérapie ou une intervention chirurgicale)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Diarrhées, indigestion, gaz, ballonnements</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Insomnie, stress, dépression</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation </strong> en interne : cure de 40 jours, 1 cuillère à soupe maximum dans 1 litre d'eau.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>MENTHE POIVREE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Tonifiant et rafraîchissant</strong>, cet hydrolat nettoie la peau en profondeur, <strong>resserre les pores et ravive les teints ternes et fatigués</strong>. En vaporisation, il <strong>soulage les démangeaisons</strong> cutanées (piqûres d'insectes, varicelle, zona...). Cet hydrolat est aussi utilisé en cas de <strong>transpiration excessive, de bouffées de chaleur et pour stimuler la circulation sanguine</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent, purifiant et tonique pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, les coups de soleil, les démangeaisons et calme les irritations</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calme le feu du rasoir</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin "coup de fouet" astringent pour toutes les peaux, en particulier les peaux fatiguées et mal irriguées (teint terne, grisâtre)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin purifiant pour les peaux à tendance acnéique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin après-rasage</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation anti-odeur et rafraîchissante pour les pieds</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants ou rafraîchissants, ou encore dans les lotions après-rasage</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque "Bonne mine" pour le visage ajouté à de l'argile rose et d'huile végétale de carotte</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur de la circulation lymphatique et veineuse, y compris de la microcirculation cutanée</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant, digestif et antispasmodique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonisant du pancréas, de la rate et du foie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-douleur</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Céphalées, migraines, maux de tête</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Eczéma, urticaire, démangeaisons cutanées, piqûres d'insecte, varicelle,...</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Transpiration excessive, bouffées de chaleur (notamment dues à la ménopause)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Douleurs nerveuses, zona, Nausées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Agacement, irritabilité, colère, hyperémotivité</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pour lutter contre les bouffées de chaleur dues à la ménopause : en cure par voie interne en synergie avec l'hydrolat de sauge officinale (1 cuillère à soupe de chaque dans un litre d'eau à boire dans la journée)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pour les troubles circulatoires, acidité gastrique et troubles hépatiques, ajouter de l'hydrolat de rose et de menthe poivrée à l'eau bu pendant la journée.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Varicelle, démangeaisons, prurit, urticaire : vaporisation directe</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>MYRTE ROUGE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Purifiante et respiratoire</strong>, elle est connue pour ses vertus en cas de problèmes respiratoires (<strong>bronchite, toux, asthme, rhinite allergique,...</strong>). Cet hydrolat est connu pour <strong>augmenter la capacité respiratoire</strong> et s'utilise dans les <strong>cures de sevrage tabagique</strong><br /> En cosmétique, il est particulièrement connu pour <strong>apaiser les yeux irrités</strong>, et pour<strong> purifier les peaux sujettes à acné ou mycoses.</strong> combiné avec celui de Pin.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fongicide</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Acné</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Yeux irrités</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Mycoses cutanées</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En compresse sur les yeux irrités en association avec l'hydrolat de Bleuet</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, mycose cutanée,....)</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Mucolytique, expectorant : fluidifie le mucus des bronches et favorise l'expectoration</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Purificateur pulmonaire, renforce la capacité respiratoire, atténue l'envie de fumer (en synergie avec l'hydrolat de Pin)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antihistaminique en cas d'allergies respiratoires (soulage l'asthme et le rhume des foins)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Immunostimulant : stimule le système immunitaire, Purificateur intestinal, Fongicide, Stimule la circulation veineuse</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Toux, toux du fumeur, sevrage tabagique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Bronchite, sinusite, Asthme, rhume des foins, Infections oculaires, conjonctivite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Mycose, candidose</strong>, Jambes lourdes, varices, Agitation, nervosité, Fatigue mentale et physique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Déséquilibre émotionnel (en synergie avec les hydrolats de Verveine et fleurs d'oranger), dépendance</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation </strong>en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>PIN DOUGLAS</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Respiratoire, antiseptique et tonique</strong>, cet hydrolat s'utilise en vaporisation pour <strong>assainir l'air ambiant</strong><br /> - à celui de myrte rouge pour soulager <strong>bronchites et toux</strong>, et pour accompagner un <strong>sevrage tabagique</strong><br /> - à celui de genévrier pour<strong> lutter contre la cellulite</strong> mais aussi en additif aux produits ménager pour le sol ou les salles de bain. C'est aussi un hydrolat à associer :</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Possède une fragrance fraîche et aromatique très agréable, rappelant le sapin de Noël ou le bonbon à la sève de pin.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Très rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Décongestionnant lymphatique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Infections cutanées, acné</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de parfums, eaux fraîches, toniques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Cellulite, stase lymphatique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (cellulite, infections cutanée</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Antiseptique des voies respiratoires</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Respiratoire, fluidifie le mucus des bronches et favorise l'expectoration</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Assainissant ambiant</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Rafraîchissant<br /> - Dynamisant, tonique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Bronchite, toux, sinusite</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Sevrage tabagique (en combinaison avec l'hydrolat de Myrte)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Désodorisation et assainissement de locaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fatigues mentale et physique, hypotension</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Susceptibilité</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROMARIN A VERBENONE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Hydrolat par excellence pour les <strong>peaux grasses ou acnéiques</strong>, il nettoie et purifie la peau en douceur et <strong>prévient l'apparition des imperfections</strong>. Il est aussi utilisé en <strong>soin des cheveux</strong> pour prévenir chute et pellicules. C'est aussi un hydrolat connu comme <strong>tonique du système nerveux et du foie</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique, astringent et purifiant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Prévient la chute des cheveux et les pellicules</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régule les sécrétions de sébum</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et purifiant idéal pour les peaux mixtes et chargées, ainsi que pour les peaux à tendance acnéique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits toniques pour peaux mixtes ou à problèmes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Soin tonique : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile jaune ou verte</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur du métabolisme, énergisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Stimule le système cardio-vasculaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Stimulant hépato-biliaire et des fonctions rénales</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Expectorant et mucolytique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Détoxifiant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Manque d'énergie, hypotension, difficulté à mémoriser, manque de concentration</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Trouble hépato-biliaire, congestion du foie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Prise de poids et rétention d'eau avant les menstruations, Faiblesse rénale, prostatite</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Attitude pessimiste, méfiante, critique, manque de flexibilité mentale</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Régénération du foie : par voie interne, en cure, notamment au printemps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Prise de poids avant la menstruation : par voie interne, 10 jours avant et pendant la période des règles</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROSE DE DAMAS</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Astringent et tenseur</strong>, cet hydrolat est incontournable pour <strong>prévenir et lutter contre le vieillissement cutané</strong>.<br /> Il <strong>purifie, rafraîchit et adoucit</strong> la peau. Il est aussi connu pour <strong>calmer les irritations et les rougeurs. </strong>Tout comme l'huile essentielle, il procure une <strong>sensation de bien-être et d'harmonie</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent et tonifiant pour peaux normales et sèches</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-ride, régénérant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs et calme les réactions allergiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et anti-âge pour peaux normales et sèches</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits anti-âge et hydratants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anxiolytique, euphorisant, harmonisant, apaisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Neurotonique<br /> - Antispasmodique et antiseptique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Équilibrant hormonal</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Dépression, chagrin, tourments</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, irritation, agressivité</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Perfectionnisme abusif et contestation chronique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Chakra du coeur bloqué</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta (colère, chaleur,...)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- A vaporiser sur soi en évitant les yeux</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROSE DE MAI </strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Son odeur beaucoup plus <strong>sucrée et douce</strong> que la Rose de damas est un <strong>délice</strong>. <strong>Astringent et tenseur</strong>, cet hydrolat est incontournable pour <strong>prévenir et lutter contre le vieillissement cutané</strong>. Il <strong>purifie, rafraîchit et adoucit</strong> la peau.<br /> Il est aussi connu pour <strong>calmer les irritations et les rougeurs.</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent et tonifiant pour peaux normales et sèches</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiride, régénérant, Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, la couperose et calme les réactions allergiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et anti-âge pour peaux normales et sèches</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits anti-âge et hydratants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anxiolytique, euphorisant, harmonisant, apaisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Neurotonique (tonique du système nerveux)<br /> - Antispasmodique et antiseptique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Équilibrant hormonal</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Dépression, chagrin, tourments</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, irritation, agressivité</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Perfectionnisme abusif et contestation chronique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Chakra du cœur bloqué</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta (colère, chaleur,...)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- A vaporiser sur soi en évitant les yeux</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SANTAL</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Son<strong> odeur boisée suave et envoûtante </strong>accompagne agréablement les notes<strong> fruitées et florales. </strong>C'est un <strong>apaisant et adoucissant cutané</strong> ; ce qui en fait un après-rasage de choix. <strong><br /> </strong>Il est aussi connu pour ses vertus <strong>toniques et aphrodisiaques.<br /> </strong>Il s'utilise également pour soulager les <strong>congestions du petit bassin.</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Exceptionnel soin de la peau, très doux (pH neutre)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fragrance délicate de fond, très adaptée aux soins pour les hommes, mais aussi pour les femmes en mariage avec des notes fleuries comme le néroli ou le jasmin</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Peau irritée, sèche et sensible, couperose</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Démangeaisons cutanées, eczéma, psoriasis</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Soins pour hommes : baumes, lotions après-rasage, crèmes, gels</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour son activité dans un soin spécifique ou pour sa fragrance</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Active les organes génitaux et la fonction hormonale, activateur sexuel </strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Décongestionne le petit bassin</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Digestif et diurétique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire<strong><br /> </strong>- Tonique cardio-vasculaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>- Fatigue sexuelle</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Cellulite, congestion lymphatique et veineuse, hémorroïdes, varices</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Infections des voies uro-génitales, cystite, prostatite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Douleurs dorsales (lombaires), sciatique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fatigue chronique, Arthrite</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SAUGE OFFICINALE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Un hydrolat connu pour ses vertus <strong>régénérantes et anti-âge</strong> pour toutes les peaux. Il est particulièrement préconisé pour lutter contre les<strong> problèmes de peau liés aux changements hormonaux</strong><strong>réguler la transpiration et embellir les cheveux</strong>. Il s'utilise également comme <strong>coupe-faim.</strong> (cycle féminin et ménopause). C'est aussi un hydrolat connu pour<span style="color: #003366;"> <span style="color: #000000;"><strong>réguler la transpiration et embellir les cheveux</strong>.<br /> Il s'utilise également comme <strong>coupe-faim.</strong></span></span></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régénérante et anti-âge pour tous les types de peau, anti-oxydant, combat les radicaux libres</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiante et équilibrante, aide à réguler les sécrétions de sébum</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régule la transpiration</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Embellisseur capillaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique régénérant et anti-âge pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des peaux grasses ou mixtes, pores dilatés</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - en lotion capillaire pour renforcer et embellir le cheveu</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - en lotion en cas de transpiration excessive</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes anti-rides</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans les déodorants naturels en synergie avec l'hydrolat d'hamamélis</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique régénérant cutané : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque anti-âge pour le visage ajouté à de l'argile blanche ou rose et à de l'huile végétale de rose musquée</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En ajout dans une base lavante neutre pour confectionner un shampooing fortifiant</span></span></p> </td> <td> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonise les fonctions rénales, surrénales et hépatiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Mimétique des oestrogènes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Renforce la flore intestinale et vaginale</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Mucolytique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Coupe-faim</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régénérateur et tonique des gencives, aides à cicatriser les aphtes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Crée l'équilibre entre les systèmes sympathique et parasympathique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Insuffisance biliaire et hépatique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Symptômes pré-menstruels (ventre gonflé, crampes,...) ménopause, pré-ménopause, bouffées de chaleur, troubles circulatoire liés au système hormonal</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Asthme, bronchite, toux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Infections buccales, gingivites, aphtes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Appétit excessif, boulimie, désir intense de sucreries,...</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en cure par voie interne diluée dans de l'eau</span></span></p> </td> </tr> </tbody> </table> <div class="commentaires"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></div>Les Hydrolats de I à Sinheritopenopen42-revision2012-01-17 17:10:532012-01-17 16:10:5342http://www.alicepegie.com/wordpress/wordpress/?p=430revision0
4412012-01-17 17:10:572012-01-17 16:10:57<table style="width: 600px; height: 6104px;" border="1" cellspacing="0" cellpadding="0"> <tbody> <tr> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HYDROLAT</strong></span></span></td> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>COSMETIQUE</strong></span></span></td> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SANTE ET BIEN ETRE</strong></span></span></td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>JASMIN SAMBAC</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sa <strong>senteur fleurie et délicate est divine</strong> ; ce qui en fait un hydrolat particulièrement apprécié seul ou en mélange comme<strong> tonique</strong> ou comme <strong>actif dans la composition de cosmétiques maison</strong>. Il est aussi d'un <strong>emploi très original en cuisine</strong>, notamment pour <strong>aromatiser des cocktails</strong>, pour apporter une note fleurie à un <strong>dessert</strong> ou en <strong>sorbet fleuri </strong>pour accompagner un plat ou un dessert...</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Fragrance délicieusement fleurie, sucrée et subtile de jasmin</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Exceptionnel pour donner une note fleurie aux produits cosmétiques</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Revitalisant cutané doux</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Convient à toutes les peaux, même sensibles</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de lotions, sprays rafraîchissants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soins nettoyants, masques visage, démaquillants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Préparation de parfums fleuris, eaux de toilette, eaux de Cologne, eaux fraîches, brumes, après-rasage...</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un rendu original de type fruits rouges, frais et très aromatique.</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sa senteur et son arôme puissants et fleuris de Jasmin sambac :</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- permettent de préparer de délicieux desserts</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- accompagnent délicatement les salades de fruits et les boissons apéritives</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- se déclinent en sorbet floral</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>LAVANDE SAUVAGE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Rafraîchissant, apaisant et adoucissant</strong>, cet hydrolat est recommandé pour les <strong>peaux fragiles des enfants</strong><strong>coups de soleil, irritations, brûlures, piqûres d'insectes</strong>. Il est souvent indiqué pour traiter les <strong>zones acnéiques ou grasses</strong>, pour favoriser la cicatrisation, pour désinfecter les boutons, et accélérer le renouvellement des cellules cutanées et en soin sur les </span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent, purifiant et tonifiant pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Cicatrisant, Antiride, régénérant, Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, les coups de soleil, les démangeaisons et calme les irritations</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et astringent pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin purifiant et cicatrisant pour les peaux à tendance acnéique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation anti-odeur et rafraîchissante pour les pieds</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Éloigne les poux (et les puces)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calmant, anti-douleur</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Nervosité, agitation, hypertension, céphalées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, agressivité, impatience</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Urticaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Aphtes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acidité gastrique, mauvaise haleine</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta, chakra coronal bloqué</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Prévention contre les poux : à vaporiser sur le cuir chevelu et derrière les oreilles chaque matin</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Puces : à vaporiser sur l'animal et sur sa couche</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Aphtes : en bains de bouche</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>LEDON DU GROENLAND</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">C'est sans doute l'hydrolat le plus puissant sur le plan thérapeutique. Il est très connu pour <strong>ses vertus détoxifiantes et purificatrices de l'organisme</strong>, ainsi que pour régénérer le foie. Il s'emploie donc en cas d'<strong>intoxication alimentaire</strong> ou d'<strong>insuffisance hépatique ou pancréatique</strong>, ou tout simplement en <strong>cure de régénération et de purification du foie et du pancréas.</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Allergie cutanée</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Hypersensibilité cutanée</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, allergie, peau hypersensible....)</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>L'hydrolat le plus puissant sur le plan thérapeutique.</em></strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Détoxifiant de l'organisme</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Purification et régénération du foie, des reins, du pancréas et de la rate</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonise la digestion<br /> - Sur le plan énergétique, il est connu comme fontaine de jouvence du plexus solaire et des organes qui lui sont associés</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Insuffisance ou intoxication hépatique, rénale ou pancréatique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Psoriasis dû à une paresse hépatique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Néphrite, prostatite, congestion prostatique, hépatite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ganglions lymphatiques enflammés</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Troubles du métabolisme</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>- Cure de désintoxication (après une chimiothérapie ou une intervention chirurgicale)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Diarrhées, indigestion, gaz, ballonnements</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Insomnie, stress, dépression</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation </strong> en interne : cure de 40 jours, 1 cuillère à soupe maximum dans 1 litre d'eau.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>MENTHE POIVREE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Tonifiant et rafraîchissant</strong>, cet hydrolat nettoie la peau en profondeur, <strong>resserre les pores et ravive les teints ternes et fatigués</strong>. En vaporisation, il <strong>soulage les démangeaisons</strong> cutanées (piqûres d'insectes, varicelle, zona...). Cet hydrolat est aussi utilisé en cas de <strong>transpiration excessive, de bouffées de chaleur et pour stimuler la circulation sanguine</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent, purifiant et tonique pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, les coups de soleil, les démangeaisons et calme les irritations</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calme le feu du rasoir</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin "coup de fouet" astringent pour toutes les peaux, en particulier les peaux fatiguées et mal irriguées (teint terne, grisâtre)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin purifiant pour les peaux à tendance acnéique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin après-rasage</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation anti-odeur et rafraîchissante pour les pieds</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants ou rafraîchissants, ou encore dans les lotions après-rasage</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque "Bonne mine" pour le visage ajouté à de l'argile rose et d'huile végétale de carotte</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur de la circulation lymphatique et veineuse, y compris de la microcirculation cutanée</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant, digestif et antispasmodique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonisant du pancréas, de la rate et du foie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-douleur</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Céphalées, migraines, maux de tête</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Eczéma, urticaire, démangeaisons cutanées, piqûres d'insecte, varicelle,...</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Transpiration excessive, bouffées de chaleur (notamment dues à la ménopause)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Douleurs nerveuses, zona, Nausées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Agacement, irritabilité, colère, hyperémotivité</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pour lutter contre les bouffées de chaleur dues à la ménopause : en cure par voie interne en synergie avec l'hydrolat de sauge officinale (1 cuillère à soupe de chaque dans un litre d'eau à boire dans la journée)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pour les troubles circulatoires, acidité gastrique et troubles hépatiques, ajouter de l'hydrolat de rose et de menthe poivrée à l'eau bu pendant la journée.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Varicelle, démangeaisons, prurit, urticaire : vaporisation directe</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>MYRTE ROUGE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Purifiante et respiratoire</strong>, elle est connue pour ses vertus en cas de problèmes respiratoires (<strong>bronchite, toux, asthme, rhinite allergique,...</strong>). Cet hydrolat est connu pour <strong>augmenter la capacité respiratoire</strong> et s'utilise dans les <strong>cures de sevrage tabagique</strong><br /> En cosmétique, il est particulièrement connu pour <strong>apaiser les yeux irrités</strong>, et pour<strong> purifier les peaux sujettes à acné ou mycoses.</strong> combiné avec celui de Pin.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fongicide</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Acné</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Yeux irrités</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Mycoses cutanées</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En compresse sur les yeux irrités en association avec l'hydrolat de Bleuet</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, mycose cutanée,....)</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Mucolytique, expectorant : fluidifie le mucus des bronches et favorise l'expectoration</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Purificateur pulmonaire, renforce la capacité respiratoire, atténue l'envie de fumer (en synergie avec l'hydrolat de Pin)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antihistaminique en cas d'allergies respiratoires (soulage l'asthme et le rhume des foins)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Immunostimulant : stimule le système immunitaire, Purificateur intestinal, Fongicide, Stimule la circulation veineuse</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Toux, toux du fumeur, sevrage tabagique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Bronchite, sinusite, Asthme, rhume des foins, Infections oculaires, conjonctivite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Mycose, candidose</strong>, Jambes lourdes, varices, Agitation, nervosité, Fatigue mentale et physique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Déséquilibre émotionnel (en synergie avec les hydrolats de Verveine et fleurs d'oranger), dépendance</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation </strong>en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>PIN DOUGLAS</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Respiratoire, antiseptique et tonique</strong>, cet hydrolat s'utilise en vaporisation pour <strong>assainir l'air ambiant</strong><br /> - à celui de myrte rouge pour soulager <strong>bronchites et toux</strong>, et pour accompagner un <strong>sevrage tabagique</strong><br /> - à celui de genévrier pour<strong> lutter contre la cellulite</strong> mais aussi en additif aux produits ménager pour le sol ou les salles de bain. C'est aussi un hydrolat à associer :</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Possède une fragrance fraîche et aromatique très agréable, rappelant le sapin de Noël ou le bonbon à la sève de pin.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Très rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Décongestionnant lymphatique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Infections cutanées, acné</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de parfums, eaux fraîches, toniques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Cellulite, stase lymphatique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (cellulite, infections cutanée</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Antiseptique des voies respiratoires</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Respiratoire, fluidifie le mucus des bronches et favorise l'expectoration</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Assainissant ambiant</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Rafraîchissant<br /> - Dynamisant, tonique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Bronchite, toux, sinusite</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Sevrage tabagique (en combinaison avec l'hydrolat de Myrte)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Désodorisation et assainissement de locaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fatigues mentale et physique, hypotension</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Susceptibilité</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROMARIN A VERBENONE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Hydrolat par excellence pour les <strong>peaux grasses ou acnéiques</strong>, il nettoie et purifie la peau en douceur et <strong>prévient l'apparition des imperfections</strong>. Il est aussi utilisé en <strong>soin des cheveux</strong> pour prévenir chute et pellicules. C'est aussi un hydrolat connu comme <strong>tonique du système nerveux et du foie</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique, astringent et purifiant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Prévient la chute des cheveux et les pellicules</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régule les sécrétions de sébum</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et purifiant idéal pour les peaux mixtes et chargées, ainsi que pour les peaux à tendance acnéique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits toniques pour peaux mixtes ou à problèmes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Soin tonique : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile jaune ou verte</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur du métabolisme, énergisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Stimule le système cardio-vasculaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Stimulant hépato-biliaire et des fonctions rénales</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Expectorant et mucolytique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Détoxifiant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Manque d'énergie, hypotension, difficulté à mémoriser, manque de concentration</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Trouble hépato-biliaire, congestion du foie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Prise de poids et rétention d'eau avant les menstruations, Faiblesse rénale, prostatite</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Attitude pessimiste, méfiante, critique, manque de flexibilité mentale</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Régénération du foie : par voie interne, en cure, notamment au printemps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Prise de poids avant la menstruation : par voie interne, 10 jours avant et pendant la période des règles</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROSE DE DAMAS</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Astringent et tenseur</strong>, cet hydrolat est incontournable pour <strong>prévenir et lutter contre le vieillissement cutané</strong>.<br /> Il <strong>purifie, rafraîchit et adoucit</strong> la peau. Il est aussi connu pour <strong>calmer les irritations et les rougeurs. </strong>Tout comme l'huile essentielle, il procure une <strong>sensation de bien-être et d'harmonie</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent et tonifiant pour peaux normales et sèches</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-ride, régénérant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs et calme les réactions allergiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et anti-âge pour peaux normales et sèches</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits anti-âge et hydratants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anxiolytique, euphorisant, harmonisant, apaisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Neurotonique<br /> - Antispasmodique et antiseptique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Équilibrant hormonal</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Dépression, chagrin, tourments</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, irritation, agressivité</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Perfectionnisme abusif et contestation chronique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Chakra du coeur bloqué</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta (colère, chaleur,...)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- A vaporiser sur soi en évitant les yeux</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROSE DE MAI </strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Son odeur beaucoup plus <strong>sucrée et douce</strong> que la Rose de damas est un <strong>délice</strong>. <strong>Astringent et tenseur</strong>, cet hydrolat est incontournable pour <strong>prévenir et lutter contre le vieillissement cutané</strong>. Il <strong>purifie, rafraîchit et adoucit</strong> la peau.<br /> Il est aussi connu pour <strong>calmer les irritations et les rougeurs.</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent et tonifiant pour peaux normales et sèches</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiride, régénérant, Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, la couperose et calme les réactions allergiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et anti-âge pour peaux normales et sèches</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits anti-âge et hydratants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anxiolytique, euphorisant, harmonisant, apaisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Neurotonique (tonique du système nerveux)<br /> - Antispasmodique et antiseptique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Équilibrant hormonal</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Dépression, chagrin, tourments</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, irritation, agressivité</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Perfectionnisme abusif et contestation chronique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Chakra du cœur bloqué</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta (colère, chaleur,...)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- A vaporiser sur soi en évitant les yeux</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SANTAL</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Son<strong> odeur boisée suave et envoûtante </strong>accompagne agréablement les notes<strong> fruitées et florales. </strong>C'est un <strong>apaisant et adoucissant cutané</strong> ; ce qui en fait un après-rasage de choix. <strong><br /> </strong>Il est aussi connu pour ses vertus <strong>toniques et aphrodisiaques.<br /> </strong>Il s'utilise également pour soulager les <strong>congestions du petit bassin.</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Exceptionnel soin de la peau, très doux (pH neutre)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fragrance délicate de fond, très adaptée aux soins pour les hommes, mais aussi pour les femmes en mariage avec des notes fleuries comme le néroli ou le jasmin</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Peau irritée, sèche et sensible, couperose</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Démangeaisons cutanées, eczéma, psoriasis</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Soins pour hommes : baumes, lotions après-rasage, crèmes, gels</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour son activité dans un soin spécifique ou pour sa fragrance</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Active les organes génitaux et la fonction hormonale, activateur sexuel </strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Décongestionne le petit bassin</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Digestif et diurétique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire<strong><br /> </strong>- Tonique cardio-vasculaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>- Fatigue sexuelle</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Cellulite, congestion lymphatique et veineuse, hémorroïdes, varices</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Infections des voies uro-génitales, cystite, prostatite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Douleurs dorsales (lombaires), sciatique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fatigue chronique, Arthrite</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SAUGE OFFICINALE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Un hydrolat connu pour ses vertus <strong>régénérantes et anti-âge</strong> pour toutes les peaux. Il est particulièrement préconisé pour lutter contre les<strong> problèmes de peau liés aux changements hormonaux</strong><strong>réguler la transpiration et embellir les cheveux</strong>. Il s'utilise également comme <strong>coupe-faim.</strong> (cycle féminin et ménopause). C'est aussi un hydrolat connu pour<span style="color: #003366;"> <span style="color: #000000;"><strong>réguler la transpiration et embellir les cheveux</strong>.<br /> Il s'utilise également comme <strong>coupe-faim.</strong></span></span></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régénérante et anti-âge pour tous les types de peau, anti-oxydant, combat les radicaux libres</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiante et équilibrante, aide à réguler les sécrétions de sébum</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régule la transpiration</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Embellisseur capillaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique régénérant et anti-âge pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des peaux grasses ou mixtes, pores dilatés</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - en lotion capillaire pour renforcer et embellir le cheveu</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - en lotion en cas de transpiration excessive</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes anti-rides</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans les déodorants naturels en synergie avec l'hydrolat d'hamamélis</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique régénérant cutané : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque anti-âge pour le visage ajouté à de l'argile blanche ou rose et à de l'huile végétale de rose musquée</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En ajout dans une base lavante neutre pour confectionner un shampooing fortifiant</span></span></p> </td> <td> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonise les fonctions rénales, surrénales et hépatiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Mimétique des oestrogènes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Renforce la flore intestinale et vaginale</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Mucolytique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Coupe-faim</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régénérateur et tonique des gencives, aides à cicatriser les aphtes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Crée l'équilibre entre les systèmes sympathique et parasympathique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Insuffisance biliaire et hépatique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Symptômes pré-menstruels (ventre gonflé, crampes,...) ménopause, pré-ménopause, bouffées de chaleur, troubles circulatoire liés au système hormonal</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Asthme, bronchite, toux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Infections buccales, gingivites, aphtes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Appétit excessif, boulimie, désir intense de sucreries,...</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en cure par voie interne diluée dans de l'eau</span></span></p> </td> </tr> </tbody> </table> <div class="commentaires"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></div>Les Hydrolats de I à Sinheritopenopen42-revision-22012-01-17 17:10:572012-01-17 16:10:5742http://www.alicepegie.com/wordpress/wordpress/?p=440revision0
4612012-01-17 17:11:152012-01-17 16:11:15<table style="width: 600px; height: 6104px;" border="1" cellspacing="0" cellpadding="0"> <tbody> <tr> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HYDROLAT</strong></span></span></td> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>COSMETIQUE</strong></span></span></td> <td style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SANTE ET BIEN ETRE</strong></span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>JASMIN SAMBAC</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sa <strong>senteur fleurie et délicate est divine</strong> ; ce qui en fait un hydrolat particulièrement apprécié seul ou en mélange comme<strong> tonique</strong> ou comme <strong>actif dans la composition de cosmétiques maison</strong>. Il est aussi d'un <strong>emploi très original en cuisine</strong>, notamment pour <strong>aromatiser des cocktails</strong>, pour apporter une note fleurie à un <strong>dessert</strong> ou en <strong>sorbet fleuri </strong>pour accompagner un plat ou un dessert...</span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Fragrance délicieusement fleurie, sucrée et subtile de jasmin</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Exceptionnel pour donner une note fleurie aux produits cosmétiques</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Revitalisant cutané doux</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Convient à toutes les peaux, même sensibles</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de lotions, sprays rafraîchissants</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soins nettoyants, masques visage, démaquillants</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Préparation de parfums fleuris, eaux de toilette, eaux de Cologne, eaux fraîches, brumes, après-rasage...</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un rendu original de type fruits rouges, frais et très aromatique.</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sa senteur et son arôme puissants et fleuris de Jasmin sambac :</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- permettent de préparer de délicieux desserts</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- accompagnent délicatement les salades de fruits et les boissons apéritives</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- se déclinent en sorbet floral</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>LAVANDE SAUVAGE</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Rafraîchissant, apaisant et adoucissant</strong>, cet hydrolat est recommandé pour les <strong>peaux fragiles des enfants</strong><strong>coups de soleil, irritations, brûlures, piqûres d'insectes</strong>. Il est souvent indiqué pour traiter les <strong>zones acnéiques ou grasses</strong>, pour favoriser la cicatrisation, pour désinfecter les boutons, et accélérer le renouvellement des cellules cutanées et en soin sur les </span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent, purifiant et tonifiant pour toutes les peaux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Cicatrisant, Antiride, régénérant, Rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, les coups de soleil, les démangeaisons et calme les irritations</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et astringent pour toutes les peaux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin purifiant et cicatrisant pour les peaux à tendance acnéique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation anti-odeur et rafraîchissante pour les pieds</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Éloigne les poux (et les puces)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calmant, anti-douleur</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Nervosité, agitation, hypertension, céphalées</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, agressivité, impatience</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Urticaire</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Aphtes</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acidité gastrique, mauvaise haleine</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta, chakra coronal bloqué</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Prévention contre les poux : à vaporiser sur le cuir chevelu et derrière les oreilles chaque matin</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Puces : à vaporiser sur l'animal et sur sa couche</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Aphtes : en bains de bouche</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>LEDON DU GROENLAND</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">C'est sans doute l'hydrolat le plus puissant sur le plan thérapeutique. Il est très connu pour <strong>ses vertus détoxifiantes et purificatrices de l'organisme</strong>, ainsi que pour régénérer le foie. Il s'emploie donc en cas d'<strong>intoxication alimentaire</strong> ou d'<strong>insuffisance hépatique ou pancréatique</strong>, ou tout simplement en <strong>cure de régénération et de purification du foie et du pancréas.</strong></span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant cutané</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Allergie cutanée</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Hypersensibilité cutanée</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, allergie, peau hypersensible....)</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>L'hydrolat le plus puissant sur le plan thérapeutique.</em></strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Détoxifiant de l'organisme</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Purification et régénération du foie, des reins, du pancréas et de la rate</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonise la digestion - Sur le plan énergétique, il est connu comme fontaine de jouvence du plexus solaire et des organes qui lui sont associés</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Insuffisance ou intoxication hépatique, rénale ou pancréatique</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Psoriasis dû à une paresse hépatique</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Néphrite, prostatite, congestion prostatique, hépatite</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ganglions lymphatiques enflammés</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Troubles du métabolisme</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>- Cure de désintoxication (après une chimiothérapie ou une intervention chirurgicale)</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Diarrhées, indigestion, gaz, ballonnements</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Insomnie, stress, dépression</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation </strong> en interne : cure de 40 jours, 1 cuillère à soupe maximum dans 1 litre d'eau.</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>MENTHE POIVREE</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Tonifiant et rafraîchissant</strong>, cet hydrolat nettoie la peau en profondeur, <strong>resserre les pores et ravive les teints ternes et fatigués</strong>. En vaporisation, il <strong>soulage les démangeaisons</strong> cutanées (piqûres d'insectes, varicelle, zona...). Cet hydrolat est aussi utilisé en cas de <strong>transpiration excessive, de bouffées de chaleur et pour stimuler la circulation sanguine</strong></span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent, purifiant et tonique pour toutes les peaux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, les coups de soleil, les démangeaisons et calme les irritations</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calme le feu du rasoir</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin "coup de fouet" astringent pour toutes les peaux, en particulier les peaux fatiguées et mal irriguées (teint terne, grisâtre)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin purifiant pour les peaux à tendance acnéique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin après-rasage</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation anti-odeur et rafraîchissante pour les pieds</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants ou rafraîchissants, ou encore dans les lotions après-rasage</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque "Bonne mine" pour le visage ajouté à de l'argile rose et d'huile végétale de carotte</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur de la circulation lymphatique et veineuse, y compris de la microcirculation cutanée</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant, digestif et antispasmodique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonisant du pancréas, de la rate et du foie</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-douleur</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Céphalées, migraines, maux de tête</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Eczéma, urticaire, démangeaisons cutanées, piqûres d'insecte, varicelle,...</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Transpiration excessive, bouffées de chaleur (notamment dues à la ménopause)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Douleurs nerveuses, zona, Nausées</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Agacement, irritabilité, colère, hyperémotivité</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pour lutter contre les bouffées de chaleur dues à la ménopause : en cure par voie interne en synergie avec l'hydrolat de sauge officinale (1 cuillère à soupe de chaque dans un litre d'eau à boire dans la journée)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pour les troubles circulatoires, acidité gastrique et troubles hépatiques, ajouter de l'hydrolat de rose et de menthe poivrée à l'eau bu pendant la journée.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Varicelle, démangeaisons, prurit, urticaire : vaporisation directe</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>MYRTE ROUGE</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Purifiante et respiratoire</strong>, elle est connue pour ses vertus en cas de problèmes respiratoires (<strong>bronchite, toux, asthme, rhinite allergique,...</strong>). Cet hydrolat est connu pour <strong>augmenter la capacité respiratoire</strong> et s'utilise dans les <strong>cures de sevrage tabagique</strong> En cosmétique, il est particulièrement connu pour <strong>apaiser les yeux irrités</strong>, et pour<strong> purifier les peaux sujettes à acné ou mycoses.</strong> combiné avec celui de Pin.</span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique cutané</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fongicide</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Acné</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Yeux irrités</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Mycoses cutanées</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En compresse sur les yeux irrités en association avec l'hydrolat de Bleuet</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, mycose cutanée,....)</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Mucolytique, expectorant : fluidifie le mucus des bronches et favorise l'expectoration</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Purificateur pulmonaire, renforce la capacité respiratoire, atténue l'envie de fumer (en synergie avec l'hydrolat de Pin)</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antihistaminique en cas d'allergies respiratoires (soulage l'asthme et le rhume des foins)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Immunostimulant : stimule le système immunitaire, Purificateur intestinal, Fongicide, Stimule la circulation veineuse</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Toux, toux du fumeur, sevrage tabagique</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Bronchite, sinusite, Asthme, rhume des foins, Infections oculaires, conjonctivite</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Mycose, candidose</strong>, Jambes lourdes, varices, Agitation, nervosité, Fatigue mentale et physique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Déséquilibre émotionnel (en synergie avec les hydrolats de Verveine et fleurs d'oranger), dépendance</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation </strong>en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>PIN DOUGLAS</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Respiratoire, antiseptique et tonique</strong>, cet hydrolat s'utilise en vaporisation pour <strong>assainir l'air ambiant</strong> - à celui de myrte rouge pour soulager <strong>bronchites et toux</strong>, et pour accompagner un <strong>sevrage tabagique</strong> - à celui de genévrier pour<strong> lutter contre la cellulite</strong> mais aussi en additif aux produits ménager pour le sol ou les salles de bain. C'est aussi un hydrolat à associer :</span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Possède une fragrance fraîche et aromatique très agréable, rappelant le sapin de Noël ou le bonbon à la sève de pin.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Très rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Décongestionnant lymphatique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Infections cutanées, acné</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de parfums, eaux fraîches, toniques</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Cellulite, stase lymphatique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (cellulite, infections cutanée</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Antiseptique des voies respiratoires</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Respiratoire, fluidifie le mucus des bronches et favorise l'expectoration</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Assainissant ambiant</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Rafraîchissant - Dynamisant, tonique</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Bronchite, toux, sinusite</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Sevrage tabagique (en combinaison avec l'hydrolat de Myrte)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Désodorisation et assainissement de locaux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fatigues mentale et physique, hypotension</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Susceptibilité</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROMARIN A VERBENONE</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Hydrolat par excellence pour les <strong>peaux grasses ou acnéiques</strong>, il nettoie et purifie la peau en douceur et <strong>prévient l'apparition des imperfections</strong>. Il est aussi utilisé en <strong>soin des cheveux</strong> pour prévenir chute et pellicules. C'est aussi un hydrolat connu comme <strong>tonique du système nerveux et du foie</strong>.</span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique, astringent et purifiant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Prévient la chute des cheveux et les pellicules</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régule les sécrétions de sébum</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et purifiant idéal pour les peaux mixtes et chargées, ainsi que pour les peaux à tendance acnéique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits toniques pour peaux mixtes ou à problèmes</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Soin tonique : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile jaune ou verte</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur du métabolisme, énergisant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Stimule le système cardio-vasculaire</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Stimulant hépato-biliaire et des fonctions rénales</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Expectorant et mucolytique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Détoxifiant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Manque d'énergie, hypotension, difficulté à mémoriser, manque de concentration</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Trouble hépato-biliaire, congestion du foie</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Prise de poids et rétention d'eau avant les menstruations, Faiblesse rénale, prostatite</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Attitude pessimiste, méfiante, critique, manque de flexibilité mentale</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Régénération du foie : par voie interne, en cure, notamment au printemps</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Prise de poids avant la menstruation : par voie interne, 10 jours avant et pendant la période des règles</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROSE DE DAMAS</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Astringent et tenseur</strong>, cet hydrolat est incontournable pour <strong>prévenir et lutter contre le vieillissement cutané</strong>. Il <strong>purifie, rafraîchit et adoucit</strong> la peau. Il est aussi connu pour <strong>calmer les irritations et les rougeurs. </strong>Tout comme l'huile essentielle, il procure une <strong>sensation de bien-être et d'harmonie</strong>.</span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent et tonifiant pour peaux normales et sèches</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-ride, régénérant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs et calme les réactions allergiques</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et anti-âge pour peaux normales et sèches</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits anti-âge et hydratants</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anxiolytique, euphorisant, harmonisant, apaisant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Neurotonique - Antispasmodique et antiseptique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Équilibrant hormonal</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Dépression, chagrin, tourments</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, irritation, agressivité</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Perfectionnisme abusif et contestation chronique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Chakra du coeur bloqué</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta (colère, chaleur,...)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- A vaporiser sur soi en évitant les yeux</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ROSE DE MAI </strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Son odeur beaucoup plus <strong>sucrée et douce</strong> que la Rose de damas est un <strong>délice</strong>. <strong>Astringent et tenseur</strong>, cet hydrolat est incontournable pour <strong>prévenir et lutter contre le vieillissement cutané</strong>. Il <strong>purifie, rafraîchit et adoucit</strong> la peau. Il est aussi connu pour <strong>calmer les irritations et les rougeurs.</strong></span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent et tonifiant pour peaux normales et sèches</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiride, régénérant, Rafraîchissant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs, la couperose et calme les réactions allergiques</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et anti-âge pour peaux normales et sèches</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits anti-âge et hydratants</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anxiolytique, euphorisant, harmonisant, apaisant</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Neurotonique (tonique du système nerveux) - Antispasmodique et antiseptique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Équilibrant hormonal</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Dépression, chagrin, tourments</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, irritation, agressivité</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Perfectionnisme abusif et contestation chronique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Chakra du cœur bloqué</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Excès de Pitta (colère, chaleur,...)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- A vaporiser sur soi en évitant les yeux</span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SANTAL</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Son<strong> odeur boisée suave et envoûtante </strong>accompagne agréablement les notes<strong> fruitées et florales. </strong>C'est un <strong>apaisant et adoucissant cutané</strong> ; ce qui en fait un après-rasage de choix. <strong> </strong>Il est aussi connu pour ses vertus <strong>toniques et aphrodisiaques. </strong>Il s'utilise également pour soulager les <strong>congestions du petit bassin.</strong></span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Exceptionnel soin de la peau, très doux (pH neutre)</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant cutané</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fragrance délicate de fond, très adaptée aux soins pour les hommes, mais aussi pour les femmes en mariage avec des notes fleuries comme le néroli ou le jasmin</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Peau irritée, sèche et sensible, couperose</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Démangeaisons cutanées, eczéma, psoriasis</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Soins pour hommes : baumes, lotions après-rasage, crèmes, gels</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour son activité dans un soin spécifique ou pour sa fragrance</span></span></td> <td valign="top"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Active les organes génitaux et la fonction hormonale, activateur sexuel </strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Décongestionne le petit bassin</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Digestif et diurétique</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire<strong> </strong>- Tonique cardio-vasculaire</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>- Fatigue sexuelle</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Cellulite, congestion lymphatique et veineuse, hémorroïdes, varices</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Infections des voies uro-génitales, cystite, prostatite</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Douleurs dorsales (lombaires), sciatique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Fatigue chronique, Arthrite</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></td> </tr> <tr> <td valign="top" width="303"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SAUGE OFFICINALE</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Un hydrolat connu pour ses vertus <strong>régénérantes et anti-âge</strong> pour toutes les peaux. Il est particulièrement préconisé pour lutter contre les<strong> problèmes de peau liés aux changements hormonaux</strong><strong>réguler la transpiration et embellir les cheveux</strong>. Il s'utilise également comme <strong>coupe-faim.</strong> (cycle féminin et ménopause). C'est aussi un hydrolat connu pour<span style="color: #003366;"> <span style="color: #000000;"><strong>réguler la transpiration et embellir les cheveux</strong>. Il s'utilise également comme <strong>coupe-faim.</strong></span></span></span></span></td> <td valign="top" width="331"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régénérante et anti-âge pour tous les types de peau, anti-oxydant, combat les radicaux libres</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiante et équilibrante, aide à réguler les sécrétions de sébum</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régule la transpiration</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Embellisseur capillaire</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique régénérant et anti-âge pour toutes les peaux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des peaux grasses ou mixtes, pores dilatés</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - en lotion capillaire pour renforcer et embellir le cheveu</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - en lotion en cas de transpiration excessive</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes anti-rides</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans les déodorants naturels en synergie avec l'hydrolat d'hamamélis</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique régénérant cutané : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque anti-âge pour le visage ajouté à de l'argile blanche ou rose et à de l'huile végétale de rose musquée</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En ajout dans une base lavante neutre pour confectionner un shampooing fortifiant</span></span></td> <td><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Harmonise les fonctions rénales, surrénales et hépatiques</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Mimétique des oestrogènes</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Renforce la flore intestinale et vaginale</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Mucolytique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Coupe-faim</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régénérateur et tonique des gencives, aides à cicatriser les aphtes</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Crée l'équilibre entre les systèmes sympathique et parasympathique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Insuffisance biliaire et hépatique</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Symptômes pré-menstruels (ventre gonflé, crampes,...) ménopause, pré-ménopause, bouffées de chaleur, troubles circulatoire liés au système hormonal</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Asthme, bronchite, toux</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Infections buccales, gingivites, aphtes</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Appétit excessif, boulimie, désir intense de sucreries,...</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en cure par voie interne diluée dans de l'eau</span></span></td> </tr> </tbody> </table> <div class="commentaires"><span style="font-family: arial,helvetica,sans-serif;"> </span></div>Les Hydrolats de I à Sinheritopenopen42-revision-32012-01-17 17:11:152012-01-17 16:11:1542http://www.alicepegie.com/wordpress/wordpress/?p=460revision0
4712010-01-14 16:12:442010-01-14 15:12:44<p style="text-align: justify;"> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'hydrolat est le sous-produit de la distillation par entraînement par la vapeur d'eau d'une plante. C'est la phase aqueuse récoltée à la sortie de l'alambic après décantation. C'est en fait une <strong>eau chargée en molécules actives volatiles de plantes. </strong>Les hydrolats sont utilisés de plusieurs manières :</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- tout d'abord en <strong>cosmétique</strong> : <br /> - comme lotion nettoyante et tonifiante pour le visage, à appliquer le matin avant le soin de jour et/ou le soir après le nettoyage ou démaquillage de la peau.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- comme "eau parfumée" rafraîchissante pour se parfumer le corps</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- comme ingrédients de vos cosmétiques "maison"</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- mais aussi en en "<strong>hydrolathérapie</strong>", la version douce de l'aromathérapie, chaque hydrolat ayant des vertus similaires à l'huile essentielle correspondante mais à l'utilisation beaucoup plus simple, surtout pour les enfants, dû à la plus faible concentration en molécules actives.</span></span></p> <table style="text-align: justify; width: 600px; height: 6553px;" border="1" cellspacing="0" cellpadding="0"> <tbody> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HYDROLAT</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>COSMETIQUE</strong></span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SANTE ET BIEN ETRE</strong></span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>BASILIC à LINALOL</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">D'une <strong>finesse remarquable</strong>, son arôme et sa fragrance sont très fidèles au basilic doux de Provence. Il est <strong>absolument divin en cuisine</strong> pour accompagner salades et tomates, mais également les fruits rouges. Cet hydrolat est connu pour <strong>faciliter la digestion</strong>,<strong> calmer les spasmes et le stress, prévenir le rhume des foins et autres allergies</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Excellente qualité aromatique, Tonique cutané </span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong> Parfumage de crèmes, lotions et autres préparations pour une note aromatique et suave, notamment en mariage avec les notes de fruits rouges et noirs </span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un rendu original, frais et très aromatique.</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés : Digestif</strong>, <strong>Antihistaminique (lutte contre les allergies)</strong>, Neurotonique, Redonne confiance</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> -<strong> Troubles digestifs, aérophagie, coliques, spasmes, nausées (également celles liées à la grossesse)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Troubles hépatobiliaires</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Allergie des voies respiratoires, rhume des foins (en synergie avec l'hydrolat de Camomille allemande)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Agitation, stress, nervosité, dépression<br /> - Susceptibilité, manque de confiance, incapacité à savoir ce que l'on souhaite</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong> en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a name="basilic"></a><strong> </strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>BLEUET</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cet hydrolat est connu comme <strong>véritable panacée pour apaiser et réparer les yeux fatigués ou irrités</strong>, sujets aux allergies ou après un long séjour devant l'ordinateur ou la télévision. Il s'utilise en <strong>compresses sur les yeux</strong>. Il est également connu pour <strong>tonifier le tissu cutané</strong> et s'emploie contre la <strong>couperose</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Apaise les yeux fatigués ou irrités, Calmante et regénérante, Tonifie le tissu cutané dévitalisé ou sec, Rafraîchit et éclaircit le teint, Antiseptique, Astringent et décongestionnant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et astringent pour les peaux couperosées ou irritées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des yeux (fatigués, gonflés, irrités, ...)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants, ou encore dans les lotions démaquillantes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Soin des yeux : en compresses appliquées directement sur les yeux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Calme l'esprit</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong> Irritabilité, agacement, agressivité, Manque de contrôle émotionnel</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation : </strong>Combiné avec l'hydrolat de rose et l'hydrolat de lavande, il apaise les personnes irritées ou agacées.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CAMOMILLE ALLEMANDE (matricaire)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cet hydrolat est connu pour apaiser et calmer les <strong>peaux irritées ou allergiques</strong>. Il s'emploie tout particulièrement en cas d'<strong>allergies cutanées, eczéma, urticaire,... </strong><br /> C'est aussi un hydrolat connu pour <strong>renforcer la blondeur des cheveux</strong>. Il est ainsi utilisé en cas d'<strong>asthme et de rhinite allergique</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant et calmant pour tous les types de peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs et calme les réactions allergiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Favorable aux reflets blonds des cheveux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin calmant et apaisant pour les peaux sensibles, allergiques ou irritées : eczéma, lésions, psoriasis, urticaire... et pour les yeux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin pour la peau des enfants en synergie avec le Calendula</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans les shampooings pour cheveux blonds et châtains</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Soin apaisant et régénérant cutané : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En compresse sur les yeux fermés en cas d'irritations oculaires</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En ajout dans une base lavante neutre pour confectionner un shampooing</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calmant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-allergique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Mucolytique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des coups de soleil, allergies</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Asthme, bronchite asthmatiforme, toux spasmodique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Troubles digestifs</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, agitation mentale, attitude défensive</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Rhume des foins : 3 à 4 semaines avant les symptômes et durant toute la période sensible, boire tous les jours 1 cuillère à soupe d'hydrolat de camomille allemande dans 1 litre d'eau non gazeuse</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Allergie cutanée: vaporiser la zone affectée plusieurs fois par jour</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Allergie au soleil : 1 semaine avant le départ au "soleil" et durant tout le séjour, boire tous les jours 1 cuillère à soupe d'hydrolat de camomille allemande dans 1 litre d'eau non gazeuse et vaporiser le corps tours les soirs avec ce même hydrolat</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CAMOMILLE ROMAINE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cet hydrolat est connu pour <strong>régénérer, apaiser et purifier l'épiderme</strong>. Il s'emploie pour toutes les peaux, spécialement les peaux fragiles ou irritées<strong>.</strong><br /> Il est ainsi utilisé pour soulager <strong>inflammations oculaires, eczéma, psoriasis, douleurs dentaires,... </strong>Il est aussi réputé pour <strong>calmer et apaiser les personnes tendues ou colériques.</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant et régénérant pour tous les types de peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant, tonique et rééquilibrant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs et calme les réactions allergiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et purifiant pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin calmant et apaisant pour les peaux sensibles ou irritées : eczéma, lésions, psoriasis,... et les yeux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des peaux des enfants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants et régénérants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Soin apaisant et régénérant cutané : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En compresse sur les yeux fermés en cas d'irritations oculaires</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antidouleur et anti-inflammatoire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calmant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Digestif</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Poussées dentaires</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Coliques gastriques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Troubles digestifs</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Hystérie, colère, agressivité, manque de paix intérieure</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Plexus solaire bloqué</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Douleurs des bébés liées aux poussées dentaires : vaporiser plusieurs fois par jour l'hydrolat dans la cavité buccale</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Coliques des bébés : ajouter 2 fois par jour dans le biberons 1 cuillère à café d'hydrolat de camomille. Si vous allaitez, vaporisez directement sur les mamelons avant la tétée.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CANNELLE ÉCORCE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peu répandu, cet hydrolat est pourtant fabuleux par sa <strong>senteur et sa saveur chaude, épicée et sucrée</strong>. Il s'emploie ainsi en <strong>cuisine. </strong>Réputé pour <strong>amener joie, plaisir et sensualité</strong>, il est préconisé en cas de <strong>baisse de forme ou de manque d'enthousiasme. </strong>Il est aussi utilisé pour <strong>stimuler la digestion</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique et purifiant cutané en dilution dans d'autres hydrolats</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif et sensuel dans des crèmes et laits pour le corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- A incorporer dans vos confections de crèmes et laits pour le corps gourmands et sensuels pour son odeur chaleureuse, épicée et délicatement sucrée. Cette odeur se marie à merveille avec l'huile essentielle de Clémentine ou encore avec l'oléorésine de Vanille.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Précaution d'emploi :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peut-être irritant. Ne pas appliquer pur sur la peau mais uniquement dilué dans un autre hydrolat ou dans une préparation cosmétique.</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Bactéricide, viricide et antifongique, Tonique et aphrodisiaque, Stimulant digestif, Amène plaisir, joie et courage</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong> Epuisement, laisser-aller, manque d'intérêt sexuel, Gastro-entérite et autres infections intestinales, Manque de vitalité, de joie, Manque de courage, Difficulté à vivre les plaisirs de la vie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation : </strong>Par voie interne, fortement dilué dans le l'eau</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Précaution d'emploi :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peut-être irritant. Ne pas ingérer pur, fortement diluer dans de l'eau.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CASSIS</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Une <strong>fragrance et un goût puissants et délicieux de cassis frais</strong> pour cet hydrolat absolument <strong>fabuleux en cuisine</strong>, en sorbet, en déglaçage de gibiers, en accompagnement de fruits,... <br /> C'est aussi un délice pour composer <strong>brumes pour le corps, brumes d'oreiller, lotions, ou encore pour parfumer laits et crèmes "maison"</strong>...</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Qualité aromatique exceptionnelle : fragrance de cassis, fraîche et aromatique, très fidèle au fruit</strong> et Tonique cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Parfumage délicat et original de crèmes, laits, gels douche, lotions, brumes,...</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de parfums frais, eaux de toilette, eaux de Cologne, lotions après-rasage.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Brume pour le corps rafraîchissante : vaporiser sur l'ensemble du corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Brume d'oreiller fruitée, seul ou en mariage avec d'autres hydrolats</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un rendu original et fruité.</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés:</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Digestif<br /> - Rafraîchissant<br /> Le bourgeon de cassis est également connu pour ses propriétés de :<br /> - Stimulant immunitaire <br /> - Antihistaminique (lutte contre les allergies)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Stimule la digestion après un repas copieux</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CISTE LADANIFERE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Connu pour <strong>lisser et régénérer</strong> la peau, cet hydrolat est particulièrement conseillé aux<strong> peaux matures</strong>. Il est aussi utilisé comme actif <strong>cicatrisant et réparateur</strong><strong>après-rasage</strong> ou pour <strong>peaux irritées</strong>. Cet hydrolat est aussi d'une aide précieuse pour lutter contre l'<strong>acné tardif</strong>. dans les soins </span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Astringent, purifiant cutané, Cicatrisant et réparateur, Anti-âge et lissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - En tonique pour les peaux abîmées ou les peaux matures</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Comme actif dans la composition de baumes après-rasage</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Comme actif dans la composition de soins lissants pour les peaux matures en synergie avec le macérât de Bellis</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : appliquez sur votre visage (en évitant les yeux) et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin sans sécher l'hydrolat</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Bactéricide, Viricide, Permet de lutter contre les hémorragies, Favorise la microcirculation</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Plaie cutané, feu du rasoir</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ménorragie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Maladie de Crohn</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné tardif</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Couperose</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- par voie interne dilué dans un verre d'eau</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en application locale en cas de dermatites</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CYPRES DE PROVENCE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Connu comme <strong>décongestionnant et tonique de la circulation veineuse et lymphatique</strong>, cet hydrolat est remarquable pour <strong>soulager les jambes lourdes et pour lutter contre les varices et œdèmes</strong>, en synergie avec d'autres hydrolats et huiles essentielles. En soin du visage, il est idéal pour lutter contre la <strong>couperose</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant, astringent et tenseur modéré</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Facilite la circulation sanguine</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Eczéma, <strong>couperose</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Cellulite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, eczéma, couperose)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour le corps, seul ou en mélange avec les hydrolats de Cassis et Verveine pour un mélange tonique et drainant, ou incorporé dans un lait ou gel "maison" minceur ou circulatoire</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - <strong>Décongestionnant et régénérant des systèmes veineux et lymphatique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Décongestionnant du bassin</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur rénal et hépatique, diurétique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Equilibrant de la pression sanguine<br /> - Renforce le contrôle émotionnel et la capacité à décider</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>- Cellulite, œdème, rétention d'eau, jambes lourdes, Couperose, Varices, hémorroïdes, phlébite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Congestion hépatique et rénale</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Cystite (en synergie avec l'hydrolat de Santal)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Manque de contrôle émotionnel, manque de capacité à décider</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en vaporisation puis massage sur les membres.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>FLEURS D'ORANGER</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Au parfum floral et gourmand, cet hydrolat <strong>tonifie, rafraîchit, régénère et apaise</strong> la peau ; il est particulièrement adapté aux <strong>peaux sèches. </strong>C'est un superbe ingrédient pour fabriquer vos cosmétiques naturels.<br /> Il est aussi utilisé pour <strong>ses propriétés sur le système nerveux : il calme, rassure, facilite l'endormissement </strong>des adultes comme des enfants.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régénérant pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique et rafraîchissant doux cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et anti-âge pour peaux normales et sèches</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des peaux délicates</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits anti-âge et hydratants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-dépresseur, détend, calme, apaise</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Sédatif favorise le sommeil</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rassure et calme les enfants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Equilibrant du rythme cardiaque</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong> Dépression, choc, deuil, burn-out, Fatigue chronique, insomnie, Stress, trac, incapacité à se laisser aller, Troubles du rythme cardiaque, Manque de joie et de créativité, Excès de Vata</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Insomnie et troubles du sommeil : 1 cuillère à café dans un verre d'eau ou de lait avant le coucher</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Peur de l'accouchement : pour les futures mamans, 1 cuillère à café dans un verre d'eau au besoin dès quelques jours avant l'accouchement</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Dépression, burn-out, fatigue chronique : en cure interne en combinaison avec les hydrolats de Romarin à verbénone et de Verveine citronnée</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>GENEVRIER</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cet hydrolat est connu pour ses vertus de <strong>diurétique</strong><strong>cellulite, rétentions d'eau, jambes lourdes</strong> et en cas de <strong>cure amincissante ou détoxifiante</strong>, mais aussi en cas de <strong>congestion rénale.</strong> En cosmétique, il est connu pour ses effets bénéfiques sur les <strong>peaux grasses et congestionnées.</strong> et pour faciliter l'élimination des rétentions d'eau. Il s'emploie donc surtout pour traiter les problèmes de </span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Lutte contre les rétentions d'eau </strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Acné, stase lymphatique au niveau du visage</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Peaux grasses, excès de sébum</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Cellulite, rétention d'eau</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, cellulite....)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour le corps, seul ou en mélange avec les hydrolats de Cassis et Verveine pour un mélange tonique et drainant, ou incorporé dans un lait ou gel "maison" minceur ou circulatoire</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique général</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Diurétique, stimule la fonction rénale</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Redonne de l'énergie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antirhumatismal, diminue l'acide urique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Cellulite, rétention d'eau, jambes lourdes, cure amincissante</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rhinites, <strong>Congestion hépatique et rénale, cystite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Rhumatisme, arthrite, arthrose, polyarthrite rhumatoïde, goutte </strong><br /> - Sentiment d'impuissance, impression de stagner, manque d'énergie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en vaporisation puis massage sur les membres.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>GERANIUM BOURBON</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sa <strong>senteur florale, fine et sucrée est un régal ... qui éloigne les moustiques</strong> ! <br /> C'est aussi un soin <strong>purifiant, tonique et apaisant idéal pour toutes les peaux</strong>, surtout les peaux abîmées ou tiraillées, et pour <strong>réveiller l'éclat de la peau</strong>.<br /> C'est aussi un hydrolat f<strong>abuleux en cuisine</strong>, en particulier lorsqu'il est associé à des fruits noirs ou rouges. La qualité de cet hydrolat que nous avons déniché sur l'île de la <strong>Réunion</strong> est <strong>exceptionnelle</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés:</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Astringent et antiseptique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Equilibrant cutané pour tous types de peau</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Apaisant cutané, anti-inflammatoire</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Redonne éclat et douceur à la peau</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Hémostatique (favorise la coagulation du sang), régénérant et cicatrisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Très parfumé, frais et fleuri</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - <strong>Soin de toutes les peaux : </strong>grasses, sèches, acnéiques, sensibles, jeunes et matures, teints ternes ou brouillés</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - <strong>Soins apaisants </strong>contre les coups de soleil, éruptions et irritations cutanées, urticaires, eczémas, morsures d'insectes, feu du rasoir</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de lotions, sprays rafraîchissants, masques visage, soins nettoyants et démaquillants, crèmes apaisantes et réparatrices visage et corps.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (irritations, eczéma,...)</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Chasse les moustiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Bouffées de chaleur (particulièrement en mélange avec l'hydrolat de Menthe poivrée)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Coups de soleil</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Spray anti-moustique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HAMAMÉLIS</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'eau florale d'hamamélis, favorisant la microcirculation, est recommandée pour les <strong>peaux sensibles sujettes aux rougeurs</strong>. Elle apaise en douceur les <strong>peaux délicates et irritées</strong>.<br /><strong>Astringente, tonique et purifiante</strong>, elle est particulièrement appréciée des <strong>peaux mixtes ou grasses.</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent, purifiant et tonique cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant et anti-douleur</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Active la microcirculation et raffermissante</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Éclaircit le teint et resserre les pores</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Déodorant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et astringent pour toutes les peaux, plus particulièrement pour les peaux à tendance grasse</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des peaux sensibles et délicates</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin apaisant en cas de bleus et piqûres d'insecte</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits, ou encore dans les lotions démaquillantes pour peaux sensibles</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif de déodorants naturels en synergie avec la poudre d'alun et la poudre d'iris</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile jaune (peaux mixtes) ou rose (peaux fragiles)</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique veineux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Jambes lourdes, oedèmes,...</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Combiné avec l'hydrolat d'hélichryse italienne pour activer la circulation sanguine</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HELICHRYSE ITALIENNE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Connu pour ses propriétés circulatoires et cicatrisantes, cet hydrolat s'utilise sur les <strong>peaux couperosées, congestionnées ou irritées : eczéma, coup de soleil, acné, cicatrices, psoriasis,... </strong>Son usage est aussi réputé en cas de <strong>troubles du foie, de la vésicule biliaire ou du pancréas</strong>, mais aussi dans le cas de troubles circulatoires, de phlébites ou d'hématomes internes.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent et tonifiant pour toutes les peaux, particulièrement adapté aux peaux irritées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Active la circulation cutanée, anti-couperose</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant et cicatrisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et astringent pour les peaux couperosées ou irritées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin apaisant en cas d'allergies cutanées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin apaisant et cicatrisant pour les peaux irritées (acné avec cicatrices, après-rasage, eczéma, psoriasis...)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants, ou encore dans les lotions après-rasage</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-hématome</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purificateur sanguin</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur du pancréas et de la vésicule biliaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur lymphatique et circulatoire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Hématomes (internes ou externes), bleus, coups</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Jambes lourdes, cellulite, refroidissement aux extrémités, troubles circulatoires...</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Troubles du foie, du pancréas et de la vésicule biliaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - "Bleus" de l'âme : chocs, souffrance, manque de tendresse</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Hématomes : par voie interne</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Troubles du foie, du pancréas et de la vésicule biliaire : par voie interne</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Troubles de la circulation, cellulite : en massage local appliqué pur ou en ingrédient actif dans un lait</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> </td> <td valign="top" width="331"> </td> <td valign="top"> </td> </tr> </tbody> </table>Les Hydrolats de A à Hpublishopenopenles-hydrolats-de-a-a-h2012-01-17 17:13:352012-01-17 16:13:350http://www.alicepegie.com/wordpress/wordpress/?p=470post0
4812012-01-17 17:12:562012-01-17 16:12:56Les Hydrolats de A à Hinheritopenopen47-revision2012-01-17 17:12:562012-01-17 16:12:5647http://www.alicepegie.com/wordpress/wordpress/?p=480revision0
4912012-01-17 17:13:252012-01-17 16:13:25<p style="text-align: justify;"> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'hydrolat est le sous-produit de la distillation par entraînement par la vapeur d'eau d'une plante. C'est la phase aqueuse récoltée à la sortie de l'alambic après décantation. C'est en fait une <strong>eau chargée en molécules actives volatiles de plantes. </strong>Les hydrolats sont utilisés de plusieurs manières :</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- tout d'abord en <strong>cosmétique</strong> : <br /> - comme lotion nettoyante et tonifiante pour le visage, à appliquer le matin avant le soin de jour et/ou le soir après le nettoyage ou démaquillage de la peau.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- comme "eau parfumée" rafraîchissante pour se parfumer le corps</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- comme ingrédients de vos cosmétiques "maison"</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- mais aussi en en "<strong>hydrolathérapie</strong>", la version douce de l'aromathérapie, chaque hydrolat ayant des vertus similaires à l'huile essentielle correspondante mais à l'utilisation beaucoup plus simple, surtout pour les enfants, dû à la plus faible concentration en molécules actives.</span></span></p> <table style="text-align: justify; width: 600px; height: 6553px;" border="1" cellspacing="0" cellpadding="0"> <tbody> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HYDROLAT</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>COSMETIQUE</strong></span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>SANTE ET BIEN ETRE</strong></span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>BASILIC à LINALOL</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">D'une <strong>finesse remarquable</strong>, son arôme et sa fragrance sont très fidèles au basilic doux de Provence. Il est <strong>absolument divin en cuisine</strong> pour accompagner salades et tomates, mais également les fruits rouges. Cet hydrolat est connu pour <strong>faciliter la digestion</strong>,<strong> calmer les spasmes et le stress, prévenir le rhume des foins et autres allergies</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Excellente qualité aromatique, Tonique cutané </span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong> Parfumage de crèmes, lotions et autres préparations pour une note aromatique et suave, notamment en mariage avec les notes de fruits rouges et noirs </span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un rendu original, frais et très aromatique.</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés : Digestif</strong>, <strong>Antihistaminique (lutte contre les allergies)</strong>, Neurotonique, Redonne confiance</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> -<strong> Troubles digestifs, aérophagie, coliques, spasmes, nausées (également celles liées à la grossesse)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Troubles hépatobiliaires</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Allergie des voies respiratoires, rhume des foins (en synergie avec l'hydrolat de Camomille allemande)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Agitation, stress, nervosité, dépression<br /> - Susceptibilité, manque de confiance, incapacité à savoir ce que l'on souhaite</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong> en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a name="basilic"></a><strong> </strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>BLEUET</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cet hydrolat est connu comme <strong>véritable panacée pour apaiser et réparer les yeux fatigués ou irrités</strong>, sujets aux allergies ou après un long séjour devant l'ordinateur ou la télévision. Il s'utilise en <strong>compresses sur les yeux</strong>. Il est également connu pour <strong>tonifier le tissu cutané</strong> et s'emploie contre la <strong>couperose</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Apaise les yeux fatigués ou irrités, Calmante et regénérante, Tonifie le tissu cutané dévitalisé ou sec, Rafraîchit et éclaircit le teint, Antiseptique, Astringent et décongestionnant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et astringent pour les peaux couperosées ou irritées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des yeux (fatigués, gonflés, irrités, ...)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants, ou encore dans les lotions démaquillantes</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Soin des yeux : en compresses appliquées directement sur les yeux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Calme l'esprit</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong> Irritabilité, agacement, agressivité, Manque de contrôle émotionnel</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation : </strong>Combiné avec l'hydrolat de rose et l'hydrolat de lavande, il apaise les personnes irritées ou agacées.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CAMOMILLE ALLEMANDE (matricaire)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cet hydrolat est connu pour apaiser et calmer les <strong>peaux irritées ou allergiques</strong>. Il s'emploie tout particulièrement en cas d'<strong>allergies cutanées, eczéma, urticaire,... </strong><br /> C'est aussi un hydrolat connu pour <strong>renforcer la blondeur des cheveux</strong>. Il est ainsi utilisé en cas d'<strong>asthme et de rhinite allergique</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant et calmant pour tous les types de peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs et calme les réactions allergiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Favorable aux reflets blonds des cheveux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin calmant et apaisant pour les peaux sensibles, allergiques ou irritées : eczéma, lésions, psoriasis, urticaire... et pour les yeux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin pour la peau des enfants en synergie avec le Calendula</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans les shampooings pour cheveux blonds et châtains</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Soin apaisant et régénérant cutané : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En compresse sur les yeux fermés en cas d'irritations oculaires</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En ajout dans une base lavante neutre pour confectionner un shampooing</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calmant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-allergique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Mucolytique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des coups de soleil, allergies</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Asthme, bronchite asthmatiforme, toux spasmodique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Troubles digestifs</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Colère, agitation mentale, attitude défensive</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Rhume des foins : 3 à 4 semaines avant les symptômes et durant toute la période sensible, boire tous les jours 1 cuillère à soupe d'hydrolat de camomille allemande dans 1 litre d'eau non gazeuse</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Allergie cutanée: vaporiser la zone affectée plusieurs fois par jour</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Allergie au soleil : 1 semaine avant le départ au "soleil" et durant tout le séjour, boire tous les jours 1 cuillère à soupe d'hydrolat de camomille allemande dans 1 litre d'eau non gazeuse et vaporiser le corps tours les soirs avec ce même hydrolat</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CAMOMILLE ROMAINE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cet hydrolat est connu pour <strong>régénérer, apaiser et purifier l'épiderme</strong>. Il s'emploie pour toutes les peaux, spécialement les peaux fragiles ou irritées<strong>.</strong><br /> Il est ainsi utilisé pour soulager <strong>inflammations oculaires, eczéma, psoriasis, douleurs dentaires,... </strong>Il est aussi réputé pour <strong>calmer et apaiser les personnes tendues ou colériques.</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant et régénérant pour tous les types de peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant, tonique et rééquilibrant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaise les rougeurs et calme les réactions allergiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et purifiant pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin calmant et apaisant pour les peaux sensibles ou irritées : eczéma, lésions, psoriasis,... et les yeux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des peaux des enfants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants et régénérants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Soin apaisant et régénérant cutané : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En compresse sur les yeux fermés en cas d'irritations oculaires</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antidouleur et anti-inflammatoire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Calmant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Digestif</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Poussées dentaires</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Coliques gastriques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Troubles digestifs</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Hystérie, colère, agressivité, manque de paix intérieure</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Plexus solaire bloqué</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Douleurs des bébés liées aux poussées dentaires : vaporiser plusieurs fois par jour l'hydrolat dans la cavité buccale</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Coliques des bébés : ajouter 2 fois par jour dans le biberons 1 cuillère à café d'hydrolat de camomille. Si vous allaitez, vaporisez directement sur les mamelons avant la tétée.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CANNELLE ÉCORCE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peu répandu, cet hydrolat est pourtant fabuleux par sa <strong>senteur et sa saveur chaude, épicée et sucrée</strong>. Il s'emploie ainsi en <strong>cuisine. </strong>Réputé pour <strong>amener joie, plaisir et sensualité</strong>, il est préconisé en cas de <strong>baisse de forme ou de manque d'enthousiasme. </strong>Il est aussi utilisé pour <strong>stimuler la digestion</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique et purifiant cutané en dilution dans d'autres hydrolats</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif et sensuel dans des crèmes et laits pour le corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- A incorporer dans vos confections de crèmes et laits pour le corps gourmands et sensuels pour son odeur chaleureuse, épicée et délicatement sucrée. Cette odeur se marie à merveille avec l'huile essentielle de Clémentine ou encore avec l'oléorésine de Vanille.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Précaution d'emploi :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peut-être irritant. Ne pas appliquer pur sur la peau mais uniquement dilué dans un autre hydrolat ou dans une préparation cosmétique.</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Bactéricide, viricide et antifongique, Tonique et aphrodisiaque, Stimulant digestif, Amène plaisir, joie et courage</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong> Epuisement, laisser-aller, manque d'intérêt sexuel, Gastro-entérite et autres infections intestinales, Manque de vitalité, de joie, Manque de courage, Difficulté à vivre les plaisirs de la vie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation : </strong>Par voie interne, fortement dilué dans le l'eau</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Précaution d'emploi :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peut-être irritant. Ne pas ingérer pur, fortement diluer dans de l'eau.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CASSIS</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Une <strong>fragrance et un goût puissants et délicieux de cassis frais</strong> pour cet hydrolat absolument <strong>fabuleux en cuisine</strong>, en sorbet, en déglaçage de gibiers, en accompagnement de fruits,... <br /> C'est aussi un délice pour composer <strong>brumes pour le corps, brumes d'oreiller, lotions, ou encore pour parfumer laits et crèmes "maison"</strong>...</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Qualité aromatique exceptionnelle : fragrance de cassis, fraîche et aromatique, très fidèle au fruit</strong> et Tonique cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Parfumage délicat et original de crèmes, laits, gels douche, lotions, brumes,...</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de parfums frais, eaux de toilette, eaux de Cologne, lotions après-rasage.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Brume pour le corps rafraîchissante : vaporiser sur l'ensemble du corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Brume d'oreiller fruitée, seul ou en mariage avec d'autres hydrolats</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un rendu original et fruité.</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés:</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Digestif<br /> - Rafraîchissant<br /> Le bourgeon de cassis est également connu pour ses propriétés de :<br /> - Stimulant immunitaire <br /> - Antihistaminique (lutte contre les allergies)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Stimule la digestion après un repas copieux</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CISTE LADANIFERE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Connu pour <strong>lisser et régénérer</strong> la peau, cet hydrolat est particulièrement conseillé aux<strong> peaux matures</strong>. Il est aussi utilisé comme actif <strong>cicatrisant et réparateur</strong><strong>après-rasage</strong> ou pour <strong>peaux irritées</strong>. Cet hydrolat est aussi d'une aide précieuse pour lutter contre l'<strong>acné tardif</strong>. dans les soins </span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Astringent, purifiant cutané, Cicatrisant et réparateur, Anti-âge et lissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - En tonique pour les peaux abîmées ou les peaux matures</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Comme actif dans la composition de baumes après-rasage</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Comme actif dans la composition de soins lissants pour les peaux matures en synergie avec le macérât de Bellis</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : appliquez sur votre visage (en évitant les yeux) et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin sans sécher l'hydrolat</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong> Bactéricide, Viricide, Permet de lutter contre les hémorragies, Favorise la microcirculation</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Plaie cutané, feu du rasoir</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ménorragie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Maladie de Crohn</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné tardif</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Couperose</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- par voie interne dilué dans un verre d'eau</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en application locale en cas de dermatites</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CYPRES DE PROVENCE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Connu comme <strong>décongestionnant et tonique de la circulation veineuse et lymphatique</strong>, cet hydrolat est remarquable pour <strong>soulager les jambes lourdes et pour lutter contre les varices et œdèmes</strong>, en synergie avec d'autres hydrolats et huiles essentielles. En soin du visage, il est idéal pour lutter contre la <strong>couperose</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant, astringent et tenseur modéré</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Facilite la circulation sanguine</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Acné</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Eczéma, <strong>couperose</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Cellulite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, eczéma, couperose)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour le corps, seul ou en mélange avec les hydrolats de Cassis et Verveine pour un mélange tonique et drainant, ou incorporé dans un lait ou gel "maison" minceur ou circulatoire</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - <strong>Décongestionnant et régénérant des systèmes veineux et lymphatique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Décongestionnant du bassin</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur rénal et hépatique, diurétique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purifiant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Equilibrant de la pression sanguine<br /> - Renforce le contrôle émotionnel et la capacité à décider</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>- Cellulite, œdème, rétention d'eau, jambes lourdes, Couperose, Varices, hémorroïdes, phlébite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Congestion hépatique et rénale</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Cystite (en synergie avec l'hydrolat de Santal)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Manque de contrôle émotionnel, manque de capacité à décider</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en vaporisation puis massage sur les membres.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>FLEURS D'ORANGER</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Au parfum floral et gourmand, cet hydrolat <strong>tonifie, rafraîchit, régénère et apaise</strong> la peau ; il est particulièrement adapté aux <strong>peaux sèches. </strong>C'est un superbe ingrédient pour fabriquer vos cosmétiques naturels.<br /> Il est aussi utilisé pour <strong>ses propriétés sur le système nerveux : il calme, rassure, facilite l'endormissement </strong>des adultes comme des enfants.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Régénérant pour toutes les peaux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique et rafraîchissant doux cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et anti-âge pour peaux normales et sèches</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des peaux délicates</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits anti-âge et hydratants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-dépresseur, détend, calme, apaise</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Sédatif favorise le sommeil</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rassure et calme les enfants</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Equilibrant du rythme cardiaque</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong> Dépression, choc, deuil, burn-out, Fatigue chronique, insomnie, Stress, trac, incapacité à se laisser aller, Troubles du rythme cardiaque, Manque de joie et de créativité, Excès de Vata</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Insomnie et troubles du sommeil : 1 cuillère à café dans un verre d'eau ou de lait avant le coucher</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Peur de l'accouchement : pour les futures mamans, 1 cuillère à café dans un verre d'eau au besoin dès quelques jours avant l'accouchement</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Dépression, burn-out, fatigue chronique : en cure interne en combinaison avec les hydrolats de Romarin à verbénone et de Verveine citronnée</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>GENEVRIER</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cet hydrolat est connu pour ses vertus de <strong>diurétique</strong><strong>cellulite, rétentions d'eau, jambes lourdes</strong> et en cas de <strong>cure amincissante ou détoxifiante</strong>, mais aussi en cas de <strong>congestion rénale.</strong> En cosmétique, il est connu pour ses effets bénéfiques sur les <strong>peaux grasses et congestionnées.</strong> et pour faciliter l'élimination des rétentions d'eau. Il s'emploie donc surtout pour traiter les problèmes de </span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Lutte contre les rétentions d'eau </strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Acné, stase lymphatique au niveau du visage</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Peaux grasses, excès de sébum</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Cellulite, rétention d'eau</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (acné, cellulite....)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour le corps, seul ou en mélange avec les hydrolats de Cassis et Verveine pour un mélange tonique et drainant, ou incorporé dans un lait ou gel "maison" minceur ou circulatoire</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antiseptique général</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Diurétique, stimule la fonction rénale</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Redonne de l'énergie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Antirhumatismal, diminue l'acide urique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong> - Cellulite, rétention d'eau, jambes lourdes, cure amincissante</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rhinites, <strong>Congestion hépatique et rénale, cystite</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Rhumatisme, arthrite, arthrose, polyarthrite rhumatoïde, goutte </strong><br /> - Sentiment d'impuissance, impression de stagner, manque d'énergie</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en interne : cure de 40 jours, 1 cuillère à soupe dans 1 litre d'eau.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- en vaporisation puis massage sur les membres.</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>GERANIUM BOURBON</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sa <strong>senteur florale, fine et sucrée est un régal ... qui éloigne les moustiques</strong> ! <br /> C'est aussi un soin <strong>purifiant, tonique et apaisant idéal pour toutes les peaux</strong>, surtout les peaux abîmées ou tiraillées, et pour <strong>réveiller l'éclat de la peau</strong>.<br /> C'est aussi un hydrolat f<strong>abuleux en cuisine</strong>, en particulier lorsqu'il est associé à des fruits noirs ou rouges. La qualité de cet hydrolat que nous avons déniché sur l'île de la <strong>Réunion</strong> est <strong>exceptionnelle</strong>.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés:</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Astringent et antiseptique</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Equilibrant cutané pour tous types de peau</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Apaisant cutané, anti-inflammatoire</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> - Redonne éclat et douceur à la peau</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Hémostatique (favorise la coagulation du sang), régénérant et cicatrisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Très parfumé, frais et fleuri</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - <strong>Soin de toutes les peaux : </strong>grasses, sèches, acnéiques, sensibles, jeunes et matures, teints ternes ou brouillés</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - <strong>Soins apaisants </strong>contre les coups de soleil, éruptions et irritations cutanées, urticaires, eczémas, morsures d'insectes, feu du rasoir</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Elaboration de lotions, sprays rafraîchissants, masques visage, soins nettoyants et démaquillants, crèmes apaisantes et réparatrices visage et corps.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Incorporer dans vos formules cosmétiques maison pour un soin spécifique (irritations, eczéma,...)</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Rafraîchissant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Chasse les moustiques</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Bouffées de chaleur (particulièrement en mélange avec l'hydrolat de Menthe poivrée)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Coups de soleil</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Spray anti-moustique</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HAMAMÉLIS</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'eau florale d'hamamélis, favorisant la microcirculation, est recommandée pour les <strong>peaux sensibles sujettes aux rougeurs</strong>. Elle apaise en douceur les <strong>peaux délicates et irritées</strong>.<br /><strong>Astringente, tonique et purifiante</strong>, elle est particulièrement appréciée des <strong>peaux mixtes ou grasses.</strong></span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent, purifiant et tonique cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant et anti-douleur</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Active la microcirculation et raffermissante</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Éclaircit le teint et resserre les pores</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Déodorant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et astringent pour toutes les peaux, plus particulièrement pour les peaux à tendance grasse</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin des peaux sensibles et délicates</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin apaisant en cas de bleus et piqûres d'insecte</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits, ou encore dans les lotions démaquillantes pour peaux sensibles</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif de déodorants naturels en synergie avec la poudre d'alun et la poudre d'iris</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile jaune (peaux mixtes) ou rose (peaux fragiles)</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Tonique veineux</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Jambes lourdes, oedèmes,...</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Combiné avec l'hydrolat d'hélichryse italienne pour activer la circulation sanguine</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HELICHRYSE ITALIENNE</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Connu pour ses propriétés circulatoires et cicatrisantes, cet hydrolat s'utilise sur les <strong>peaux couperosées, congestionnées ou irritées : eczéma, coup de soleil, acné, cicatrices, psoriasis,... </strong>Son usage est aussi réputé en cas de <strong>troubles du foie, de la vésicule biliaire ou du pancréas</strong>, mais aussi dans le cas de troubles circulatoires, de phlébites ou d'hématomes internes.</span></span></p> </td> <td valign="top" width="331"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Astringent et tonifiant pour toutes les peaux, particulièrement adapté aux peaux irritées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Active la circulation cutanée, anti-couperose</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Apaisant et cicatrisant</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-inflammatoire cutané</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin tonique et astringent pour les peaux couperosées ou irritées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin apaisant en cas d'allergies cutanées</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Soin apaisant et cicatrisant pour les peaux irritées (acné avec cicatrices, après-rasage, eczéma, psoriasis...)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Vaporisation après-soleil pour le corps</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Ingrédient actif dans des crèmes et laits apaisants, ou encore dans les lotions après-rasage</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Tonique pour la peau : vaporiser votre visage et votre cou après les avoir nettoyés, puis appliquez votre crème ou huile de soin immédiatement sans sécher l'hydrolat</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- En masque pour le visage ajouté à de l'argile blanche ou rose</span></span></p> </td> <td valign="top"> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Propriétés :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Anti-hématome</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Purificateur sanguin</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur du pancréas et de la vésicule biliaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Activateur lymphatique et circulatoire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Indications :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Hématomes (internes ou externes), bleus, coups</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Jambes lourdes, cellulite, refroidissement aux extrémités, troubles circulatoires...</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - Troubles du foie, du pancréas et de la vésicule biliaire</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> - "Bleus" de l'âme : chocs, souffrance, manque de tendresse</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conseils d'utilisation :</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Hématomes : par voie interne</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Troubles du foie, du pancréas et de la vésicule biliaire : par voie interne</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Troubles de la circulation, cellulite : en massage local appliqué pur ou en ingrédient actif dans un lait</span></span></p> </td> </tr> <tr> <td valign="top" width="303"> </td> <td valign="top" width="331"> </td> <td valign="top"> </td> </tr> </tbody> </table>Les Hydrolats de A à Hinheritopenopen47-revision-22012-01-17 17:13:252012-01-17 16:13:2547http://www.alicepegie.com/wordpress/wordpress/?p=490revision0
5012010-01-14 17:13:462010-01-14 16:13:46Basilic tropical (Messep) <p style="text-align: justify;"><a class="mb" href="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//messep.jpg"><img src="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//messep.jpg" alt="" align="left" border="0" /></a><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Très utilisé dans la cuisine Béti(e) au Cameroun, le « Messep », ocimum gratissimum (basilic sauvage), soigne les bronchites et les douleurs abdominales. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">L’utilisation la plus simple et assurément la moins répandue du « Messep », plante aux multiples vertus, est sa consommation comme tisane au petit déjeuner avec du lait et du sucre. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">« La particularité c’est que dans ce cas précis, elle agit comme un traitement préventif », explique Mme Assoumou Joséphine.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Ainsi, cette plante a plusieurs propriétés et devient à l’occasion un médicament très efficace et très prisé par les traditionalistes dans la quasi-totalité des ethnies du pays ; surtout par les familles économiquement faibles.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Procédé pour réaliser la tisane de Messep :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Mettre un peu d’eau au feu, puis rajouter les feuilles de « Messep » laisser mijoter, jusqu’à ce que l’eau change de couleur, ensuite servir dans un bol. Il ne restera plus qu’à ajouter du lait et du sucre selon la préférence de chacun. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Traitement des maux de ventre ou constipation : </strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">« Tout d’abord, vous récoltez les feuilles de « Messep », ensuite vous les frictionnez puis vous y ajoutez un ou deux petits piments (piment indigène) de préférence, vert, sans les écraser. Le tout est mis dans un peu d’eau et à l’aide d’une poire, le malade se purge, puis dans les deux minutes qui vont suivre, il aura une forte envie de faire ses besoins et c’est le début de la guérison ».</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> « Après cela le problème (constipation ou autres douleurs ne sera plus qu’un souvenir. Mais, tout dépend la gravité», a précisé dame Joséphine.</span></span></p> <p style="text-align: justify;"></p> <hr id="system-readmore" /> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong> Bronchites :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Cette plante soigne également la toux, en dégageant les poumons des corps étrangers qui l’empêchent de fonctionner normalement. Pour un résultat efficace, la feuille de Messep, est mâchée avec un peu de sel pour atténuer son goût aigre.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Le malade avale le jus aspirer après mâchouillement et rejette le reste puis recommence, pendant au moins 5 minutes. Le traitement se fait deux fois par jour, matin et soir pendant deux ou trois jours. Au soir du premier jour, le malade verra sa poitrine se libérer petit à petit, jusqu’à guérison totale. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Aussi, en langue Nzebi, cette plante est appelée « Madoumadoum », en langue Mpongwè, c’est l’« Indoundouwèlè »…</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Sous d’autres cieux, l’ocimum gratissimum (basilic sauvage) sert de base à la fabrication du vin.</span></span></p> <div style="text-align: justify;"> <table border="0" cellspacing="0" cellpadding="0" align="right"> <tbody> <tr> <td style="padding: 0in 2.25pt;" align="left" valign="top"></td> </tr> </tbody> </table> </div> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">DouglasNtoutoume </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a href="http://nianto.ga/details.php?id_detail=363&amp;id_page=6&amp;id_page2=26">Source</a></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" href="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//HE_BASILIC_150.jpg"><img src="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//HE_BASILIC_150.jpg" alt="" align="left" border="0" /></a> Vous trouverez désormais son huile essentielle voir<a href="http://www.aroma-zone.com/aroma/fichebasilic.asp"> ici</a> dont les propriétés sont les suivantes :</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Antispasmodique puissant</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Revigorant et vitalisant</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Tonique du système nerveux</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Tonique digestif</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Anti-inflammatoire</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Anti-douleur</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Antiviral puissant</span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Indications : </strong></span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Nerveux : stress, fatigue, dépression, insomnie, hystérie, épuisement intellectuel, spasmophilie, vertiges, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Digestif : flatulence, indigestion, nausée, gastro-entérites, aérophagie, mal des transports, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Musculaire : spasmes, douleurs, crampes du bas du ventre, spasmes gastro-hépato-entériques, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Respiratoire : asthme, bronchite, toux, catarrhe,…, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Maladies infectieuses tropicales, hépatite virale,… </span></span></p> <p style="text-indent: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Usage externe : </strong> </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Application (diluée à 1% dans de l’huile végétale) sur le plexus solaire (spasmes digestifs) ou le long de la colonne vertébrale (fatigues et dépression), </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Bain, mélangée à d’autres huiles, pour un « coup de fouet ». </span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Précautions : </strong></span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Huile très puissante. </span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Ne pas utiliser pure en application sur la peau, diluer fortement dans une huile végétale. </span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Eviter l'usage pendant la grossesse, pour les enfants en bas âge. </span></span></p> <p class="MsoNormal" style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Eviter l'usage par voie orale</span></span></p> <p class="MsoNormal" style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> </span></span></p> <p class="MsoNormal" style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.aroma-zone.com/aroma/fichebasilic.asp">Source</a></span></p>Le Basilic tropical (Messep)publishopenopenle-basilic-tropical-messep2012-01-17 17:15:392012-01-17 16:15:390http://www.alicepegie.com/wordpress/wordpress/?p=500post0
5112012-01-17 17:14:482012-01-17 16:14:48Basilic tropical (Messep)<p> </p> <p style="text-align: justify;"><a class="mb" href="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//messep.jpg"><img src="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//messep.jpg" border="0" alt="" align="left" /></a><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Très utilisé dans la cuisine Béti(e) au Cameroun, le « Messep », ocimum gratissimum (basilic sauvage), soigne les bronchites et les douleurs abdominales. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">L’utilisation la plus simple et assurément la moins répandue du « Messep », plante aux multiples vertus, est sa consommation comme tisane au petit déjeuner avec du lait et du sucre. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">« La particularité c’est que dans ce cas précis, elle agit comme un traitement préventif », explique Mme Assoumou Joséphine.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Ainsi, cette plante a plusieurs propriétés et devient à l’occasion un médicament très efficace et très prisé par les traditionalistes dans la quasi-totalité des ethnies du pays ; surtout par les familles économiquement faibles.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Procédé pour réaliser la tisane de Messep :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Mettre un peu d’eau au feu, puis rajouter les feuilles de « Messep » laisser mijoter, jusqu’à ce que l’eau change de couleur, ensuite servir dans un bol. Il ne restera plus qu’à ajouter du lait et du sucre selon la préférence de chacun. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Traitement des maux de ventre ou constipation : </strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">« Tout d’abord, vous récoltez les feuilles de « Messep », ensuite vous les frictionnez puis vous y ajoutez un ou deux petits piments (piment indigène) de préférence, vert, sans les écraser. Le tout est mis dans un peu d’eau et à l’aide d’une poire, le malade se purge, puis dans les deux minutes qui vont suivre, il aura une forte envie de faire ses besoins et c’est le début de la guérison ».</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> « Après cela le problème (constipation ou autres douleurs ne sera plus qu’un souvenir. Mais, tout dépend la gravité», a précisé dame Joséphine.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> </span></span></p> <hr id="system-readmore" /> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong> Bronchites :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Cette plante soigne également la toux, en dégageant les poumons des corps étrangers qui l’empêchent de fonctionner normalement. Pour un résultat efficace, la feuille de Messep, est mâchée avec un peu de sel pour atténuer son goût aigre.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Le malade avale le jus aspirer après mâchouillement et rejette le reste puis recommence, pendant au moins 5 minutes. Le traitement se fait deux fois par jour, matin et soir pendant deux ou trois jours. Au soir du premier jour, le malade verra sa poitrine se libérer petit à petit, jusqu’à guérison totale. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Aussi, en langue Nzebi, cette plante est appelée « Madoumadoum », en langue Mpongwè, c’est l’« Indoundouwèlè »…</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Sous d’autres cieux, l’ocimum gratissimum (basilic sauvage) sert de base à la fabrication du vin.</span></span></p> <div style="text-align: justify;"> <table border="0" cellspacing="0" cellpadding="0" align="right"> <tbody> <tr> <td style="padding: 0in 2.25pt;" align="left" valign="top"> </td> </tr> </tbody> </table> </div> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">DouglasNtoutoume </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a href="http://nianto.ga/details.php?id_detail=363&amp;id_page=6&amp;id_page2=26">Source</a></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" href="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//HE_BASILIC_150.jpg"><img src="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//HE_BASILIC_150.jpg" border="0" alt="" align="left" /></a> Vous trouverez désormais son huile essentielle voir<a href="http://www.aroma-zone.com/aroma/fichebasilic.asp"> ici</a> dont les propriétés sont les suivantes :</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Antispasmodique puissant</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Revigorant et vitalisant</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Tonique du système nerveux</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Tonique digestif</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Anti-inflammatoire</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Anti-douleur</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Antiviral puissant</span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Indications : </strong></span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Nerveux : stress, fatigue, dépression, insomnie, hystérie, épuisement intellectuel, spasmophilie, vertiges, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Digestif : flatulence, indigestion, nausée, gastro-entérites, aérophagie, mal des transports, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Musculaire : spasmes, douleurs, crampes du bas du ventre, spasmes gastro-hépato-entériques, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Respiratoire : asthme, bronchite, toux, catarrhe,…, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Maladies infectieuses tropicales, hépatite virale,… </span></span></p> <p style="text-indent: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Usage externe : </strong> </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Application (diluée à 1% dans de l’huile végétale) sur le plexus solaire (spasmes digestifs) ou le long de la colonne vertébrale (fatigues et dépression), </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Bain, mélangée à d’autres huiles, pour un « coup de fouet ». </span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Précautions : </strong></span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Huile très puissante. </span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Ne pas utiliser pure en application sur la peau, diluer fortement dans une huile végétale. </span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Eviter l'usage pendant la grossesse, pour les enfants en bas âge. </span></span></p> <p class="MsoNormal" style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Eviter l'usage par voie orale</span></span></p> <p class="MsoNormal" style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><br /></span></span></p> <p class="MsoNormal" style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.aroma-zone.com/aroma/fichebasilic.asp">Source</a></span></p>Le Basilic tropical (Messep)inheritopenopen50-revision2012-01-17 17:14:482012-01-17 16:14:4850http://www.alicepegie.com/wordpress/wordpress/?p=510revision0
5312010-01-14 17:15:442010-01-14 16:15:44<p> </p> <p style="text-align: center;"><a class="mb" href="http://s2.e-monsite.com/2009/12/17/02/resize_550_550/rotate_0//cola.jpg"> </a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>La KOLA (Cola acuminata)</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/17/02/resize_550_550/rotate_0//cola.png"><img src="http://s2.e-monsite.com/2009/12/17/02/resize_250_250//cola.png" border="0" alt="" /></a> <a class="mb" href="http://s2.e-monsite.com/2009/12/17/02/resize_550_550/rotate_0//cola.jpg"><img src="http://s2.e-monsite.com/2009/12/17/02/resize_250_250//cola.jpg" border="0" alt="" /></a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le kolatier est un arbre qui peut atteindre environ 25 mètres de hauteur et 50 cm de diamètres. Sa germination peut atteindre 2 à 3 mois avec un taux élevé. Selon les couleurs, on peut distinguer deux sortes de kola : la rouge et lablanche. A l’intérieur de chaque type, la distinction est fonction de la taille, du goût et de la consistance (texture). Au Cameroun, le kolatier produit dejuillet à août.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La kola est un fruit récolté non seulement dans les forêts ou dans les cacaoyères mais aussi sur les kolatiers domestiqués. Cependant il n’existe pas de plantation exclusivement de la kola. Les arbres sont plantés ici et làsurtout dans les cacaoyères et caféiers. La noix de kola peut être directement obtenue juste après la récolte ou bien il faut d’abord fermenter le fruitpour que la chaire qui entoure le noyau (comestible) pourrisse et s’enlève facilement.</span></span></p> <hr id="system-readmore" /> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Consommation</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En plus de ses vertus médicinales, la kola joue un rôle social important dans la société camerounaise. Chez les musulmans du nord, la kola symbolise quelque chose de sacré. Dans d’autres communautés notamment chez les Bamiléké, la kola est un signe d’amour et d’amitié. Bien plus, la kola est consommées dans des cérémonies diverses, en particulier les dots, les tontines, les funérailles, les veillées mortuaires etc. D’autres en consomment pour diminuer la fatigue et alléger la faim et le sommeil. Il y a aussi ceux qui consomment pour son effet stimulant. La kola du Nord est aussi utilisée pour teinter les vêtements. La kola serait aussi utilisée dans les brasseries (Nkongmeneck, 1985).</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Usage</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La noix de cola contient deux alcaloïdes : de la caféine et de la théobromine. Ces éléments sont de véritables stimulants qui permettent de lutter contre la fatigue, supprime la faim et la soif et l’on pense qu’elle améliore l’activité intellectuelle. La cola est aussi recherché par des industries pharmaceutiques pour l’alcaloïde qu’elle contient, ceci pour la fabrication de certains médicaments.</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conservation</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Il n’existe pas vraiment de méthodes modernes de conservation de kola. Les termites et le tabac sont souvent utilisés pour la conservation de la kola. En plus des méthodes traditionnelles de conservation, certains producteurs et commerçants utilisent les produits chimiques dans la conservation de la kola.</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Noms locaux</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La Kola est appelée différemment selon les ethnies :</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ewondo </strong>Abeu</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Bangangté </strong>Mbreu</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Boulou </strong>Abel</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.cifor.cgiar.org/publications/pdf_files/factsheet/Cola_frc.pdf">Source</a></span></span></p> <p class="MsoNormal" style="margin-bottom: 12pt; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>Le Bitter-cola (Garnicia Kola)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/17/02/resize_550_550/rotate_0//Bitter_Kola_Seed_jpeg-2_0.jpg"><img src="http://s2.e-monsite.com/2009/12/17/02/resize_250_250//Bitter_Kola_Seed_jpeg-2_0.jpg" border="0" alt="" /></a> <a class="mb" href="http://s2.e-monsite.com/2009/12/17/02/resize_550_550/rotate_0//Bitter_cola.jpg"><img src="http://s2.e-monsite.com/2009/12/17/02/resize_250_250//Bitter_cola.jpg" border="0" alt="" /></a> </span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p class="MsoNormal" style="margin-bottom: 12pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Dans les principes contenus dans les résines de (la) Bitter-cola (Onyé en bulu, Garcinia Kola de son nom scientifique), on ne trouve pas de caféine comme dans la noix de cola. [On y retrouve cependant) du tanins, des sucres réducteurs et la traces de substances alcaloïdes". Les fruits du Bitter-cola ou Garcinia Kola ne pourraient être "considérés comme étant un aphrodisiaque ou un stimulant." Une étude qui vient ainsi mettre à mal les croyances populaires de certains qui attribuent au Garcinia Kola les vertus d`aphrodisiaque. <br /><br /> Toutefois, on s`accorde à reconnaître l`importance de cette plante dans le traitement de certaines maladies. Ainsi, l`écorce bouillie de l`arbre et qui se boit en infusion traite efficacement l`hyper-tension, tandis que les fruits, pour leur part, ont des propriétés anti-oxydantes. Ainsi, en consommant simplement ce fruit, on évite le vieillissement rapide des cellules et des cancers. "Les éléments anti-oxydants permettent de capter les radicaux libres qui apparaissent dans les cellules oxydées et les détruisent.", affirme un chercheur. Ce dernier précise également que ce fruit est riche en alcaloïdes qui lui confèrent son goût amer. Dans les pays tels que le Nigeria et de pays d`Afrique de l`Ouest, l`écorce de Garnicia Kola est utilisée dans le traitement des problèmes dentaires. <br /><br /> Par ailleurs, la capacité de ce fruit à calmer les ulcères gastriques est quelque peu mise en doute par des gastro-entérologues qui les déconseillent à leurs patients. Il existerait plusieurs variétés de Garcinia cola. De ce fait, tous les fruits n`ont pas la même constitution. C`est pour cette raison qu`à certains moments, quelqu`un ayant des problèmes gastriques peut consommer une autre variété sans le savoir et aggraver son mal alors qu`il a l`habitude de consommer ce fruit lorsqu`il a des douleurs gastriques.<br /> De ce fait, le choix du type de fruit à consommer s`avère difficile. A titre d`exemple, alors qu`au Cameroun on recense environ 21 types de Garcinia Kola, ils ont tous le même aspect physique. Les différences se manifestent uniquement au plan structurel des ces fruits. <br /><br /> Ainsi, alors qu`une espèce parviendra à traiter des problèmes hépatiques, elle pourrait avoir moins de succès dans le traitement des problèmes gastriques. Riche en Biflavonoïdes (GB1, GB2), le Garcinia Kola pousse dans les massifs forestiers d`Afrique Centrale et en particulier au Gabon il est très prisé par les populations pour la fermentation du vin de palme. Le bitter-cola est différent de la noix de cola bien connue de couleur rouge-violacé ou blanc-cassé, prisée dans toute l`Afrique. Le bitter-cola est une noix en forme de ballon de rugby, plus petite, à la chair blanche une fois enlevée l`enveloppe brune.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.camerounlink.net/fr/news.php?nid=29107&amp;vx=1&amp;kat2=3">Source</a></span></span></p>Les kolaspublishopenopenles-kolas2012-01-17 17:16:562012-01-17 16:16:560http://www.alicepegie.com/wordpress/wordpress/?p=530post0
5212012-01-17 17:15:122012-01-17 16:15:12Basilic tropical (Messep)<p> </p> <p style="text-align: justify;"><a class="mb" href="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//messep.jpg"><img src="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//messep.jpg" border="0" alt="" align="left" /></a><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Très utilisé dans la cuisine Béti(e) au Cameroun, le « Messep », ocimum gratissimum (basilic sauvage), soigne les bronchites et les douleurs abdominales. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">L’utilisation la plus simple et assurément la moins répandue du « Messep », plante aux multiples vertus, est sa consommation comme tisane au petit déjeuner avec du lait et du sucre. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">« La particularité c’est que dans ce cas précis, elle agit comme un traitement préventif », explique Mme Assoumou Joséphine.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Ainsi, cette plante a plusieurs propriétés et devient à l’occasion un médicament très efficace et très prisé par les traditionalistes dans la quasi-totalité des ethnies du pays ; surtout par les familles économiquement faibles.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Procédé pour réaliser la tisane de Messep :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Mettre un peu d’eau au feu, puis rajouter les feuilles de « Messep » laisser mijoter, jusqu’à ce que l’eau change de couleur, ensuite servir dans un bol. Il ne restera plus qu’à ajouter du lait et du sucre selon la préférence de chacun. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Traitement des maux de ventre ou constipation : </strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">« Tout d’abord, vous récoltez les feuilles de « Messep », ensuite vous les frictionnez puis vous y ajoutez un ou deux petits piments (piment indigène) de préférence, vert, sans les écraser. Le tout est mis dans un peu d’eau et à l’aide d’une poire, le malade se purge, puis dans les deux minutes qui vont suivre, il aura une forte envie de faire ses besoins et c’est le début de la guérison ».</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> « Après cela le problème (constipation ou autres douleurs ne sera plus qu’un souvenir. Mais, tout dépend la gravité», a précisé dame Joséphine.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> </span></span></p> <hr id="system-readmore" /> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong> Bronchites :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Cette plante soigne également la toux, en dégageant les poumons des corps étrangers qui l’empêchent de fonctionner normalement. Pour un résultat efficace, la feuille de Messep, est mâchée avec un peu de sel pour atténuer son goût aigre.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Le malade avale le jus aspirer après mâchouillement et rejette le reste puis recommence, pendant au moins 5 minutes. Le traitement se fait deux fois par jour, matin et soir pendant deux ou trois jours. Au soir du premier jour, le malade verra sa poitrine se libérer petit à petit, jusqu’à guérison totale. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Aussi, en langue Nzebi, cette plante est appelée « Madoumadoum », en langue Mpongwè, c’est l’« Indoundouwèlè »…</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Sous d’autres cieux, l’ocimum gratissimum (basilic sauvage) sert de base à la fabrication du vin.</span></span></p> <div style="text-align: justify;"> <table border="0" cellspacing="0" cellpadding="0" align="right"> <tbody> <tr> <td style="padding: 0in 2.25pt;" align="left" valign="top"> </td> </tr> </tbody> </table> </div> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">DouglasNtoutoume </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a href="http://nianto.ga/details.php?id_detail=363&amp;id_page=6&amp;id_page2=26">Source</a></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" href="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//HE_BASILIC_150.jpg"><img src="http://s2.e-monsite.com/2009/12/16/02/resize_550_550/rotate_0//HE_BASILIC_150.jpg" border="0" alt="" align="left" /></a> Vous trouverez désormais son huile essentielle voir<a href="http://www.aroma-zone.com/aroma/fichebasilic.asp"> ici</a> dont les propriétés sont les suivantes :</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Antispasmodique puissant</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Revigorant et vitalisant</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Tonique du système nerveux</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Tonique digestif</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Anti-inflammatoire</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Anti-douleur</span></span></p> <p style="margin-left: 88.8pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> Antiviral puissant</span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Indications : </strong></span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Nerveux : stress, fatigue, dépression, insomnie, hystérie, épuisement intellectuel, spasmophilie, vertiges, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Digestif : flatulence, indigestion, nausée, gastro-entérites, aérophagie, mal des transports, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Musculaire : spasmes, douleurs, crampes du bas du ventre, spasmes gastro-hépato-entériques, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Respiratoire : asthme, bronchite, toux, catarrhe,…, </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Maladies infectieuses tropicales, hépatite virale,… </span></span></p> <p style="text-indent: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Usage externe : </strong> </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Application (diluée à 1% dans de l’huile végétale) sur le plexus solaire (spasmes digestifs) ou le long de la colonne vertébrale (fatigues et dépression), </span></span></p> <p style="margin-left: 53.4pt; text-indent: -0.25in; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Bain, mélangée à d’autres huiles, pour un « coup de fouet ». </span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Précautions : </strong></span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Huile très puissante. </span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Ne pas utiliser pure en application sur la peau, diluer fortement dans une huile végétale. </span></span></p> <p style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Eviter l'usage pendant la grossesse, pour les enfants en bas âge. </span></span></p> <p class="MsoNormal" style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Eviter l'usage par voie orale</span></span></p> <p class="MsoNormal" style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><br /></span></span></p> <p class="MsoNormal" style="margin-left: 35.4pt; text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.aroma-zone.com/aroma/fichebasilic.asp">Source</a></span></p>Le Basilic tropical (Messep)inheritopenopen50-revision-22012-01-17 17:15:122012-01-17 16:15:1250http://www.alicepegie.com/wordpress/wordpress/?p=520revision0
5412012-01-17 17:16:462012-01-17 16:16:46<p> </p> <p style="text-align: center;"><a class="mb" href="http://s2.e-monsite.com/2009/12/17/02/resize_550_550/rotate_0//cola.jpg"> </a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>La KOLA (Cola acuminata)</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/17/02/resize_550_550/rotate_0//cola.png"><img src="http://s2.e-monsite.com/2009/12/17/02/resize_250_250//cola.png" border="0" alt="" /></a> <a class="mb" href="http://s2.e-monsite.com/2009/12/17/02/resize_550_550/rotate_0//cola.jpg"><img src="http://s2.e-monsite.com/2009/12/17/02/resize_250_250//cola.jpg" border="0" alt="" /></a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le kolatier est un arbre qui peut atteindre environ 25 mètres de hauteur et 50 cm de diamètres. Sa germination peut atteindre 2 à 3 mois avec un taux élevé. Selon les couleurs, on peut distinguer deux sortes de kola : la rouge et lablanche. A l’intérieur de chaque type, la distinction est fonction de la taille, du goût et de la consistance (texture). Au Cameroun, le kolatier produit dejuillet à août.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La kola est un fruit récolté non seulement dans les forêts ou dans les cacaoyères mais aussi sur les kolatiers domestiqués. Cependant il n’existe pas de plantation exclusivement de la kola. Les arbres sont plantés ici et làsurtout dans les cacaoyères et caféiers. La noix de kola peut être directement obtenue juste après la récolte ou bien il faut d’abord fermenter le fruitpour que la chaire qui entoure le noyau (comestible) pourrisse et s’enlève facilement.</span></span></p> <hr id="system-readmore" /> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Consommation</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En plus de ses vertus médicinales, la kola joue un rôle social important dans la société camerounaise. Chez les musulmans du nord, la kola symbolise quelque chose de sacré. Dans d’autres communautés notamment chez les Bamiléké, la kola est un signe d’amour et d’amitié. Bien plus, la kola est consommées dans des cérémonies diverses, en particulier les dots, les tontines, les funérailles, les veillées mortuaires etc. D’autres en consomment pour diminuer la fatigue et alléger la faim et le sommeil. Il y a aussi ceux qui consomment pour son effet stimulant. La kola du Nord est aussi utilisée pour teinter les vêtements. La kola serait aussi utilisée dans les brasseries (Nkongmeneck, 1985).</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Usage</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La noix de cola contient deux alcaloïdes : de la caféine et de la théobromine. Ces éléments sont de véritables stimulants qui permettent de lutter contre la fatigue, supprime la faim et la soif et l’on pense qu’elle améliore l’activité intellectuelle. La cola est aussi recherché par des industries pharmaceutiques pour l’alcaloïde qu’elle contient, ceci pour la fabrication de certains médicaments.</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conservation</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Il n’existe pas vraiment de méthodes modernes de conservation de kola. Les termites et le tabac sont souvent utilisés pour la conservation de la kola. En plus des méthodes traditionnelles de conservation, certains producteurs et commerçants utilisent les produits chimiques dans la conservation de la kola.</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Noms locaux</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La Kola est appelée différemment selon les ethnies :</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ewondo </strong>Abeu</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Bangangté </strong>Mbreu</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Boulou </strong>Abel</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.cifor.cgiar.org/publications/pdf_files/factsheet/Cola_frc.pdf">Source</a></span></span></p> <p class="MsoNormal" style="margin-bottom: 12pt; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>Le Bitter-cola (Garnicia Kola)</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/17/02/resize_550_550/rotate_0//Bitter_Kola_Seed_jpeg-2_0.jpg"><img src="http://s2.e-monsite.com/2009/12/17/02/resize_250_250//Bitter_Kola_Seed_jpeg-2_0.jpg" border="0" alt="" /></a> <a class="mb" href="http://s2.e-monsite.com/2009/12/17/02/resize_550_550/rotate_0//Bitter_cola.jpg"><img src="http://s2.e-monsite.com/2009/12/17/02/resize_250_250//Bitter_cola.jpg" border="0" alt="" /></a> </span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p class="MsoNormal" style="margin-bottom: 12pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Dans les principes contenus dans les résines de (la) Bitter-cola (Onyé en bulu, Garcinia Kola de son nom scientifique), on ne trouve pas de caféine comme dans la noix de cola. [On y retrouve cependant) du tanins, des sucres réducteurs et la traces de substances alcaloïdes". Les fruits du Bitter-cola ou Garcinia Kola ne pourraient être "considérés comme étant un aphrodisiaque ou un stimulant." Une étude qui vient ainsi mettre à mal les croyances populaires de certains qui attribuent au Garcinia Kola les vertus d`aphrodisiaque. <br /><br /> Toutefois, on s`accorde à reconnaître l`importance de cette plante dans le traitement de certaines maladies. Ainsi, l`écorce bouillie de l`arbre et qui se boit en infusion traite efficacement l`hyper-tension, tandis que les fruits, pour leur part, ont des propriétés anti-oxydantes. Ainsi, en consommant simplement ce fruit, on évite le vieillissement rapide des cellules et des cancers. "Les éléments anti-oxydants permettent de capter les radicaux libres qui apparaissent dans les cellules oxydées et les détruisent.", affirme un chercheur. Ce dernier précise également que ce fruit est riche en alcaloïdes qui lui confèrent son goût amer. Dans les pays tels que le Nigeria et de pays d`Afrique de l`Ouest, l`écorce de Garnicia Kola est utilisée dans le traitement des problèmes dentaires. <br /><br /> Par ailleurs, la capacité de ce fruit à calmer les ulcères gastriques est quelque peu mise en doute par des gastro-entérologues qui les déconseillent à leurs patients. Il existerait plusieurs variétés de Garcinia cola. De ce fait, tous les fruits n`ont pas la même constitution. C`est pour cette raison qu`à certains moments, quelqu`un ayant des problèmes gastriques peut consommer une autre variété sans le savoir et aggraver son mal alors qu`il a l`habitude de consommer ce fruit lorsqu`il a des douleurs gastriques.<br /> De ce fait, le choix du type de fruit à consommer s`avère difficile. A titre d`exemple, alors qu`au Cameroun on recense environ 21 types de Garcinia Kola, ils ont tous le même aspect physique. Les différences se manifestent uniquement au plan structurel des ces fruits. <br /><br /> Ainsi, alors qu`une espèce parviendra à traiter des problèmes hépatiques, elle pourrait avoir moins de succès dans le traitement des problèmes gastriques. Riche en Biflavonoïdes (GB1, GB2), le Garcinia Kola pousse dans les massifs forestiers d`Afrique Centrale et en particulier au Gabon il est très prisé par les populations pour la fermentation du vin de palme. Le bitter-cola est différent de la noix de cola bien connue de couleur rouge-violacé ou blanc-cassé, prisée dans toute l`Afrique. Le bitter-cola est une noix en forme de ballon de rugby, plus petite, à la chair blanche une fois enlevée l`enveloppe brune.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.camerounlink.net/fr/news.php?nid=29107&amp;vx=1&amp;kat2=3">Source</a></span></span></p>Les kolasinheritopenopen53-revision2012-01-17 17:16:462012-01-17 16:16:4653http://www.alicepegie.com/wordpress/wordpress/?p=540revision0
5512010-01-14 17:17:162010-01-14 16:17:16<p style="text-align: justify;"><a class="mb" href="http://s2.e-monsite.com/2009/11/04/09/resize_550_550/rotate_0//acne.png"><img src="http://s2.e-monsite.com/2009/11/04/09/resize_550_550/rotate_0//acne.png" alt="" align="left" border="0" /></a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peau sèche, peau grasse, démangeaisons, boutons, comédons, on peut venir à bout de certains problèmes de peau bénins par une meilleure hygiène et des produits adéquats.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Bien que la peau se renouvelle sans cesse en surface, elle a besoin d'être régulièrement nettoyée et nourrie pour demeurer saine. Il est cependant recommandé de consulter un dermatologue pour recevoir un diagnostic précis avant de vous soigner. Ici pas de distinctions, les peaux blanches ou noires sont soumises aux mêmes problèmes, même s'il est vrai que les conséquences sur les peaux noires sont souvent plus visibles que sur les peaux blanches.<!--more--></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les problèmes de peau les plus fréquents</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'eczéma</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : peau sèche, éruption de plaies et démangeaisons intenses. Les crèmes à la cortisone sont souvent prescrites mais ne font que calmer les démangeaisons et finissent par affaiblir graduellement les structures cutanées.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : l'hydratation est ici très importante. Évitez les bains trop froids ou trop chauds et privilégiez les pains dermatologiques surgras. Utilisez quotidiennement un bon hydratant, ou émollient (glycérine).</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le psoriasis</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : plaques cutanées recouvertes de squames (peaux mortes). Les plaques peuvent apparaître partout, mais elles apparaissent le plus souvent sur les genoux, les coudes, le cuir chevelu, les mains et les pieds. L'acide salicylique à des concentrations de 2 à 10% adoucit la peau, réduit l'épaisseur des plaques et facilite l'élimination des squames.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong><strong> :</strong> évitez les produits irritants; laisser votre peau respirer (habillez vous en conséquence). Mettez un humidificateur dans la maison si le taux d'humidité est trop bas. HYDRATEZ-vous pour éviter le desséchement et les démangeaisons. Évitez l'eau très chaude, qui peut irriter la peau et empirer les symptômes. Laver délicatement vos cheveux et épongez avec une serviette douce. Lorsque c'est possible, évitez le sèche-cheveux.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'acné</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : l'acné vulgaire est causée par une hypersécrétion de sébum qui bouche les pores de la peau et qui s'accumule en formant des kystes, des points noirs, des comédons, des lésions inflammatoires (papules, pustules,) et parfois des nodules (kystes profonds). Elle affecte surtout le visage, les oreilles, la poitrine, les épaules et le dos. Comme elle se manifeste principalement à l'adolescence ou aux périodes de bouleversements hormonaux, elle s'atténue ou guérit spontanément la plupart du temps après ces périodes.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : ne pas toucher à son visage et ne jamais percer un bouton. Privilégiez les nettoyants doux qui limitent la production de sébum sans irriter la peau, et les hydratants sans huile. Les topicals comme le peroxyde de benzoyle qui ont un effet de séchage sur la peau devrait être employé sous la surveillance d'un dermatologue.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La rosacée</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : les papules et pustules inflammatoires de la rosacée ressemblent beaucoup à celles de l'acné vulgaire. La peau a une apparence plus grasse et les petits vaisseaux sanguins du visage peuvent être dilatés.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : évitez les facteurs favorisant la dilatation des vaisseaux tels que certaines boissons ou aliments trop chauds, les épices, une ambiance surchauffée.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'herpès labial (feu sauvage)</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : règle générale, il s'agit d'une affection bénigne sauf chez la femme enceinte en fin de grossesse à cause du risque pour le nouveau-né au moment de l'accouchement. Il se manifeste par des picotements, une rougeur, une sensation de brûlure avant que n'apparaisse une lésion très contagieuse sur le contour extérieur de la bouche.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : évitez le contact direct avec la lésion. Bien se laver les mains immédiatement après avoir touché le feu sauvage. Protégez les lèvres avec un baume pour éviter le dessèchement.</span></span></p>Problèmes de peau et solutionspublishopenopenproblemes-de-peau-et-solutions2012-01-18 13:51:422012-01-18 12:51:420http://www.alicepegie.com/wordpress/wordpress/?p=550post0
5612012-01-17 17:17:292012-01-17 16:17:29<p> </p> <p style="text-align: justify;"><a class="mb" href="http://s2.e-monsite.com/2009/11/04/09/resize_550_550/rotate_0//acne.png"><img src="http://s2.e-monsite.com/2009/11/04/09/resize_550_550/rotate_0//acne.png" border="0" alt="" align="left" /></a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peau sèche, peau grasse, démangeaisons, boutons, comédons, on peut venir à bout de certains problèmes de peau bénins par une meilleure hygiène et des produits adéquats.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Bien que la peau se renouvelle sans cesse en surface, elle a besoin d'être régulièrement nettoyée et nourrie pour demeurer saine. Il est cependant recommandé de consulter un dermatologue pour recevoir un diagnostic précis avant de vous soigner. Ici pas de distinctions, les peaux blanches ou noires sont soumises aux mêmes problèmes, même s'il est vrai que les conséquences sur les peaux noires sont souvent plus visibles que sur les peaux blanches.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les problèmes de peau les plus fréquents</strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'eczéma</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : peau sèche, éruption de plaies et démangeaisons intenses. Les crèmes à la cortisone sont souvent prescrites mais ne font que calmer les démangeaisons et finissent par affaiblir graduellement les structures cutanées.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : l'hydratation est ici très importante. Évitez les bains trop froids ou trop chauds et privilégiez les pains dermatologiques surgras. Utilisez quotidiennement un bon hydratant, ou émollient (glycérine).</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le psoriasis</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : plaques cutanées recouvertes de squames (peaux mortes). Les plaques peuvent apparaître partout, mais elles apparaissent le plus souvent sur les genoux, les coudes, le cuir chevelu, les mains et les pieds. L'acide salicylique à des concentrations de 2 à 10% adoucit la peau, réduit l'épaisseur des plaques et facilite l'élimination des squames.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong><strong> :</strong> évitez les produits irritants; laisser votre peau respirer (habillez vous en conséquence). Mettez un humidificateur dans la maison si le taux d'humidité est trop bas. HYDRATEZ-vous pour éviter le desséchement et les démangeaisons. Évitez l'eau très chaude, qui peut irriter la peau et empirer les symptômes. Laver délicatement vos cheveux et épongez avec une serviette douce. Lorsque c'est possible, évitez le sèche-cheveux.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'acné</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : l'acné vulgaire est causée par une hypersécrétion de sébum qui bouche les pores de la peau et qui s'accumule en formant des kystes, des points noirs, des comédons, des lésions inflammatoires (papules, pustules,) et parfois des nodules (kystes profonds). Elle affecte surtout le visage, les oreilles, la poitrine, les épaules et le dos. Comme elle se manifeste principalement à l'adolescence ou aux périodes de bouleversements hormonaux, elle s'atténue ou guérit spontanément la plupart du temps après ces périodes.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : ne pas toucher à son visage et ne jamais percer un bouton. Privilégiez les nettoyants doux qui limitent la production de sébum sans irriter la peau, et les hydratants sans huile. Les topicals comme le peroxyde de benzoyle qui ont un effet de séchage sur la peau devrait être employé sous la surveillance d'un dermatologue.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La rosacée</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : les papules et pustules inflammatoires de la rosacée ressemblent beaucoup à celles de l'acné vulgaire. La peau a une apparence plus grasse et les petits vaisseaux sanguins du visage peuvent être dilatés.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : évitez les facteurs favorisant la dilatation des vaisseaux tels que certaines boissons ou aliments trop chauds, les épices, une ambiance surchauffée.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'herpès labial (feu sauvage)</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : règle générale, il s'agit d'une affection bénigne sauf chez la femme enceinte en fin de grossesse à cause du risque pour le nouveau-né au moment de l'accouchement. Il se manifeste par des picotements, une rougeur, une sensation de brûlure avant que n'apparaisse une lésion très contagieuse sur le contour extérieur de la bouche.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : évitez le contact direct avec la lésion. Bien se laver les mains immédiatement après avoir touché le feu sauvage. Protégez les lèvres avec un baume pour éviter le dessèchement.</span></span></p>Problèmes de peau et solutionsinheritopenopen55-revision2012-01-17 17:17:292012-01-17 16:17:2955http://www.alicepegie.com/wordpress/wordpress/?p=560revision0
5712010-01-14 17:18:062010-01-14 16:18:06<p class="MsoNormal" style="text-align: justify; line-height: normal;"><a class="mb" title="cameroun-184-0.gif" href="http://s1.e-monsite.com/2009/04/10/12/83324638cameroun-184-0-gif.gif"><img style="float: left;" title="cameroun-184-0.gif" src="images/stories/kmer%20flag.jpg" alt="kmer flag" width="271" height="186" border="0" /></a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><a class="mb" title="710px-Cameroon_boundary_changes.PNG" href="http://s1.e-monsite.com/2009/05/30/01/99453272710px-cameroon-boundary-changes-png.png">Les premiers habitants du </a><a title="Cameroun" href="http://fr.wikipedia.org/wiki/Cameroun"><span style="text-decoration: none;">Cameroun</span></a> furent probablement les <a title="Baka (peuple)" href="http://fr.wikipedia.org/wiki/Baka_%28peuple%29"><span style="text-decoration: none;">Baka</span></a>, également appelés <a title="Pygmée" href="http://fr.wikipedia.org/wiki/Pygm%C3%A9e"><span style="text-decoration: none;">pygmées</span></a>. Ils habitent toujours les forêts des provinces du sud et de l'est.</span></span></span></p> <ul type="disc"> </ul><ul type="disc"> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">A la recherche de la route des Indes, les portugais arrivent sur les côtes en <a title="1472" href="http://fr.wikipedia.org/wiki/1472"><span style="text-decoration: none; color: black;">1472</span></a>. Étonné par le nombre de crevettes, le navigateur <a title="Fernando Póo" href="http://fr.wikipedia.org/wiki/Fernando_P%C3%B3o"><span style="text-decoration: none; color: black;">Fernando Póo</span></a> baptise le pays « Rio dos Camaroes» ce qui veux dire "rivière des crevettes" (l'estuaire du Wouri). Vers 1532 la traite des Noirs se met en place notamment grâce à la collaboration des Doualas. Les européens n'y fonderont cependant pas d´établissements permanents comme Luanda ou Saint-Louis à cause des côtes marécageuses, difficiles d'accès et infestées de <a title="Malaria" href="http://fr.wikipedia.org/wiki/Malaria"><span style="text-decoration: none; color: black;">malaria</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a title="1827" href="http://fr.wikipedia.org/wiki/1827"><span style="text-decoration: none; color: black;">1827</span></a> : exploration britancamerounaise et du <a title="Biafra" href="http://fr.wikipedia.org/wiki/Biafra"><span style="text-decoration: none; color: black;">Biafra</span></a></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a title="1845" href="http://fr.wikipedia.org/wiki/1845"><span style="text-decoration: none; color: black;">1845</span></a> : début de l'évangélisation par lnique de la côte a <em>Baptist Missionary Society</em> de Londres</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a title="1868" href="http://fr.wikipedia.org/wiki/1868"><span style="text-decoration: none; color: black;">1868</span></a> : installation de négociants allemands</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a title="1884" href="http://fr.wikipedia.org/wiki/1884"><span style="text-decoration: none; color: black;">1884</span></a> : les Doualas signent un traité d'assistance avec l'Allemagne, celle-ci proclame sa souveraineté sur le <em>Kamerun</em></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La <a title="Colonisation" href="http://fr.wikipedia.org/wiki/Colonisation"><span style="text-decoration: none; color: black;">colonisation</span></a> <a title="Allemagne" href="http://fr.wikipedia.org/wiki/Allemagne"><span style="text-decoration: none; color: black;">allemande</span></a> commença en <a title="1884" href="http://fr.wikipedia.org/wiki/1884"><span style="text-decoration: none; color: black;">1884</span></a> avec la signature en juillet d'un traité entre le roi de <a title="Royaume de Bell (page inexistante)" href="http://fr.wikipedia.org/w/index.php?title=Royaume_de_Bell&amp;action=edit&amp;redlink=1"><span style="text-decoration: none; color: black;">Bell</span></a> et <a title="Gustav Nachtigal" href="http://fr.wikipedia.org/wiki/Gustav_Nachtigal"><span style="text-decoration: none; color: black;">Gustav Nachtigal</span></a>. Le protectorat s'étendit du <a title="Lac Tchad" href="http://fr.wikipedia.org/wiki/Lac_Tchad"><span style="text-decoration: none; color: black;">lac Tchad</span></a> au nord aux rives de la <a title="Sangha (rivière)" href="http://fr.wikipedia.org/wiki/Sangha_%28rivi%C3%A8re%29"><span style="text-decoration: none; color: black;">Sangha</span></a> au sud-est. La ville de <a title="Buéa" href="http://fr.wikipedia.org/wiki/Bu%C3%A9a"><span style="text-decoration: none; color: black;">Buéa</span></a> au pied du <a title="Mont Cameroun" href="http://fr.wikipedia.org/wiki/Mont_Cameroun"><span style="text-decoration: none; color: black;">mont Cameroun</span></a> en devient la capitale avant d'être destituée au profit de <a title="Douala (ville)" href="http://fr.wikipedia.org/wiki/Douala_%28ville%29"><span style="text-decoration: none; color: black;">Douala</span></a> en <a title="1908" href="http://fr.wikipedia.org/wiki/1908"><span style="text-decoration: none; color: black;">1908</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a title="1911" href="http://fr.wikipedia.org/wiki/1911"><span style="text-decoration: none; color: black;">1911</span></a>, un accord franco-allemand étendit les possessions allemandes à certains territoires de l'<a title="Afrique équatoriale française" href="http://fr.wikipedia.org/wiki/Afrique_%C3%A9quatoriale_fran%C3%A7aise"><span style="text-decoration: none; color: black;">Afrique équatoriale française</span></a>. Après la <a title="Première Guerre mondiale" href="http://fr.wikipedia.org/wiki/Premi%C3%A8re_Guerre_mondiale"><span style="text-decoration: none; color: black;">Première Guerre mondiale</span></a>, pendant laquelle le Cameroun avait été conquis par les forces franco-britanniques, la colonie allemande fut partagée en deux territoires confiés à la <a title="France" href="http://fr.wikipedia.org/wiki/France"><span style="text-decoration: none; color: black;">France</span></a> (pour les quatre cinquièmes) et le restant au <a title="Royaume-Uni" href="http://fr.wikipedia.org/wiki/Royaume-Uni"><span style="text-decoration: none; color: black;">Royaume-Uni</span></a> par des mandats de la <a title="Société des Nations" href="http://fr.wikipedia.org/wiki/Soci%C3%A9t%C3%A9_des_Nations"><span style="text-decoration: none; color: black;">Société des Nations</span></a> (SDN) en <a title="1922" href="http://fr.wikipedia.org/wiki/1922"><span style="text-decoration: none; color: black;">1922</span></a>.<!--more--></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le Cameroun français se rallia à la <a title="France libre" href="http://fr.wikipedia.org/wiki/France_libre"><span style="text-decoration: none; color: black;">France libre</span></a> en août <a title="1940" href="http://fr.wikipedia.org/wiki/1940"><span style="text-decoration: none; color: black;">1940</span></a></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a title="1945" href="http://fr.wikipedia.org/wiki/1945"><span style="text-decoration: none; color: black;">1945</span></a>, il devint un pays sous tutelle de l'<a title="Organisation des Nations unies" href="http://fr.wikipedia.org/wiki/Organisation_des_Nations_unies"><span style="text-decoration: none; color: black;">ONU</span></a>, qui remplaçait la SDN. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a title="1946" href="http://fr.wikipedia.org/wiki/1946"><span style="text-decoration: none; color: black;">1946</span></a> un « territoire associé » de l'<a title="Union française" href="http://fr.wikipedia.org/wiki/Union_fran%C3%A7aise"><span style="text-decoration: none; color: black;">Union française</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a title="1948" href="http://fr.wikipedia.org/wiki/1948"><span style="text-decoration: none; color: black;">1948</span></a>, <a title="Ruben Um Nyobe" href="http://fr.wikipedia.org/wiki/Ruben_Um_Nyobe"><span style="text-decoration: none; color: black;">Ruben Um Nyobe</span></a> fonda l'<a title="Union des populations du Cameroun" href="http://fr.wikipedia.org/wiki/Union_des_populations_du_Cameroun"><span style="text-decoration: none; color: black;">Union des populations du Cameroun</span></a> (UPC), un mouvement nationaliste. L'UPC fut interdite après les <a title="Émeutes de Douala (page inexistante)" href="http://fr.wikipedia.org/w/index.php?title=%C3%89meutes_de_Douala&amp;action=edit&amp;redlink=1"><span style="text-decoration: none; color: black;">émeutes de Douala</span></a> en mai <a title="1955" href="http://fr.wikipedia.org/wiki/1955"><span style="text-decoration: none; color: black;">1955</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'Assemblée territoriale fut élue au <a title="Suffrage universel" href="http://fr.wikipedia.org/wiki/Suffrage_universel"><span style="text-decoration: none; color: black;">suffrage universel</span></a> et avec un collège unique pour la première fois en décembre <a title="1956" href="http://fr.wikipedia.org/wiki/1956"><span style="text-decoration: none; color: black;">1956</span></a>, et <a title="André Marie M'Bida (page inexistante)" href="http://fr.wikipedia.org/w/index.php?title=Andr%C3%A9_Marie_M%27Bida&amp;action=edit&amp;redlink=1"><span style="text-decoration: none; color: black;">M'Bida</span></a> forma le premier gouvernement autonome en mai <a title="1957" href="http://fr.wikipedia.org/wiki/1957"><span style="text-decoration: none; color: black;">1957</span></a> ; il fut remplacé par <a title="Ahmadou Ahidjo" href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> en février <a title="1958" href="http://fr.wikipedia.org/wiki/1958"><span style="text-decoration: none; color: black;">1958</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le Cameroun français acquit son <a title="Indépendance" href="http://fr.wikipedia.org/wiki/Ind%C3%A9pendance"><span style="text-decoration: none; color: black;">indépendance</span></a> le 1<sup>er</sup> janvier <a title="1960" href="http://fr.wikipedia.org/wiki/1960"><span style="text-decoration: none; color: black;">1960</span></a> et devint la République du Cameroun. L'année suivante, la colonie britannique se divisa en deux après un <a title="Référendum" href="http://fr.wikipedia.org/wiki/R%C3%A9f%C3%A9rendum"><span style="text-decoration: none; color: black;">référendum</span></a> d'autodétermination. Le Nord, principalement <a title="Musulman" href="http://fr.wikipedia.org/wiki/Musulman"><span style="text-decoration: none; color: black;">musulman</span></a>, choisit d'intégrer le <a title="Nigeria" href="http://fr.wikipedia.org/wiki/Nigeria"><span style="text-decoration: none; color: black;">Nigeria</span></a>. Quant au Sud, principalement <a title="Christianisme" href="http://fr.wikipedia.org/wiki/Christianisme"><span style="text-decoration: none; color: black;">chrétien</span></a>, il choisit de rejoindre la République du Cameroun pour former la République fédérale du Cameroun. Le premier président du Cameroun fut <a title="Ahmadou Ahidjo" href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> – <a title="Peuls" href="http://fr.wikipedia.org/wiki/Peuls"><span style="text-decoration: none; color: black;">Peul</span></a> musulman du Nord – qui était Premier ministre depuis <a title="1958" href="http://fr.wikipedia.org/wiki/1958"><span style="text-decoration: none; color: black;">1958</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Lors de son accession à l'indépendance, en 1960, le Cameroun s'était doté d'une Constitution à vocation pluraliste qui prévoyait le multipartisme. Malgré la popularité de l'U.P.C. dans le pays, sa branche légale n'obtint que 8 sièges dans la nouvelle Assemblée nationale et resta soumise aux tracasseries policières du gouvernement d'Ahidjo, le nouveau président. Celui-ci finit, six ans plus tard, par instaurer un régime de parti unique dans l'ex-Cameroun français, le multipartisme restant en vigueur dans l'ex-Cameroun anglais jusqu'en <a title="1972" href="http://fr.wikipedia.org/wiki/1972"><span style="text-decoration: none; color: black;">1972</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a title="1972" href="http://fr.wikipedia.org/wiki/1972"><span style="text-decoration: none; color: black;">1972</span></a>, la république fédérale fut remplacée par un État unitaire. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a title="Ahmadou Ahidjo" href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> remporta les élections de <a title="1975" href="http://fr.wikipedia.org/wiki/1975"><span style="text-decoration: none; color: black;">1975</span></a> et <a title="1980" href="http://fr.wikipedia.org/wiki/1980"><span style="text-decoration: none; color: black;">1980</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ce n'est qu'en novembre <a title="1982" href="http://fr.wikipedia.org/wiki/1982"><span style="text-decoration: none; color: black;">1982</span></a> qu'il démissionna pour « raisons de santé » (coup d'État) et fut remplacé par son ancien Premier ministre, <a title="Paul Biya" href="http://fr.wikipedia.org/wiki/Paul_Biya"><span style="text-decoration: none; color: black;">Paul Biya</span></a> – chrétien du Sud. Ahidjo regretta son choix ultérieurement, et, à la suite d'un <a title="Coup d'État" href="http://fr.wikipedia.org/wiki/Coup_d%27%C3%89tat"><span style="text-decoration: none; color: black;">coup d'État</span></a> manqué de la part de ses partisans, il fut contraint à l'exil en <a title="1984" href="http://fr.wikipedia.org/wiki/1984"><span style="text-decoration: none; color: black;">1984</span></a>.</span></span></li> </ul> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Source wikipedia</span></span></span></p> <hr id="system-readmore" /> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="710px-Cameroon_boundary_changes.PNG" href="http://s1.e-monsite.com/2009/05/30/01/99453272710px-cameroon-boundary-changes-png.png"><img title="710px-Cameroon_boundary_changes.PNG" src="http://s1.e-monsite.com/2009/05/30/01/mini2-99453272710px-cameroon-boundary-changes-png.png" alt="" width="297" height="250" border="0" /></a></span><a class="mb" title="atlas_cameroun.png" href="http://s1.e-monsite.com/2009/04/10/11/82518338atlas-cameroun-png.png"><img title="atlas_cameroun.png" src="http://s1.e-monsite.com/2009/04/10/11/mini2-82518338atlas-cameroun-png.png" alt="" border="0" /></a></span></p>Un petit rappel de l'histoire du Camerounpublishopenopenun-petit-rappel-de-lhistoire-du-cameroun2012-01-18 13:52:272012-01-18 12:52:270http://www.alicepegie.com/wordpress/wordpress/?p=570post0
5812012-01-17 17:19:082012-01-17 16:19:08<p class="MsoNormal" style="text-align: justify; line-height: normal;"><a class="mb" href="http://s1.e-monsite.com/2009/04/10/12/83324638cameroun-184-0-gif.gif" title="cameroun-184-0.gif"><img src="images/stories/kmer%20flag.jpg" border="0" alt="kmer flag" title="cameroun-184-0.gif" width="271" height="186" style="float: left;" /></a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><a class="mb" href="http://s1.e-monsite.com/2009/05/30/01/99453272710px-cameroon-boundary-changes-png.png" title="710px-Cameroon_boundary_changes.PNG">Les premiers habitants du </a><a href="http://fr.wikipedia.org/wiki/Cameroun" title="Cameroun"><span style="text-decoration: none;">Cameroun</span></a> furent probablement les <a href="http://fr.wikipedia.org/wiki/Baka_%28peuple%29" title="Baka (peuple)"><span style="text-decoration: none;">Baka</span></a>, également appelés <a href="http://fr.wikipedia.org/wiki/Pygm%C3%A9e" title="Pygmée"><span style="text-decoration: none;">pygmées</span></a>. Ils habitent toujours les forêts des provinces du sud et de l'est.</span></span></span></p> <ul type="disc"> <ul type="disc"> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">A la recherche de la route des Indes, les portugais arrivent sur les côtes en <a href="http://fr.wikipedia.org/wiki/1472" title="1472"><span style="text-decoration: none; color: black;">1472</span></a>. Étonné par le nombre de crevettes, le navigateur <a href="http://fr.wikipedia.org/wiki/Fernando_P%C3%B3o" title="Fernando Póo"><span style="text-decoration: none; color: black;">Fernando Póo</span></a> baptise le pays « Rio dos Camaroes» ce qui veux dire "rivière des crevettes" (l'estuaire du Wouri). Vers 1532 la traite des Noirs se met en place notamment grâce à la collaboration des Doualas. Les européens n'y fonderont cependant pas d´établissements permanents comme Luanda ou Saint-Louis à cause des côtes marécageuses, difficiles d'accès et infestées de <a href="http://fr.wikipedia.org/wiki/Malaria" title="Malaria"><span style="text-decoration: none; color: black;">malaria</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1827" title="1827"><span style="text-decoration: none; color: black;">1827</span></a> : exploration britancamerounaise et du <a href="http://fr.wikipedia.org/wiki/Biafra" title="Biafra"><span style="text-decoration: none; color: black;">Biafra</span></a></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1845" title="1845"><span style="text-decoration: none; color: black;">1845</span></a> : début de l'évangélisation par lnique de la côte a <em>Baptist Missionary Society</em> de Londres</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1868" title="1868"><span style="text-decoration: none; color: black;">1868</span></a> : installation de négociants allemands</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1884" title="1884"><span style="text-decoration: none; color: black;">1884</span></a> : les Doualas signent un traité d'assistance avec l'Allemagne, celle-ci proclame sa souveraineté sur le <em>Kamerun</em></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La <a href="http://fr.wikipedia.org/wiki/Colonisation" title="Colonisation"><span style="text-decoration: none; color: black;">colonisation</span></a> <a href="http://fr.wikipedia.org/wiki/Allemagne" title="Allemagne"><span style="text-decoration: none; color: black;">allemande</span></a> commença en <a href="http://fr.wikipedia.org/wiki/1884" title="1884"><span style="text-decoration: none; color: black;">1884</span></a> avec la signature en juillet d'un traité entre le roi de <a href="http://fr.wikipedia.org/w/index.php?title=Royaume_de_Bell&amp;action=edit&amp;redlink=1" title="Royaume de Bell (page inexistante)"><span style="text-decoration: none; color: black;">Bell</span></a> et <a href="http://fr.wikipedia.org/wiki/Gustav_Nachtigal" title="Gustav Nachtigal"><span style="text-decoration: none; color: black;">Gustav Nachtigal</span></a>. Le protectorat s'étendit du <a href="http://fr.wikipedia.org/wiki/Lac_Tchad" title="Lac Tchad"><span style="text-decoration: none; color: black;">lac Tchad</span></a> au nord aux rives de la <a href="http://fr.wikipedia.org/wiki/Sangha_%28rivi%C3%A8re%29" title="Sangha (rivière)"><span style="text-decoration: none; color: black;">Sangha</span></a> au sud-est. La ville de <a href="http://fr.wikipedia.org/wiki/Bu%C3%A9a" title="Buéa"><span style="text-decoration: none; color: black;">Buéa</span></a> au pied du <a href="http://fr.wikipedia.org/wiki/Mont_Cameroun" title="Mont Cameroun"><span style="text-decoration: none; color: black;">mont Cameroun</span></a> en devient la capitale avant d'être destituée au profit de <a href="http://fr.wikipedia.org/wiki/Douala_%28ville%29" title="Douala (ville)"><span style="text-decoration: none; color: black;">Douala</span></a> en <a href="http://fr.wikipedia.org/wiki/1908" title="1908"><span style="text-decoration: none; color: black;">1908</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a href="http://fr.wikipedia.org/wiki/1911" title="1911"><span style="text-decoration: none; color: black;">1911</span></a>, un accord franco-allemand étendit les possessions allemandes à certains territoires de l'<a href="http://fr.wikipedia.org/wiki/Afrique_%C3%A9quatoriale_fran%C3%A7aise" title="Afrique équatoriale française"><span style="text-decoration: none; color: black;">Afrique équatoriale française</span></a>. Après la <a href="http://fr.wikipedia.org/wiki/Premi%C3%A8re_Guerre_mondiale" title="Première Guerre mondiale"><span style="text-decoration: none; color: black;">Première Guerre mondiale</span></a>, pendant laquelle le Cameroun avait été conquis par les forces franco-britanniques, la colonie allemande fut partagée en deux territoires confiés à la <a href="http://fr.wikipedia.org/wiki/France" title="France"><span style="text-decoration: none; color: black;">France</span></a> (pour les quatre cinquièmes) et le restant au <a href="http://fr.wikipedia.org/wiki/Royaume-Uni" title="Royaume-Uni"><span style="text-decoration: none; color: black;">Royaume-Uni</span></a> par des mandats de la <a href="http://fr.wikipedia.org/wiki/Soci%C3%A9t%C3%A9_des_Nations" title="Société des Nations"><span style="text-decoration: none; color: black;">Société des Nations</span></a> (SDN) en <a href="http://fr.wikipedia.org/wiki/1922" title="1922"><span style="text-decoration: none; color: black;">1922</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le Cameroun français se rallia à la <a href="http://fr.wikipedia.org/wiki/France_libre" title="France libre"><span style="text-decoration: none; color: black;">France libre</span></a> en août <a href="http://fr.wikipedia.org/wiki/1940" title="1940"><span style="text-decoration: none; color: black;">1940</span></a></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1945" title="1945"><span style="text-decoration: none; color: black;">1945</span></a>, il devint un pays sous tutelle de l'<a href="http://fr.wikipedia.org/wiki/Organisation_des_Nations_unies" title="Organisation des Nations unies"><span style="text-decoration: none; color: black;">ONU</span></a>, qui remplaçait la SDN. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1946" title="1946"><span style="text-decoration: none; color: black;">1946</span></a> un « territoire associé » de l'<a href="http://fr.wikipedia.org/wiki/Union_fran%C3%A7aise" title="Union française"><span style="text-decoration: none; color: black;">Union française</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a href="http://fr.wikipedia.org/wiki/1948" title="1948"><span style="text-decoration: none; color: black;">1948</span></a>, <a href="http://fr.wikipedia.org/wiki/Ruben_Um_Nyobe" title="Ruben Um Nyobe"><span style="text-decoration: none; color: black;">Ruben Um Nyobe</span></a> fonda l'<a href="http://fr.wikipedia.org/wiki/Union_des_populations_du_Cameroun" title="Union des populations du Cameroun"><span style="text-decoration: none; color: black;">Union des populations du Cameroun</span></a> (UPC), un mouvement nationaliste. L'UPC fut interdite après les <a href="http://fr.wikipedia.org/w/index.php?title=%C3%89meutes_de_Douala&amp;action=edit&amp;redlink=1" title="Émeutes de Douala (page inexistante)"><span style="text-decoration: none; color: black;">émeutes de Douala</span></a> en mai <a href="http://fr.wikipedia.org/wiki/1955" title="1955"><span style="text-decoration: none; color: black;">1955</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'Assemblée territoriale fut élue au <a href="http://fr.wikipedia.org/wiki/Suffrage_universel" title="Suffrage universel"><span style="text-decoration: none; color: black;">suffrage universel</span></a> et avec un collège unique pour la première fois en décembre <a href="http://fr.wikipedia.org/wiki/1956" title="1956"><span style="text-decoration: none; color: black;">1956</span></a>, et <a href="http://fr.wikipedia.org/w/index.php?title=Andr%C3%A9_Marie_M%27Bida&amp;action=edit&amp;redlink=1" title="André Marie M'Bida (page inexistante)"><span style="text-decoration: none; color: black;">M'Bida</span></a> forma le premier gouvernement autonome en mai <a href="http://fr.wikipedia.org/wiki/1957" title="1957"><span style="text-decoration: none; color: black;">1957</span></a> ; il fut remplacé par <a href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo" title="Ahmadou Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> en février <a href="http://fr.wikipedia.org/wiki/1958" title="1958"><span style="text-decoration: none; color: black;">1958</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le Cameroun français acquit son <a href="http://fr.wikipedia.org/wiki/Ind%C3%A9pendance" title="Indépendance"><span style="text-decoration: none; color: black;">indépendance</span></a> le 1<sup>er</sup> janvier <a href="http://fr.wikipedia.org/wiki/1960" title="1960"><span style="text-decoration: none; color: black;">1960</span></a> et devint la République du Cameroun. L'année suivante, la colonie britannique se divisa en deux après un <a href="http://fr.wikipedia.org/wiki/R%C3%A9f%C3%A9rendum" title="Référendum"><span style="text-decoration: none; color: black;">référendum</span></a> d'autodétermination. Le Nord, principalement <a href="http://fr.wikipedia.org/wiki/Musulman" title="Musulman"><span style="text-decoration: none; color: black;">musulman</span></a>, choisit d'intégrer le <a href="http://fr.wikipedia.org/wiki/Nigeria" title="Nigeria"><span style="text-decoration: none; color: black;">Nigeria</span></a>. Quant au Sud, principalement <a href="http://fr.wikipedia.org/wiki/Christianisme" title="Christianisme"><span style="text-decoration: none; color: black;">chrétien</span></a>, il choisit de rejoindre la République du Cameroun pour former la République fédérale du Cameroun. Le premier président du Cameroun fut <a href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo" title="Ahmadou Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> – <a href="http://fr.wikipedia.org/wiki/Peuls" title="Peuls"><span style="text-decoration: none; color: black;">Peul</span></a> musulman du Nord – qui était Premier ministre depuis <a href="http://fr.wikipedia.org/wiki/1958" title="1958"><span style="text-decoration: none; color: black;">1958</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Lors de son accession à l'indépendance, en 1960, le Cameroun s'était doté d'une Constitution à vocation pluraliste qui prévoyait le multipartisme. Malgré la popularité de l'U.P.C. dans le pays, sa branche légale n'obtint que 8 sièges dans la nouvelle Assemblée nationale et resta soumise aux tracasseries policières du gouvernement d'Ahidjo, le nouveau président. Celui-ci finit, six ans plus tard, par instaurer un régime de parti unique dans l'ex-Cameroun français, le multipartisme restant en vigueur dans l'ex-Cameroun anglais jusqu'en <a href="http://fr.wikipedia.org/wiki/1972" title="1972"><span style="text-decoration: none; color: black;">1972</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a href="http://fr.wikipedia.org/wiki/1972" title="1972"><span style="text-decoration: none; color: black;">1972</span></a>, la république fédérale fut remplacée par un État unitaire. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo" title="Ahmadou Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> remporta les élections de <a href="http://fr.wikipedia.org/wiki/1975" title="1975"><span style="text-decoration: none; color: black;">1975</span></a> et <a href="http://fr.wikipedia.org/wiki/1980" title="1980"><span style="text-decoration: none; color: black;">1980</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ce n'est qu'en novembre <a href="http://fr.wikipedia.org/wiki/1982" title="1982"><span style="text-decoration: none; color: black;">1982</span></a> qu'il démissionna pour « raisons de santé » (coup d'État) et fut remplacé par son ancien Premier ministre, <a href="http://fr.wikipedia.org/wiki/Paul_Biya" title="Paul Biya"><span style="text-decoration: none; color: black;">Paul Biya</span></a> – chrétien du Sud. Ahidjo regretta son choix ultérieurement, et, à la suite d'un <a href="http://fr.wikipedia.org/wiki/Coup_d%27%C3%89tat" title="Coup d'État"><span style="text-decoration: none; color: black;">coup d'État</span></a> manqué de la part de ses partisans, il fut contraint à l'exil en <a href="http://fr.wikipedia.org/wiki/1984" title="1984"><span style="text-decoration: none; color: black;">1984</span></a>.</span></span></li> </ul> </ul> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Source wikipedia</span></span></span></p> <hr id="system-readmore" /> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s1.e-monsite.com/2009/05/30/01/99453272710px-cameroon-boundary-changes-png.png" title="710px-Cameroon_boundary_changes.PNG"><img src="http://s1.e-monsite.com/2009/05/30/01/mini2-99453272710px-cameroon-boundary-changes-png.png" border="0" alt="" title="710px-Cameroon_boundary_changes.PNG" width="297" height="250" /></a></span><a class="mb" href="http://s1.e-monsite.com/2009/04/10/11/82518338atlas-cameroun-png.png" title="atlas_cameroun.png"><img src="http://s1.e-monsite.com/2009/04/10/11/mini2-82518338atlas-cameroun-png.png" border="0" alt="" title="atlas_cameroun.png" /></a></span></p>Un petit rappel de l'histoire du Camerouninheritopenopen57-revision2012-01-17 17:19:082012-01-17 16:19:0857http://www.alicepegie.com/wordpress/wordpress/?p=580revision0
5912010-01-14 17:19:362010-01-14 16:19:36<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><img style="float: left;" src="images/stories/carte%20bantous.jpg" alt="carte bantous" width="116" height="127" border="0" />« Le peuple Bantou est constitué de l’ensemble des populations africaines vivant au sud de l’équateur. Les langues bantoues se rattachent à l’ensemble des langues nigéro-congolaises du groupe Bénoué-Congo</strong>. » Encyclopédique Hachette Grand Format 2001</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ethymologiquement, le vocable Bantou a été introduit en 1862 par Guillaume - Henri BLECK linguiste allemand de son état, pour désigner les groupes de populations noires dont la langue ou le dialecte utilise le Radical « Ba » en guise de pluriel; et qui habitaient la zone au sud du parallèle joignant Douala à la rivière Tana située au Kenya. Malheureusement, ce terme a à ce toujours été appliqué à mauvais escient à des caractéristiques anthropologiques ou culturelles. Cela peut s’expliquer par le fait que ce peuple a eu tout au cours de son histoire à effectuer des migrations dont la plus importante l’a menée de la vallée du Nil à L’Afrique du Sud, en passant par certaines régions de l’Ouest africain avec tout ce que cela comporte de métissage tant au niveau humain que culturel ; d’où la grande diversité des bantous sur le plan physique. Précisons aussi qu’au cours des grandes migrations, certains (Bantous) ont décidé de vivre dans des régions de l’Ouest africain. Il est donc fort probable que la grande majorité des noirs africains soit des descendants du moins en partie des Proto Bantous (Ancêtres des bantous). </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Plus concrètement, le mot Bantou est formé de deux radicaux. Le radical Ba qui forme le pluriel en langue bantoue, donc « les » et le radical « ntou » qui veut dire « Homme ». Le mot bantou signifie donc les Hommes. <!--more--></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> La Genèse</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Il y a bien longtemps, les nôtres, la grande Famille Bantou menait une vie paisible et harmonieuse, tout là haut, dans la vallée du Haut Nil. L’eau y était abondante, le poisson pullulait dans les cours d’eau, la végétation était dense et la vie luxuriante. Des années et des années passèrent, les cycles du soleil et des pluies se succédaient normalement. Puis un jour, les pluies ont commencées à se faire rares, comme si Mère Nature était devenue folle. Notre peuple qui s’était agrandi en nombre, malgré sa solide structure, a commencé à manquer du nécessaire vital, étant donné que très rapidement, la nature évoluait de la forêt à la savane. Nos aeuils tinrent alors un grand conseil au pied de l’arbre à palabres, et décidèrent à l’unanimité d’aller chercher ailleurs, une vie meilleure. On forma différents groupes au sein des quels se retrouvaient toute la structure de la société Bantoue afin de multiplier les chances de survie de notre société. Certains partirent vers l’ouest et d’autres vers le sud. On raconte encore de ce côté du fleuve Sanaga (fleuve du centre du Cameroun actuel, qui prend ses sources dans les hauts plateaux de l’Adamaoua) que certains de nos frères sont allés jusqu’à atteindre les terres de l’union sud Africaine (actuel République Sud-Africaine). En particulier notre frère Soulouk (ce qui veut dire fourmi en Bassa et se serait transformé en Zoulou, sous entendu "peuple du ciel", caractéristique des fourmis mâles qui se dotent d'ailes à certaines périodes de l'année dans le but de s'envoler à la recherche de nouvelles colonies) dont les récits des différentes épopées de ses descendants nous sont parvenus. Mais cette migration ne fut pas de tout repos, car nous étions considérés comme des envahisseurs<em>.</em> On peut dire que les africains Noirs Actuels sont presque tous des descendants des Bantous, à quelques exceptions près. A savoir : Les pygmées, les Hottentots, les Bochimans.</span></span></p> <hr id="system-readmore" /> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Histoire</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Certains ont pensé des siècles durant que l’Afrique noire n’avait pas d’histoire. Ceci était dû au fait que l’Afrique a toujours été une société à tradition orale. L’originalité des sociétés qu’on dit « sans écriture » est que l’Homme est engagé par la parole. Celle-ci joue ici un rôle primordial, car elle est à la fois, connaissance, religion, histoire, divertissement, science de la nature et initiation au métier, ce que l’on appelle là bas, « l’école de la vie ». Dans une telle société, les gardiens de cet héritage sont les traditionalistes d’une part, qui sont chargés de transmettre des connaissances contrôlées par le comité des sages, et d’autre part les griots qui eux sont à la fois généalogistes, historiens et poètes. L’avantage que représente la tradition orale, est de venir de l’intérieur des sociétés africaines, par conséquent, elle reflète une organisation mentale et un vécu du groupe socioculturel. La tradition orale ne permet cependant pas l’établissement d’une chronologie. Ce qui pose de sérieux problèmes aux historiens, et ouvre ici le chemin de la multidisciplinarité pour tenter de combler les trous. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Quant aux bantous, certains historiens affirment que Le groupe Proto Bantous qui occupent actuellement l’Est, Le Centre et le Sud du continent africain se serait formé au premier millénaire avant J. C. Aux confins du Cameroun et du Nigeria. Cette affirmation est sujette à caution, car la migration Bantou aurait commencé bien avant le premier millénaire, puisqu’ elle était le pendant de l’assèchement du Sahara qui date du début du troisième millénaire. Les Bantous vivaient alors dans la région du Haut Nil comprise entre le 17<sup>e</sup> et le 21<sup>e</sup> parallèle sur les bords de grands marécages (cf. R et M. CORNEVIN, Histoire de l’Afrique P.43). Cette présence s’est poursuivit à l’époque du règne du grand pharaon soudanais TAHARKA le Grand (689-664) pendant la période du néolithique humide. Certains bantous étaient installés entre la cinquième et la sixième cataracte du Nil, à une cinquantaine de kilomètre au sud du confluent NIL-ATBARA. Ils formaient alors le royaume de Kouch-Napata-Méroé. Ce royaume était doté d’une écriture alphabétique non encore déchiffrée à ce jour, et de la maîtrise de la métallurgie du fer (cf. R et M. CORNEVIN, Histoire de l’Afrique P.58). Le climat de l’Afrique dans une région comprise entre le Sahara et la zone équatoriale très étendue, était très humide il y a huit ou dix mille ans. Le mode de vie des bantous était étroitement lié à l’eau. Le développement des civilisations de pêcheurs a été daté entre 8000 et 5000 avant l’ère chrétienne, le long du moyen Nil et dans le sahara. On a même retrouvé la trace des bantous au nord du continent africain tant à l’Ouest qu’à l’Est. En effet, le saharien mésolithique d’Asselar était un noir de type bantou. En outre, les vases trouvés dans l’Aouker préhistorique (aujourd’hui la Mauritanie) d’après H. Laforgue et Vaneleshe ressemblent en tout point a ceux qui sont encore utilisés aujourd’hui par les Noirs du sud. Les vestiges d’harpons en os et la poterie suggèrent des activités de pêcheurs encore tributaires de la chasse et de la cueillette.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">A partir de 5000 avant J.C. le climat devient aride entraînant un abaissement des niveaux des lacs, modifiant ainsi le modèle économique fondé sur l’exploitation des ressources naturelles, surtout aquatiques, à savoir la chasse, la pêche et la cueillette. Les conséquences de cet assèchement furent la migration des populations qui vivaient dans cette zone, parties vers le sud, à la recherche de l’eau. Et la mutation du peuplement de l’Afrique.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les populations noires à cette époque étaient les descendants de l’empire kouchite. Elles se sont déplacées pour la plupart vers les zones sédentaires et certains oasis du nord du sahara. Tout au long de cette migration, le peuple bantou a développé plusieurs civilisations, car chaque groupe ou groupuscule qui s’implantait sur un fief essayait d’adapter ses us et coutumes aux réalités locales. La civilisation résultante n’était alors rien d’autre que le syncrétisme entre la culture acquise des bantous et les nouveaux milieux et contacts. Cette dispersion des bantous s’est déroulée sur une très grande échelle d’espace et de temps à cause de la grande forêt équatoriale qui constituait un obstacle plus difficile à franchir car exubérante et impénétrable. Les Bantous ont due emprunter les voies de moindre résistance que constituaient les cours d’eau tel que la Sangha et L’Oubangui. Cette migration n’était pas encore achevée à la fin du 19<sup>ieme</sup> siècle.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les Bantous sont estimés à 310 millions à ce jour. Il s’agit plus d’une famille culturelle que d’une race, car l’unité de la langue est incontestable. Ce sont des peuples agriculteurs qui connaissent le travail du fer. Leurs cultures se sont diversifiées en fonction des milieux qu'ils ont eu à traverser pendant leur migration. Dans la savane se sont développé des royaumes puissants. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Voici<strong> </strong>une liste non exhaustive des populations bantoues qu’on trouve au Cameroun classés en 2 groupes :</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les Bantous</strong> : Bakweris, Bassas, Bétis, Doualas, Fang...</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les Semi Bantous</strong> : Bamilékés, Bamouns, Tikar…</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Tout au long de leur évolution, les Hommes d’où qu’ils soient, ont développé un certain nombre de caractéristiques qui ont favorisé l’apparition de la culture. Celle-ci étant définie par Leslie A White comme étant « une totalité spirituelle et historique de causes et d’évènements qui dépendent de la capacité de symbolisation ». Chez le bantou, cette symbolisation a pris la forme du langage et de l’oralité.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En général, les sociétés Bantous font parti des sociétés qui n’ont pas d’archives, c’est à dire que se sont des sociétés qui n’ont pas utilisé pleinement l’écriture et ses ressources. Les bantous ont développé un certain nombre de caractéristiques en fonction des milieux qu’ils ont traversés pendant leur migration ou des lieux où ils se sont installés. Ces caractéristiques ont à la fois rendues possible l’accroissement quantitatif de l’espèce, et favorisé l’utilisation d’une grande variété de ressources naturelles. Les bantous font partis des sociétés telluriques à tradition orale. Pour mieux comprendre la culture d’une société, il convient d’étudier son adaptation au milieu naturel, sa structure sociale, ses us et coutumes, et son art.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> <span style="text-decoration: underline;">L’adaptation au milieu naturel</span></strong> :</span></span></p> <p class="MsoBodyText" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Les bantous ont rencontré en fonction du parcours de leur migration, trois milieux différents les uns des autres : la côte, la forêt vierge et la montagne. Ceci par ce qu’ils ont dû utiliser les voies naturelles (pistes ou voies fluviales) pour faciliter leurs déplacements. De manière générale, <strong> </strong>la technologie dont dispose un groupe d’individus pour contrôler et modifier le milieu dans lequel il vit, est fonction de sa connaissance, de son travail et des ressources naturelles à sa disposition. Celles-ci semblent limitées dans le contexte de l’Afrique équatoriale, même si cet écosystème est favorable à l’installation d’une grande variété d’organismes.</span></span></p> <p class="MsoBodyText" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour se procurer des aliments au moyen de la chasse, de la cueillette ou de la pêche, le bantou a recours à des armes tel que les arcs, les flèches, les haches de pierre, les pieux et les massues. Il utilise aussi l’horticulture, qui repose sur la culture des semences, des racines et des tubercules ceci à l’aide de la houe (sorte de pioche en bois). Ils y plantent des ignames, des macabos, des taros, des patates douces, du manioc, des bananes, des arbres fruitiers (orangers, avocatiers, safoutiers, goyaviers), des cannes à sucre. Le type d’horticulture pratiqué ici est dit itinérant, car on choisit une partie de la forêt resté sans être cultivé pendant plusieurs années, on y coupe herbes et arbres, on construit un enclos pour protéger les cultures des gros animaux sauvages (tel que les phacochères). Le bantou essaye d’échelonner la production tout au long de l’année. Quelque fois le sol sert de garde à manger pour des plantes comme le manioc. Ces populations vivent donc de l’agriculture, de la pêche et de la chasse. Le gibier est composé de petits animaux comme les singes, les rongeurs ou des petites antilopes. Quant aux animaux domestiques ont trouve le porc, la chèvre, le mouton, les poules, les canards, les dindes.</span></span></p> <p class="MsoBodyText" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> <span style="text-decoration: underline;">La structure sociale</span> :</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L’organisation sociale des bantous est formée au sommet de nations qui elles même sont composées de groupes de tribus, subdivisés en villages. Ces villages sont en réalité, des groupes de clans, constitués par les différentes branches de familles qui habitent le village. Tous les membres d’un clan sont censés être les descendants d’un même ancêtre mythique. Au sein du groupe, on les considère comme parents (pères et mères), et tous ceux qui appartiennent au même groupe générationnel sont considérés comme frères et sœurs. La parenté occupe ici un rôle primordial dans la construction du lien social, par ce qu’elle sous tend le principe de solidarité. La majorité des bantous sont patrilocales (bien qu’on trouve aussi des sociétés matrilocales mais en très faible nombre), c’est à dire qu’une fois que la femme a contracté mariage, elle est obligée d’aller résider dans la famille de son époux. L’unité résidentielle est le socle du lignage. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L’acquisition du domaine foncier se faisait autrefois sur le principe du premier venu, premier servi, à condition de pouvoir délimiter l’espace réservé de façon nette par débroussaillement d’une bande de « un mètre » environ de largeur. Et tout terrain ou lopin de terre où une subdivision de clan a enseveli ses morts pendant plusieurs générations devient sa propriété absolue.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Le clan est organisé hiérarchiquement, chaque branche a son chef, celui ci est désigné par élection. Quand l’un d’eux meurt, le conseil des chefs se réunit pour designer son successeur. Le roi doit ratifier ce choix, il a le droit de révocation du chef élu, mais ne peut en aucun cas le désigner d’office. Le clan est généralement composé de personnes qui ont eu ou ont un ancêtre commun. Les mythes servent à définir les caractères du clan. La cohésion du clan repose sur le respect des symboles, des cérémonies, des rituels. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dans les sociétés bantoues, l’élément fondamental de la structure sociale est la parenté. Celle-ci est fondée sur la reconnaissance sociale des liens de consanguinités et d’affinités. On remarque dans ces sociétés une division sexuelle du travail, car les femmes sont censées prendre soin du foyer, des enfants, et de se charger de la cueillette, des tâches horticoles et agricoles. Quant aux hommes, ils doivent s’occuper de la protection du groupe familial, de la chasse, de la pêche, de l’élevage, du labourage, du débroussaillement, du défrichement de la terre et de la majorité des activités artisanales. Le développement de l’individu passe par une suite d’étapes, de l’enfance à la vieillesse. Ce qui permet d’assigner différents rôles à chacun pour l’amener tout au long de son existence à faire partie de certaine catégorie au sein du groupe. D’où, l’existence de certains rites d’initiations. Chaque étape entraîne des droits et des devoirs. Pour maintenir le lien social, il était de tradition qu’à la tombé de la nuit, au son du tam-tam, tous les enfants se retrouvaient autour d’un feu allumé au pied d’un baobab situé sur la grande place, pour écouter les contes et les épopées des ancêtres, racontés par les vieux et les sages du village.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> <span style="text-decoration: underline;">Les us et coutumes</span> :</strong></span></span></p> <p class="MsoBodyTextIndent" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Comme chez tous les autres peuples du monde, on rencontre des idées de croyances liés à l’être humain, à la nature, et aux relations que celui-ci entretien avec la nature. Si l’on considère que l’humain croit la plupart du temps en l’existence d’un être supérieur, qu’il symbolise à sa manière, chez le bantou originel, cette symbolisation a pour support l’idéologie animiste.</span></span></p> <p class="MsoBodyTextIndent" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> La religion traditionnelle gère les rapports de l’homme avec Dieu et son environnement au moyen des rituels et des interdits. Chez L’animiste, la nature est régie par des âmes ou esprits, analogues à la volonté humaine : ceux-ci peuvent se trouver dans n’importe quels éléments de la nature (les pierres, le vent, les animaux etc.…). Toutefois, le terme Animisme ne peut à lui seul rendre compte de la diversité des systèmes religieux existant en Afrique. Dans l’Afrique traditionnelle, le monde est animé par une force vitale qui peut prendre différents aspects selon les peuples et les religions. La nature est liée intimement à l’individu par la religion. Les manquements aux rites et la rupture des interdits risquent de perturber gravement l’équilibre interne de la société et de mettre en danger sa place dans l’environnement.</span></span></p> <p class="MsoBodyTextIndent" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">On distingue chez les bantous, deux types de sociétés animistes : Les sociétés animistes monothéistes qui considèrent qu’il n’y a qu’une âme unique qui habite les objets et croient en un dieu créateur unique. Et Les sociétés animistes polythéistes qui croient qu’il y a une âme dans chaque objet et croient en plusieurs dieux. Quelque fois, ils attribuent un pouvoir croissant à certaines divinités au dépend des autres qu’ils considèrent comme inférieures. Les divinités en question deviennent des dieux. Les totems ne jouent pas le rôle d’icône ni d’idole chez ses peuples, mais seulement celui de lien symbolique entre la nature et le sacré. Et l’éloignement de Dieu ou des Dieux est parfois innomé. Pour les mystiques africains, l’émotion religieuse est quantifiée par le sentiment d’éloignement que l’âme éprouve vis à vis de Dieu. Cette distance oblige les peuples bantous, à concevoir des intermédiaires, qui intercèdent par l’intermédiaire des ancêtres pour aider leurs descendants. On distingue donc parmi ses médiateurs humains, les <em>possédés</em> qui établissent le relais avec des génies ou des ancêtres. Les <em>prêtres</em> qui invoquent les puissances surnaturelles pour leur transmettre les demandes et les offrandes des fidèles. Quelque fois les <em>rois</em> et les <em>forgerons</em> peuvent aussi intercéder. </span></span></p> <p class="MsoBodyTextIndent" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> <span style="text-decoration: underline;">Les arts</span> :</strong></span></span></p> <p class="MsoBodyText" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peu importe le type d’art bantou (sculpture, musique ou danse), celui ci est indissociable de la religion. Il est l’expression d’une symbolique ésotérique et traditionnelle. Indépendamment de sa spécialité, l’artiste noir exprime plus l’invisible que le visible dans lequel il puise ses éléments, son œuvre lui sert surtout à capter les énergies sauvages, à les dompter pour les rendre favorables à tout le groupe.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L’Art des peuples bantous est très diverse et varie en fonction des populations et des croyances. On trouve ainsi dans ces populations un artisanat très étendu, à savoir sculpture sur ivoire, sceptres, cannes, armes, porte flèches, appuie nuque, chasse mouches, orfèvrerie, céramique et le perlage. Le style d’art pratiqué est caractéristique de chaque région. Ainsi, dans les régions des hauts plateaux du Cameroun, la sculpture sur bois ne se limite pas seulement à la création de statuettes et de masques, des sièges, des lits, des récipients à usage domestiques, des instruments de musiques, on observe aussi des décorations intervenantes dans l’architecture.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> L’art du perlage est très développé chez certains bantous du Grassland camerounais. Dans la région allant du nord du Gabon jusqu’ en république démocratique du Congo, les sculptures sont blanchies au kaolin ou rougie à la poudre de bois rouge. Cet artisanat a pour thèmes migrations, guerres et différents rites. Ces objets ont pour but de rendre à leurs possesseurs des services multiples : protection contre la mort, divination, prospérité.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> L’utilisation des masques lors des grandes cérémonies en Afrique noire a pour but de permettre à leurs porteurs souvent des danseurs, de cacher leur identité au transcendant et de leur permettre de rentrer en contact sans danger avec celui ci. Quand les danseurs ne sont pas masqués, ils ont le visage et le corps peints et portent des vêtements et des ornements particuliers. Pour être cosmique, le masque doit emprunter ses éléments à la nature et les recomposer en fonction de la culture dont il émane et de l’idée, de l’impression qu’il doit communiquer.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">' L'union dans le troupeau oblige le lion à se coucher avec la faim.''</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sources : <a href="http://www.lesbantous.fr/"><span style="color: #000000;">http://www.lesbantous.fr</span></a> et <a href="http://www.google.fr/"><span style="color: #000000;">www.google.fr</span></a></span></span></p>Les Bantouspublishopenopenles-bantous2012-01-18 13:52:522012-01-18 12:52:520http://www.alicepegie.com/wordpress/wordpress/?p=590post0
6012012-01-17 17:19:422012-01-17 16:19:42Les Bantousinheritopenopen59-revision2012-01-17 17:19:422012-01-17 16:19:4259http://www.alicepegie.com/wordpress/wordpress/?p=600revision0
15012012-01-17 17:22:212012-01-17 16:22:21<p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="béti" src="images/stories/beti/b%C3%A9ti.jpg" height="801" width="600" />Depuis l'époque coloniale, plusieurs observateurs étrangers ou africains ont produit plusieurs œuvres sur le peuple Beti ou Pahouin en général, dont sont tirés les caractéristiques de la société Beti ici résumées.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le peuple Beti se retrouve aujourd'hui en Afrique centrale&nbsp;: Cameroun,&nbsp; Congo,&nbsp; Gabon, &nbsp;Guinée-équatoriale et même en République de Sao Tomé. Les observateurs et autres chercheurs désignent souvent les Beti par différentes appellations&nbsp;: Pahouins, Beti, Fang-Beti-Bulu. Cependant, Beti est le nom le plus couramment utilisé par les membres du groupe eux-mêmes, du côté du Cameroun notamment et principalement dans le centre (Yaoundé et ses environs) et Sud ( Sangmélima, Ebolowa).</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><hr id="system-readmore" /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ce sont des descendants de Bantous. Mais, l'orgine des Beti est complexe à définir. Plus communément admise est l'origine donnée par la tradition orale. Pour les Beti, Nanga serait leur ancêtre d'origine bantou. Il aurait eu des descendants&nbsp;: Kolo Beti, Eton Beti, Mvele Beti, Mvan Beti, Meka Beti Bulu, la seule fille, et Ntémé, le dernier-né. Aujourd'hui, les principales tribus beti sont les Eton, les Ewondo, les Bulu, les Manguissa, les Ntémé et les Mvele, plus proches des Bulu que des Eton et des Ewondo. A l'origine tous les Beti parlaient une langue appeleé ati. Arrivés à Yaoundé, ils se sont dispersés, certains Eton se retrouvaient à Nkometou(une région de Yaoundé).Leurs migrations avaient pour buts de rechercher des terres riches pour l'agriculture, et se rapprocher des régions dans lesquelles il y avait du sel, lequel était devenu beaucoup plus disponible avec la colonisation. C'est dans cette optique que les Eton se dirigèrent notamment vers Douala et là ils se heurtèrent aux Bassas qui vivaient de ce côté du pays. Certaines régions ont des noms de guerre à cause de ces rencontres sanglantes, dont Enongal (coup de fusil).</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Quelques fondements de l'identité culturelle Beti</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Au-delà du territoire habité, les Beti se caractérisent par une unité linguistique, une organisation sociopolitique et des valeurs économiques communes.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le nom d'un individu chez les Beti est très important. Il est composé en premier du patronyme, en second du nom du père (ou de la mère dans les foyers polygames), et enfin du nom d'appel, tiré de la nature . Les Beti ont été de grands guerriers, et en ont gardé un sentiment développé de noblesse. Les beti sont traditionnellemnt sédentaires, agriculteurs, et forgerons.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'unité linguistique</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'ethnie Beti-Bulu-Fang a une langue commune malgré la diversité des dialectes. En effet, les parlers Fang, Beti et Bulu constituent à vrai dire une seule et même langue. Comme l'on fait remarquer tous les linguistes, les différences entre eux tiennent à de légères spécificités de vocabulaire, mais surtout à la prononciation. La syntaxe est pratiquement identique d'un dialecte à l'autre, et les différences grammaticales sont négligeables. De la sorte, l'inter-communication entre Fang, Beti et Bulu n'a jamais posé de problème. Cette unité linguistique montre que les peuples Beti peuvent avoir en commun une vision du monde.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'organisation politique et sociale.</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La structure sociale et politique chez les Fang ou Beti, se caractérise par trois éléments essentiels&nbsp;: la liberté, la parenté et l'absence d'une organisation politique centralisée.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les instruments de musique, traditionnellement, sont le tam-tam, le balafon, le Mvet. Les beti ne ont été de grands forgerons, ils ne travaillaient donc pas beaucoup le bois.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">&nbsp;<a class="mb" href="http://s2.e-monsite.com/2009/11/19/09/resize_550_550/rotate_0//balafon.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" alt="beti2" src="images/stories/beti/beti2.jpg" height="393" width="600" /></a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le rite de la purification, appelé tsogo chez les Eton, Tso chez les Ewondo, et Esobino chez les Fang que l'on pratique publiquement pour se laver d'une faute morale, afin d' éloigner de soi, la maladie ou la punition des ancêtres.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le mariage selon la tradition est très codifiée. Aujourd'hui, il est pratiqué avant le mariage civil et le mariage religieux. L'union n'est pas valide tant que le mariage coutumier n'a pas été fait. Après maintes discussions trainant de long en large, et visant à éprouver la patience du futur marié le marié se verra contraint de subir des épreuves prouvant sa maturité, son intelligence, son courage, tel manger une papaye verte. De même en sa faveur joue l'éloquence de la délégation familiale qui l'accompagne, afin d'amadouer la famille de la mariée. Le troc était institutionnalisé dans le cadre des alliances matrimoniales qui étaient l'occasion d'échanges de biens. Ces échanges duraient toute la vie, et ils étaient effectués à l'occasion de mariages exogamiques.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Une autre coutume, appelée Isani chez les Eton, est celle d'une danse spéciale, pratiquée uniquement par les petits-enfants et arrières petits-enfants d'un patriarche le jour de son décès.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Avant l'arrivée des Européens, des croyances animistes existaient en un dieu dit Ntodobe. Les religions chrétiennes arrivent en fin du XIXe&nbsp;siècle et les colons contribuent à la fin de ces croyances.. L'expansion de l'Islam s'étant arrêtée au Nord du Cameroun, les missionnaires européens ayant précédé ou accompagnant les colons ont pu christianiser les Béti. Les Béti sont donc actuellement catholiques ou protestants.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La liberté&nbsp;:</strong> Chez les Beti tous les Hommes sont égaux. &nbsp;Le mot «Beti» est traduit en français par les seigneurs, les nobles, ou les hommes libres et selon Henri Ngoa, "les Beti sont des hommes «&nbsp;libres&nbsp;» et capables de se défendre par leurs propres moyens". L'espace Beti est donc un espace de liberté à grande tendance égalitaire où les groupes sociaux sont établis en fonction de la parenté.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La parenté&nbsp;:</strong> Les seules structures que l'on trouve en pays Beti sont la famille étendue, le lignage et la tribu. Ces trois structures correspondent respectivement au ndabot, au mvog (chez les Beti) ou esa (chez les Fang) et à l'ayon. Toutefois, le Mvog reste l'unité fondamentale de toute l'organisation sociale. La structure sociale dominante de la société Beti est donc une structure par patri-lignage emboîté.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En effet, selon Laburthe-Tolra, dans son acception sociale, le mot «mvog» «&nbsp;désignera l'ensemble des descendants de l'homme fondateur ou de la femme fondatrice...Le mvog pourra alors se traduire par «lignage», à condition qu'on comprenne bien qu'il s'agit toujours de patrilignage, même si l'éponyme est une femme. Tout géniteur fonde de ce fait un lignage, un mvog, ou si l'on préfère, tout segment de lignage est le point de départ d'un nouveau mvog qui s'emboîte dans le précédent, chaque enfant appartenant à la fois au mvog de son père, à celui de son grand-père paternel, à celui de son arrière grand-père et ainsi de suite, en ligne agnatique.&nbsp;».</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">C'est donc le «mvog&nbsp;» ou «l'esa&nbsp;», structure sociale fondamentale de Beti, qui joue le rôle essentiel dans les règles de mariage et de solidarité sociale. C'est à travers le Mvog que s'organise la vie politico-militaire, économique et religieuse.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="beti3" src="images/stories/beti/beti3.jpg" height="268" width="373" /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'absence d'une organisation politique centralisée</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> </strong>Chez les Beti, la prééminence est «basée sur la filiation&nbsp;», et déterminée par la séniorité. La préséance est donc reconnue à l'aînesse (Ntol). Mais bien que la séniorité crée l'autorité d'une manière automatique, cette dernière est limitée, souvent menacée par le principe qui veut que «le plus capable» soit le plus influent. Et souvent aussi, l'autorité dont bénéficie l'aîné paraît soumise à un contrôle efficace. Ainsi, ce n'est que lorsque son équité et l'efficacité de son pouvoir d'exécution étaient reconnus&nbsp; que le Nyàmoro (l'ainé) devenait chef dans sa zone d'influence. Au cas où le pouvoir n'est pas basé sur la séniorité, ou alors si l'aîné est incapable de gouverner, d'autres éléments peuvent conférer le statut de leader dans la société Beti à tendance égalitaire.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> D'abord pour s'imposer comme Chef, le physique était nécessaire par le passé, mais celui-ci n'était toutefois ni obligatoire ni suffisant;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Ensuite le don de la parole et l'éloquence sont d'autres qualités que doit réunir un individu pour prétendre au leadership en pays Beti. L'art de «gouverner&nbsp;» est pour l'essentiel le maniement du langage, car le don oratoire permet sans aucun doute de posséder son auditoire.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> À ces premières caractéristiques du pouvoir vont s'ajouter deux autres importantes à savoir&nbsp;: le courage (ayog) et la générosité (akàb). La générosité du chef de lignage chez les Beti apparaît sans aucun doute la qualité la plus importante.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ainsi, le chef est, chez les anciens Beti, celui dont la communauté attendait les plus éminents services. En effet, le chef chez les Beti doit se montrer akàb&nbsp;; mot à mot «&nbsp;Partageur&nbsp;» de (Kàb&nbsp;: partager), qualité souvent associée au mot mgba&nbsp;; (sociable, affable). La richesse qu'il a acquise, il doit la redistribuer, et d'abord à ses descendants&nbsp;; mais aussi, bien qu'il ne soit lié là par aucune obligation définie, on s'attend à ce qu'il fasse profiter ses pères, ses frères, ses voisins, voire l'étranger de passage à qui il donnera une large hospitalité. Il est le premier du pays, celui chez qui on est sûr de trouver toujours à manger, et vont profiter à plus forte raison de sa richesse ceux envers qui il a des devoirs précis&nbsp;: beaux-parents et neveux par exemple.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dans ces circonstances, la société Beti ne peut que valoriser à l'extrême l'homme capable de réunir en lui toutes ces qualités et d'influencer suffisamment les innombrables chefs indépendants pour les orienter vers les objectifs communs. Le pouvoir chez les Beti est donc d'abord personnalisé. Le chef dans cette société doit être un «mfan mot», «vrai homme», un ntomba «&nbsp;homme distingué&nbsp;», et un nkukuma «&nbsp;homme vraiment riche&nbsp;».</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> La société Beti, par ce jeu de force plus ou moins antagoniste, variable en intensité selon les conjonctures, est préservée à l'encontre de toute concentration excessive de pouvoir&nbsp;; cela explique qu'elle n'ait pas permis, malgré son caractère de société militaire conquérante, l'apparition d'une féodalité au moins rudimentaire. Le pouvoir, rigoureusement contrôlé ne s'est organisé qu'au niveau des unités réduites -village ou groupes de villages parents ou voisins».</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Au regard des éléments ci-dessus présentés, on peut dire que le leadership dans le contexte Beti-Fang peut s'accommoder du modèle paternaliste du "père protecteur" où le pouvoir est au service de ceux sur qui il s'exerce : pouvoir altéro-centré et où il y a recherche d'un échange équilibré.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La rationalité économique chez les Beti</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les aspects principaux de la rationalité économique chez les Beti sont :</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La considération de la richesse : la richesse en pays Beti n'est pas considérée comme un but mais comme un moyen d'exprimer un pouvoir direct ou indirect (prestige) sur les hommes»;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'ignorance de la notion de marché&nbsp;: à cet effet il y avait chez les anciens Beti une certaine ignorance des marchés. Les mots Beti qui en sont des équivalents (par exemple «&nbsp;Bilabi&nbsp;») signifient «visite ostentatoire», «échange», etc. et le plus courant est le pidgin «&nbsp;mâkit&nbsp;» (market);</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La nature sociale des échanges&nbsp;: les échanges dans cette société dépendent des lois «anéconomiques», de nature purement sociale, et plus exactement politique, en relation avec l'acquisition et la conservation du pouvoir. La richesse qui fait le chef n'est pas pour lui, mais pour le groupe;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le souci de l'apparence&nbsp;: la présence du «grand riche» exprime donc la réussite totale du groupe qu'il incarne, et qui se reconnaît en lui, dans une «économie de parade» dont les spectateurs se satisfont par participation;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les relations d'échange personnalisées&nbsp;: la relation d'échange reste toujours profondément «personnalisée» en pays Beti, d'où la difficulté d'y instaurer une vie économique selon le libéralisme moderne. Ici, les choses économiques sont fortement liées à la personne; un échec est donc une mise en question de tout l'être. Préférer les légumes vendus ici à ceux qui sont vendus là, c'est préférer cette vendeuse-ci à celle-là ; c'est porter sur celle-là un jugement péjoratif, manquer de confiance en elle, peut-être la soupçonner d'avoir ensorcelé ses produits... Il n'y a pas de relation simplement économique, pas plus qu'il n'y a de relations simplement familiales ou religieuses : toutes les relations sont totales...</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Gastronomie</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Vers 1917, le cacao, le café, le manioc et le maïs sont introduits par les colons et cela modifie profondément l'organisation du travail tout comme l'écosystème, puisque les hommes qui se consacraient à la culture de l'igname devaient laisser cela pour les cultures de rente aux fins d'impôt de colonisation. Alors qu'avant, cueillette et ramassage, agriculture sur brûlis, jachère, piégeage permettaient d'assurer la subsistance, désormais, cacao et café occupèrent les hommes, jusqu'à présent. Dans le cadre de l'économie de marché, cela permet de payer un certain nombre de choses nécessaires dans la vie quotidienne. La femme et la terre sont liées dans la culture beti. Aussi, maïs et arachide sont cultivés par les femmes. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La poterie est aussi l'apanage des femmes, de même que la pêche à l'écope appelée alog. Dans le cadre de l'alog, elles allaient chercher du poisson en saison sèche alors que les hommes pratiquaient du piégeage. Avec l'arrivée de la colonisation, l'arme à feu est introduite et elle vient supplanter l'arc et la flèche. Au niveau des échanges, alors qu'auparavant, c'était le troc qui permettait de se pourvoir en denrées et objets non disponibles, avec la colonisation qui a banni le bilabi, le marché est institué. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le plat typique des Beti est l'Okok généralement accompagné de tubercules. L'okok est fait à base de feuilles Gnetum decoupées très finement, bouillies avec du beurre de cacahuètes et du jus de noix de palme. Un autre plat typique est le Kpem, fait à base de feuille de manioc, de beurre de cacahuètes. Une autre manière de consommer le kpem est de remplacer le beurre de cacahuètes par du jus de noix de palme, dans ce cas, on dit Kpem Isouk. Un autre plat typique appelé Sangha chez les Ewondo et Sangla chez les Eton est préparé à base d'épinards, de maïs et de jus de noix de palme.Le manioc constitue l'aliment de base de la gastronomie beti. Il est consommé sous toutes ses formes: feuilles, tubercule bouilli, farine pour en faire des beignets ou du couscous. Les noix de palme, les cacahuètes font partie de l'alimentation de base. Traditionnellement, on mange peu de viande, et encore moins du poisson, étant donné la situation du pays beti à l'intérieur des terres. La banane plantain, le macabo(plante de la famille du manioc dont on consomme les jeunes feuilles, et les tubercules), les ignames, le mais, le safou, des comi (petites noix rondes ressemblant aux amandes), les goyaves, papayes, avocats ainsi que énormément d'autres plantes et fruits font partie de l'alimentation des beti. Bien sur, elle a été enrichie par les plantes importées d'Amérique et par les contacts entre ethnies et tribus voisines. Et plusieurs plats tendent à disparaitre. On trouve comme boisson, le vin de palme, et le vin de bambou, ainsi que l'Odontol une liqueur fabriquée à partir de mais, et de vin de palme. Toutes ces boissons ne sont évidemment pas spécifiques aux Beti, ce sont simplement des produits du terroir.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Sources</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://csf-beti.org/beti.php">http://csf-beti.org/beti.php</a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://jedafcablog.solidairesdumonde.org/archive/2009/06/01/le-peuple-beti-du-cameroun.html">http://jedafcablog.solidairesdumonde.org/archive/2009/06/01/le-peuple-beti-du-cameroun.html</a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Apprendre plus sur les Béti</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.betibenanga.com/">www.betibenanga.com</a></span></span></p>Le Peuple Bétiinheritopenopen63-revision-22012-01-17 17:22:212012-01-17 16:22:2163http://www.alicepegie.com/wordpress/wordpress/?p=1500revision0
6112012-01-17 17:19:192012-01-17 16:19:19<p class="MsoNormal" style="text-align: justify; line-height: normal;"><a class="mb" href="http://s1.e-monsite.com/2009/04/10/12/83324638cameroun-184-0-gif.gif" title="cameroun-184-0.gif"><img src="images/stories/kmer%20flag.jpg" border="0" alt="kmer flag" title="cameroun-184-0.gif" width="271" height="186" style="float: left;" /></a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><a class="mb" href="http://s1.e-monsite.com/2009/05/30/01/99453272710px-cameroon-boundary-changes-png.png" title="710px-Cameroon_boundary_changes.PNG">Les premiers habitants du </a><a href="http://fr.wikipedia.org/wiki/Cameroun" title="Cameroun"><span style="text-decoration: none;">Cameroun</span></a> furent probablement les <a href="http://fr.wikipedia.org/wiki/Baka_%28peuple%29" title="Baka (peuple)"><span style="text-decoration: none;">Baka</span></a>, également appelés <a href="http://fr.wikipedia.org/wiki/Pygm%C3%A9e" title="Pygmée"><span style="text-decoration: none;">pygmées</span></a>. Ils habitent toujours les forêts des provinces du sud et de l'est.</span></span></span></p> <ul type="disc"> <ul type="disc"> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">A la recherche de la route des Indes, les portugais arrivent sur les côtes en <a href="http://fr.wikipedia.org/wiki/1472" title="1472"><span style="text-decoration: none; color: black;">1472</span></a>. Étonné par le nombre de crevettes, le navigateur <a href="http://fr.wikipedia.org/wiki/Fernando_P%C3%B3o" title="Fernando Póo"><span style="text-decoration: none; color: black;">Fernando Póo</span></a> baptise le pays « Rio dos Camaroes» ce qui veux dire "rivière des crevettes" (l'estuaire du Wouri). Vers 1532 la traite des Noirs se met en place notamment grâce à la collaboration des Doualas. Les européens n'y fonderont cependant pas d´établissements permanents comme Luanda ou Saint-Louis à cause des côtes marécageuses, difficiles d'accès et infestées de <a href="http://fr.wikipedia.org/wiki/Malaria" title="Malaria"><span style="text-decoration: none; color: black;">malaria</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1827" title="1827"><span style="text-decoration: none; color: black;">1827</span></a> : exploration britancamerounaise et du <a href="http://fr.wikipedia.org/wiki/Biafra" title="Biafra"><span style="text-decoration: none; color: black;">Biafra</span></a></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1845" title="1845"><span style="text-decoration: none; color: black;">1845</span></a> : début de l'évangélisation par lnique de la côte a <em>Baptist Missionary Society</em> de Londres</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1868" title="1868"><span style="text-decoration: none; color: black;">1868</span></a> : installation de négociants allemands</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1884" title="1884"><span style="text-decoration: none; color: black;">1884</span></a> : les Doualas signent un traité d'assistance avec l'Allemagne, celle-ci proclame sa souveraineté sur le <em>Kamerun</em></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La <a href="http://fr.wikipedia.org/wiki/Colonisation" title="Colonisation"><span style="text-decoration: none; color: black;">colonisation</span></a> <a href="http://fr.wikipedia.org/wiki/Allemagne" title="Allemagne"><span style="text-decoration: none; color: black;">allemande</span></a> commença en <a href="http://fr.wikipedia.org/wiki/1884" title="1884"><span style="text-decoration: none; color: black;">1884</span></a> avec la signature en juillet d'un traité entre le roi de <a href="http://fr.wikipedia.org/w/index.php?title=Royaume_de_Bell&amp;action=edit&amp;redlink=1" title="Royaume de Bell (page inexistante)"><span style="text-decoration: none; color: black;">Bell</span></a> et <a href="http://fr.wikipedia.org/wiki/Gustav_Nachtigal" title="Gustav Nachtigal"><span style="text-decoration: none; color: black;">Gustav Nachtigal</span></a>. Le protectorat s'étendit du <a href="http://fr.wikipedia.org/wiki/Lac_Tchad" title="Lac Tchad"><span style="text-decoration: none; color: black;">lac Tchad</span></a> au nord aux rives de la <a href="http://fr.wikipedia.org/wiki/Sangha_%28rivi%C3%A8re%29" title="Sangha (rivière)"><span style="text-decoration: none; color: black;">Sangha</span></a> au sud-est. La ville de <a href="http://fr.wikipedia.org/wiki/Bu%C3%A9a" title="Buéa"><span style="text-decoration: none; color: black;">Buéa</span></a> au pied du <a href="http://fr.wikipedia.org/wiki/Mont_Cameroun" title="Mont Cameroun"><span style="text-decoration: none; color: black;">mont Cameroun</span></a> en devient la capitale avant d'être destituée au profit de <a href="http://fr.wikipedia.org/wiki/Douala_%28ville%29" title="Douala (ville)"><span style="text-decoration: none; color: black;">Douala</span></a> en <a href="http://fr.wikipedia.org/wiki/1908" title="1908"><span style="text-decoration: none; color: black;">1908</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a href="http://fr.wikipedia.org/wiki/1911" title="1911"><span style="text-decoration: none; color: black;">1911</span></a>, un accord franco-allemand étendit les possessions allemandes à certains territoires de l'<a href="http://fr.wikipedia.org/wiki/Afrique_%C3%A9quatoriale_fran%C3%A7aise" title="Afrique équatoriale française"><span style="text-decoration: none; color: black;">Afrique équatoriale française</span></a>. Après la <a href="http://fr.wikipedia.org/wiki/Premi%C3%A8re_Guerre_mondiale" title="Première Guerre mondiale"><span style="text-decoration: none; color: black;">Première Guerre mondiale</span></a>, pendant laquelle le Cameroun avait été conquis par les forces franco-britanniques, la colonie allemande fut partagée en deux territoires confiés à la <a href="http://fr.wikipedia.org/wiki/France" title="France"><span style="text-decoration: none; color: black;">France</span></a> (pour les quatre cinquièmes) et le restant au <a href="http://fr.wikipedia.org/wiki/Royaume-Uni" title="Royaume-Uni"><span style="text-decoration: none; color: black;">Royaume-Uni</span></a> par des mandats de la <a href="http://fr.wikipedia.org/wiki/Soci%C3%A9t%C3%A9_des_Nations" title="Société des Nations"><span style="text-decoration: none; color: black;">Société des Nations</span></a> (SDN) en <a href="http://fr.wikipedia.org/wiki/1922" title="1922"><span style="text-decoration: none; color: black;">1922</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le Cameroun français se rallia à la <a href="http://fr.wikipedia.org/wiki/France_libre" title="France libre"><span style="text-decoration: none; color: black;">France libre</span></a> en août <a href="http://fr.wikipedia.org/wiki/1940" title="1940"><span style="text-decoration: none; color: black;">1940</span></a></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1945" title="1945"><span style="text-decoration: none; color: black;">1945</span></a>, il devint un pays sous tutelle de l'<a href="http://fr.wikipedia.org/wiki/Organisation_des_Nations_unies" title="Organisation des Nations unies"><span style="text-decoration: none; color: black;">ONU</span></a>, qui remplaçait la SDN. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1946" title="1946"><span style="text-decoration: none; color: black;">1946</span></a> un « territoire associé » de l'<a href="http://fr.wikipedia.org/wiki/Union_fran%C3%A7aise" title="Union française"><span style="text-decoration: none; color: black;">Union française</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a href="http://fr.wikipedia.org/wiki/1948" title="1948"><span style="text-decoration: none; color: black;">1948</span></a>, <a href="http://fr.wikipedia.org/wiki/Ruben_Um_Nyobe" title="Ruben Um Nyobe"><span style="text-decoration: none; color: black;">Ruben Um Nyobe</span></a> fonda l'<a href="http://fr.wikipedia.org/wiki/Union_des_populations_du_Cameroun" title="Union des populations du Cameroun"><span style="text-decoration: none; color: black;">Union des populations du Cameroun</span></a> (UPC), un mouvement nationaliste. L'UPC fut interdite après les <a href="http://fr.wikipedia.org/w/index.php?title=%C3%89meutes_de_Douala&amp;action=edit&amp;redlink=1" title="Émeutes de Douala (page inexistante)"><span style="text-decoration: none; color: black;">émeutes de Douala</span></a> en mai <a href="http://fr.wikipedia.org/wiki/1955" title="1955"><span style="text-decoration: none; color: black;">1955</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'Assemblée territoriale fut élue au <a href="http://fr.wikipedia.org/wiki/Suffrage_universel" title="Suffrage universel"><span style="text-decoration: none; color: black;">suffrage universel</span></a> et avec un collège unique pour la première fois en décembre <a href="http://fr.wikipedia.org/wiki/1956" title="1956"><span style="text-decoration: none; color: black;">1956</span></a>, et <a href="http://fr.wikipedia.org/w/index.php?title=Andr%C3%A9_Marie_M%27Bida&amp;action=edit&amp;redlink=1" title="André Marie M'Bida (page inexistante)"><span style="text-decoration: none; color: black;">M'Bida</span></a> forma le premier gouvernement autonome en mai <a href="http://fr.wikipedia.org/wiki/1957" title="1957"><span style="text-decoration: none; color: black;">1957</span></a> ; il fut remplacé par <a href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo" title="Ahmadou Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> en février <a href="http://fr.wikipedia.org/wiki/1958" title="1958"><span style="text-decoration: none; color: black;">1958</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le Cameroun français acquit son <a href="http://fr.wikipedia.org/wiki/Ind%C3%A9pendance" title="Indépendance"><span style="text-decoration: none; color: black;">indépendance</span></a> le 1<sup>er</sup> janvier <a href="http://fr.wikipedia.org/wiki/1960" title="1960"><span style="text-decoration: none; color: black;">1960</span></a> et devint la République du Cameroun. L'année suivante, la colonie britannique se divisa en deux après un <a href="http://fr.wikipedia.org/wiki/R%C3%A9f%C3%A9rendum" title="Référendum"><span style="text-decoration: none; color: black;">référendum</span></a> d'autodétermination. Le Nord, principalement <a href="http://fr.wikipedia.org/wiki/Musulman" title="Musulman"><span style="text-decoration: none; color: black;">musulman</span></a>, choisit d'intégrer le <a href="http://fr.wikipedia.org/wiki/Nigeria" title="Nigeria"><span style="text-decoration: none; color: black;">Nigeria</span></a>. Quant au Sud, principalement <a href="http://fr.wikipedia.org/wiki/Christianisme" title="Christianisme"><span style="text-decoration: none; color: black;">chrétien</span></a>, il choisit de rejoindre la République du Cameroun pour former la République fédérale du Cameroun. Le premier président du Cameroun fut <a href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo" title="Ahmadou Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> – <a href="http://fr.wikipedia.org/wiki/Peuls" title="Peuls"><span style="text-decoration: none; color: black;">Peul</span></a> musulman du Nord – qui était Premier ministre depuis <a href="http://fr.wikipedia.org/wiki/1958" title="1958"><span style="text-decoration: none; color: black;">1958</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Lors de son accession à l'indépendance, en 1960, le Cameroun s'était doté d'une Constitution à vocation pluraliste qui prévoyait le multipartisme. Malgré la popularité de l'U.P.C. dans le pays, sa branche légale n'obtint que 8 sièges dans la nouvelle Assemblée nationale et resta soumise aux tracasseries policières du gouvernement d'Ahidjo, le nouveau président. Celui-ci finit, six ans plus tard, par instaurer un régime de parti unique dans l'ex-Cameroun français, le multipartisme restant en vigueur dans l'ex-Cameroun anglais jusqu'en <a href="http://fr.wikipedia.org/wiki/1972" title="1972"><span style="text-decoration: none; color: black;">1972</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a href="http://fr.wikipedia.org/wiki/1972" title="1972"><span style="text-decoration: none; color: black;">1972</span></a>, la république fédérale fut remplacée par un État unitaire. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo" title="Ahmadou Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> remporta les élections de <a href="http://fr.wikipedia.org/wiki/1975" title="1975"><span style="text-decoration: none; color: black;">1975</span></a> et <a href="http://fr.wikipedia.org/wiki/1980" title="1980"><span style="text-decoration: none; color: black;">1980</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ce n'est qu'en novembre <a href="http://fr.wikipedia.org/wiki/1982" title="1982"><span style="text-decoration: none; color: black;">1982</span></a> qu'il démissionna pour « raisons de santé » (coup d'État) et fut remplacé par son ancien Premier ministre, <a href="http://fr.wikipedia.org/wiki/Paul_Biya" title="Paul Biya"><span style="text-decoration: none; color: black;">Paul Biya</span></a> – chrétien du Sud. Ahidjo regretta son choix ultérieurement, et, à la suite d'un <a href="http://fr.wikipedia.org/wiki/Coup_d%27%C3%89tat" title="Coup d'État"><span style="text-decoration: none; color: black;">coup d'État</span></a> manqué de la part de ses partisans, il fut contraint à l'exil en <a href="http://fr.wikipedia.org/wiki/1984" title="1984"><span style="text-decoration: none; color: black;">1984</span></a>.</span></span></li> </ul> </ul> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Source wikipedia</span></span></span></p> <hr id="system-readmore" /> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s1.e-monsite.com/2009/05/30/01/99453272710px-cameroon-boundary-changes-png.png" title="710px-Cameroon_boundary_changes.PNG"><img src="http://s1.e-monsite.com/2009/05/30/01/mini2-99453272710px-cameroon-boundary-changes-png.png" border="0" alt="" title="710px-Cameroon_boundary_changes.PNG" width="297" height="250" /></a></span><a class="mb" href="http://s1.e-monsite.com/2009/04/10/11/82518338atlas-cameroun-png.png" title="atlas_cameroun.png"><img src="http://s1.e-monsite.com/2009/04/10/11/mini2-82518338atlas-cameroun-png.png" border="0" alt="" title="atlas_cameroun.png" /></a></span></p>Un petit rappel de l'histoire du Camerouninheritopenopen57-revision-22012-01-17 17:19:192012-01-17 16:19:1957http://www.alicepegie.com/wordpress/wordpress/?p=610revision0
6212012-01-17 16:48:392012-01-17 15:48:39<span class="art-postdateicon">Date de publication</span> | <a href="/ma-cuisine/desserts/111-gateaux/3059-buche-de-noel-a-lananas?tmpl=component&amp;print=1&amp;layout=default&amp;page=" title="Imprimer" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;" rel="nofollow"><img src="/templates/maniguettebis1/images/system/printButton.png" alt="Imprimer"></a> | <a href="/component/mailto/?tmpl=component&amp;template=maniguettebis1&amp;link=1aba85bd5eca38f53d4e877962cb98f8384753b9" title="E-mail" onclick="window.open(this.href,'win2','width=400,height=350,menubar=yes,resizable=yes'); return false;"><img src="/templates/maniguettebis1/images/system/emailButton.png" alt="E-mail"></a> | Affichages : 188 </div> <div class="art-postcontent"> <div class="art-article"><p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="buche ananas" src="/images/stories/buche%20ananas/1.JPG" height="273" width="600">J’ai commencé à m’exercer à faire des buches maison l’année dernière. Le résultat était plutôt concluant alors j’ai décidé de réitérer cette année avec cette buche légère et fruitée. </span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Ingrédients pour 2 personne(s) </b></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le biscuit</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Farine</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 œuf</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>La crème</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de sel</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus de mangue</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1/2cc de jus de citron</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">36g de beurre coupé en morceaux</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le sirop</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125 ml de jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">40g de Sucre</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125ml de Jus de mangu</span></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Le glaçage</span></strong></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de chocolat blanc à pâtisser Nestlé</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de crème entière liquide</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre glace</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de colorant alimentaire en poudre orange (évitez les colorants liquides avec le chocolat)</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Préparation de la crème :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Dans un saladier résistant à la chaleur, mettre les œufs, le sucre, et le sel.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ajoutez progressivement les jus. Poser ensuite le récipient dans un bain-marie et cuire lentement à feu doux jusqu'à épaississement env. 8mn.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="2" src="/images/stories/buche%20ananas/2.JPG" height="450" width="600"></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Retirez du feu et continuez de fouetter pour abaisser la température env 2-3mn.</span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Lorsqu'il est possible de toucher les bords du récipient sans se brûler, ajouter progressivement le beurre froid coupé en petits cubes. <br></span></li> </ul> <p><img style="display: block; margin-left: auto; margin-right: auto;" alt="3" src="/images/stories/buche%20ananas/3.JPG" height="450" width="600"><br><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Une fois le beurre incorporé, couvrez le saladier et réservez au frais pendant au moins 1 h.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="4" src="/images/stories/buche%20ananas/4.JPG" height="450" width="600"><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <b>Préparation du sirop :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Mélangez les jus d’ananas et de mangue et le sucre, puis porter à ébullition et stopper le feu. Laissez ensuite refroidir à température ambiante.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="5" src="/images/stories/buche%20ananas/5.JPG" height="450" width="600"><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <b>Cuisson du biscuit :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Préparez tous les ingrédients. Mettez le sucre et les œufs dans la cuve de votre robot.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Fouettez l’ensemble pendant 10mn à vitesse maximale, la préparation doit doubler de volume.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Incorporer la farine préalablement tamisée délicatement à l'aide d'une maryse ou à l'écumoire en effectuant un mouvement de rotation.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="8" src="/images/stories/buche%20ananas/8.JPG" height="263" width="350"><img alt="9" src="/images/stories/buche%20ananas/9.JPG" height="263" width="350"><br></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Versez sur une sur plaque recouverte de papier sulfurisé.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="11" src="/images/stories/buche%20ananas/11.JPG" height="263" width="350"><img alt="12" src="/images/stories/buche%20ananas/12.JPG" height="263" width="350"><br></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Enfourner à four chaud, 180°C pour 8-10mn.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="13" src="/images/stories/buche%20ananas/13.JPG" height="450" width="600"><br></span></p> <p><b><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation du glaçage</span></b></p> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Faites fondre au bain-marie le chocolat, la crème et le sucre glace.</span></li> </ul> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="6" src="/images/stories/buche%20ananas/6.JPG" height="450" width="600"></span><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mélangez bien la préparation de façon à avoir une préparation homogène</span></p> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="7" src="/images/stories/buche%20ananas/7.JPG" height="450" width="600"></span></p> <p>&nbsp;<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le montage : </b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Décollez le biscuit du tapis et en couper les bords pour l'égaliser, puis le poser sur un papier sulfurisé. A l'aide d'un pinceau, imbiber généreusement le biscuit de sirop d'ananas. Étaler ensuite la crème au citron dessus puis rouler le tout en escargot.</span></li> </ul> <p><img alt="SAM 1444" src="/images/stories/buche%20ananas/SAM_1444.JPG" height="263" width="350"><img alt="14" src="/images/stories/buche%20ananas/14.JPG" height="265" width="277"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span></p> <p>&nbsp;</p> <p>&nbsp;</p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Glacez votre buche soit à l’aide d’une spatule soit à en versant directement le glacage diectement sur le biscuit<br></span></span></p> </span></li> </ul> <p>&nbsp;</p> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span> <img style="display: block; margin-left: auto; margin-right: auto;" alt="15" src="/images/stories/buche%20ananas/15.JPG" height="283" width="600"></span></p> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="16" src="/images/stories/buche%20ananas/16.JPG" height="457" width="600"></span></p> <p>&nbsp;</p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Laissez la bûche reposer au réfrigérateur pendant 4 h.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="17" src="/images/stories/buche%20ananas/17.JPG" height="552" width="600"></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">décorez avec des copeaux de chocolat blanc</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="18" src="/images/stories/buche%20ananas/18.JPG" height="393" width="600"></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">et de quelque sujets en chocolat au lait</span> </span><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="19" src="/images/stories/buche%20ananas/19.JPG" height="450" width="600"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">sortez votre buche 15mn avant de servir </span><br></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="20" src="/images/stories/buche%20ananas/20.JPG" height="532" width="600">Bûche de Noël à l'Ananasinheritopenopen24-revision-42012-01-17 16:48:392012-01-17 15:48:3924http://www.alicepegie.com/wordpress/wordpress/?p=620revision0
6312010-01-14 17:21:412010-01-14 16:21:41<span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/beti/b%C3%A9ti.jpg" alt="béti" width="600" height="801" />Depuis l'époque coloniale, plusieurs observateurs étrangers ou africains ont produit plusieurs œuvres sur le peuple Beti ou Pahouin en général, dont sont tirés les caractéristiques de la société Beti ici résumées.</span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le peuple Beti se retrouve aujourd'hui en Afrique centrale : Cameroun,  Congo,  Gabon,  Guinée-équatoriale et même en République de Sao Tomé. Les observateurs et autres chercheurs désignent souvent les Beti par différentes appellations : Pahouins, Beti, Fang-Beti-Bulu. Cependant, Beti est le nom le plus couramment utilisé par les membres du groupe eux-mêmes, du côté du Cameroun notamment et principalement dans le centre (Yaoundé et ses environs) et Sud ( Sangmélima, Ebolowa).<!--more--></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ce sont des descendants de Bantous. Mais, l'orgine des Beti est complexe à définir. Plus communément admise est l'origine donnée par la tradition orale. Pour les Beti, Nanga serait leur ancêtre d'origine bantou. Il aurait eu des descendants : Kolo Beti, Eton Beti, Mvele Beti, Mvan Beti, Meka Beti Bulu, la seule fille, et Ntémé, le dernier-né. Aujourd'hui, les principales tribus beti sont les Eton, les Ewondo, les Bulu, les Manguissa, les Ntémé et les Mvele, plus proches des Bulu que des Eton et des Ewondo. A l'origine tous les Beti parlaient une langue appeleé ati. Arrivés à Yaoundé, ils se sont dispersés, certains Eton se retrouvaient à Nkometou(une région de Yaoundé).Leurs migrations avaient pour buts de rechercher des terres riches pour l'agriculture, et se rapprocher des régions dans lesquelles il y avait du sel, lequel était devenu beaucoup plus disponible avec la colonisation. C'est dans cette optique que les Eton se dirigèrent notamment vers Douala et là ils se heurtèrent aux Bassas qui vivaient de ce côté du pays. Certaines régions ont des noms de guerre à cause de ces rencontres sanglantes, dont Enongal (coup de fusil).</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Quelques fondements de l'identité culturelle Beti</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Au-delà du territoire habité, les Beti se caractérisent par une unité linguistique, une organisation sociopolitique et des valeurs économiques communes.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le nom d'un individu chez les Beti est très important. Il est composé en premier du patronyme, en second du nom du père (ou de la mère dans les foyers polygames), et enfin du nom d'appel, tiré de la nature . Les Beti ont été de grands guerriers, et en ont gardé un sentiment développé de noblesse. Les beti sont traditionnellemnt sédentaires, agriculteurs, et forgerons.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'unité linguistique</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'ethnie Beti-Bulu-Fang a une langue commune malgré la diversité des dialectes. En effet, les parlers Fang, Beti et Bulu constituent à vrai dire une seule et même langue. Comme l'on fait remarquer tous les linguistes, les différences entre eux tiennent à de légères spécificités de vocabulaire, mais surtout à la prononciation. La syntaxe est pratiquement identique d'un dialecte à l'autre, et les différences grammaticales sont négligeables. De la sorte, l'inter-communication entre Fang, Beti et Bulu n'a jamais posé de problème. Cette unité linguistique montre que les peuples Beti peuvent avoir en commun une vision du monde.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'organisation politique et sociale.</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La structure sociale et politique chez les Fang ou Beti, se caractérise par trois éléments essentiels : la liberté, la parenté et l'absence d'une organisation politique centralisée.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les instruments de musique, traditionnellement, sont le tam-tam, le balafon, le Mvet. Les beti ne ont été de grands forgerons, ils ne travaillaient donc pas beaucoup le bois.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <a class="mb" href="http://s2.e-monsite.com/2009/11/19/09/resize_550_550/rotate_0//balafon.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/beti/beti2.jpg" alt="beti2" width="600" height="393" /></a></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le rite de la purification, appelé tsogo chez les Eton, Tso chez les Ewondo, et Esobino chez les Fang que l'on pratique publiquement pour se laver d'une faute morale, afin d' éloigner de soi, la maladie ou la punition des ancêtres.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le mariage selon la tradition est très codifiée. Aujourd'hui, il est pratiqué avant le mariage civil et le mariage religieux. L'union n'est pas valide tant que le mariage coutumier n'a pas été fait. Après maintes discussions trainant de long en large, et visant à éprouver la patience du futur marié le marié se verra contraint de subir des épreuves prouvant sa maturité, son intelligence, son courage, tel manger une papaye verte. De même en sa faveur joue l'éloquence de la délégation familiale qui l'accompagne, afin d'amadouer la famille de la mariée. Le troc était institutionnalisé dans le cadre des alliances matrimoniales qui étaient l'occasion d'échanges de biens. Ces échanges duraient toute la vie, et ils étaient effectués à l'occasion de mariages exogamiques.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Une autre coutume, appelée Isani chez les Eton, est celle d'une danse spéciale, pratiquée uniquement par les petits-enfants et arrières petits-enfants d'un patriarche le jour de son décès.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Avant l'arrivée des Européens, des croyances animistes existaient en un dieu dit Ntodobe. Les religions chrétiennes arrivent en fin du XIXe siècle et les colons contribuent à la fin de ces croyances.. L'expansion de l'Islam s'étant arrêtée au Nord du Cameroun, les missionnaires européens ayant précédé ou accompagnant les colons ont pu christianiser les Béti. Les Béti sont donc actuellement catholiques ou protestants.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La liberté :</strong> Chez les Beti tous les Hommes sont égaux.  Le mot «Beti» est traduit en français par les seigneurs, les nobles, ou les hommes libres et selon Henri Ngoa, "les Beti sont des hommes « libres » et capables de se défendre par leurs propres moyens". L'espace Beti est donc un espace de liberté à grande tendance égalitaire où les groupes sociaux sont établis en fonction de la parenté.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La parenté :</strong> Les seules structures que l'on trouve en pays Beti sont la famille étendue, le lignage et la tribu. Ces trois structures correspondent respectivement au ndabot, au mvog (chez les Beti) ou esa (chez les Fang) et à l'ayon. Toutefois, le Mvog reste l'unité fondamentale de toute l'organisation sociale. La structure sociale dominante de la société Beti est donc une structure par patri-lignage emboîté.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En effet, selon Laburthe-Tolra, dans son acception sociale, le mot «mvog» « désignera l'ensemble des descendants de l'homme fondateur ou de la femme fondatrice...Le mvog pourra alors se traduire par «lignage», à condition qu'on comprenne bien qu'il s'agit toujours de patrilignage, même si l'éponyme est une femme. Tout géniteur fonde de ce fait un lignage, un mvog, ou si l'on préfère, tout segment de lignage est le point de départ d'un nouveau mvog qui s'emboîte dans le précédent, chaque enfant appartenant à la fois au mvog de son père, à celui de son grand-père paternel, à celui de son arrière grand-père et ainsi de suite, en ligne agnatique. ».</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">C'est donc le «mvog » ou «l'esa », structure sociale fondamentale de Beti, qui joue le rôle essentiel dans les règles de mariage et de solidarité sociale. C'est à travers le Mvog que s'organise la vie politico-militaire, économique et religieuse.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/beti/beti3.jpg" alt="beti3" width="373" height="268" /></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'absence d'une organisation politique centralisée</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> </strong>Chez les Beti, la prééminence est «basée sur la filiation », et déterminée par la séniorité. La préséance est donc reconnue à l'aînesse (Ntol). Mais bien que la séniorité crée l'autorité d'une manière automatique, cette dernière est limitée, souvent menacée par le principe qui veut que «le plus capable» soit le plus influent. Et souvent aussi, l'autorité dont bénéficie l'aîné paraît soumise à un contrôle efficace. Ainsi, ce n'est que lorsque son équité et l'efficacité de son pouvoir d'exécution étaient reconnus  que le Nyàmoro (l'ainé) devenait chef dans sa zone d'influence. Au cas où le pouvoir n'est pas basé sur la séniorité, ou alors si l'aîné est incapable de gouverner, d'autres éléments peuvent conférer le statut de leader dans la société Beti à tendance égalitaire.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> D'abord pour s'imposer comme Chef, le physique était nécessaire par le passé, mais celui-ci n'était toutefois ni obligatoire ni suffisant;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Ensuite le don de la parole et l'éloquence sont d'autres qualités que doit réunir un individu pour prétendre au leadership en pays Beti. L'art de «gouverner » est pour l'essentiel le maniement du langage, car le don oratoire permet sans aucun doute de posséder son auditoire.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> À ces premières caractéristiques du pouvoir vont s'ajouter deux autres importantes à savoir : le courage (ayog) et la générosité (akàb). La générosité du chef de lignage chez les Beti apparaît sans aucun doute la qualité la plus importante.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ainsi, le chef est, chez les anciens Beti, celui dont la communauté attendait les plus éminents services. En effet, le chef chez les Beti doit se montrer akàb ; mot à mot « Partageur » de (Kàb : partager), qualité souvent associée au mot mgba ; (sociable, affable). La richesse qu'il a acquise, il doit la redistribuer, et d'abord à ses descendants ; mais aussi, bien qu'il ne soit lié là par aucune obligation définie, on s'attend à ce qu'il fasse profiter ses pères, ses frères, ses voisins, voire l'étranger de passage à qui il donnera une large hospitalité. Il est le premier du pays, celui chez qui on est sûr de trouver toujours à manger, et vont profiter à plus forte raison de sa richesse ceux envers qui il a des devoirs précis : beaux-parents et neveux par exemple.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dans ces circonstances, la société Beti ne peut que valoriser à l'extrême l'homme capable de réunir en lui toutes ces qualités et d'influencer suffisamment les innombrables chefs indépendants pour les orienter vers les objectifs communs. Le pouvoir chez les Beti est donc d'abord personnalisé. Le chef dans cette société doit être un «mfan mot», «vrai homme», un ntomba « homme distingué », et un nkukuma « homme vraiment riche ».</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> La société Beti, par ce jeu de force plus ou moins antagoniste, variable en intensité selon les conjonctures, est préservée à l'encontre de toute concentration excessive de pouvoir ; cela explique qu'elle n'ait pas permis, malgré son caractère de société militaire conquérante, l'apparition d'une féodalité au moins rudimentaire. Le pouvoir, rigoureusement contrôlé ne s'est organisé qu'au niveau des unités réduites -village ou groupes de villages parents ou voisins».</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Au regard des éléments ci-dessus présentés, on peut dire que le leadership dans le contexte Beti-Fang peut s'accommoder du modèle paternaliste du "père protecteur" où le pouvoir est au service de ceux sur qui il s'exerce : pouvoir altéro-centré et où il y a recherche d'un échange équilibré.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La rationalité économique chez les Beti</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les aspects principaux de la rationalité économique chez les Beti sont :</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La considération de la richesse : la richesse en pays Beti n'est pas considérée comme un but mais comme un moyen d'exprimer un pouvoir direct ou indirect (prestige) sur les hommes»;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'ignorance de la notion de marché : à cet effet il y avait chez les anciens Beti une certaine ignorance des marchés. Les mots Beti qui en sont des équivalents (par exemple « Bilabi ») signifient «visite ostentatoire», «échange», etc. et le plus courant est le pidgin « mâkit » (market);</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La nature sociale des échanges : les échanges dans cette société dépendent des lois «anéconomiques», de nature purement sociale, et plus exactement politique, en relation avec l'acquisition et la conservation du pouvoir. La richesse qui fait le chef n'est pas pour lui, mais pour le groupe;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le souci de l'apparence : la présence du «grand riche» exprime donc la réussite totale du groupe qu'il incarne, et qui se reconnaît en lui, dans une «économie de parade» dont les spectateurs se satisfont par participation;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les relations d'échange personnalisées : la relation d'échange reste toujours profondément «personnalisée» en pays Beti, d'où la difficulté d'y instaurer une vie économique selon le libéralisme moderne. Ici, les choses économiques sont fortement liées à la personne; un échec est donc une mise en question de tout l'être. Préférer les légumes vendus ici à ceux qui sont vendus là, c'est préférer cette vendeuse-ci à celle-là ; c'est porter sur celle-là un jugement péjoratif, manquer de confiance en elle, peut-être la soupçonner d'avoir ensorcelé ses produits... Il n'y a pas de relation simplement économique, pas plus qu'il n'y a de relations simplement familiales ou religieuses : toutes les relations sont totales...</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Gastronomie</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Vers 1917, le cacao, le café, le manioc et le maïs sont introduits par les colons et cela modifie profondément l'organisation du travail tout comme l'écosystème, puisque les hommes qui se consacraient à la culture de l'igname devaient laisser cela pour les cultures de rente aux fins d'impôt de colonisation. Alors qu'avant, cueillette et ramassage, agriculture sur brûlis, jachère, piégeage permettaient d'assurer la subsistance, désormais, cacao et café occupèrent les hommes, jusqu'à présent. Dans le cadre de l'économie de marché, cela permet de payer un certain nombre de choses nécessaires dans la vie quotidienne. La femme et la terre sont liées dans la culture beti. Aussi, maïs et arachide sont cultivés par les femmes. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La poterie est aussi l'apanage des femmes, de même que la pêche à l'écope appelée alog. Dans le cadre de l'alog, elles allaient chercher du poisson en saison sèche alors que les hommes pratiquaient du piégeage. Avec l'arrivée de la colonisation, l'arme à feu est introduite et elle vient supplanter l'arc et la flèche. Au niveau des échanges, alors qu'auparavant, c'était le troc qui permettait de se pourvoir en denrées et objets non disponibles, avec la colonisation qui a banni le bilabi, le marché est institué. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le plat typique des Beti est l'Okok généralement accompagné de tubercules. L'okok est fait à base de feuilles Gnetum decoupées très finement, bouillies avec du beurre de cacahuètes et du jus de noix de palme. Un autre plat typique est le Kpem, fait à base de feuille de manioc, de beurre de cacahuètes. Une autre manière de consommer le kpem est de remplacer le beurre de cacahuètes par du jus de noix de palme, dans ce cas, on dit Kpem Isouk. Un autre plat typique appelé Sangha chez les Ewondo et Sangla chez les Eton est préparé à base d'épinards, de maïs et de jus de noix de palme.Le manioc constitue l'aliment de base de la gastronomie beti. Il est consommé sous toutes ses formes: feuilles, tubercule bouilli, farine pour en faire des beignets ou du couscous. Les noix de palme, les cacahuètes font partie de l'alimentation de base. Traditionnellement, on mange peu de viande, et encore moins du poisson, étant donné la situation du pays beti à l'intérieur des terres. La banane plantain, le macabo(plante de la famille du manioc dont on consomme les jeunes feuilles, et les tubercules), les ignames, le mais, le safou, des comi (petites noix rondes ressemblant aux amandes), les goyaves, papayes, avocats ainsi que énormément d'autres plantes et fruits font partie de l'alimentation des beti. Bien sur, elle a été enrichie par les plantes importées d'Amérique et par les contacts entre ethnies et tribus voisines. Et plusieurs plats tendent à disparaitre. On trouve comme boisson, le vin de palme, et le vin de bambou, ainsi que l'Odontol une liqueur fabriquée à partir de mais, et de vin de palme. Toutes ces boissons ne sont évidemment pas spécifiques aux Beti, ce sont simplement des produits du terroir.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Sources</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://csf-beti.org/beti.php">http://csf-beti.org/beti.php</a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://jedafcablog.solidairesdumonde.org/archive/2009/06/01/le-peuple-beti-du-cameroun.html">http://jedafcablog.solidairesdumonde.org/archive/2009/06/01/le-peuple-beti-du-cameroun.html</a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Apprendre plus sur les Béti</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.betibenanga.com/">www.betibenanga.com</a></span></span></p>Le Peuple Bétipublishopenopenle-peuple-beti2012-01-18 13:53:202012-01-18 12:53:200http://www.alicepegie.com/wordpress/wordpress/?p=630post0
6412012-01-17 17:21:542012-01-17 16:21:54<p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="béti" src="images/stories/beti/b%C3%A9ti.jpg" height="801" width="600" />Depuis l'époque coloniale, plusieurs observateurs étrangers ou africains ont produit plusieurs œuvres sur le peuple Beti ou Pahouin en général, dont sont tirés les caractéristiques de la société Beti ici résumées.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le peuple Beti se retrouve aujourd'hui en Afrique centrale&nbsp;: Cameroun,&nbsp; Congo,&nbsp; Gabon, &nbsp;Guinée-équatoriale et même en République de Sao Tomé. Les observateurs et autres chercheurs désignent souvent les Beti par différentes appellations&nbsp;: Pahouins, Beti, Fang-Beti-Bulu. Cependant, Beti est le nom le plus couramment utilisé par les membres du groupe eux-mêmes, du côté du Cameroun notamment et principalement dans le centre (Yaoundé et ses environs) et Sud ( Sangmélima, Ebolowa).</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><hr id="system-readmore" /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ce sont des descendants de Bantous. Mais, l'orgine des Beti est complexe à définir. Plus communément admise est l'origine donnée par la tradition orale. Pour les Beti, Nanga serait leur ancêtre d'origine bantou. Il aurait eu des descendants&nbsp;: Kolo Beti, Eton Beti, Mvele Beti, Mvan Beti, Meka Beti Bulu, la seule fille, et Ntémé, le dernier-né. Aujourd'hui, les principales tribus beti sont les Eton, les Ewondo, les Bulu, les Manguissa, les Ntémé et les Mvele, plus proches des Bulu que des Eton et des Ewondo. A l'origine tous les Beti parlaient une langue appeleé ati. Arrivés à Yaoundé, ils se sont dispersés, certains Eton se retrouvaient à Nkometou(une région de Yaoundé).Leurs migrations avaient pour buts de rechercher des terres riches pour l'agriculture, et se rapprocher des régions dans lesquelles il y avait du sel, lequel était devenu beaucoup plus disponible avec la colonisation. C'est dans cette optique que les Eton se dirigèrent notamment vers Douala et là ils se heurtèrent aux Bassas qui vivaient de ce côté du pays. Certaines régions ont des noms de guerre à cause de ces rencontres sanglantes, dont Enongal (coup de fusil).</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Quelques fondements de l'identité culturelle Beti</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Au-delà du territoire habité, les Beti se caractérisent par une unité linguistique, une organisation sociopolitique et des valeurs économiques communes.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le nom d'un individu chez les Beti est très important. Il est composé en premier du patronyme, en second du nom du père (ou de la mère dans les foyers polygames), et enfin du nom d'appel, tiré de la nature . Les Beti ont été de grands guerriers, et en ont gardé un sentiment développé de noblesse. Les beti sont traditionnellemnt sédentaires, agriculteurs, et forgerons.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'unité linguistique</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'ethnie Beti-Bulu-Fang a une langue commune malgré la diversité des dialectes. En effet, les parlers Fang, Beti et Bulu constituent à vrai dire une seule et même langue. Comme l'on fait remarquer tous les linguistes, les différences entre eux tiennent à de légères spécificités de vocabulaire, mais surtout à la prononciation. La syntaxe est pratiquement identique d'un dialecte à l'autre, et les différences grammaticales sont négligeables. De la sorte, l'inter-communication entre Fang, Beti et Bulu n'a jamais posé de problème. Cette unité linguistique montre que les peuples Beti peuvent avoir en commun une vision du monde.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'organisation politique et sociale.</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La structure sociale et politique chez les Fang ou Beti, se caractérise par trois éléments essentiels&nbsp;: la liberté, la parenté et l'absence d'une organisation politique centralisée.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les instruments de musique, traditionnellement, sont le tam-tam, le balafon, le Mvet. Les beti ne ont été de grands forgerons, ils ne travaillaient donc pas beaucoup le bois.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">&nbsp;<a class="mb" href="http://s2.e-monsite.com/2009/11/19/09/resize_550_550/rotate_0//balafon.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" alt="beti2" src="images/stories/beti/beti2.jpg" height="393" width="600" /></a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le rite de la purification, appelé tsogo chez les Eton, Tso chez les Ewondo, et Esobino chez les Fang que l'on pratique publiquement pour se laver d'une faute morale, afin d' éloigner de soi, la maladie ou la punition des ancêtres.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le mariage selon la tradition est très codifiée. Aujourd'hui, il est pratiqué avant le mariage civil et le mariage religieux. L'union n'est pas valide tant que le mariage coutumier n'a pas été fait. Après maintes discussions trainant de long en large, et visant à éprouver la patience du futur marié le marié se verra contraint de subir des épreuves prouvant sa maturité, son intelligence, son courage, tel manger une papaye verte. De même en sa faveur joue l'éloquence de la délégation familiale qui l'accompagne, afin d'amadouer la famille de la mariée. Le troc était institutionnalisé dans le cadre des alliances matrimoniales qui étaient l'occasion d'échanges de biens. Ces échanges duraient toute la vie, et ils étaient effectués à l'occasion de mariages exogamiques.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Une autre coutume, appelée Isani chez les Eton, est celle d'une danse spéciale, pratiquée uniquement par les petits-enfants et arrières petits-enfants d'un patriarche le jour de son décès.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Avant l'arrivée des Européens, des croyances animistes existaient en un dieu dit Ntodobe. Les religions chrétiennes arrivent en fin du XIXe&nbsp;siècle et les colons contribuent à la fin de ces croyances.. L'expansion de l'Islam s'étant arrêtée au Nord du Cameroun, les missionnaires européens ayant précédé ou accompagnant les colons ont pu christianiser les Béti. Les Béti sont donc actuellement catholiques ou protestants.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La liberté&nbsp;:</strong> Chez les Beti tous les Hommes sont égaux. &nbsp;Le mot «Beti» est traduit en français par les seigneurs, les nobles, ou les hommes libres et selon Henri Ngoa, "les Beti sont des hommes «&nbsp;libres&nbsp;» et capables de se défendre par leurs propres moyens". L'espace Beti est donc un espace de liberté à grande tendance égalitaire où les groupes sociaux sont établis en fonction de la parenté.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La parenté&nbsp;:</strong> Les seules structures que l'on trouve en pays Beti sont la famille étendue, le lignage et la tribu. Ces trois structures correspondent respectivement au ndabot, au mvog (chez les Beti) ou esa (chez les Fang) et à l'ayon. Toutefois, le Mvog reste l'unité fondamentale de toute l'organisation sociale. La structure sociale dominante de la société Beti est donc une structure par patri-lignage emboîté.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En effet, selon Laburthe-Tolra, dans son acception sociale, le mot «mvog» «&nbsp;désignera l'ensemble des descendants de l'homme fondateur ou de la femme fondatrice...Le mvog pourra alors se traduire par «lignage», à condition qu'on comprenne bien qu'il s'agit toujours de patrilignage, même si l'éponyme est une femme. Tout géniteur fonde de ce fait un lignage, un mvog, ou si l'on préfère, tout segment de lignage est le point de départ d'un nouveau mvog qui s'emboîte dans le précédent, chaque enfant appartenant à la fois au mvog de son père, à celui de son grand-père paternel, à celui de son arrière grand-père et ainsi de suite, en ligne agnatique.&nbsp;».</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">C'est donc le «mvog&nbsp;» ou «l'esa&nbsp;», structure sociale fondamentale de Beti, qui joue le rôle essentiel dans les règles de mariage et de solidarité sociale. C'est à travers le Mvog que s'organise la vie politico-militaire, économique et religieuse.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="beti3" src="images/stories/beti/beti3.jpg" height="268" width="373" /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'absence d'une organisation politique centralisée</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> </strong>Chez les Beti, la prééminence est «basée sur la filiation&nbsp;», et déterminée par la séniorité. La préséance est donc reconnue à l'aînesse (Ntol). Mais bien que la séniorité crée l'autorité d'une manière automatique, cette dernière est limitée, souvent menacée par le principe qui veut que «le plus capable» soit le plus influent. Et souvent aussi, l'autorité dont bénéficie l'aîné paraît soumise à un contrôle efficace. Ainsi, ce n'est que lorsque son équité et l'efficacité de son pouvoir d'exécution étaient reconnus&nbsp; que le Nyàmoro (l'ainé) devenait chef dans sa zone d'influence. Au cas où le pouvoir n'est pas basé sur la séniorité, ou alors si l'aîné est incapable de gouverner, d'autres éléments peuvent conférer le statut de leader dans la société Beti à tendance égalitaire.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> D'abord pour s'imposer comme Chef, le physique était nécessaire par le passé, mais celui-ci n'était toutefois ni obligatoire ni suffisant;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Ensuite le don de la parole et l'éloquence sont d'autres qualités que doit réunir un individu pour prétendre au leadership en pays Beti. L'art de «gouverner&nbsp;» est pour l'essentiel le maniement du langage, car le don oratoire permet sans aucun doute de posséder son auditoire.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> À ces premières caractéristiques du pouvoir vont s'ajouter deux autres importantes à savoir&nbsp;: le courage (ayog) et la générosité (akàb). La générosité du chef de lignage chez les Beti apparaît sans aucun doute la qualité la plus importante.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ainsi, le chef est, chez les anciens Beti, celui dont la communauté attendait les plus éminents services. En effet, le chef chez les Beti doit se montrer akàb&nbsp;; mot à mot «&nbsp;Partageur&nbsp;» de (Kàb&nbsp;: partager), qualité souvent associée au mot mgba&nbsp;; (sociable, affable). La richesse qu'il a acquise, il doit la redistribuer, et d'abord à ses descendants&nbsp;; mais aussi, bien qu'il ne soit lié là par aucune obligation définie, on s'attend à ce qu'il fasse profiter ses pères, ses frères, ses voisins, voire l'étranger de passage à qui il donnera une large hospitalité. Il est le premier du pays, celui chez qui on est sûr de trouver toujours à manger, et vont profiter à plus forte raison de sa richesse ceux envers qui il a des devoirs précis&nbsp;: beaux-parents et neveux par exemple.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dans ces circonstances, la société Beti ne peut que valoriser à l'extrême l'homme capable de réunir en lui toutes ces qualités et d'influencer suffisamment les innombrables chefs indépendants pour les orienter vers les objectifs communs. Le pouvoir chez les Beti est donc d'abord personnalisé. Le chef dans cette société doit être un «mfan mot», «vrai homme», un ntomba «&nbsp;homme distingué&nbsp;», et un nkukuma «&nbsp;homme vraiment riche&nbsp;».</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> La société Beti, par ce jeu de force plus ou moins antagoniste, variable en intensité selon les conjonctures, est préservée à l'encontre de toute concentration excessive de pouvoir&nbsp;; cela explique qu'elle n'ait pas permis, malgré son caractère de société militaire conquérante, l'apparition d'une féodalité au moins rudimentaire. Le pouvoir, rigoureusement contrôlé ne s'est organisé qu'au niveau des unités réduites -village ou groupes de villages parents ou voisins».</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Au regard des éléments ci-dessus présentés, on peut dire que le leadership dans le contexte Beti-Fang peut s'accommoder du modèle paternaliste du "père protecteur" où le pouvoir est au service de ceux sur qui il s'exerce : pouvoir altéro-centré et où il y a recherche d'un échange équilibré.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La rationalité économique chez les Beti</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les aspects principaux de la rationalité économique chez les Beti sont :</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La considération de la richesse : la richesse en pays Beti n'est pas considérée comme un but mais comme un moyen d'exprimer un pouvoir direct ou indirect (prestige) sur les hommes»;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'ignorance de la notion de marché&nbsp;: à cet effet il y avait chez les anciens Beti une certaine ignorance des marchés. Les mots Beti qui en sont des équivalents (par exemple «&nbsp;Bilabi&nbsp;») signifient «visite ostentatoire», «échange», etc. et le plus courant est le pidgin «&nbsp;mâkit&nbsp;» (market);</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La nature sociale des échanges&nbsp;: les échanges dans cette société dépendent des lois «anéconomiques», de nature purement sociale, et plus exactement politique, en relation avec l'acquisition et la conservation du pouvoir. La richesse qui fait le chef n'est pas pour lui, mais pour le groupe;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le souci de l'apparence&nbsp;: la présence du «grand riche» exprime donc la réussite totale du groupe qu'il incarne, et qui se reconnaît en lui, dans une «économie de parade» dont les spectateurs se satisfont par participation;</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les relations d'échange personnalisées&nbsp;: la relation d'échange reste toujours profondément «personnalisée» en pays Beti, d'où la difficulté d'y instaurer une vie économique selon le libéralisme moderne. Ici, les choses économiques sont fortement liées à la personne; un échec est donc une mise en question de tout l'être. Préférer les légumes vendus ici à ceux qui sont vendus là, c'est préférer cette vendeuse-ci à celle-là ; c'est porter sur celle-là un jugement péjoratif, manquer de confiance en elle, peut-être la soupçonner d'avoir ensorcelé ses produits... Il n'y a pas de relation simplement économique, pas plus qu'il n'y a de relations simplement familiales ou religieuses : toutes les relations sont totales...</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Gastronomie</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Vers 1917, le cacao, le café, le manioc et le maïs sont introduits par les colons et cela modifie profondément l'organisation du travail tout comme l'écosystème, puisque les hommes qui se consacraient à la culture de l'igname devaient laisser cela pour les cultures de rente aux fins d'impôt de colonisation. Alors qu'avant, cueillette et ramassage, agriculture sur brûlis, jachère, piégeage permettaient d'assurer la subsistance, désormais, cacao et café occupèrent les hommes, jusqu'à présent. Dans le cadre de l'économie de marché, cela permet de payer un certain nombre de choses nécessaires dans la vie quotidienne. La femme et la terre sont liées dans la culture beti. Aussi, maïs et arachide sont cultivés par les femmes. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La poterie est aussi l'apanage des femmes, de même que la pêche à l'écope appelée alog. Dans le cadre de l'alog, elles allaient chercher du poisson en saison sèche alors que les hommes pratiquaient du piégeage. Avec l'arrivée de la colonisation, l'arme à feu est introduite et elle vient supplanter l'arc et la flèche. Au niveau des échanges, alors qu'auparavant, c'était le troc qui permettait de se pourvoir en denrées et objets non disponibles, avec la colonisation qui a banni le bilabi, le marché est institué. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le plat typique des Beti est l'Okok généralement accompagné de tubercules. L'okok est fait à base de feuilles Gnetum decoupées très finement, bouillies avec du beurre de cacahuètes et du jus de noix de palme. Un autre plat typique est le Kpem, fait à base de feuille de manioc, de beurre de cacahuètes. Une autre manière de consommer le kpem est de remplacer le beurre de cacahuètes par du jus de noix de palme, dans ce cas, on dit Kpem Isouk. Un autre plat typique appelé Sangha chez les Ewondo et Sangla chez les Eton est préparé à base d'épinards, de maïs et de jus de noix de palme.Le manioc constitue l'aliment de base de la gastronomie beti. Il est consommé sous toutes ses formes: feuilles, tubercule bouilli, farine pour en faire des beignets ou du couscous. Les noix de palme, les cacahuètes font partie de l'alimentation de base. Traditionnellement, on mange peu de viande, et encore moins du poisson, étant donné la situation du pays beti à l'intérieur des terres. La banane plantain, le macabo(plante de la famille du manioc dont on consomme les jeunes feuilles, et les tubercules), les ignames, le mais, le safou, des comi (petites noix rondes ressemblant aux amandes), les goyaves, papayes, avocats ainsi que énormément d'autres plantes et fruits font partie de l'alimentation des beti. Bien sur, elle a été enrichie par les plantes importées d'Amérique et par les contacts entre ethnies et tribus voisines. Et plusieurs plats tendent à disparaitre. On trouve comme boisson, le vin de palme, et le vin de bambou, ainsi que l'Odontol une liqueur fabriquée à partir de mais, et de vin de palme. Toutes ces boissons ne sont évidemment pas spécifiques aux Beti, ce sont simplement des produits du terroir.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Sources</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://csf-beti.org/beti.php">http://csf-beti.org/beti.php</a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://jedafcablog.solidairesdumonde.org/archive/2009/06/01/le-peuple-beti-du-cameroun.html">http://jedafcablog.solidairesdumonde.org/archive/2009/06/01/le-peuple-beti-du-cameroun.html</a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Apprendre plus sur les Béti</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.betibenanga.com/">www.betibenanga.com</a></span></span></p>Le Peuple Bétiinheritopenopen63-revision2012-01-17 17:21:542012-01-17 16:21:5463http://www.alicepegie.com/wordpress/wordpress/?p=640revision0
15112010-01-15 13:55:552010-01-15 12:55:55<p style="text-align: justify;"><strong><span style="font-size: xx-large; font-family: arial,helvetica,sans-serif;"><a style="text-decoration: none;" title="Ecouter sa Musique;"><img style="float: left;" src="images/stories/nzie.jpg" alt="nzie" width="166" height="208" border="0" /></a></span></strong></p> <p style="text-align: justify;">La Maman de la musique camerounaise</p> <!--more--> <strong><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/centre_sud/AnneMarieNzie|1||a{/nmap}</span></strong> <p style="text-align: justify;">A l'âge où la plupart des femmes se glissent dans un repos bien mérité en regardant grandir leurs petits-enfants, Anne-Marie Nzié groove et chaloupe avec un enthousiasme communicatif. Sa voix coule et rebondit de rumba en bikutsi, qu'elle chante aussi bien en douala qu'en éwondo ou en ngumba saupoudrés d'un peu de français ou d'anglais.</p> Longtemps, Anne Marie Nzié a été une célébrité dans son pays (on la surnomme la "Maman" de la musique camerounaise) puis elle est peu à peu tombée en désuétude avant d'atteindre une sorte d'oubli. Mais en 1996 un animateur de radio, René Ayina, réussit à lui faire donner une série de concerts. Là, contre toute attente des médias, un public enthousiaste la retrouve. Du coup, l'année suivante le Centre Culturel Français de Yaoundé fête dignement ses 40 ans de carrière. <p style="text-align: justify;">En 1998, le festival d'Angoulême la programme et dans la foulée, Anne-Marie réalise son premier disque en France. Et l'Occident découvre avec plaisir cette nature qui ne mâche pas ses mots (interrogée sur son nouveau succès dans une émission de la Télévision camerounaise, elle n'a pas hésité à fustiger les producteurs africains et le ministère de la Culture). Si elle réagit ainsi, ce n'est pas parce qu'elle n'a rien à perdre, mais parce qu'elle connaît la valeur des choses.</p> &nbsp; <p style="text-align: justify;">A douze ans, une blessure infectée la cloue sur un lit d'hôpital pendant plusieurs années.Elle en profite pour apprendre à jouer de la guitare dans le style hawaïen et fait le serment de devenir chanteuse si elle s'en sort. En 1954, elle enregistre son premier disque pour un label congolo-belge. Sa voix superbe et sa personnalité hors norme lui confèrent très rapidement la célébrité. De concerts prestigieux en passages radios elle devient une gloire nationale (participation au festival Panafricain d'Alger en 1969, au Festac de Lagos en 1977…). Pourtant, peu à peu son étoile pâlit et elle s'enfonce dans une semi-retraite. En 1984, elle connaît un éphémère regain de succès avec la sortie de son album "Liberté". Mais il faudra attendre la 2ème moitié des années 90 pour que la reine du Bi-kutsi revienne sur le devant de la scène avec un éclat particulier puisqu'à 67 ans passés, elle s'apprête à entamer une carrière internationale. Avec dans les yeux et dans la voix l'espièglerie d'une petite fille qui joue un bon tour au temps qui passe.</p> <p style="text-align: justify;">Magali Bergès</p> <p style="text-align: justify;"><a href="http://annemarie_nzie.mondomix.com/fr/portrait17.htm">Source</a></p>Anne Marie Nziépublishopenopenanne-marie-nzie2012-01-18 14:02:522012-01-18 13:02:520http://www.alicepegie.com/wordpress/wordpress/?p=1510post0
6512010-01-14 17:24:202010-01-14 16:24:20<p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="float: left;" src="images/stories/epc.jpg" alt="epc" width="400" height="440" border="0" />Je souhaite ici vous présenter l’église dans laquelle je suis née, ai été baptisée et ai grandit. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Il y a plus de 150 ans, la Mission Presbytérienne Américaine s’engageait à l’évangélisation des peuples du Cameroun ; En 1869, naissait une Paroisse à Batanga par Kribi (probablement la premières dans le pays). D’autres missions chrétiennes feront leur entrée au Cameroun parmi lesquelles la Mission de Bâle (allemande) dont la MPA héritera d’une partie du champ de la mission après la première guerre mondiale, suite à la défaite de l’Allemagne dont le Cameroun depuis 1884 était sous protectorat (grâce aux Accords Germano-Douala), et après entérinement des occupations franco-britannique en 1922 par la Société des Nations (S.D.N).<!--more--></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En 1936 voyait le jour le premier Synode de cette Mission Presbytérienne Américaine en l’occurrence MUNICAM. Puis dans son développement successivement naîtront en 1953 le Synode Bassa Cameroun et en 1954, le Synode Est Cameroun. Les velléités nationalistes connaissent alors un aboutissement dans le cadre des revendications à l’autonomie en Afrique. En 1957, le Ghana est indépendant. C’est la même année que les Camerounais décident de mettre fin à plus de 100 ans de domination américaine sur le plan religieux, le message d’évangélisation chrétienne étant universel. Le 11 décembre 1957 à Elat par Ebolowa dans le Sud-Cameroun (une des plus célèbres parmi ce qui était alors appelé les Stations de la Mission Presbytérienne Américaine). Les Camerounais concrétisaient leur rêve d’indépendance religieuse, prélude à l’indépendance politique du pays qui viendra trois années plus tard en proclamant l’indépendance de l’Eglise Presbytérienne camerounaise (EPC) après signature d’une Convention de l’autonomie, dont trois grandes selfs constituaient l’essentiel du contenu, parmi lesquels la self supporting Church, qui voulait que l’Eglise soit gérée par les nationaux, en assumant les charges financières et ne devant plus attendre des subventions d’ailleurs. L’EPC à l’instar de ses consœurs de la Presbyterian Church of Cameroon (PCC) et de l’Eglise Evangélique du Cameroun (EEC) a aujourd’hui cinquante ans.</span></span></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CE QU’IL FAUT SAVOIR SUR L’EPC</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Deux documents régulent la vie, la doctrine et les procédures dans l’EPC, la Bible et la Constitution. Un opuscule de cette église en 2003 (Eglise Presbytérienne Camerounaise) édifie les intéressés quant à ses objectifs, son rôle et ses missions, sa philosophie. L’Eglise Presbytérienne Camerounaise a reçu de son Chef et Sauveur Jésus-Christ, la tâche de transmettre à toute créature le message du royaume de Dieu. Elle affirme, avec toutes les Eglises de la Réforme dont elle en est une, l’autorité souveraine des Saintes Ecritures, et trouve en elles la règle de la loi et de la vie. L’expression de sa foi est la Bible, rien que la Bible. Elle proclame le salut par la grâce, par le moyen de la Foi en Jésus-Christ. La prédication de la parole et l’administration des sacrements sont les signes par lesquels on la reconnaît. Elle poursuit également l’accomplissement de sa tâche par l’enseignement de la doctrine, la cure d’âme, les œuvres médicales et scolaires, les associations religieuses particulières notamment cellés pour la jeunesse, pour les femmes et pour les hommes, la bienfaisance, par l’envoi des messagers vers ceux qui ne connaissent pas encore l’Evangile. Prenant appui sur les promesses du Seigneur et sous la conduite de l’Esprit Saint, avec la ferme assurance de l’espérance de la foi, le Modérateur de la 46ème Assemblée Générale de l’EPC le Révérend Samuel Bikoï II du Consistoire d’Eseka ajoute dans la préface de cette publication « pour la reconstruction d’un monde à visage humain, pour la promotion de la paix, pour plus de solidarité et de justice, l’EPC participe à cette lutte mais elle est convaincue que c’est l’homme qu’il faut reconstruire ».</span></span></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>COMMENT ELLE EST ORGANISEE ET FONCTIONNE</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">De par son essence presbytérienne, l’EPC n’a pas choisi une forme de gouvernement présidentialiste avec un président à la tête de l’exécutif doté d’une autorité suprême et prépondérante. La vie de l’Eglise dominée par une gestion participative des Pasteurs et des Anciens d’Eglise et laïcs à tous les niveaux de l’échelle est régulée par l’instance suprême qu’est l’Assemblée Générale annuelle formée de moitié par les Pasteurs et de moitié par les Anciens. C’est l’institution suprême de l’Eglise qui arrête toutes les décisions importantes au fonctionnement et aux activités de l’EPC dans son ensemble. En début des travaux, il est élu un bureau chargé de conduire aux destinées de l’Eglise à la tête duquel est choisi un Modérateur, c’est-à-dire celui qui retient dans les bornes de la modération, celle-ci étant la qualité d’une personne ou d’une chose éloignée de tout excès, pondération, sagesse. C’est une personnalité morale qui a un mandat d’un an renouvelable en principe. A côté de lui se trouve le Secrétaire Général qui assure l’exécutif de l’Eglise, personnalité civile élue pour cinq ans et rééligible. Puis viennent les grands Conseils Permanents avec le Conseil Général sous la responsabilité directe du Modérateur dont le rôle est de financer les œuvres sociales, d’établir le budget de l’Eglise, de décider les salaires des ouvriers etc…, le Conseil d’Administration dépendant du Secrétariat Général qui est chargé d’exécuter et de faire respecter la loi, d’administrer les biens, de contrôler la Caisse des subventions, d’étudier la loi à présenter à l’Assemblée Générale. A cela il faut ajouter : une Commission Juridique Permanente rendant compte directement à l’Assemblée Générale de qui elle dépend. Puis viennent la Trésorerie Générale, l’Education Chrétienne sous le contrôle du Conseil µGénéral chargée de la jeunesse, des Ecoles de Dimanche, des cultes de Femmes, d’Adultes seuls,</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">de l’enseignement religieux et du programme de l’Eglise et les institutions diverses à savoir écoles, hôpitaux, librairie, Imprimerie, Littérature, Traduction, Publications et Séminaires sous la supervision du Conseil d’Administration.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">A un degré plus bas il y a les Synodes (assemblées des délégués, Pasteurs et Anciens), des Consistoires Paroissiaux et Régionaux. Puis suivent les consistoires (assemblées dirigeantes de Pasteurs et de Laïcs à une échelle moindre que les Synodes), puis à la base de l’échelle se trouvent les Paroisses, territoires sur lesquels s’étend la juridiction spirituelle d’un Pasteur Modérateur (qui peut avoir un Co-Modérateur) et des Anciens d’Eglise.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le principe qui prédomine dans le fonctionnement de l’Eglise est celui de la liberté de conscience duquel découle l’éclatement ou le fractionnement des Paroisses, Consistoires et Synodes.</span></span></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>UNE IMPLANTATION ET UNE ASSISE VERITABLEMENT NATIONALES</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Si elle n’est pas la première parmi les Eglises Réformées du Cameroun, l’EPC n’en est pas loin. Les estimations des chiffres en 2002 parlent d’un nombre de fidèles communiants de 1 096 000 pour une population de 14 814 293 habitants avec 9 585 Diacres, 8 055 Anciens d’Eglises, 506 Pasteurs pour 610 Paroisses, 25 Consistoires et 06 Synodes (Municam, Bassa-Cameroun, Centre, Est-Cameroun, Metet, Sud) à caractère presque régional.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L’Eglise est implantée sur l’ensemble du territoire du Cameroun et les mêmes estimations indiquent une répartition en termes de pourcentage de la population par province de 38 % sur 519 928 habitants pour le Sud, 35 % sur 2 431 428 habitants dans le Centre, 33 % sur 2 140 840 habitants pour le Littoral, 30 % sur 734 016 habitants pour l’Est pour les plus grandes zones d’implantation, alors que seulement on retrouve 1 % sur 703 432 habitants dans l’Adamaoua, 0,2 % chacune dans l’Ouest et le Nord-Ouest pour des populations respectives de 1 616 847 et 1 621 442 habitants et enfin 0,1 % dans chacune des Provinces de l’Extrême6nord, le Nord et le Sud-Ouest pour des populations de 2 645 516 habitants pour la première, 1 192 776 habitants pour la seconde et 1 208 068 habitants pour la dernière. C’est dire que les trois Provinces du Sud du Centre et du Littoral où l’EPC est fortement représentée et fait partie des confessions religieuses prédominantes comprennent chacune plus de 250 000 fidèles, alors que l’Est compte entre 100 000 à 200 000 fidèles, l’Adamaoua de 5 000 à 10 000 fidèles, les autres ayant moins de 5 000 fidèles.</span></span></p> <p class="paratitre" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>UN MESSAGE UNIVERSEL PORTE A L’INTERNATIONAL</strong></span></span></p> <p class="juste" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le message universel de Christ dans la doctrine et la philosophie de l’EPC sus-évoquées ne se limite pas à être prêché sur le territoire national. Aussi l’Eglise a-t-elle installé un Conseil de Mission Presbytérienne Camerounaise en France et des Paroisses au Gabon. D’autre part elle collabore avec d’autres Eglises nationales dans le cadre d’un partenariat à l’instar de la Presbyterian Church of United States of America, la Mission de Paris en France, la Mission Allemande de Bâle et même l’Eglise Protestante DAGER du Gabon, l’Eglise Evangélique du Gabon. </span></span></p>L’église presbytérienne Camerounaisepublishopenopenleglise-presbyterienne-camerounaise2012-01-18 11:29:232012-01-18 10:29:230http://www.alicepegie.com/wordpress/wordpress/?p=650post0
6612012-01-17 17:24:432012-01-17 16:24:43<p> </p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img src="images/stories/epc.jpg" border="0" alt="epc" width="400" height="440" style="float: left;" />Je souhaite ici vous présenter l’église dans laquelle je suis née, ai été baptisée et ai grandit. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Il y a plus de 150 ans, la Mission Presbytérienne Américaine s’engageait à l’évangélisation des peuples du Cameroun ; En 1869, naissait une Paroisse à Batanga par Kribi (probablement la premières dans le pays). D’autres missions chrétiennes feront leur entrée au Cameroun parmi lesquelles la Mission de Bâle (allemande) dont la MPA héritera d’une partie du champ de la mission après la première guerre mondiale, suite à la défaite de l’Allemagne dont le Cameroun depuis 1884 était sous protectorat (grâce aux Accords Germano-Douala), et après entérinement des occupations franco-britannique en 1922 par la Société des Nations (S.D.N).</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En 1936 voyait le jour le premier Synode de cette Mission Presbytérienne Américaine en l’occurrence MUNICAM. Puis dans son développement successivement naîtront en 1953 le Synode Bassa Cameroun et en 1954, le Synode Est Cameroun. Les velléités nationalistes connaissent alors un aboutissement dans le cadre des revendications à l’autonomie en Afrique. En 1957, le Ghana est indépendant. C’est la même année que les Camerounais décident de mettre fin à plus de 100 ans de domination américaine sur le plan religieux, le message d’évangélisation chrétienne étant universel. Le 11 décembre 1957 à Elat par Ebolowa dans le Sud-Cameroun (une des plus célèbres parmi ce qui était alors appelé les Stations de la Mission Presbytérienne Américaine). Les Camerounais concrétisaient leur rêve d’indépendance religieuse, prélude à l’indépendance politique du pays qui viendra trois années plus tard en proclamant l’indépendance de l’Eglise Presbytérienne camerounaise (EPC) après signature d’une Convention de l’autonomie, dont trois grandes selfs constituaient l’essentiel du contenu, parmi lesquels la self supporting Church, qui voulait que l’Eglise soit gérée par les nationaux, en assumant les charges financières et ne devant plus attendre des subventions d’ailleurs. L’EPC à l’instar de ses consœurs de la Presbyterian Church of Cameroon (PCC) et de l’Eglise Evangélique du Cameroun (EEC) a aujourd’hui cinquante ans.</span></span></p> <hr id="system-readmore" /> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CE QU’IL FAUT SAVOIR SUR L’EPC</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Deux documents régulent la vie, la doctrine et les procédures dans l’EPC, la Bible et la Constitution. Un opuscule de cette église en 2003 (Eglise Presbytérienne Camerounaise) édifie les intéressés quant à ses objectifs, son rôle et ses missions, sa philosophie. L’Eglise Presbytérienne Camerounaise a reçu de son Chef et Sauveur Jésus-Christ, la tâche de transmettre à toute créature le message du royaume de Dieu. Elle affirme, avec toutes les Eglises de la Réforme dont elle en est une, l’autorité souveraine des Saintes Ecritures, et trouve en elles la règle de la loi et de la vie. L’expression de sa foi est la Bible, rien que la Bible. Elle proclame le salut par la grâce, par le moyen de la Foi en Jésus-Christ. La prédication de la parole et l’administration des sacrements sont les signes par lesquels on la reconnaît. Elle poursuit également l’accomplissement de sa tâche par l’enseignement de la doctrine, la cure d’âme, les œuvres médicales et scolaires, les associations religieuses particulières notamment cellés pour la jeunesse, pour les femmes et pour les hommes, la bienfaisance, par l’envoi des messagers vers ceux qui ne connaissent pas encore l’Evangile. Prenant appui sur les promesses du Seigneur et sous la conduite de l’Esprit Saint, avec la ferme assurance de l’espérance de la foi, le Modérateur de la 46ème Assemblée Générale de l’EPC le Révérend Samuel Bikoï II du Consistoire d’Eseka ajoute dans la préface de cette publication « pour la reconstruction d’un monde à visage humain, pour la promotion de la paix, pour plus de solidarité et de justice, l’EPC participe à cette lutte mais elle est convaincue que c’est l’homme qu’il faut reconstruire ».</span></span></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>COMMENT ELLE EST ORGANISEE ET FONCTIONNE</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">De par son essence presbytérienne, l’EPC n’a pas choisi une forme de gouvernement présidentialiste avec un président à la tête de l’exécutif doté d’une autorité suprême et prépondérante. La vie de l’Eglise dominée par une gestion participative des Pasteurs et des Anciens d’Eglise et laïcs à tous les niveaux de l’échelle est régulée par l’instance suprême qu’est l’Assemblée Générale annuelle formée de moitié par les Pasteurs et de moitié par les Anciens. C’est l’institution suprême de l’Eglise qui arrête toutes les décisions importantes au fonctionnement et aux activités de l’EPC dans son ensemble. En début des travaux, il est élu un bureau chargé de conduire aux destinées de l’Eglise à la tête duquel est choisi un Modérateur, c’est-à-dire celui qui retient dans les bornes de la modération, celle-ci étant la qualité d’une personne ou d’une chose éloignée de tout excès, pondération, sagesse. C’est une personnalité morale qui a un mandat d’un an renouvelable en principe. A côté de lui se trouve le Secrétaire Général qui assure l’exécutif de l’Eglise, personnalité civile élue pour cinq ans et rééligible. Puis viennent les grands Conseils Permanents avec le Conseil Général sous la responsabilité directe du Modérateur dont le rôle est de financer les œuvres sociales, d’établir le budget de l’Eglise, de décider les salaires des ouvriers etc…, le Conseil d’Administration dépendant du Secrétariat Général qui est chargé d’exécuter et de faire respecter la loi, d’administrer les biens, de contrôler la Caisse des subventions, d’étudier la loi à présenter à l’Assemblée Générale. A cela il faut ajouter : une Commission Juridique Permanente rendant compte directement à l’Assemblée Générale de qui elle dépend. Puis viennent la Trésorerie Générale, l’Education Chrétienne sous le contrôle du Conseil µGénéral chargée de la jeunesse, des Ecoles de Dimanche, des cultes de Femmes, d’Adultes seuls,</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">de l’enseignement religieux et du programme de l’Eglise et les institutions diverses à savoir écoles, hôpitaux, librairie, Imprimerie, Littérature, Traduction, Publications et Séminaires sous la supervision du Conseil d’Administration.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">A un degré plus bas il y a les Synodes (assemblées des délégués, Pasteurs et Anciens), des Consistoires Paroissiaux et Régionaux. Puis suivent les consistoires (assemblées dirigeantes de Pasteurs et de Laïcs à une échelle moindre que les Synodes), puis à la base de l’échelle se trouvent les Paroisses, territoires sur lesquels s’étend la juridiction spirituelle d’un Pasteur Modérateur (qui peut avoir un Co-Modérateur) et des Anciens d’Eglise.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le principe qui prédomine dans le fonctionnement de l’Eglise est celui de la liberté de conscience duquel découle l’éclatement ou le fractionnement des Paroisses, Consistoires et Synodes.</span></span></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>UNE IMPLANTATION ET UNE ASSISE VERITABLEMENT NATIONALES</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Si elle n’est pas la première parmi les Eglises Réformées du Cameroun, l’EPC n’en est pas loin. Les estimations des chiffres en 2002 parlent d’un nombre de fidèles communiants de 1 096 000 pour une population de 14 814 293 habitants avec 9 585 Diacres, 8 055 Anciens d’Eglises, 506 Pasteurs pour 610 Paroisses, 25 Consistoires et 06 Synodes (Municam, Bassa-Cameroun, Centre, Est-Cameroun, Metet, Sud) à caractère presque régional.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L’Eglise est implantée sur l’ensemble du territoire du Cameroun et les mêmes estimations indiquent une répartition en termes de pourcentage de la population par province de 38 % sur 519 928 habitants pour le Sud, 35 % sur 2 431 428 habitants dans le Centre, 33 % sur 2 140 840 habitants pour le Littoral, 30 % sur 734 016 habitants pour l’Est pour les plus grandes zones d’implantation, alors que seulement on retrouve 1 % sur 703 432 habitants dans l’Adamaoua, 0,2 % chacune dans l’Ouest et le Nord-Ouest pour des populations respectives de 1 616 847 et 1 621 442 habitants et enfin 0,1 % dans chacune des Provinces de l’Extrême6nord, le Nord et le Sud-Ouest pour des populations de 2 645 516 habitants pour la première, 1 192 776 habitants pour la seconde et 1 208 068 habitants pour la dernière. C’est dire que les trois Provinces du Sud du Centre et du Littoral où l’EPC est fortement représentée et fait partie des confessions religieuses prédominantes comprennent chacune plus de 250 000 fidèles, alors que l’Est compte entre 100 000 à 200 000 fidèles, l’Adamaoua de 5 000 à 10 000 fidèles, les autres ayant moins de 5 000 fidèles.</span></span></p> <p class="paratitre" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>UN MESSAGE UNIVERSEL PORTE A L’INTERNATIONAL</strong></span></span></p> <p class="juste" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le message universel de Christ dans la doctrine et la philosophie de l’EPC sus-évoquées ne se limite pas à être prêché sur le territoire national. Aussi l’Eglise a-t-elle installé un Conseil de Mission Presbytérienne Camerounaise en France et des Paroisses au Gabon. D’autre part elle collabore avec d’autres Eglises nationales dans le cadre d’un partenariat à l’instar de la Presbyterian Church of United States of America, la Mission de Paris en France, la Mission Allemande de Bâle et même l’Eglise Protestante DAGER du Gabon, l’Eglise Evangélique du Gabon. </span></span></p>L’église presbytérienne Camerounaiseinheritopenopen65-revision2012-01-17 17:24:432012-01-17 16:24:4365http://www.alicepegie.com/wordpress/wordpress/?p=660revision0
6712010-01-14 17:25:392010-01-14 16:25:39<img style="float: left;" src="images/stories/gospel.jpg" alt="gospel" width="294" height="171" /><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: 12pt;">Ronz</span> </span></strong><span style="font-family: 'Arial','sans-serif';"><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Ronz|1||a{/nmap}<!--more--> </span></a></span> <strong><span style="font-size: 12pt;">Les Colombes</span> </strong><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Les_Colombes|1||a{/nmap}</span></a> <strong><span style="font-size: 12pt;">Gospel Singers de Messa </span></strong> <span style="font-size: 8pt;"><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Gospel_Singers_Messa|1||a{/nmap}</span></a></span> <span style="font-size: 12pt;"><strong>Spirit Songs Meyomessala</strong></span> &nbsp; <a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Spirit_songs_Meyomessala|1||a{/nmap}</span></a> <span style="font-size: 12pt;"><strong>Sur les Ailes de la Foi: Cantiques chantés</strong></span> &nbsp; <a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/cantiques|1||a{/nmap}</span></a> &nbsp; <strong><span style="font-size: 12pt;">Voix de l'Esprit</span></strong> &nbsp; &nbsp; <a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/voix_de_lesprit|1||a{/nmap}</span></a> &nbsp; <strong><span style="font-size: 12pt;">ECHO Du Ciel</span></strong> &nbsp; <a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Echo_du_ciel|1||a{/nmap}</span></a> &nbsp; &nbsp;Les Choralespublishopenopenles-chorales2012-01-18 11:28:332012-01-18 10:28:330http://www.alicepegie.com/wordpress/wordpress/?p=670post0
6812012-01-17 17:25:532012-01-17 16:25:53<p><img style="float: left;" alt="gospel" src="images/stories/gospel.jpg" height="171" width="294" /><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: 12pt;">Ronz</span> </span></strong><span style="font-family: 'Arial','sans-serif';"></span><span style="font-family: 'Arial','sans-serif';"><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Ronz|1||a{/nmap}<hr id="system-readmore" /></span></a></span></p> <p><strong><span style="font-size: 12pt;">Les Colombes</span> </strong><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Les_Colombes|1||a{/nmap}</span></a></p> <p><strong><span style="font-size: 12pt;">Gospel Singers de Messa&nbsp;</span></strong></p> <p><span style="font-size: 8pt;"><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Gospel_Singers_Messa|1||a{/nmap}</span></a></span></p> <p><span style="font-size: 12pt;"><strong>Spirit Songs Meyomessala</strong></span></p> <p>&nbsp;</p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Spirit_songs_Meyomessala|1||a{/nmap}</span></a></p> <p><span style="font-size: 12pt;"><strong>Sur les Ailes de la Foi: Cantiques chantés</strong></span></p> <p>&nbsp;</p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/cantiques|1||a{/nmap}</span></a></p> <p>&nbsp;</p> <p><strong><span style="font-size: 12pt;">Voix de l'Esprit</span></strong></p> <p>&nbsp;</p> <p>&nbsp;</p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/voix_de_lesprit|1||a{/nmap}</span></a></p> <p>&nbsp;</p> <p><strong><span style="font-size: 12pt;">ECHO Du Ciel</span></strong></p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';"></span></a></p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Echo_du_ciel|1||a{/nmap}</span></a></p> <p>&nbsp;</p> <p>&nbsp;</p>Les Choralesinheritopenopen67-revision2012-01-17 17:25:532012-01-17 16:25:5367http://www.alicepegie.com/wordpress/wordpress/?p=680revision0
14212012-01-17 17:25:202012-01-17 16:25:20<p> </p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img src="images/stories/epc.jpg" border="0" alt="epc" width="400" height="440" style="float: left;" />Je souhaite ici vous présenter l’église dans laquelle je suis née, ai été baptisée et ai grandit. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Il y a plus de 150 ans, la Mission Presbytérienne Américaine s’engageait à l’évangélisation des peuples du Cameroun ; En 1869, naissait une Paroisse à Batanga par Kribi (probablement la premières dans le pays). D’autres missions chrétiennes feront leur entrée au Cameroun parmi lesquelles la Mission de Bâle (allemande) dont la MPA héritera d’une partie du champ de la mission après la première guerre mondiale, suite à la défaite de l’Allemagne dont le Cameroun depuis 1884 était sous protectorat (grâce aux Accords Germano-Douala), et après entérinement des occupations franco-britannique en 1922 par la Société des Nations (S.D.N).</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En 1936 voyait le jour le premier Synode de cette Mission Presbytérienne Américaine en l’occurrence MUNICAM. Puis dans son développement successivement naîtront en 1953 le Synode Bassa Cameroun et en 1954, le Synode Est Cameroun. Les velléités nationalistes connaissent alors un aboutissement dans le cadre des revendications à l’autonomie en Afrique. En 1957, le Ghana est indépendant. C’est la même année que les Camerounais décident de mettre fin à plus de 100 ans de domination américaine sur le plan religieux, le message d’évangélisation chrétienne étant universel. Le 11 décembre 1957 à Elat par Ebolowa dans le Sud-Cameroun (une des plus célèbres parmi ce qui était alors appelé les Stations de la Mission Presbytérienne Américaine). Les Camerounais concrétisaient leur rêve d’indépendance religieuse, prélude à l’indépendance politique du pays qui viendra trois années plus tard en proclamant l’indépendance de l’Eglise Presbytérienne camerounaise (EPC) après signature d’une Convention de l’autonomie, dont trois grandes selfs constituaient l’essentiel du contenu, parmi lesquels la self supporting Church, qui voulait que l’Eglise soit gérée par les nationaux, en assumant les charges financières et ne devant plus attendre des subventions d’ailleurs. L’EPC à l’instar de ses consœurs de la Presbyterian Church of Cameroon (PCC) et de l’Eglise Evangélique du Cameroun (EEC) a aujourd’hui cinquante ans.</span></span></p> <hr id="system-readmore" /> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CE QU’IL FAUT SAVOIR SUR L’EPC</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Deux documents régulent la vie, la doctrine et les procédures dans l’EPC, la Bible et la Constitution. Un opuscule de cette église en 2003 (Eglise Presbytérienne Camerounaise) édifie les intéressés quant à ses objectifs, son rôle et ses missions, sa philosophie. L’Eglise Presbytérienne Camerounaise a reçu de son Chef et Sauveur Jésus-Christ, la tâche de transmettre à toute créature le message du royaume de Dieu. Elle affirme, avec toutes les Eglises de la Réforme dont elle en est une, l’autorité souveraine des Saintes Ecritures, et trouve en elles la règle de la loi et de la vie. L’expression de sa foi est la Bible, rien que la Bible. Elle proclame le salut par la grâce, par le moyen de la Foi en Jésus-Christ. La prédication de la parole et l’administration des sacrements sont les signes par lesquels on la reconnaît. Elle poursuit également l’accomplissement de sa tâche par l’enseignement de la doctrine, la cure d’âme, les œuvres médicales et scolaires, les associations religieuses particulières notamment cellés pour la jeunesse, pour les femmes et pour les hommes, la bienfaisance, par l’envoi des messagers vers ceux qui ne connaissent pas encore l’Evangile. Prenant appui sur les promesses du Seigneur et sous la conduite de l’Esprit Saint, avec la ferme assurance de l’espérance de la foi, le Modérateur de la 46ème Assemblée Générale de l’EPC le Révérend Samuel Bikoï II du Consistoire d’Eseka ajoute dans la préface de cette publication « pour la reconstruction d’un monde à visage humain, pour la promotion de la paix, pour plus de solidarité et de justice, l’EPC participe à cette lutte mais elle est convaincue que c’est l’homme qu’il faut reconstruire ».</span></span></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>COMMENT ELLE EST ORGANISEE ET FONCTIONNE</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">De par son essence presbytérienne, l’EPC n’a pas choisi une forme de gouvernement présidentialiste avec un président à la tête de l’exécutif doté d’une autorité suprême et prépondérante. La vie de l’Eglise dominée par une gestion participative des Pasteurs et des Anciens d’Eglise et laïcs à tous les niveaux de l’échelle est régulée par l’instance suprême qu’est l’Assemblée Générale annuelle formée de moitié par les Pasteurs et de moitié par les Anciens. C’est l’institution suprême de l’Eglise qui arrête toutes les décisions importantes au fonctionnement et aux activités de l’EPC dans son ensemble. En début des travaux, il est élu un bureau chargé de conduire aux destinées de l’Eglise à la tête duquel est choisi un Modérateur, c’est-à-dire celui qui retient dans les bornes de la modération, celle-ci étant la qualité d’une personne ou d’une chose éloignée de tout excès, pondération, sagesse. C’est une personnalité morale qui a un mandat d’un an renouvelable en principe. A côté de lui se trouve le Secrétaire Général qui assure l’exécutif de l’Eglise, personnalité civile élue pour cinq ans et rééligible. Puis viennent les grands Conseils Permanents avec le Conseil Général sous la responsabilité directe du Modérateur dont le rôle est de financer les œuvres sociales, d’établir le budget de l’Eglise, de décider les salaires des ouvriers etc…, le Conseil d’Administration dépendant du Secrétariat Général qui est chargé d’exécuter et de faire respecter la loi, d’administrer les biens, de contrôler la Caisse des subventions, d’étudier la loi à présenter à l’Assemblée Générale. A cela il faut ajouter : une Commission Juridique Permanente rendant compte directement à l’Assemblée Générale de qui elle dépend. Puis viennent la Trésorerie Générale, l’Education Chrétienne sous le contrôle du Conseil µGénéral chargée de la jeunesse, des Ecoles de Dimanche, des cultes de Femmes, d’Adultes seuls,</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">de l’enseignement religieux et du programme de l’Eglise et les institutions diverses à savoir écoles, hôpitaux, librairie, Imprimerie, Littérature, Traduction, Publications et Séminaires sous la supervision du Conseil d’Administration.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">A un degré plus bas il y a les Synodes (assemblées des délégués, Pasteurs et Anciens), des Consistoires Paroissiaux et Régionaux. Puis suivent les consistoires (assemblées dirigeantes de Pasteurs et de Laïcs à une échelle moindre que les Synodes), puis à la base de l’échelle se trouvent les Paroisses, territoires sur lesquels s’étend la juridiction spirituelle d’un Pasteur Modérateur (qui peut avoir un Co-Modérateur) et des Anciens d’Eglise.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le principe qui prédomine dans le fonctionnement de l’Eglise est celui de la liberté de conscience duquel découle l’éclatement ou le fractionnement des Paroisses, Consistoires et Synodes.</span></span></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>UNE IMPLANTATION ET UNE ASSISE VERITABLEMENT NATIONALES</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Si elle n’est pas la première parmi les Eglises Réformées du Cameroun, l’EPC n’en est pas loin. Les estimations des chiffres en 2002 parlent d’un nombre de fidèles communiants de 1 096 000 pour une population de 14 814 293 habitants avec 9 585 Diacres, 8 055 Anciens d’Eglises, 506 Pasteurs pour 610 Paroisses, 25 Consistoires et 06 Synodes (Municam, Bassa-Cameroun, Centre, Est-Cameroun, Metet, Sud) à caractère presque régional.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L’Eglise est implantée sur l’ensemble du territoire du Cameroun et les mêmes estimations indiquent une répartition en termes de pourcentage de la population par province de 38 % sur 519 928 habitants pour le Sud, 35 % sur 2 431 428 habitants dans le Centre, 33 % sur 2 140 840 habitants pour le Littoral, 30 % sur 734 016 habitants pour l’Est pour les plus grandes zones d’implantation, alors que seulement on retrouve 1 % sur 703 432 habitants dans l’Adamaoua, 0,2 % chacune dans l’Ouest et le Nord-Ouest pour des populations respectives de 1 616 847 et 1 621 442 habitants et enfin 0,1 % dans chacune des Provinces de l’Extrême6nord, le Nord et le Sud-Ouest pour des populations de 2 645 516 habitants pour la première, 1 192 776 habitants pour la seconde et 1 208 068 habitants pour la dernière. C’est dire que les trois Provinces du Sud du Centre et du Littoral où l’EPC est fortement représentée et fait partie des confessions religieuses prédominantes comprennent chacune plus de 250 000 fidèles, alors que l’Est compte entre 100 000 à 200 000 fidèles, l’Adamaoua de 5 000 à 10 000 fidèles, les autres ayant moins de 5 000 fidèles.</span></span></p> <p class="paratitre" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>UN MESSAGE UNIVERSEL PORTE A L’INTERNATIONAL</strong></span></span></p> <p class="juste" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le message universel de Christ dans la doctrine et la philosophie de l’EPC sus-évoquées ne se limite pas à être prêché sur le territoire national. Aussi l’Eglise a-t-elle installé un Conseil de Mission Presbytérienne Camerounaise en France et des Paroisses au Gabon. D’autre part elle collabore avec d’autres Eglises nationales dans le cadre d’un partenariat à l’instar de la Presbyterian Church of United States of America, la Mission de Paris en France, la Mission Allemande de Bâle et même l’Eglise Protestante DAGER du Gabon, l’Eglise Evangélique du Gabon. </span></span></p>L’église presbytérienne Camerounaiseinheritopenopen65-revision-22012-01-17 17:25:202012-01-17 16:25:2065http://www.alicepegie.com/wordpress/wordpress/?p=1420revision0
6912012-01-17 17:26:142012-01-17 16:26:14<p><img style="float: left;" alt="gospel" src="images/stories/gospel.jpg" height="171" width="294" /><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: 12pt;">Ronz</span> </span></strong><span style="font-family: 'Arial','sans-serif';"></span><span style="font-family: 'Arial','sans-serif';"><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Ronz|1||a{/nmap}<hr id="system-readmore" /></span></a></span></p> <p><strong><span style="font-size: 12pt;">Les Colombes</span> </strong><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Les_Colombes|1||a{/nmap}</span></a></p> <p><strong><span style="font-size: 12pt;">Gospel Singers de Messa&nbsp;</span></strong></p> <p><span style="font-size: 8pt;"><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Gospel_Singers_Messa|1||a{/nmap}</span></a></span></p> <p><span style="font-size: 12pt;"><strong>Spirit Songs Meyomessala</strong></span></p> <p>&nbsp;</p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Spirit_songs_Meyomessala|1||a{/nmap}</span></a></p> <p><span style="font-size: 12pt;"><strong>Sur les Ailes de la Foi: Cantiques chantés</strong></span></p> <p>&nbsp;</p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/cantiques|1||a{/nmap}</span></a></p> <p>&nbsp;</p> <p><strong><span style="font-size: 12pt;">Voix de l'Esprit</span></strong></p> <p>&nbsp;</p> <p>&nbsp;</p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/voix_de_lesprit|1||a{/nmap}</span></a></p> <p>&nbsp;</p> <p><strong><span style="font-size: 12pt;">ECHO Du Ciel</span></strong></p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';"></span></a></p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Echo_du_ciel|1||a{/nmap}</span></a></p> <p>&nbsp;</p> <p>&nbsp;</p>Les Choralesinheritopenopen67-revision-22012-01-17 17:26:142012-01-17 16:26:1467http://www.alicepegie.com/wordpress/wordpress/?p=690revision0
7012010-01-14 17:26:542010-01-14 16:26:54<span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><img style="float: left;" title="abakuya,268073.jpg" src="images/stories/abakuya.jpg" alt="abakuya" width="193" height="293" border="0" /></span></span></span> <span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';"> </span> <span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/centre_sud/abakuya|1||a{/nmap}</span> <!--more--> <strong></strong><strong>Un voyage rythmique redoutable. </strong> &nbsp; <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><span style="font-size: small;">Ab</span></span>akuya, la nouvelle mouvance tradi-urbaine venue du Cameroun... Les compositions d’Abakuya vont du conte, des musiques traditionnelles et des compositions puisés dans un folklore Fang, Beti, Bulu, Ntumu Mbidambani... Cette fusion parfois mi transe mi rock amène l’auditeur dans un voyage à travers le monde. Ce son si enchantant est issu d’une fusion d’instruments traditionnels, modernes, et improvisés ou acoustiques ; la basse, le violon, la voix, parfois une batterie, des percussions, le mvet, le ngomo, et d’autres encore… </span></span> &nbsp; <p style="text-align: justify;">La musique du groupe Abakuya est le résultat de recherches pour la réhabilitation des musiques traditionnelles polyphoniques d'Afrique centrale, en particulier l'Ekang et le Bal (à prononcer BÖL).</p> <p style="text-align: justify;">L'Ekang: Ce son sacré et enchanté est caractérisé par la diversité de ses mélodies, de ses harmonies et de ses rythmes complexes. Jouée par le Mvet, chanté par un (Mbom mvet), c'est une musique de transe qui emmène l'auditeur en voyage à travers le passé et le futur, en lui montrant toute la beauté du monde dans lequel nous vivons.</p> Le Bal (BÖL): Musique née vers le xve siècle. Un mélange d'accordéon (l'accordéon est un instrument venu par la mer; des Portugais et des Espagnols, premiers explorateurs... En ce temps là, les colons espagnols organisaient des bals dansants, auxquels les musiciens indigènes étaient invités. Curieux et déterminés, certains indigènes, après des échanges, réussirent à obtenir un accordéon. À leur tour, ils essayeront de faire plaisir aux colons en leur jouant leur répertoire. C'est là alors que l'histoire commence. &nbsp; <p style="text-align: justify;">Les africains organisent donc des bals dansants et invitent leurs amis européens. Et quand les Blancs arrivent dans ces bals organisés par des Africains, ils sont morts...</p> Morts parce que: Ils écoutent une musique surprenante, entraînante et emvoutante. Un mélange de langues (espagnole, portugaise, africaine) et de style... Le malentendu: Le Bal se dansait le samedi soir, et dimanche il y avait la messe. À un moment, les prêtres ont constaté que les églises étaient vides les dimanches, et même, que certains dimanches, à l’heure de midi, le tambour du BÖL résonnait encore. C'est pour cela que le BöL devint petit à petit l’ennemi de Dieu, de l’Église et ils commencèrent à condamner le BÖL. Des histoires racontent que le BÖL était si entraînant que certains prêtres le condamnaient le jour, mais assistaient à des BÖL entiers la nuit, en se déguisant. Le BÖL est une fête où se mêle bal masqué, bal royal... Donc le déguisement était autorisé... L'histoire raconte que les prêtres colons ont fini par maudir le BÖL... Les instruments et l’orchestre du BÖL: - le chanteur - l'orateur (animateur) - l'accordéon - le tambour - les maracasses Le groupe Abakuya joue le BÖL avec: - l'accordéon: François Marnier - le tambour, orateur, chanteur: François Essindi - le contre bassiste: Jimi Sofo - le violon: Melissa Cox La danse Böl: Orateur: Hi mobilimencement, animez les cinq coups! l'Assistance: Nous sommes ici pour animer la danse... Orateur: Kob étan! Les Eboxé: -Eboxé Mandjounga... -Eboxé bizimba bi maria... -Eboxé Kpwam-kpwam deux fois... Et d'autres encore... Abakuya est à la recherche d'une musique qui emporte l'auditeur dans un voyage à travers le passé et le futur, en lui montrant toute la beauté du monde dans lequel nous vivons. <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.concerts.fr/Biographie/abakuya">Source</a></span></p>Abakuyapublishopenopenabakuya2012-01-20 13:48:392012-01-20 12:48:390http://www.alicepegie.com/wordpress/wordpress/?p=700post0
7112012-01-17 17:27:082012-01-17 16:27:08<p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><img src="images/stories/abakuya.jpg" alt="abakuya" title="abakuya,268073.jpg" style="float: left;" border="0" height="293" width="193" /></span></span></span></p> <p><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';"><hr id="system-readmore" />{nmap}normal|250|150|images/stories/audio/centre_sud/abakuya|1||a{/nmap}<span style="font-size: 12pt; line-height: 115%;"></span></span></p> <p>&nbsp; </p> <p><strong><strong>Un voyage rythmique redoutable. </strong></strong></p> <p>&nbsp; </p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><span style="font-size: small;">Ab</span></span>akuya, la nouvelle mouvance tradi-urbaine venue du Cameroun... Les compositions d’Abakuya vont du conte, des musiques traditionnelles et des compositions puisés dans un folklore Fang, Beti, Bulu, Ntumu Mbidambani... Cette fusion parfois mi transe mi rock amène l’auditeur dans un voyage à travers le monde. Ce son si enchantant est issu d’une fusion d’instruments traditionnels, modernes, et improvisés ou acoustiques ; la basse, le violon, la voix, parfois une batterie, des percussions, le mvet, le ngomo, et d’autres encore… </span></span></p> <p>&nbsp;</p> <p style="text-align: justify;">La musique du groupe Abakuya est le résultat de recherches pour la réhabilitation des musiques traditionnelles polyphoniques d'Afrique centrale, en particulier l'Ekang et le Bal (à prononcer BÖL).</p> <p style="text-align: justify;">L'Ekang: Ce son sacré et enchanté est caractérisé par la diversité de ses mélodies, de ses harmonies et de ses rythmes complexes. Jouée par le Mvet, chanté par un (Mbom mvet), c'est une musique de transe qui emmène l'auditeur en voyage à travers le passé et le futur, en lui montrant toute la beauté du monde dans lequel nous vivons. <br /><br />Le Bal (BÖL): Musique née vers le xve siècle. Un mélange d'accordéon (l'accordéon est un instrument venu par la mer; des Portugais et des Espagnols, premiers explorateurs... En ce temps là, les colons espagnols organisaient des bals dansants, auxquels les musiciens indigènes étaient invités. Curieux et déterminés, certains indigènes, après des échanges, réussirent à obtenir un accordéon. À leur tour, ils essayeront de faire plaisir aux colons en leur jouant leur répertoire. C'est là alors que l'histoire commence.</p> <p>&nbsp;</p> <p style="text-align: justify;">Les africains organisent donc des bals dansants et invitent leurs amis européens. Et quand les Blancs arrivent dans ces bals organisés par des Africains, ils sont morts...<br /><br />Morts parce que: Ils écoutent une musique surprenante, entraînante et emvoutante. Un mélange de langues (espagnole, portugaise, africaine) et de style... <br /><br />Le malentendu: Le Bal se dansait le samedi soir, et dimanche il y avait la messe. À un moment, les prêtres ont constaté que les églises étaient vides les dimanches, et même, que certains dimanches, à l’heure de midi, le tambour du BÖL résonnait encore. C'est pour cela que le BöL devint petit à petit l’ennemi de Dieu, de l’Église et ils commencèrent à condamner le BÖL. Des histoires racontent que le BÖL était si entraînant que certains prêtres le condamnaient le jour, mais assistaient à des BÖL entiers la nuit, en se déguisant.<br /><br />Le BÖL est une fête où se mêle bal masqué, bal royal... Donc le déguisement était autorisé...<br /><br />L'histoire raconte que les prêtres colons ont fini par maudir le BÖL...<br /><br /> Les instruments et l’orchestre du BÖL:<br />- le chanteur<br />- l'orateur (animateur)<br />- l'accordéon<br />- le tambour<br />- les maracasses<br /><br />Le groupe Abakuya joue le BÖL avec:<br /><br />- l'accordéon: François Marnier<br />- le tambour, orateur, chanteur: François Essindi<br />- le contre bassiste: Jimi Sofo<br />- le violon: Melissa Cox<br /><br /> La danse Böl:<br /><br />Orateur: Hi mobilimencement, animez les cinq coups!<br />l'Assistance: Nous sommes ici pour animer la danse...<br />Orateur: Kob étan!<br /><br />Les Eboxé:<br />-Eboxé Mandjounga...<br />-Eboxé bizimba bi maria...<br />-Eboxé Kpwam-kpwam deux fois...<br /><br />Et d'autres encore...<br /><br />Abakuya est à la recherche d'une musique qui emporte l'auditeur dans un voyage à travers le passé et le futur, en lui montrant toute la beauté du monde dans lequel nous vivons.</p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.concerts.fr/Biographie/abakuya">Source</a></span></p>Abakuyainheritopenopen70-revision2012-01-17 17:27:082012-01-17 16:27:0870http://www.alicepegie.com/wordpress/wordpress/?p=710revision0
14012012-01-18 11:28:152012-01-18 10:28:15<img style="float: left;" src="images/stories/gospel.jpg" alt="gospel" width="294" height="171" /><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: 12pt;">Ronz</span> </span></strong><span style="font-family: 'Arial','sans-serif';"><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Ronz|1||a{/nmap}<!--more--> </span></a></span> <strong><span style="font-size: 12pt;">Les Colombes</span> </strong><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Les_Colombes|1||a{/nmap}</span></a> <strong><span style="font-size: 12pt;">Gospel Singers de Messa </span></strong> <span style="font-size: 8pt;"><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Gospel_Singers_Messa|1||a{/nmap}</span></a></span> <span style="font-size: 12pt;"><strong>Spirit Songs Meyomessala</strong></span> &nbsp; <a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Spirit_songs_Meyomessala|1||a{/nmap}</span></a> <span style="font-size: 12pt;"><strong>Sur les Ailes de la Foi: Cantiques chantés</strong></span> &nbsp; <a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/cantiques|1||a{/nmap}</span></a> &nbsp; <strong><span style="font-size: 12pt;">Voix de l'Esprit</span></strong> &nbsp; &nbsp; <a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/voix_de_lesprit|1||a{/nmap}</span></a> &nbsp; <strong><span style="font-size: 12pt;">ECHO Du Ciel</span></strong> &nbsp; <a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Echo_du_ciel|1||a{/nmap}</span></a> &nbsp; &nbsp;Les Choralesinheritopenopen67-autosave2012-01-18 11:28:152012-01-18 10:28:1567http://www.alicepegie.com/wordpress/wordpress/?p=1400revision0
7212012-01-18 11:23:362012-01-18 10:23:36<img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/1.JPG" alt="bierre au gingembre" width="600" height="741" />Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre.<!--more--> <div class="art-postcontent"> <div class="art-article"> <strong>Pour 2l de bière env.</strong> 1 citron jaune coupé en rondelles 1 citron vert coupé en rondelles<strong> </strong> <ul> <li>2l d'eau</li> <li>75g de gingembre frais, haché grossièrement</li> <li>300g de sucre</li> <li>1 cc de jus de citron</li> <li>15g de levure sèche de boulangerie (3 cuillères à café)</li> </ul> &nbsp; <strong>Préparation</strong> <ul> <li>Dans une grande casserole, versez les 2 litres d'eau, les rondelles de citron et le gingembre haché et portez le tout à ébullition et laissez mijoter 5mn puis coupez la source de chaleur et laissez infuser 30 mn.</li> </ul> <img src="/images/stories/BIERRE/2.JPG" alt="2" width="350" height="263" /><img src="/images/stories/BIERRE/4.JPG" alt="4" width="350" height="263" /> <ul> <li>Ajoutez le reste des ingrédients</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Laisser macérer 48 heures, à couvert dans un endroit chaud à l’abri des courant d’air</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/7.JPG" alt="7" width="600" height="450" />filtrez et versez la préparation dans une bouteille pouvant contenir 3l ou dans 3 bouteilles de 1l en laissant de l’espace. <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/8.JPG" alt="8" width="600" height="450" />Fermez la (les) bouteilles et laissez fermenter au frais pendant 24 heures <ul> <li>pour servir diluez avec un peu d’eau gazeuse !!</li> </ul> <img src="/images/stories/BIERRE/9.JPG" alt="bierre au gingembre" width="326" height="593" /><img src="/images/stories/BIERRE/10.JPG" alt="bierre au gingembre" width="362" height="594" /> C’est sur cette note épicée qu<strong><a href="http://www.alicepegie.com">’Une Graine de Maniguette </a>va faire une pause et vous donne de nouveau rendez vous à compter du 9 Janvier 2012 s’il plait à Dieu. Bonnes fêtes de fin d'année à tous!!</strong> <strong><img src="/images/stories/BIERRE/11.JPG" alt="bierre au gingembre" width="327" height="503" /><img src="/images/stories/BIERRE/12.JPG" alt="bierre au gingembre" width="361" height="505" /></strong> </div> </div>La Bière au Gingembre Maisoninheritopenopen17-autosave2012-01-18 11:23:362012-01-18 10:23:3617http://www.alicepegie.com/wordpress/wordpress/?p=720revision0
7312012-01-17 16:45:472012-01-17 15:45:47<a class="PostHeader" href="/ma-cuisine/boissons/3067-la-biere-au-gingembre-maison">La Bière au Gingembre maison</a> <div class="art-postheadericons art-metadata-icons"><span class="art-postdateicon">Date de publication</span> | <a title="Imprimer" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;" href="/ma-cuisine/boissons/3067-la-biere-au-gingembre-maison?tmpl=component&amp;print=1&amp;layout=default&amp;page=" rel="nofollow"><img src="/templates/maniguettebis1/images/system/printButton.png" alt="Imprimer" /></a> | <a title="E-mail" onclick="window.open(this.href,'win2','width=400,height=350,menubar=yes,resizable=yes'); return false;" href="/component/mailto/?tmpl=component&amp;template=maniguettebis1&amp;link=495678c1afa50b03210cc89a9f2890d74d962a23"><img src="/templates/maniguettebis1/images/system/emailButton.png" alt="E-mail" /></a> | Affichages : 257</div> <div class="art-postcontent"> <div class="art-article"> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/1.JPG" alt="bierre au gingembre" width="600" height="741" />Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre. <strong>Pour 2l de bière env.</strong> 1 citron jaune coupé en rondelles 1 citron vert coupé en rondelles<strong> </strong> <ul> <li>2l d'eau</li> <li>75g de gingembre frais, haché grossièrement</li> <li>300g de sucre</li> <li>1 cc de jus de citron</li> <li>15g de levure sèche de boulangerie (3 cuillères à café)</li> </ul> &nbsp; <strong>Préparation</strong> <ul> <li>Dans une grande casserole, versez les 2 litres d'eau, les rondelles de citron et le gingembre haché et portez le tout à ébullition et laissez mijoter 5mn puis coupez la source de chaleur et laissez infuser 30 mn.</li> </ul> <img src="/images/stories/BIERRE/2.JPG" alt="2" width="350" height="263" /><img src="/images/stories/BIERRE/4.JPG" alt="4" width="350" height="263" /> <ul> <li>Ajoutez le reste des ingrédients</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Laisser macérer 48 heures, à couvert dans un endroit chaud à l’abri des courant d’air</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/7.JPG" alt="7" width="600" height="450" />filtrez et versez la préparation dans une bouteille pouvant contenir 3l ou dans 3 bouteilles de 1l en laissant de l’espace. <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/8.JPG" alt="8" width="600" height="450" />Fermez la (les) bouteilles et laissez fermenter au frais pendant 24 heures <ul> <li>pour servir diluez avec un peu d’eau gazeuse !!</li> </ul> <img src="/images/stories/BIERRE/9.JPG" alt="bierre au gingembre" width="326" height="593" /><img src="/images/stories/BIERRE/10.JPG" alt="bierre au gingembre" width="362" height="594" /> C’est sur cette note épicée qu<strong><a href="http://www.alicepegie.com">’Une Graine de Maniguette </a>va faire une pause et vous donne de nouveau rendez vous à compter du 9 Janvier 2012 s’il plait à Dieu. Bonnes fêtes de fin d'année à tous!!</strong> <strong><img src="/images/stories/BIERRE/11.JPG" alt="bierre au gingembre" width="327" height="503" /><img src="/images/stories/BIERRE/12.JPG" alt="bierre au gingembre" width="361" height="505" /></strong> </div> </div>La Bière au Gingembre Maisoninheritopenopen17-revision-52012-01-17 16:45:472012-01-17 15:45:4717http://www.alicepegie.com/wordpress/wordpress/?p=730revision0
8112012-01-18 04:30:522012-01-18 03:30:52 publishopenopen812012-01-18 04:30:522012-01-18 03:30:5245http://www.alicepegie.com/wordpress/wordpress/?p=818nav_menu_item0
8212012-01-18 04:30:522012-01-18 03:30:52 publishopenopen822012-01-18 04:30:522012-01-18 03:30:5245http://www.alicepegie.com/wordpress/wordpress/?p=829nav_menu_item0
8312012-01-18 04:30:522012-01-18 03:30:52 publishopenopen832012-01-18 04:30:522012-01-18 03:30:5245http://www.alicepegie.com/wordpress/wordpress/?p=8310nav_menu_item0
8412012-01-18 04:30:522012-01-18 03:30:52 publishopenopen842012-01-18 04:30:522012-01-18 03:30:528http://www.alicepegie.com/wordpress/wordpress/?p=8411nav_menu_item0
8512012-01-18 04:30:522012-01-18 03:30:52 publishopenopen852012-01-18 04:30:522012-01-18 03:30:528http://www.alicepegie.com/wordpress/wordpress/?p=8512nav_menu_item0
8612012-01-18 04:30:522012-01-18 03:30:52 publishopenopen862012-01-18 04:30:522012-01-18 03:30:528http://www.alicepegie.com/wordpress/wordpress/?p=8613nav_menu_item0
8712012-01-18 04:30:522012-01-18 03:30:52 publishopenopen872012-01-18 04:30:522012-01-18 03:30:5232http://www.alicepegie.com/wordpress/wordpress/?p=8714nav_menu_item0
8812012-01-18 04:30:532012-01-18 03:30:53 publishopenopen882012-01-18 04:30:532012-01-18 03:30:5332http://www.alicepegie.com/wordpress/wordpress/?p=8815nav_menu_item0
8912012-01-18 04:30:532012-01-18 03:30:53 publishopenopen892012-01-18 04:30:532012-01-18 03:30:5332http://www.alicepegie.com/wordpress/wordpress/?p=8916nav_menu_item0
9012012-01-18 04:30:532012-01-18 03:30:53 publishopenopen902012-01-18 04:30:532012-01-18 03:30:5332http://www.alicepegie.com/wordpress/wordpress/?p=9017nav_menu_item0
9112012-01-18 04:30:532012-01-18 03:30:53 publishopenopen912012-01-18 04:30:532012-01-18 03:30:5332http://www.alicepegie.com/wordpress/wordpress/?p=9118nav_menu_item0
9212012-01-18 04:30:532012-01-18 03:30:53 publishopenopen922012-01-18 04:30:532012-01-18 03:30:5332http://www.alicepegie.com/wordpress/wordpress/?p=9219nav_menu_item0
9312012-01-18 04:30:532012-01-18 03:30:53 publishopenopen932012-01-18 04:30:532012-01-18 03:30:5332http://www.alicepegie.com/wordpress/wordpress/?p=9320nav_menu_item0
9412012-01-18 04:30:532012-01-18 03:30:53 publishopenopen942012-01-18 04:30:532012-01-18 03:30:538http://www.alicepegie.com/wordpress/wordpress/?p=9421nav_menu_item0
9512012-01-18 04:30:532012-01-18 03:30:53 publishopenopen952012-01-18 04:30:532012-01-18 03:30:5329http://www.alicepegie.com/wordpress/wordpress/?p=9522nav_menu_item0
9612012-01-18 04:30:532012-01-18 03:30:53 publishopenopen962012-01-18 04:30:532012-01-18 03:30:5329http://www.alicepegie.com/wordpress/wordpress/?p=9623nav_menu_item0
9712012-01-18 04:30:532012-01-18 03:30:53 publishopenopen972012-01-18 04:30:532012-01-18 03:30:5329http://www.alicepegie.com/wordpress/wordpress/?p=9724nav_menu_item0
9812012-01-18 04:30:532012-01-18 03:30:53 publishopenopen982012-01-18 04:30:532012-01-18 03:30:538http://www.alicepegie.com/wordpress/wordpress/?p=9825nav_menu_item0
9912012-01-18 04:30:532012-01-18 03:30:53 publishopenopen992012-01-18 04:30:532012-01-18 03:30:538http://www.alicepegie.com/wordpress/wordpress/?p=9926nav_menu_item0
10012012-01-18 04:30:532012-01-18 03:30:53 publishopenopen1002012-01-18 04:30:532012-01-18 03:30:538http://www.alicepegie.com/wordpress/wordpress/?p=10027nav_menu_item0
10112012-01-18 04:30:532012-01-18 03:30:53 publishopenopen1012012-01-18 04:30:532012-01-18 03:30:5330http://www.alicepegie.com/wordpress/wordpress/?p=10128nav_menu_item0
10212012-01-18 04:30:532012-01-18 03:30:53 publishopenopen1022012-01-18 04:30:532012-01-18 03:30:5330http://www.alicepegie.com/wordpress/wordpress/?p=10229nav_menu_item0
10312012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1032012-01-18 04:30:542012-01-18 03:30:5430http://www.alicepegie.com/wordpress/wordpress/?p=10330nav_menu_item0
10412012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1042012-01-18 04:30:542012-01-18 03:30:540http://www.alicepegie.com/wordpress/wordpress/?p=10431nav_menu_item0
10512012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1052012-01-18 04:30:542012-01-18 03:30:546http://www.alicepegie.com/wordpress/wordpress/?p=10532nav_menu_item0
10612012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1062012-01-18 04:30:542012-01-18 03:30:546http://www.alicepegie.com/wordpress/wordpress/?p=10633nav_menu_item0
10712012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1072012-01-18 04:30:542012-01-18 03:30:546http://www.alicepegie.com/wordpress/wordpress/?p=10734nav_menu_item0
10812012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1082012-01-18 04:30:542012-01-18 03:30:546http://www.alicepegie.com/wordpress/wordpress/?p=10835nav_menu_item0
10912012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1092012-01-18 04:30:542012-01-18 03:30:546http://www.alicepegie.com/wordpress/wordpress/?p=10936nav_menu_item0
11012012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1102012-01-18 04:30:542012-01-18 03:30:540http://www.alicepegie.com/wordpress/wordpress/?p=11037nav_menu_item0
11112012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1112012-01-18 04:30:542012-01-18 03:30:547http://www.alicepegie.com/wordpress/wordpress/?p=11138nav_menu_item0
11212012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1122012-01-18 04:30:542012-01-18 03:30:547http://www.alicepegie.com/wordpress/wordpress/?p=11239nav_menu_item0
11312012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1132012-01-18 04:30:542012-01-18 03:30:547http://www.alicepegie.com/wordpress/wordpress/?p=11340nav_menu_item0
11412012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1142012-01-18 04:30:542012-01-18 03:30:547http://www.alicepegie.com/wordpress/wordpress/?p=11441nav_menu_item0
11512012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1152012-01-18 04:30:542012-01-18 03:30:547http://www.alicepegie.com/wordpress/wordpress/?p=11542nav_menu_item0
11612012-01-18 04:30:542012-01-18 03:30:54 publishopenopen1162012-01-18 04:30:542012-01-18 03:30:547http://www.alicepegie.com/wordpress/wordpress/?p=11643nav_menu_item0
11712012-01-18 04:30:542012-01-18 03:30:54Pour Maman & Bébépublishopenopenpour-maman-bebe2012-01-18 04:30:542012-01-18 03:30:547http://www.alicepegie.com/wordpress/wordpress/?p=11744nav_menu_item0
11812012-01-18 04:30:552012-01-18 03:30:55 publishopenopen1182012-01-18 04:30:552012-01-18 03:30:557http://www.alicepegie.com/wordpress/wordpress/?p=11845nav_menu_item0
11912012-01-18 04:30:552012-01-18 03:30:55 publishopenopen1192012-01-18 04:30:552012-01-18 03:30:550http://www.alicepegie.com/wordpress/wordpress/?p=11946nav_menu_item0
12012012-01-18 04:30:552012-01-18 03:30:55 publishopenopen1202012-01-18 04:30:552012-01-18 03:30:559http://www.alicepegie.com/wordpress/wordpress/?p=12047nav_menu_item0
12112012-01-18 04:30:552012-01-18 03:30:55 publishopenopen1212012-01-18 04:30:552012-01-18 03:30:559http://www.alicepegie.com/wordpress/wordpress/?p=12148nav_menu_item0
12212012-01-18 04:30:552012-01-18 03:30:55 publishopenopen1222012-01-18 04:30:552012-01-18 03:30:559http://www.alicepegie.com/wordpress/wordpress/?p=12249nav_menu_item0
12411970-01-01 00:00:001969-12-31 23:00:00<div class="art-postcontent"> <div class="art-article"> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="NOIR.jpg" href="http://s1.e-monsite.com/2009/05/29/08/43117009noir-jpg.jpg"><img style="border: 0pt none; float: left;" title="NOIR.jpg" src="http://s1.e-monsite.com/2009/05/29/08/mini-43117009noir-jpg.jpg" alt="" border="0" /></a></span></span></p> Alicepégie est une fille née au Cameroun, aujourd’hui parisienne, je travaille dans le commerce international. Je suis maman, j’ai toujours aimé la cuisine et faire toute sorte de mélanges. C’est avec la naissance de ma fille que m’est venue l’envie de surveillez ce que je mange et donne à manger à ma peau. L’idée de ce blog est parti d’un constat que j’ai fait. A sa voir que la cuisine africaine est très peu ou mal connue. En effet elle est réputé grasse, peu appétissante et complexe. Alors j’ai eu envie de montrer qu’on peut manger africain, se régaler, faire attention à sa ligne et pour moi qui fonctionne au visuel, trouver ça beau. c’est donc tout naturellement que je commencerais par la cuisine camerounaise, avant de poursuivre à travers le reste de l’Afrique. Ce blog est orienté “Partage” et “Débats”. Je l’ouvre afin de partager mes expériences et projets avec vous. si vous avez des recettes, de idées pour mon blog ou un partenariat à me proposer,<strong> <a title="Contactez moi" href="/contactez-moi">Contactez moi.</a></strong> <strong> </strong> Voilà j’espère que vous viendrez de temps en temps jeter un œil à cette expérience et – pourquoi pas – prendrez vous un peu de plaisir à sa lecture et y participerez! </div> </div>Qui Suis-Jepublishopenopenqui-suis-je2012-01-19 14:50:012012-01-19 13:50:010http://www.alicepegie.com/wordpress/wordpress/?p=1240post0
12512012-01-18 04:34:172012-01-18 03:34:17<div class="art-postcontent"> <div class="art-article"> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="NOIR.jpg" href="http://s1.e-monsite.com/2009/05/29/08/43117009noir-jpg.jpg"><img style="border: 0pt none; float: left;" title="NOIR.jpg" src="http://s1.e-monsite.com/2009/05/29/08/mini-43117009noir-jpg.jpg" alt="" border="0" /></a></span></span></p> Alicepégie est une fille née au Cameroun, aujourd’hui parisienne, je travaille dans le commerce international. Je suis maman, j’ai toujours aimé la cuisine et faire toute sorte de mélanges. C’est avec la naissance de ma fille que m’est venue l’envie de surveillez ce que je mange et donne à manger à ma peau. L’idée de ce blog est parti d’un constat que j’ai fait. A sa voir que la cuisine africaine est très peu ou mal connue. En effet elle est réputé grasse, peu appétissante et complexe. Alors j’ai eu envie de montrer qu’on peut manger africain, se régaler, faire attention à sa ligne et pour moi qui fonctionne au visuel, trouver ça beau. c’est donc tout naturellement que je commencerais par la cuisine camerounaise, avant de poursuivre à travers le reste de l’Afrique. Ce blog est orienté “Partage” et “Débats”. Je l’ouvre afin de partager mes expériences et projets avec vous. si vous avez des recettes, de idées pour mon blog ou un partenariat à me proposer,<strong> <a title="Contactez moi" href="/contactez-moi">Contactez moi.</a></strong> <strong> </strong> Voilà j’espère que vous viendrez de temps en temps jeter un œil à cette expérience et – pourquoi pas – prendrez vous un peu de plaisir à sa lecture et y participerez! </div> </div>Qui Suis-Jeinheritopenopen124-revision2012-01-18 04:34:172012-01-18 03:34:17124http://www.alicepegie.com/wordpress/wordpress/?p=1250revision0
12612012-01-18 04:36:520000-00-00 00:00:00Accueildraftopenopen2012-01-18 04:36:520000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=1261nav_menu_item0
12712012-01-18 04:37:130000-00-00 00:00:00 draftopenopen2012-01-18 04:37:130000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=1271nav_menu_item0
12812012-01-18 04:37:130000-00-00 00:00:00 draftopenopen2012-01-18 04:37:130000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=1281nav_menu_item0
12912012-01-17 11:56:042012-01-17 11:56:04Voici un exemple de page. Elle est différente d'un article de blog, en cela qu'elle restera à la même place, et s'affichera dans le menu de navigation de votre site (en fonction de votre thème). La plupart des gens commencent par écrire une page &laquo;&nbsp;À Propos&nbsp;&raquo; qui les présente aux visiteurs potentiels du site. Vous pourriez y écrire quelque chose de ce tenant&nbsp;: <blockquote>Bonjour&nbsp;! Je suis un mécanicien qui aspire à devenir un acteur, et ceci est mon blog. J'habite à Bordeaux, j'ai un super chien baptisé Russell, et j'aime la vodka-ananas (ainsi que perdre mon temps à regarder la pluie tomber).</blockquote> ...ou bien quelque chose comme ça&nbsp;: <blockquote>La société 123 Machin Truc a été créée en 1971, et n'a cessé de proposer au public des machins-trucs de qualité depuis cette année. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2&nbsp;000 personnes, et fabrique toutes sortes de bidules super pour la communauté bouzemontoise.</blockquote> Etant donné que vous êtes un nouvel utilisateur de WordPress, vous devriez vous rendre sur votre <a href="http://www.alicepegie.com/wordpress/wordpress/wp-admin/">tableau de bord</a> pour effacer la présente page, et créer de nouvelles pages avec votre propre contenu. Amusez-vous bien&nbsp;!Page d&rsquo;exempleinheritopenopen2-revision2012-01-17 11:56:042012-01-17 11:56:042http://www.alicepegie.com/wordpress/wordpress/?p=1290revision0
13012012-01-18 04:39:092012-01-18 03:39:09<div class="art-postcontent"> <div class="art-article"> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="NOIR.jpg" href="http://s1.e-monsite.com/2009/05/29/08/43117009noir-jpg.jpg"><img style="border: 0pt none; float: left;" title="NOIR.jpg" src="http://s1.e-monsite.com/2009/05/29/08/mini-43117009noir-jpg.jpg" alt="" border="0" /></a></span></span></p> Alicepégie est une fille née au Cameroun, aujourd’hui parisienne, je travaille dans le commerce international. Je suis maman, j’ai toujours aimé la cuisine et faire toute sorte de mélanges. C’est avec la naissance de ma fille que m’est venue l’envie de surveillez ce que je mange et donne à manger à ma peau. L’idée de ce blog est parti d’un constat que j’ai fait. A sa voir que la cuisine africaine est très peu ou mal connue. En effet elle est réputé grasse, peu appétissante et complexe. Alors j’ai eu envie de montrer qu’on peut manger africain, se régaler, faire attention à sa ligne et pour moi qui fonctionne au visuel, trouver ça beau. c’est donc tout naturellement que je commencerais par la cuisine camerounaise, avant de poursuivre à travers le reste de l’Afrique. Ce blog est orienté “Partage” et “Débats”. Je l’ouvre afin de partager mes expériences et projets avec vous. si vous avez des recettes, de idées pour mon blog ou un partenariat à me proposer,<strong> <a title="Contactez moi" href="/contactez-moi">Contactez moi.</a></strong> <strong> </strong> Voilà j’espère que vous viendrez de temps en temps jeter un œil à cette expérience et – pourquoi pas – prendrez vous un peu de plaisir à sa lecture et y participerez! </div> </div>Qui Suis-Je?publishopenopenqui-suis-je2012-01-18 04:39:092012-01-18 03:39:090http://www.alicepegie.com/wordpress/wordpress/?page_id=1300page0
13112012-01-18 04:39:072012-01-18 03:39:07<div class="art-postcontent"> <div class="art-article"> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="NOIR.jpg" href="http://s1.e-monsite.com/2009/05/29/08/43117009noir-jpg.jpg"><img style="border: 0pt none; float: left;" title="NOIR.jpg" src="http://s1.e-monsite.com/2009/05/29/08/mini-43117009noir-jpg.jpg" alt="" border="0" /></a></span></span></p> Alicepégie est une fille née au Cameroun, aujourd’hui parisienne, je travaille dans le commerce international. Je suis maman, j’ai toujours aimé la cuisine et faire toute sorte de mélanges. C’est avec la naissance de ma fille que m’est venue l’envie de surveillez ce que je mange et donne à manger à ma peau. L’idée de ce blog est parti d’un constat que j’ai fait. A sa voir que la cuisine africaine est très peu ou mal connue. En effet elle est réputé grasse, peu appétissante et complexe. Alors j’ai eu envie de montrer qu’on peut manger africain, se régaler, faire attention à sa ligne et pour moi qui fonctionne au visuel, trouver ça beau. c’est donc tout naturellement que je commencerais par la cuisine camerounaise, avant de poursuivre à travers le reste de l’Afrique. Ce blog est orienté “Partage” et “Débats”. Je l’ouvre afin de partager mes expériences et projets avec vous. si vous avez des recettes, de idées pour mon blog ou un partenariat à me proposer,<strong> <a title="Contactez moi" href="/contactez-moi">Contactez moi.</a></strong> <strong> </strong> Voilà j’espère que vous viendrez de temps en temps jeter un œil à cette expérience et – pourquoi pas – prendrez vous un peu de plaisir à sa lecture et y participerez! </div> </div>Qui Suis-Je?inheritopenopen130-revision2012-01-18 04:39:072012-01-18 03:39:07130http://www.alicepegie.com/wordpress/wordpress/?p=1310revision0
13212012-01-18 04:40:072012-01-18 03:40:07 publishopenopen1322012-01-18 04:40:072012-01-18 03:40:070http://www.alicepegie.com/wordpress/wordpress/?p=1322nav_menu_item0
13312012-01-18 04:40:072012-01-18 03:40:07 publishopenopen1332012-01-18 04:40:072012-01-18 03:40:070http://www.alicepegie.com/wordpress/wordpress/?p=1333nav_menu_item0
13412012-01-18 04:40:072012-01-18 03:40:07 publishopenopen1342012-01-18 04:40:072012-01-18 03:40:070http://www.alicepegie.com/wordpress/wordpress/?p=1344nav_menu_item0
13512012-01-18 04:40:072012-01-18 03:40:07Accueilpublishopenopenaccueil2012-01-18 04:40:072012-01-18 03:40:070http://www.alicepegie.com/wordpress/wordpress/?p=1351nav_menu_item0
13612012-01-18 04:29:102012-01-18 03:29:10&nbsp; <div class="art-postcontent"> <div class="art-article"> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/1.JPG" alt="bierre au gingembre" width="600" height="741" />Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre.<!--more--> <strong>Pour 2l de bière env.</strong> 1 citron jaune coupé en rondelles 1 citron vert coupé en rondelles<strong> </strong> <ul> <li>2l d'eau</li> <li>75g de gingembre frais, haché grossièrement</li> <li>300g de sucre</li> <li>1 cc de jus de citron</li> <li>15g de levure sèche de boulangerie (3 cuillères à café)</li> </ul> &nbsp; <strong>Préparation</strong> <ul> <li>Dans une grande casserole, versez les 2 litres d'eau, les rondelles de citron et le gingembre haché et portez le tout à ébullition et laissez mijoter 5mn puis coupez la source de chaleur et laissez infuser 30 mn.</li> </ul> <img src="/images/stories/BIERRE/2.JPG" alt="2" width="350" height="263" /><img src="/images/stories/BIERRE/4.JPG" alt="4" width="350" height="263" /> <ul> <li>Ajoutez le reste des ingrédients</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Laisser macérer 48 heures, à couvert dans un endroit chaud à l’abri des courant d’air</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/7.JPG" alt="7" width="600" height="450" />filtrez et versez la préparation dans une bouteille pouvant contenir 3l ou dans 3 bouteilles de 1l en laissant de l’espace. <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/8.JPG" alt="8" width="600" height="450" />Fermez la (les) bouteilles et laissez fermenter au frais pendant 24 heures <ul> <li>pour servir diluez avec un peu d’eau gazeuse !!</li> </ul> <img src="/images/stories/BIERRE/9.JPG" alt="bierre au gingembre" width="326" height="593" /><img src="/images/stories/BIERRE/10.JPG" alt="bierre au gingembre" width="362" height="594" /> C’est sur cette note épicée qu<strong><a href="http://www.alicepegie.com">’Une Graine de Maniguette </a>va faire une pause et vous donne de nouveau rendez vous à compter du 9 Janvier 2012 s’il plait à Dieu. Bonnes fêtes de fin d'année à tous!!</strong> <strong><img src="/images/stories/BIERRE/11.JPG" alt="bierre au gingembre" width="327" height="503" /><img src="/images/stories/BIERRE/12.JPG" alt="bierre au gingembre" width="361" height="505" /></strong> </div> </div>La Bière au Gingembre Maisoninheritopenopen17-revision-62012-01-18 04:29:102012-01-18 03:29:1017http://www.alicepegie.com/wordpress/wordpress/?p=1360revision0
13812012-01-17 17:21:132012-01-17 16:21:13<span class="art-postdateicon">Date de publication</span> | <a href="/ma-cuisine/desserts/111-gateaux/3059-buche-de-noel-a-lananas?tmpl=component&amp;print=1&amp;layout=default&amp;page=" title="Imprimer" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;" rel="nofollow"><img src="/templates/maniguettebis1/images/system/printButton.png" alt="Imprimer"/></a> | <a href="/component/mailto/?tmpl=component&amp;template=maniguettebis1&amp;link=1aba85bd5eca38f53d4e877962cb98f8384753b9" title="E-mail" onclick="window.open(this.href,'win2','width=400,height=350,menubar=yes,resizable=yes'); return false;"><img src="/templates/maniguettebis1/images/system/emailButton.png" alt="E-mail"/></a> | Affichages : 188 <div class="art-postcontent"> <div class="art-article"><p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="buche ananas" src="/images/stories/buche%20ananas/1.JPG" height="273" width="600"/>J’ai commencé à m’exercer à faire des buches maison l’année dernière. Le résultat était plutôt concluant alors j’ai décidé de réitérer cette année avec cette buche légère et fruitée. </span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Ingrédients pour 2 personne(s) </b></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le biscuit</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Farine</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 œuf</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>La crème</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de sel</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus de mangue</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1/2cc de jus de citron</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">36g de beurre coupé en morceaux</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le sirop</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125 ml de jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">40g de Sucre</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125ml de Jus de mangu</span></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Le glaçage</span></strong></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de chocolat blanc à pâtisser Nestlé</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de crème entière liquide</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre glace</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de colorant alimentaire en poudre orange (évitez les colorants liquides avec le chocolat)</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Préparation de la crème :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Dans un saladier résistant à la chaleur, mettre les œufs, le sucre, et le sel.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ajoutez progressivement les jus. Poser ensuite le récipient dans un bain-marie et cuire lentement à feu doux jusqu'à épaississement env. 8mn.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="2" src="/images/stories/buche%20ananas/2.JPG" height="450" width="600"/></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Retirez du feu et continuez de fouetter pour abaisser la température env 2-3mn.</span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Lorsqu'il est possible de toucher les bords du récipient sans se brûler, ajouter progressivement le beurre froid coupé en petits cubes. <br /></span></li> </ul> <p><img style="display: block; margin-left: auto; margin-right: auto;" alt="3" src="/images/stories/buche%20ananas/3.JPG" height="450" width="600"/><br /><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Une fois le beurre incorporé, couvrez le saladier et réservez au frais pendant au moins 1 h.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="4" src="/images/stories/buche%20ananas/4.JPG" height="450" width="600"/><br /></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <b>Préparation du sirop :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Mélangez les jus d’ananas et de mangue et le sucre, puis porter à ébullition et stopper le feu. Laissez ensuite refroidir à température ambiante.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="5" src="/images/stories/buche%20ananas/5.JPG" height="450" width="600"/><br /></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <b>Cuisson du biscuit :</b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Préparez tous les ingrédients. Mettez le sucre et les œufs dans la cuve de votre robot.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Fouettez l’ensemble pendant 10mn à vitesse maximale, la préparation doit doubler de volume.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Incorporer la farine préalablement tamisée délicatement à l'aide d'une maryse ou à l'écumoire en effectuant un mouvement de rotation.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="8" src="/images/stories/buche%20ananas/8.JPG" height="263" width="350"/><img alt="9" src="/images/stories/buche%20ananas/9.JPG" height="263" width="350"/><br /></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Versez sur une sur plaque recouverte de papier sulfurisé.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="11" src="/images/stories/buche%20ananas/11.JPG" height="263" width="350"/><img alt="12" src="/images/stories/buche%20ananas/12.JPG" height="263" width="350"/><br /></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Enfourner à four chaud, 180°C pour 8-10mn.</span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="13" src="/images/stories/buche%20ananas/13.JPG" height="450" width="600"/><br /></span></p> <p><b><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation du glaçage</span></b></p> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Faites fondre au bain-marie le chocolat, la crème et le sucre glace.</span></li> </ul> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="6" src="/images/stories/buche%20ananas/6.JPG" height="450" width="600"/></span><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mélangez bien la préparation de façon à avoir une préparation homogène</span></p> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="7" src="/images/stories/buche%20ananas/7.JPG" height="450" width="600"/></span></p> <p>&nbsp;<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b>Le montage : </b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Décollez le biscuit du tapis et en couper les bords pour l'égaliser, puis le poser sur un papier sulfurisé. A l'aide d'un pinceau, imbiber généreusement le biscuit de sirop d'ananas. Étaler ensuite la crème au citron dessus puis rouler le tout en escargot.</span></li> </ul> <p><img alt="SAM 1444" src="/images/stories/buche%20ananas/SAM_1444.JPG" height="263" width="350"/><img alt="14" src="/images/stories/buche%20ananas/14.JPG" height="265" width="277"/><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span></p> <p>&nbsp;</p> <p>&nbsp;</p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Glacez votre buche soit à l’aide d’une spatule soit à en versant directement le glacage diectement sur le biscuit<br /></span></span></p> </span></li> </ul> <p>&nbsp;</p> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span> <img style="display: block; margin-left: auto; margin-right: auto;" alt="15" src="/images/stories/buche%20ananas/15.JPG" height="283" width="600"/></span></p> <p><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" alt="16" src="/images/stories/buche%20ananas/16.JPG" height="457" width="600"/></span></p> <p>&nbsp;</p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Laissez la bûche reposer au réfrigérateur pendant 4 h.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="17" src="/images/stories/buche%20ananas/17.JPG" height="552" width="600"/></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">décorez avec des copeaux de chocolat blanc</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="18" src="/images/stories/buche%20ananas/18.JPG" height="393" width="600"/></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">et de quelque sujets en chocolat au lait</span> </span><br /></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="19" src="/images/stories/buche%20ananas/19.JPG" height="450" width="600"/><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">sortez votre buche 15mn avant de servir </span><br /></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="20" src="/images/stories/buche%20ananas/20.JPG" height="532" width="600"/></span></p></div></div>Bûche de Noël à l'Ananasinheritopenopen24-revision-52012-01-17 17:21:132012-01-17 16:21:1324http://www.alicepegie.com/wordpress/wordpress/?p=1380revision0
14112012-01-17 17:26:382012-01-17 16:26:38<p><img style="float: left;" alt="gospel" src="images/stories/gospel.jpg" height="171" width="294" /><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: 12pt;">Ronz</span> </span></strong><span style="font-family: 'Arial','sans-serif';"></span><span style="font-family: 'Arial','sans-serif';"><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Ronz|1||a{/nmap}<hr id="system-readmore" /></span></a></span></p> <p><strong><span style="font-size: 12pt;">Les Colombes</span> </strong><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Les_Colombes|1||a{/nmap}</span></a></p> <p><strong><span style="font-size: 12pt;">Gospel Singers de Messa&nbsp;</span></strong></p> <p><span style="font-size: 8pt;"><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Gospel_Singers_Messa|1||a{/nmap}</span></a></span></p> <p><span style="font-size: 12pt;"><strong>Spirit Songs Meyomessala</strong></span></p> <p>&nbsp;</p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Spirit_songs_Meyomessala|1||a{/nmap}</span></a></p> <p><span style="font-size: 12pt;"><strong>Sur les Ailes de la Foi: Cantiques chantés</strong></span></p> <p>&nbsp;</p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/cantiques|1||a{/nmap}</span></a></p> <p>&nbsp;</p> <p><strong><span style="font-size: 12pt;">Voix de l'Esprit</span></strong></p> <p>&nbsp;</p> <p>&nbsp;</p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/voix_de_lesprit|1||a{/nmap}</span></a></p> <p>&nbsp;</p> <p><strong><span style="font-size: 12pt;">ECHO Du Ciel</span></strong></p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';"></span></a></p> <p><a style="text-decoration: none;" title="Ecouter la Musique"><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Religieuse/Echo_du_ciel|1||a{/nmap}</span></a></p> <p>&nbsp;</p> <p>&nbsp;</p>Les Choralesinheritopenopen67-revision-32012-01-17 17:26:382012-01-17 16:26:3867http://www.alicepegie.com/wordpress/wordpress/?p=1410revision0
14312012-01-18 11:30:262012-01-18 10:30:26<p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="float: left;" src="images/stories/epc.jpg" alt="epc" width="400" height="440" border="0" />Je souhaite ici vous présenter l’église dans laquelle je suis née, ai été baptisée et ai grandit. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Il y a plus de 150 ans, la Mission Presbytérienne Américaine s’engageait à l’évangélisation des peuples du Cameroun ; En 1869, naissait une Paroisse à Batanga par Kribi (probablement la premières dans le pays). D’autres missions chrétiennes feront leur entrée au Cameroun parmi lesquelles la Mission de Bâle (allemande) dont la MPA héritera d’une partie du champ de la mission après la première guerre mondiale, suite à la défaite de l’Allemagne dont le Cameroun depuis 1884 était sous protectorat (grâce aux Accords Germano-Douala), et après entérinement des occupations franco-britannique en 1922 par la Société des Nations (S.D.N).<!--more--></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En 1936 voyait le jour le premier Synode de cette Mission Presbytérienne Américaine en l’occurrence MUNICAM. Puis dans son développement successivement naîtront en 1953 le Synode Bassa Cameroun et en 1954, le Synode Est Cameroun. Les velléités nationalistes connaissent alors un aboutissement dans le cadre des revendications à l’autonomie en Afrique. En 1957, le Ghana est indépendant. C’est la même année que les Camerounais décident de mettre fin à plus de 100 ans de domination américaine sur le plan religieux, le message d’évangélisation chrétienne étant universel. Le 11 décembre 1957 à Elat par Ebolowa dans le Sud-Cameroun (une des plus célèbres parmi ce qui était alors appelé les Stations de la Mission Presbytérienne Américaine). Les Camerounais concrétisaient leur rêve d’indépendance religieuse, prélude à l’indépendance politique du pays qui viendra trois années plus tard en proclamant l’indépendance de l’Eglise Presbytérienne camerounaise (EPC) après signature d’une Convention de l’autonomie, dont trois grandes selfs constituaient l’essentiel du contenu, parmi lesquels la self supporting Church, qui voulait que l’Eglise soit gérée par les nationaux, en assumant les charges financières et ne devant plus attendre des subventions d’ailleurs. L’EPC à l’instar de ses consœurs de la Presbyterian Church of Cameroon (PCC) et de l’Eglise Evangélique du Cameroun (EEC) a aujourd’hui cinquante ans.</span></span></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>CE QU’IL FAUT SAVOIR SUR L’EPC</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Deux documents régulent la vie, la doctrine et les procédures dans l’EPC, la Bible et la Constitution. Un opuscule de cette église en 2003 (Eglise Presbytérienne Camerounaise) édifie les intéressés quant à ses objectifs, son rôle et ses missions, sa philosophie. L’Eglise Presbytérienne Camerounaise a reçu de son Chef et Sauveur Jésus-Christ, la tâche de transmettre à toute créature le message du royaume de Dieu. Elle affirme, avec toutes les Eglises de la Réforme dont elle en est une, l’autorité souveraine des Saintes Ecritures, et trouve en elles la règle de la loi et de la vie. L’expression de sa foi est la Bible, rien que la Bible. Elle proclame le salut par la grâce, par le moyen de la Foi en Jésus-Christ. La prédication de la parole et l’administration des sacrements sont les signes par lesquels on la reconnaît. Elle poursuit également l’accomplissement de sa tâche par l’enseignement de la doctrine, la cure d’âme, les œuvres médicales et scolaires, les associations religieuses particulières notamment cellés pour la jeunesse, pour les femmes et pour les hommes, la bienfaisance, par l’envoi des messagers vers ceux qui ne connaissent pas encore l’Evangile. Prenant appui sur les promesses du Seigneur et sous la conduite de l’Esprit Saint, avec la ferme assurance de l’espérance de la foi, le Modérateur de la 46ème Assemblée Générale de l’EPC le Révérend Samuel Bikoï II du Consistoire d’Eseka ajoute dans la préface de cette publication « pour la reconstruction d’un monde à visage humain, pour la promotion de la paix, pour plus de solidarité et de justice, l’EPC participe à cette lutte mais elle est convaincue que c’est l’homme qu’il faut reconstruire ».</span></span></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>COMMENT ELLE EST ORGANISEE ET FONCTIONNE</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">De par son essence presbytérienne, l’EPC n’a pas choisi une forme de gouvernement présidentialiste avec un président à la tête de l’exécutif doté d’une autorité suprême et prépondérante. La vie de l’Eglise dominée par une gestion participative des Pasteurs et des Anciens d’Eglise et laïcs à tous les niveaux de l’échelle est régulée par l’instance suprême qu’est l’Assemblée Générale annuelle formée de moitié par les Pasteurs et de moitié par les Anciens. C’est l’institution suprême de l’Eglise qui arrête toutes les décisions importantes au fonctionnement et aux activités de l’EPC dans son ensemble. En début des travaux, il est élu un bureau chargé de conduire aux destinées de l’Eglise à la tête duquel est choisi un Modérateur, c’est-à-dire celui qui retient dans les bornes de la modération, celle-ci étant la qualité d’une personne ou d’une chose éloignée de tout excès, pondération, sagesse. C’est une personnalité morale qui a un mandat d’un an renouvelable en principe. A côté de lui se trouve le Secrétaire Général qui assure l’exécutif de l’Eglise, personnalité civile élue pour cinq ans et rééligible. Puis viennent les grands Conseils Permanents avec le Conseil Général sous la responsabilité directe du Modérateur dont le rôle est de financer les œuvres sociales, d’établir le budget de l’Eglise, de décider les salaires des ouvriers etc…, le Conseil d’Administration dépendant du Secrétariat Général qui est chargé d’exécuter et de faire respecter la loi, d’administrer les biens, de contrôler la Caisse des subventions, d’étudier la loi à présenter à l’Assemblée Générale. A cela il faut ajouter : une Commission Juridique Permanente rendant compte directement à l’Assemblée Générale de qui elle dépend. Puis viennent la Trésorerie Générale, l’Education Chrétienne sous le contrôle du Conseil µGénéral chargée de la jeunesse, des Ecoles de Dimanche, des cultes de Femmes, d’Adultes seuls,</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">de l’enseignement religieux et du programme de l’Eglise et les institutions diverses à savoir écoles, hôpitaux, librairie, Imprimerie, Littérature, Traduction, Publications et Séminaires sous la supervision du Conseil d’Administration.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">A un degré plus bas il y a les Synodes (assemblées des délégués, Pasteurs et Anciens), des Consistoires Paroissiaux et Régionaux. Puis suivent les consistoires (assemblées dirigeantes de Pasteurs et de Laïcs à une échelle moindre que les Synodes), puis à la base de l’échelle se trouvent les Paroisses, territoires sur lesquels s’étend la juridiction spirituelle d’un Pasteur Modérateur (qui peut avoir un Co-Modérateur) et des Anciens d’Eglise.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le principe qui prédomine dans le fonctionnement de l’Eglise est celui de la liberté de conscience duquel découle l’éclatement ou le fractionnement des Paroisses, Consistoires et Synodes.</span></span></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>UNE IMPLANTATION ET UNE ASSISE VERITABLEMENT NATIONALES</strong></span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Si elle n’est pas la première parmi les Eglises Réformées du Cameroun, l’EPC n’en est pas loin. Les estimations des chiffres en 2002 parlent d’un nombre de fidèles communiants de 1 096 000 pour une population de 14 814 293 habitants avec 9 585 Diacres, 8 055 Anciens d’Eglises, 506 Pasteurs pour 610 Paroisses, 25 Consistoires et 06 Synodes (Municam, Bassa-Cameroun, Centre, Est-Cameroun, Metet, Sud) à caractère presque régional.</span></span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L’Eglise est implantée sur l’ensemble du territoire du Cameroun et les mêmes estimations indiquent une répartition en termes de pourcentage de la population par province de 38 % sur 519 928 habitants pour le Sud, 35 % sur 2 431 428 habitants dans le Centre, 33 % sur 2 140 840 habitants pour le Littoral, 30 % sur 734 016 habitants pour l’Est pour les plus grandes zones d’implantation, alors que seulement on retrouve 1 % sur 703 432 habitants dans l’Adamaoua, 0,2 % chacune dans l’Ouest et le Nord-Ouest pour des populations respectives de 1 616 847 et 1 621 442 habitants et enfin 0,1 % dans chacune des Provinces de l’Extrême6nord, le Nord et le Sud-Ouest pour des populations de 2 645 516 habitants pour la première, 1 192 776 habitants pour la seconde et 1 208 068 habitants pour la dernière. C’est dire que les trois Provinces du Sud du Centre et du Littoral où l’EPC est fortement représentée et fait partie des confessions religieuses prédominantes comprennent chacune plus de 250 000 fidèles, alors que l’Est compte entre 100 000 à 200 000 fidèles, l’Adamaoua de 5 000 à 10 000 fidèles, les autres ayant moins de 5 000 fidèles.</span></span></p> <p class="paratitre" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>UN MESSAGE UNIVERSEL PORTE A L’INTERNATIONAL</strong></span></span></p> <p class="juste" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le message universel de Christ dans la doctrine et la philosophie de l’EPC sus-évoquées ne se limite pas à être prêché sur le territoire national. Aussi l’Eglise a-t-elle installé un Conseil de Mission Presbytérienne Camerounaise en France et des Paroisses au Gabon. D’autre part elle collabore avec d’autres Eglises nationales dans le cadre d’un partenariat à l’instar de la Presbyterian Church of United States of America, la Mission de Paris en France, la Mission Allemande de Bâle et même l’Eglise Protestante DAGER du Gabon, l’Eglise Evangélique du Gabon. </span></span></p>L’église presbytérienne Camerounaiseinheritopenopen65-autosave2012-01-18 11:30:262012-01-18 10:30:2665http://www.alicepegie.com/wordpress/wordpress/?p=1430revision0
14512012-01-17 16:47:382012-01-17 15:47:38<span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" title="alambic" src="images/alambic-espagnol1-2.jpg" alt="alambic" width="600" height="641" border="0" />L’hydrolathérapie, ou thérapie par les hydrolats, est une branche de l’aromathérapie, elle-même issue de l’ensemble plus vaste de la phytothérapie. C’est une thérapie holistique, c’est à dire qu’elle soigne et cherche à équilibrer l’entité Corps-Esprit. Si l’on assiste à la distillation d’une plante, deux produits très précieux émergent, bien distincts l’un de l’autre : d’une part l’<strong class="spip">HE</strong> (<em class="spip">huile essentielle</em>) et d’autre part l’<strong class="spip">HA</strong> (<em class="spip">hydrolat</em>), à savoir l’eau imprégnée des mêmes molécules aromatiques que les HE. En l’espace d’une décennie, les HE ont fait un chemin remarquable dans la conscience collective et nous ne pouvons que nous en réjouir. En revanche, il n’en va pas de même pour les hydrolats qui restent bien souvent peu connus, voire méconnus du grand public. Ces "<em class="spip">eaux magiques</em>" ont pourtant elles aussi des vertus thérapeutiques hors pairs, issues de la plante, mais aussi de la faculté purificatrice incommensurable de l’eau. Ces qualités permettent à ceux qui les utilisent de se purifier et de se soigner simultanément, ce qui accélère souvent le processus de guérison, surtout si des facteurs psycho-émotionnels entrent en jeu.</span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Source: Lydia Bosson/Guénolée Dietz - Editions Amyris</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">ci dessous un schéma des soins que l'on peu prodiqguer par Hydraloat Thérapie. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a title="HA thérapie.pdf" href="http://s1.e-monsite.com/2009/10/19/35190278ha-therapie-pdf.pdf" target="_blank"><img title="Fichier" src="http://www.e-monsite.com/im/stockage/pdf.png" alt="" align="absmiddle" border="0" />HA thérapie.pdf</a></span></span></p> <p style="text-align: justify;"></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p>L'Hydrolathérapieinheritopenopen31-revision-32012-01-17 16:47:382012-01-17 15:47:3831http://www.alicepegie.com/wordpress/wordpress/?p=1450revision0
14412012-01-18 11:21:582012-01-18 10:21:58<img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/1.JPG" alt="bierre au gingembre" width="600" height="741" />Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre.<!--more--> <div class="art-postcontent"> <div class="art-article"> <strong>Pour 2l de bière env.</strong> 1 citron jaune coupé en rondelles 1 citron vert coupé en rondelles<strong> </strong> <ul> <li>2l d'eau</li> <li>75g de gingembre frais, haché grossièrement</li> <li>300g de sucre</li> <li>1 cc de jus de citron</li> <li>15g de levure sèche de boulangerie (3 cuillères à café)</li> </ul> &nbsp; <strong>Préparation</strong> <ul> <li>Dans une grande casserole, versez les 2 litres d'eau, les rondelles de citron et le gingembre haché et portez le tout à ébullition et laissez mijoter 5mn puis coupez la source de chaleur et laissez infuser 30 mn.</li> </ul> <img src="/images/stories/BIERRE/2.JPG" alt="2" width="350" height="263" /><img src="/images/stories/BIERRE/4.JPG" alt="4" width="350" height="263" /> <ul> <li>Ajoutez le reste des ingrédients</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Laisser macérer 48 heures, à couvert dans un endroit chaud à l’abri des courant d’air</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/7.JPG" alt="7" width="600" height="450" />filtrez et versez la préparation dans une bouteille pouvant contenir 3l ou dans 3 bouteilles de 1l en laissant de l’espace. <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/8.JPG" alt="8" width="600" height="450" />Fermez la (les) bouteilles et laissez fermenter au frais pendant 24 heures <ul> <li>pour servir diluez avec un peu d’eau gazeuse !!</li> </ul> <img src="/images/stories/BIERRE/9.JPG" alt="bierre au gingembre" width="326" height="593" /><img src="/images/stories/BIERRE/10.JPG" alt="bierre au gingembre" width="362" height="594" /> C’est sur cette note épicée qu<strong><a href="http://www.alicepegie.com">’Une Graine de Maniguette </a>va faire une pause et vous donne de nouveau rendez vous à compter du 9 Janvier 2012 s’il plait à Dieu. Bonnes fêtes de fin d'année à tous!!</strong> <strong><img src="/images/stories/BIERRE/11.JPG" alt="bierre au gingembre" width="327" height="503" /><img src="/images/stories/BIERRE/12.JPG" alt="bierre au gingembre" width="361" height="505" /></strong> </div> </div>La Bière au Gingembre Maisoninheritopenopen17-revision-82012-01-18 11:21:582012-01-18 10:21:5817http://www.alicepegie.com/wordpress/wordpress/?p=1440revision0
14712012-01-18 13:51:272012-01-18 12:51:27<p style="text-align: justify;"><a class="mb" href="http://s2.e-monsite.com/2009/11/04/09/resize_550_550/rotate_0//acne.png"><img src="http://s2.e-monsite.com/2009/11/04/09/resize_550_550/rotate_0//acne.png" alt="" align="left" border="0" /></a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peau sèche, peau grasse, démangeaisons, boutons, comédons, on peut venir à bout de certains problèmes de peau bénins par une meilleure hygiène et des produits adéquats.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Bien que la peau se renouvelle sans cesse en surface, elle a besoin d'être régulièrement nettoyée et nourrie pour demeurer saine. Il est cependant recommandé de consulter un dermatologue pour recevoir un diagnostic précis avant de vous soigner. Ici pas de distinctions, les peaux blanches ou noires sont soumises aux mêmes problèmes, même s'il est vrai que les conséquences sur les peaux noires sont souvent plus visibles que sur les peaux blanches.<!--more--></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les problèmes de peau les plus fréquents</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'eczéma</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : peau sèche, éruption de plaies et démangeaisons intenses. Les crèmes à la cortisone sont souvent prescrites mais ne font que calmer les démangeaisons et finissent par affaiblir graduellement les structures cutanées.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : l'hydratation est ici très importante. Évitez les bains trop froids ou trop chauds et privilégiez les pains dermatologiques surgras. Utilisez quotidiennement un bon hydratant, ou émollient (glycérine).</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le psoriasis</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : plaques cutanées recouvertes de squames (peaux mortes). Les plaques peuvent apparaître partout, mais elles apparaissent le plus souvent sur les genoux, les coudes, le cuir chevelu, les mains et les pieds. L'acide salicylique à des concentrations de 2 à 10% adoucit la peau, réduit l'épaisseur des plaques et facilite l'élimination des squames.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong><strong> :</strong> évitez les produits irritants; laisser votre peau respirer (habillez vous en conséquence). Mettez un humidificateur dans la maison si le taux d'humidité est trop bas. HYDRATEZ-vous pour éviter le desséchement et les démangeaisons. Évitez l'eau très chaude, qui peut irriter la peau et empirer les symptômes. Laver délicatement vos cheveux et épongez avec une serviette douce. Lorsque c'est possible, évitez le sèche-cheveux.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'acné</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : l'acné vulgaire est causée par une hypersécrétion de sébum qui bouche les pores de la peau et qui s'accumule en formant des kystes, des points noirs, des comédons, des lésions inflammatoires (papules, pustules,) et parfois des nodules (kystes profonds). Elle affecte surtout le visage, les oreilles, la poitrine, les épaules et le dos. Comme elle se manifeste principalement à l'adolescence ou aux périodes de bouleversements hormonaux, elle s'atténue ou guérit spontanément la plupart du temps après ces périodes.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : ne pas toucher à son visage et ne jamais percer un bouton. Privilégiez les nettoyants doux qui limitent la production de sébum sans irriter la peau, et les hydratants sans huile. Les topicals comme le peroxyde de benzoyle qui ont un effet de séchage sur la peau devrait être employé sous la surveillance d'un dermatologue.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La rosacée</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : les papules et pustules inflammatoires de la rosacée ressemblent beaucoup à celles de l'acné vulgaire. La peau a une apparence plus grasse et les petits vaisseaux sanguins du visage peuvent être dilatés.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : évitez les facteurs favorisant la dilatation des vaisseaux tels que certaines boissons ou aliments trop chauds, les épices, une ambiance surchauffée.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'herpès labial (feu sauvage)</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Signes</em></strong> : règle générale, il s'agit d'une affection bénigne sauf chez la femme enceinte en fin de grossesse à cause du risque pour le nouveau-né au moment de l'accouchement. Il se manifeste par des picotements, une rougeur, une sensation de brûlure avant que n'apparaisse une lésion très contagieuse sur le contour extérieur de la bouche.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><em>Soins</em></strong> : évitez le contact direct avec la lésion. Bien se laver les mains immédiatement après avoir touché le feu sauvage. Protégez les lèvres avec un baume pour éviter le dessèchement.</span></span></p>Problèmes de peau et solutionsinheritopenopen55-revision-32012-01-18 13:51:272012-01-18 12:51:2755http://www.alicepegie.com/wordpress/wordpress/?p=1470revision0
14812012-01-17 17:20:502012-01-17 16:20:50<p class="MsoNormal" style="text-align: justify; line-height: normal;"><a class="mb" href="http://s1.e-monsite.com/2009/04/10/12/83324638cameroun-184-0-gif.gif" title="cameroun-184-0.gif"><img src="images/stories/kmer%20flag.jpg" border="0" alt="kmer flag" title="cameroun-184-0.gif" width="271" height="186" style="float: left;" /></a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><a class="mb" href="http://s1.e-monsite.com/2009/05/30/01/99453272710px-cameroon-boundary-changes-png.png" title="710px-Cameroon_boundary_changes.PNG">Les premiers habitants du </a><a href="http://fr.wikipedia.org/wiki/Cameroun" title="Cameroun"><span style="text-decoration: none;">Cameroun</span></a> furent probablement les <a href="http://fr.wikipedia.org/wiki/Baka_%28peuple%29" title="Baka (peuple)"><span style="text-decoration: none;">Baka</span></a>, également appelés <a href="http://fr.wikipedia.org/wiki/Pygm%C3%A9e" title="Pygmée"><span style="text-decoration: none;">pygmées</span></a>. Ils habitent toujours les forêts des provinces du sud et de l'est.</span></span></span></p> <ul type="disc"> </ul><ul type="disc"> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">A la recherche de la route des Indes, les portugais arrivent sur les côtes en <a href="http://fr.wikipedia.org/wiki/1472" title="1472"><span style="text-decoration: none; color: black;">1472</span></a>. Étonné par le nombre de crevettes, le navigateur <a href="http://fr.wikipedia.org/wiki/Fernando_P%C3%B3o" title="Fernando Póo"><span style="text-decoration: none; color: black;">Fernando Póo</span></a> baptise le pays « Rio dos Camaroes» ce qui veux dire "rivière des crevettes" (l'estuaire du Wouri). Vers 1532 la traite des Noirs se met en place notamment grâce à la collaboration des Doualas. Les européens n'y fonderont cependant pas d´établissements permanents comme Luanda ou Saint-Louis à cause des côtes marécageuses, difficiles d'accès et infestées de <a href="http://fr.wikipedia.org/wiki/Malaria" title="Malaria"><span style="text-decoration: none; color: black;">malaria</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1827" title="1827"><span style="text-decoration: none; color: black;">1827</span></a> : exploration britancamerounaise et du <a href="http://fr.wikipedia.org/wiki/Biafra" title="Biafra"><span style="text-decoration: none; color: black;">Biafra</span></a></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1845" title="1845"><span style="text-decoration: none; color: black;">1845</span></a> : début de l'évangélisation par lnique de la côte a <em>Baptist Missionary Society</em> de Londres</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1868" title="1868"><span style="text-decoration: none; color: black;">1868</span></a> : installation de négociants allemands</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1884" title="1884"><span style="text-decoration: none; color: black;">1884</span></a> : les Doualas signent un traité d'assistance avec l'Allemagne, celle-ci proclame sa souveraineté sur le <em>Kamerun</em></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La <a href="http://fr.wikipedia.org/wiki/Colonisation" title="Colonisation"><span style="text-decoration: none; color: black;">colonisation</span></a> <a href="http://fr.wikipedia.org/wiki/Allemagne" title="Allemagne"><span style="text-decoration: none; color: black;">allemande</span></a> commença en <a href="http://fr.wikipedia.org/wiki/1884" title="1884"><span style="text-decoration: none; color: black;">1884</span></a> avec la signature en juillet d'un traité entre le roi de <a href="http://fr.wikipedia.org/w/index.php?title=Royaume_de_Bell&amp;action=edit&amp;redlink=1" title="Royaume de Bell (page inexistante)"><span style="text-decoration: none; color: black;">Bell</span></a> et <a href="http://fr.wikipedia.org/wiki/Gustav_Nachtigal" title="Gustav Nachtigal"><span style="text-decoration: none; color: black;">Gustav Nachtigal</span></a>. Le protectorat s'étendit du <a href="http://fr.wikipedia.org/wiki/Lac_Tchad" title="Lac Tchad"><span style="text-decoration: none; color: black;">lac Tchad</span></a> au nord aux rives de la <a href="http://fr.wikipedia.org/wiki/Sangha_%28rivi%C3%A8re%29" title="Sangha (rivière)"><span style="text-decoration: none; color: black;">Sangha</span></a> au sud-est. La ville de <a href="http://fr.wikipedia.org/wiki/Bu%C3%A9a" title="Buéa"><span style="text-decoration: none; color: black;">Buéa</span></a> au pied du <a href="http://fr.wikipedia.org/wiki/Mont_Cameroun" title="Mont Cameroun"><span style="text-decoration: none; color: black;">mont Cameroun</span></a> en devient la capitale avant d'être destituée au profit de <a href="http://fr.wikipedia.org/wiki/Douala_%28ville%29" title="Douala (ville)"><span style="text-decoration: none; color: black;">Douala</span></a> en <a href="http://fr.wikipedia.org/wiki/1908" title="1908"><span style="text-decoration: none; color: black;">1908</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a href="http://fr.wikipedia.org/wiki/1911" title="1911"><span style="text-decoration: none; color: black;">1911</span></a>, un accord franco-allemand étendit les possessions allemandes à certains territoires de l'<a href="http://fr.wikipedia.org/wiki/Afrique_%C3%A9quatoriale_fran%C3%A7aise" title="Afrique équatoriale française"><span style="text-decoration: none; color: black;">Afrique équatoriale française</span></a>. Après la <a href="http://fr.wikipedia.org/wiki/Premi%C3%A8re_Guerre_mondiale" title="Première Guerre mondiale"><span style="text-decoration: none; color: black;">Première Guerre mondiale</span></a>, pendant laquelle le Cameroun avait été conquis par les forces franco-britanniques, la colonie allemande fut partagée en deux territoires confiés à la <a href="http://fr.wikipedia.org/wiki/France" title="France"><span style="text-decoration: none; color: black;">France</span></a> (pour les quatre cinquièmes) et le restant au <a href="http://fr.wikipedia.org/wiki/Royaume-Uni" title="Royaume-Uni"><span style="text-decoration: none; color: black;">Royaume-Uni</span></a> par des mandats de la <a href="http://fr.wikipedia.org/wiki/Soci%C3%A9t%C3%A9_des_Nations" title="Société des Nations"><span style="text-decoration: none; color: black;">Société des Nations</span></a> (SDN) en <a href="http://fr.wikipedia.org/wiki/1922" title="1922"><span style="text-decoration: none; color: black;">1922</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le Cameroun français se rallia à la <a href="http://fr.wikipedia.org/wiki/France_libre" title="France libre"><span style="text-decoration: none; color: black;">France libre</span></a> en août <a href="http://fr.wikipedia.org/wiki/1940" title="1940"><span style="text-decoration: none; color: black;">1940</span></a></span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1945" title="1945"><span style="text-decoration: none; color: black;">1945</span></a>, il devint un pays sous tutelle de l'<a href="http://fr.wikipedia.org/wiki/Organisation_des_Nations_unies" title="Organisation des Nations unies"><span style="text-decoration: none; color: black;">ONU</span></a>, qui remplaçait la SDN. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/1946" title="1946"><span style="text-decoration: none; color: black;">1946</span></a> un « territoire associé » de l'<a href="http://fr.wikipedia.org/wiki/Union_fran%C3%A7aise" title="Union française"><span style="text-decoration: none; color: black;">Union française</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a href="http://fr.wikipedia.org/wiki/1948" title="1948"><span style="text-decoration: none; color: black;">1948</span></a>, <a href="http://fr.wikipedia.org/wiki/Ruben_Um_Nyobe" title="Ruben Um Nyobe"><span style="text-decoration: none; color: black;">Ruben Um Nyobe</span></a> fonda l'<a href="http://fr.wikipedia.org/wiki/Union_des_populations_du_Cameroun" title="Union des populations du Cameroun"><span style="text-decoration: none; color: black;">Union des populations du Cameroun</span></a> (UPC), un mouvement nationaliste. L'UPC fut interdite après les <a href="http://fr.wikipedia.org/w/index.php?title=%C3%89meutes_de_Douala&amp;action=edit&amp;redlink=1" title="Émeutes de Douala (page inexistante)"><span style="text-decoration: none; color: black;">émeutes de Douala</span></a> en mai <a href="http://fr.wikipedia.org/wiki/1955" title="1955"><span style="text-decoration: none; color: black;">1955</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L'Assemblée territoriale fut élue au <a href="http://fr.wikipedia.org/wiki/Suffrage_universel" title="Suffrage universel"><span style="text-decoration: none; color: black;">suffrage universel</span></a> et avec un collège unique pour la première fois en décembre <a href="http://fr.wikipedia.org/wiki/1956" title="1956"><span style="text-decoration: none; color: black;">1956</span></a>, et <a href="http://fr.wikipedia.org/w/index.php?title=Andr%C3%A9_Marie_M%27Bida&amp;action=edit&amp;redlink=1" title="André Marie M'Bida (page inexistante)"><span style="text-decoration: none; color: black;">M'Bida</span></a> forma le premier gouvernement autonome en mai <a href="http://fr.wikipedia.org/wiki/1957" title="1957"><span style="text-decoration: none; color: black;">1957</span></a> ; il fut remplacé par <a href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo" title="Ahmadou Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> en février <a href="http://fr.wikipedia.org/wiki/1958" title="1958"><span style="text-decoration: none; color: black;">1958</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le Cameroun français acquit son <a href="http://fr.wikipedia.org/wiki/Ind%C3%A9pendance" title="Indépendance"><span style="text-decoration: none; color: black;">indépendance</span></a> le 1<sup>er</sup> janvier <a href="http://fr.wikipedia.org/wiki/1960" title="1960"><span style="text-decoration: none; color: black;">1960</span></a> et devint la République du Cameroun. L'année suivante, la colonie britannique se divisa en deux après un <a href="http://fr.wikipedia.org/wiki/R%C3%A9f%C3%A9rendum" title="Référendum"><span style="text-decoration: none; color: black;">référendum</span></a> d'autodétermination. Le Nord, principalement <a href="http://fr.wikipedia.org/wiki/Musulman" title="Musulman"><span style="text-decoration: none; color: black;">musulman</span></a>, choisit d'intégrer le <a href="http://fr.wikipedia.org/wiki/Nigeria" title="Nigeria"><span style="text-decoration: none; color: black;">Nigeria</span></a>. Quant au Sud, principalement <a href="http://fr.wikipedia.org/wiki/Christianisme" title="Christianisme"><span style="text-decoration: none; color: black;">chrétien</span></a>, il choisit de rejoindre la République du Cameroun pour former la République fédérale du Cameroun. Le premier président du Cameroun fut <a href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo" title="Ahmadou Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> – <a href="http://fr.wikipedia.org/wiki/Peuls" title="Peuls"><span style="text-decoration: none; color: black;">Peul</span></a> musulman du Nord – qui était Premier ministre depuis <a href="http://fr.wikipedia.org/wiki/1958" title="1958"><span style="text-decoration: none; color: black;">1958</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Lors de son accession à l'indépendance, en 1960, le Cameroun s'était doté d'une Constitution à vocation pluraliste qui prévoyait le multipartisme. Malgré la popularité de l'U.P.C. dans le pays, sa branche légale n'obtint que 8 sièges dans la nouvelle Assemblée nationale et resta soumise aux tracasseries policières du gouvernement d'Ahidjo, le nouveau président. Celui-ci finit, six ans plus tard, par instaurer un régime de parti unique dans l'ex-Cameroun français, le multipartisme restant en vigueur dans l'ex-Cameroun anglais jusqu'en <a href="http://fr.wikipedia.org/wiki/1972" title="1972"><span style="text-decoration: none; color: black;">1972</span></a>.</span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En <a href="http://fr.wikipedia.org/wiki/1972" title="1972"><span style="text-decoration: none; color: black;">1972</span></a>, la république fédérale fut remplacée par un État unitaire. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://fr.wikipedia.org/wiki/Ahmadou_Ahidjo" title="Ahmadou Ahidjo"><span style="text-decoration: none; color: black;">Ahmadou Ahidjo</span></a> remporta les élections de <a href="http://fr.wikipedia.org/wiki/1975" title="1975"><span style="text-decoration: none; color: black;">1975</span></a> et <a href="http://fr.wikipedia.org/wiki/1980" title="1980"><span style="text-decoration: none; color: black;">1980</span></a>. </span></span></li> <li class="MsoNormal" style="color: black; text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ce n'est qu'en novembre <a href="http://fr.wikipedia.org/wiki/1982" title="1982"><span style="text-decoration: none; color: black;">1982</span></a> qu'il démissionna pour « raisons de santé » (coup d'État) et fut remplacé par son ancien Premier ministre, <a href="http://fr.wikipedia.org/wiki/Paul_Biya" title="Paul Biya"><span style="text-decoration: none; color: black;">Paul Biya</span></a> – chrétien du Sud. Ahidjo regretta son choix ultérieurement, et, à la suite d'un <a href="http://fr.wikipedia.org/wiki/Coup_d%27%C3%89tat" title="Coup d'État"><span style="text-decoration: none; color: black;">coup d'État</span></a> manqué de la part de ses partisans, il fut contraint à l'exil en <a href="http://fr.wikipedia.org/wiki/1984" title="1984"><span style="text-decoration: none; color: black;">1984</span></a>.</span></span></li> </ul> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Source wikipedia</span></span></span></p> <hr id="system-readmore" /> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p class="MsoNormal" style="text-align: justify; line-height: normal;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s1.e-monsite.com/2009/05/30/01/99453272710px-cameroon-boundary-changes-png.png" title="710px-Cameroon_boundary_changes.PNG"><img src="http://s1.e-monsite.com/2009/05/30/01/mini2-99453272710px-cameroon-boundary-changes-png.png" border="0" alt="" title="710px-Cameroon_boundary_changes.PNG" width="297" height="250" /></a></span><a class="mb" href="http://s1.e-monsite.com/2009/04/10/11/82518338atlas-cameroun-png.png" title="atlas_cameroun.png"><img src="http://s1.e-monsite.com/2009/04/10/11/mini2-82518338atlas-cameroun-png.png" border="0" alt="" title="atlas_cameroun.png" /></a></span></p>Un petit rappel de l'histoire du Camerouninheritopenopen57-revision-32012-01-17 17:20:502012-01-17 16:20:5057http://www.alicepegie.com/wordpress/wordpress/?p=1480revision0
14912012-01-17 17:20:212012-01-17 16:20:21<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><img src="images/stories/carte%20bantous.jpg" border="0" alt="carte bantous" width="116" height="127" style="float: left;" />« Le peuple Bantou est constitué de l’ensemble des populations africaines vivant au sud de l’équateur. Les langues bantoues se rattachent à l’ensemble des langues nigéro-congolaises du groupe Bénoué-Congo</strong>. » Encyclopédique Hachette Grand Format 2001</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ethymologiquement, le vocable Bantou a été introduit en 1862 par Guillaume - Henri BLECK linguiste allemand de son état, pour désigner les groupes de populations noires dont la langue ou le dialecte utilise le Radical « Ba » en guise de pluriel; et qui habitaient la zone au sud du parallèle joignant Douala à la rivière Tana située au Kenya. Malheureusement, ce terme a à ce toujours été appliqué à mauvais escient à des caractéristiques anthropologiques ou culturelles. Cela peut s’expliquer par le fait que ce peuple a eu tout au cours de son histoire à effectuer des migrations dont la plus importante l’a menée de la vallée du Nil à L’Afrique du Sud, en passant par certaines régions de l’Ouest africain avec tout ce que cela comporte de métissage tant au niveau humain que culturel ; d’où la grande diversité des bantous sur le plan physique. <br /> Précisons aussi qu’au cours des grandes migrations, certains (Bantous) ont décidé de vivre dans des régions de l’Ouest africain. Il est donc fort probable que la grande majorité des noirs africains soit des descendants du moins en partie des Proto Bantous (Ancêtres des bantous). </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Plus concrètement, le mot Bantou est formé de deux radicaux. Le radical Ba qui forme le pluriel en langue bantoue, donc « les » et le radical « ntou » qui veut dire « Homme ». Le mot bantou signifie donc les Hommes. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> La Genèse</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Il y a bien longtemps, les nôtres, la grande Famille Bantou menait une vie paisible et harmonieuse, tout là haut, dans la vallée du Haut Nil. L’eau y était abondante, le poisson pullulait dans les cours d’eau, la végétation était dense et la vie luxuriante. Des années et des années passèrent, les cycles du soleil et des pluies se succédaient normalement. Puis un jour, les pluies ont commencées à se faire rares, comme si Mère Nature était devenue folle. Notre peuple qui s’était agrandi en nombre, malgré sa solide structure, a commencé à manquer du nécessaire vital, étant donné que très rapidement, la nature évoluait de la forêt à la savane.<br /> Nos aeuils tinrent alors un grand conseil au pied de l’arbre à palabres, et décidèrent à l’unanimité d’aller chercher ailleurs, une vie meilleure. On forma différents groupes au sein des quels se retrouvaient toute la structure de la société Bantoue afin de multiplier les chances de survie de notre société. Certains partirent vers l’ouest et d’autres vers le sud. On raconte encore de ce côté du fleuve Sanaga (fleuve du centre du Cameroun actuel, qui prend ses sources dans les hauts plateaux de l’Adamaoua) que certains de nos frères sont allés jusqu’à atteindre les terres de l’union sud Africaine (actuel République Sud-Africaine). En particulier notre frère Soulouk (ce qui veut dire fourmi en Bassa et se serait transformé en Zoulou, sous entendu "peuple du ciel", caractéristique des fourmis mâles qui se dotent d'ailes à certaines périodes de l'année dans le but de s'envoler à la recherche de nouvelles colonies) dont les récits des différentes épopées de ses descendants nous sont parvenus. Mais cette migration ne fut pas de tout repos, car nous étions considérés comme des envahisseurs<em>.</em> On peut dire que les africains Noirs Actuels sont presque tous des descendants des Bantous, à quelques exceptions près. A savoir : Les pygmées, les Hottentots, les Bochimans.</span></span></p> <hr id="system-readmore" /> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Histoire</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Certains ont pensé des siècles durant que l’Afrique noire n’avait pas d’histoire. Ceci était dû au fait que l’Afrique a toujours été une société à tradition orale. L’originalité des sociétés qu’on dit « sans écriture » est que l’Homme est engagé par la parole. Celle-ci joue ici un rôle primordial, car elle est à la fois, connaissance, religion, histoire, divertissement, science de la nature et initiation au métier, ce que l’on appelle là bas, « l’école de la vie ». Dans une telle société, les gardiens de cet héritage sont les traditionalistes d’une part, qui sont chargés de transmettre des connaissances contrôlées par le comité des sages, et d’autre part les griots qui eux sont à la fois généalogistes, historiens et poètes. L’avantage que représente la tradition orale, est de venir de l’intérieur des sociétés africaines, par conséquent, elle reflète une organisation mentale et un vécu du groupe socioculturel. La tradition orale ne permet cependant pas l’établissement d’une chronologie. Ce qui pose de sérieux problèmes aux historiens, et ouvre ici le chemin de la multidisciplinarité pour tenter de combler les trous. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Quant aux bantous, certains historiens affirment que Le groupe Proto Bantous qui occupent actuellement l’Est, Le Centre et le Sud du continent africain se serait formé au premier millénaire avant J. C. Aux confins du Cameroun et du Nigeria. Cette affirmation est sujette à caution, car la migration Bantou aurait commencé bien avant le premier millénaire, puisqu’ elle était le pendant de l’assèchement du Sahara qui date du début du troisième millénaire. Les Bantous vivaient alors dans la région du Haut Nil comprise entre le 17<sup>e</sup> et le 21<sup>e</sup> parallèle sur les bords de grands marécages (cf. R et M. CORNEVIN, Histoire de l’Afrique P.43). Cette présence s’est poursuivit à l’époque du règne du grand pharaon soudanais TAHARKA le Grand (689-664) pendant la période du néolithique humide. Certains bantous étaient installés entre la cinquième et la sixième cataracte du Nil, à une cinquantaine de kilomètre au sud du confluent NIL-ATBARA. Ils formaient alors le royaume de Kouch-Napata-Méroé. Ce royaume était doté d’une écriture alphabétique non encore déchiffrée à ce jour, et de la maîtrise de la métallurgie du fer (cf. R et M. CORNEVIN, Histoire de l’Afrique P.58). Le climat de l’Afrique dans une région comprise entre le Sahara et la zone équatoriale très étendue, était très humide il y a huit ou dix mille ans. Le mode de vie des bantous était étroitement lié à l’eau. Le développement des civilisations de pêcheurs a été daté entre 8000 et 5000 avant l’ère chrétienne, le long du moyen Nil et dans le sahara. On a même retrouvé la trace des bantous au nord du continent africain tant à l’Ouest qu’à l’Est. En effet, le saharien mésolithique d’Asselar était un noir de type bantou. En outre, les vases trouvés dans l’Aouker préhistorique (aujourd’hui la Mauritanie) d’après H. Laforgue et Vaneleshe ressemblent en tout point a ceux qui sont encore utilisés aujourd’hui par les Noirs du sud. Les vestiges d’harpons en os et la poterie suggèrent des activités de pêcheurs encore tributaires de la chasse et de la cueillette.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">A partir de 5000 avant J.C. le climat devient aride entraînant un abaissement des niveaux des lacs, modifiant ainsi le modèle économique fondé sur l’exploitation des ressources naturelles, surtout aquatiques, à savoir la chasse, la pêche et la cueillette. Les conséquences de cet assèchement furent la migration des populations qui vivaient dans cette zone, parties vers le sud, à la recherche de l’eau. Et la mutation du peuplement de l’Afrique.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les populations noires à cette époque étaient les descendants de l’empire kouchite. Elles se sont déplacées pour la plupart vers les zones sédentaires et certains oasis du nord du sahara. Tout au long de cette migration, le peuple bantou a développé plusieurs civilisations, car chaque groupe ou groupuscule qui s’implantait sur un fief essayait d’adapter ses us et coutumes aux réalités locales. La civilisation résultante n’était alors rien d’autre que le syncrétisme entre la culture acquise des bantous et les nouveaux milieux et contacts. Cette dispersion des bantous s’est déroulée sur une très grande échelle d’espace et de temps à cause de la grande forêt équatoriale qui constituait un obstacle plus difficile à franchir car exubérante et impénétrable. Les Bantous ont due emprunter les voies de moindre résistance que constituaient les cours d’eau tel que la Sangha et L’Oubangui. Cette migration n’était pas encore achevée à la fin du 19<sup>ieme</sup> siècle.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Les Bantous sont estimés à 310 millions à ce jour. Il s’agit plus d’une famille culturelle que d’une race, car l’unité de la langue est incontestable. Ce sont des peuples agriculteurs qui connaissent le travail du fer. Leurs cultures se sont diversifiées en fonction des milieux qu'ils ont eu à traverser pendant leur migration. Dans la savane se sont développé des royaumes puissants. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Voici<strong> </strong>une liste non exhaustive des populations bantoues qu’on trouve au Cameroun classés en 2 groupes :</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les Bantous</strong> : Bakweris, Bassas, Bétis, Doualas, Fang...</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les Semi Bantous</strong> : Bamilékés, Bamouns, Tikar…</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Tout au long de leur évolution, les Hommes d’où qu’ils soient, ont développé un certain nombre de caractéristiques qui ont favorisé l’apparition de la culture. Celle-ci étant définie par Leslie A White comme étant « une totalité spirituelle et historique de causes et d’évènements qui dépendent de la capacité de symbolisation ». Chez le bantou, cette symbolisation a pris la forme du langage et de l’oralité.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En général, les sociétés Bantous font parti des sociétés qui n’ont pas d’archives, c’est à dire que se sont des sociétés qui n’ont pas utilisé pleinement l’écriture et ses ressources. Les bantous ont développé un certain nombre de caractéristiques en fonction des milieux qu’ils ont traversés pendant leur migration ou des lieux où ils se sont installés. Ces caractéristiques ont à la fois rendues possible l’accroissement quantitatif de l’espèce, et favorisé l’utilisation d’une grande variété de ressources naturelles. Les bantous font partis des sociétés telluriques à tradition orale. Pour mieux comprendre la culture d’une société, il convient d’étudier son adaptation au milieu naturel, sa structure sociale, ses us et coutumes, et son art.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> <span style="text-decoration: underline;">L’adaptation au milieu naturel</span></strong> :</span></span></p> <p class="MsoBodyText" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Les bantous ont rencontré en fonction du parcours de leur migration, trois milieux différents les uns des autres : la côte, la forêt vierge et la montagne. Ceci par ce qu’ils ont dû utiliser les voies naturelles (pistes ou voies fluviales) pour faciliter leurs déplacements. De manière générale, <strong> </strong>la technologie dont dispose un groupe d’individus pour contrôler et modifier le milieu dans lequel il vit, est fonction de sa connaissance, de son travail et des ressources naturelles à sa disposition. Celles-ci semblent limitées dans le contexte de l’Afrique équatoriale, même si cet écosystème est favorable à l’installation d’une grande variété d’organismes.</span></span></p> <p class="MsoBodyText" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour se procurer des aliments au moyen de la chasse, de la cueillette ou de la pêche, le bantou a recours à des armes tel que les arcs, les flèches, les haches de pierre, les pieux et les massues. Il utilise aussi l’horticulture, qui repose sur la culture des semences, des racines et des tubercules ceci à l’aide de la houe (sorte de pioche en bois). Ils y plantent des ignames, des macabos, des taros, des patates douces, du manioc, des bananes, des arbres fruitiers (orangers, avocatiers, safoutiers, goyaviers), des cannes à sucre. Le type d’horticulture pratiqué ici est dit itinérant, car on choisit une partie de la forêt resté sans être cultivé pendant plusieurs années, on y coupe herbes et arbres, on construit un enclos pour protéger les cultures des gros animaux sauvages (tel que les phacochères). Le bantou essaye d’échelonner la production tout au long de l’année. Quelque fois le sol sert de garde à manger pour des plantes comme le manioc. Ces populations vivent donc de l’agriculture, de la pêche et de la chasse. Le gibier est composé de petits animaux comme les singes, les rongeurs ou des petites antilopes. Quant aux animaux domestiques ont trouve le porc, la chèvre, le mouton, les poules, les canards, les dindes.</span></span></p> <p class="MsoBodyText" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> <span style="text-decoration: underline;">La structure sociale</span> :</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L’organisation sociale des bantous est formée au sommet de nations qui elles même sont composées de groupes de tribus, subdivisés en villages. Ces villages sont en réalité, des groupes de clans, constitués par les différentes branches de familles qui habitent le village. Tous les membres d’un clan sont censés être les descendants d’un même ancêtre mythique. Au sein du groupe, on les considère comme parents (pères et mères), et tous ceux qui appartiennent au même groupe générationnel sont considérés comme frères et sœurs. La parenté occupe ici un rôle primordial dans la construction du lien social, par ce qu’elle sous tend le principe de solidarité. La majorité des bantous sont patrilocales (bien qu’on trouve aussi des sociétés matrilocales mais en très faible nombre), c’est à dire qu’une fois que la femme a contracté mariage, elle est obligée d’aller résider dans la famille de son époux. L’unité résidentielle est le socle du lignage. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L’acquisition du domaine foncier se faisait autrefois sur le principe du premier venu, premier servi, à condition de pouvoir délimiter l’espace réservé de façon nette par débroussaillement d’une bande de « un mètre » environ de largeur. Et tout terrain ou lopin de terre où une subdivision de clan a enseveli ses morts pendant plusieurs générations devient sa propriété absolue.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Le clan est organisé hiérarchiquement, chaque branche a son chef, celui ci est désigné par élection. Quand l’un d’eux meurt, le conseil des chefs se réunit pour designer son successeur. Le roi doit ratifier ce choix, il a le droit de révocation du chef élu, mais ne peut en aucun cas le désigner d’office. Le clan est généralement composé de personnes qui ont eu ou ont un ancêtre commun. Les mythes servent à définir les caractères du clan. La cohésion du clan repose sur le respect des symboles, des cérémonies, des rituels. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dans les sociétés bantoues, l’élément fondamental de la structure sociale est la parenté. Celle-ci est fondée sur la reconnaissance sociale des liens de consanguinités et d’affinités. On remarque dans ces sociétés une division sexuelle du travail, car les femmes sont censées prendre soin du foyer, des enfants, et de se charger de la cueillette, des tâches horticoles et agricoles. Quant aux hommes, ils doivent s’occuper de la protection du groupe familial, de la chasse, de la pêche, de l’élevage, du labourage, du débroussaillement, du défrichement de la terre et de la majorité des activités artisanales. Le développement de l’individu passe par une suite d’étapes, de l’enfance à la vieillesse. Ce qui permet d’assigner différents rôles à chacun pour l’amener tout au long de son existence à faire partie de certaine catégorie au sein du groupe. D’où, l’existence de certains rites d’initiations. Chaque étape entraîne des droits et des devoirs. Pour maintenir le lien social, il était de tradition qu’à la tombé de la nuit, au son du tam-tam, tous les enfants se retrouvaient autour d’un feu allumé au pied d’un baobab situé sur la grande place, pour écouter les contes et les épopées des ancêtres, racontés par les vieux et les sages du village.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><br /> <span style="text-decoration: underline;">Les us et coutumes</span> :</strong></span></span></p> <p class="MsoBodyTextIndent" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Comme chez tous les autres peuples du monde, on rencontre des idées de croyances liés à l’être humain, à la nature, et aux relations que celui-ci entretien avec la nature. Si l’on considère que l’humain croit la plupart du temps en l’existence d’un être supérieur, qu’il symbolise à sa manière, chez le bantou originel, cette symbolisation a pour support l’idéologie animiste.</span></span></p> <p class="MsoBodyTextIndent" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> La religion traditionnelle gère les rapports de l’homme avec Dieu et son environnement au moyen des rituels et des interdits. Chez L’animiste, la nature est régie par des âmes ou esprits, analogues à la volonté humaine : ceux-ci peuvent se trouver dans n’importe quels éléments de la nature (les pierres, le vent, les animaux etc.…). Toutefois, le terme Animisme ne peut à lui seul rendre compte de la diversité des systèmes religieux existant en Afrique. Dans l’Afrique traditionnelle, le monde est animé par une force vitale qui peut prendre différents aspects selon les peuples et les religions. La nature est liée intimement à l’individu par la religion. Les manquements aux rites et la rupture des interdits risquent de perturber gravement l’équilibre interne de la société et de mettre en danger sa place dans l’environnement.</span></span></p> <p class="MsoBodyTextIndent" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">On distingue chez les bantous, deux types de sociétés animistes : Les sociétés animistes monothéistes qui considèrent qu’il n’y a qu’une âme unique qui habite les objets et croient en un dieu créateur unique. Et Les sociétés animistes polythéistes qui croient qu’il y a une âme dans chaque objet et croient en plusieurs dieux. Quelque fois, ils attribuent un pouvoir croissant à certaines divinités au dépend des autres qu’ils considèrent comme inférieures. Les divinités en question deviennent des dieux. Les totems ne jouent pas le rôle d’icône ni d’idole chez ses peuples, mais seulement celui de lien symbolique entre la nature et le sacré. Et l’éloignement de Dieu ou des Dieux est parfois innomé. Pour les mystiques africains, l’émotion religieuse est quantifiée par le sentiment d’éloignement que l’âme éprouve vis à vis de Dieu. Cette distance oblige les peuples bantous, à concevoir des intermédiaires, qui intercèdent par l’intermédiaire des ancêtres pour aider leurs descendants. On distingue donc parmi ses médiateurs humains, les <em>possédés</em> qui établissent le relais avec des génies ou des ancêtres. Les <em>prêtres</em> qui invoquent les puissances surnaturelles pour leur transmettre les demandes et les offrandes des fidèles. Quelque fois les <em>rois</em> et les <em>forgerons</em> peuvent aussi intercéder. </span></span></p> <p class="MsoBodyTextIndent" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> <span style="text-decoration: underline;">Les arts</span> :</strong></span></span></p> <p class="MsoBodyText" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Peu importe le type d’art bantou (sculpture, musique ou danse), celui ci est indissociable de la religion. Il est l’expression d’une symbolique ésotérique et traditionnelle. Indépendamment de sa spécialité, l’artiste noir exprime plus l’invisible que le visible dans lequel il puise ses éléments, son œuvre lui sert surtout à capter les énergies sauvages, à les dompter pour les rendre favorables à tout le groupe.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">L’Art des peuples bantous est très diverse et varie en fonction des populations et des croyances. On trouve ainsi dans ces populations un artisanat très étendu, à savoir sculpture sur ivoire, sceptres, cannes, armes, porte flèches, appuie nuque, chasse mouches, orfèvrerie, céramique et le perlage. Le style d’art pratiqué est caractéristique de chaque région. Ainsi, dans les régions des hauts plateaux du Cameroun, la sculpture sur bois ne se limite pas seulement à la création de statuettes et de masques, des sièges, des lits, des récipients à usage domestiques, des instruments de musiques, on observe aussi des décorations intervenantes dans l’architecture.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> L’art du perlage est très développé chez certains bantous du Grassland camerounais. Dans la région allant du nord du Gabon jusqu’ en république démocratique du Congo, les sculptures sont blanchies au kaolin ou rougie à la poudre de bois rouge. Cet artisanat a pour thèmes migrations, guerres et différents rites. Ces objets ont pour but de rendre à leurs possesseurs des services multiples : protection contre la mort, divination, prospérité.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> L’utilisation des masques lors des grandes cérémonies en Afrique noire a pour but de permettre à leurs porteurs souvent des danseurs, de cacher leur identité au transcendant et de leur permettre de rentrer en contact sans danger avec celui ci. Quand les danseurs ne sont pas masqués, ils ont le visage et le corps peints et portent des vêtements et des ornements particuliers. Pour être cosmique, le masque doit emprunter ses éléments à la nature et les recomposer en fonction de la culture dont il émane et de l’idée, de l’impression qu’il doit communiquer.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">' L'union dans le troupeau oblige le lion à se coucher avec la faim.''</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sources : <a href="http://www.lesbantous.fr/"><span style="color: #000000;">http://www.lesbantous.fr</span></a> et <a href="http://www.google.fr/"><span style="color: #000000;">www.google.fr</span></a></span></span></p>Les Bantousinheritopenopen59-revision-22012-01-17 17:20:212012-01-17 16:20:2159http://www.alicepegie.com/wordpress/wordpress/?p=1490revision0
15212012-01-18 13:56:172012-01-18 12:56:17<p style="text-align: justify;"><strong><span style="font-size: xx-large; font-family: arial,helvetica,sans-serif;"><a title="Ecouter sa Musique;" style="text-decoration: none;"><img src="images/stories/nzie.jpg" alt="nzie" style="float: left;" height="208" border="0" width="166" /></a></span></strong></p> <p style="text-align: justify;"><hr id="system-readmore" />La Maman de la musique camerounaise</p> <p style="text-align: justify;">&nbsp;</p> <p>&nbsp;</p> <p><strong><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/centre_sud/AnneMarieNzie|1||a{/nmap}<span style="font-size: 12pt; line-height: 115%;"></span></span></strong></p> <p>&nbsp;</p> <p>&nbsp;</p> <p style="text-align: justify;">A l'âge où la plupart des femmes se glissent dans un repos bien mérité en regardant grandir leurs petits-enfants, Anne-Marie Nzié groove et chaloupe avec un enthousiasme communicatif. Sa voix coule et rebondit de rumba en bikutsi, qu'elle chante aussi bien en douala qu'en éwondo ou en ngumba saupoudrés d'un peu de français ou d'anglais.</p> <p>Longtemps, Anne Marie Nzié a été une célébrité dans son pays (on la surnomme la "Maman" de la musique camerounaise) puis elle est peu à peu tombée en désuétude avant d'atteindre une sorte d'oubli. Mais en 1996 un animateur de radio, René Ayina, réussit à lui faire donner une série de concerts. Là, contre toute attente des médias, un public enthousiaste la retrouve. Du coup, l'année suivante le Centre Culturel Français de Yaoundé fête dignement ses 40 ans de carrière.</p> <p style="text-align: justify;">En 1998, le festival d'Angoulême la programme et dans la foulée, Anne-Marie réalise son premier disque en France. Et l'Occident découvre avec plaisir cette nature qui ne mâche pas ses mots (interrogée sur son nouveau succès dans une émission de la Télévision camerounaise, elle n'a pas hésité à fustiger les producteurs africains et le ministère de la Culture). Si elle réagit ainsi, ce n'est pas parce qu'elle n'a rien à perdre, mais parce qu'elle connaît la valeur des choses.</p> <p>&nbsp;</p> <p style="text-align: justify;">A douze ans, une blessure infectée la cloue sur un lit d'hôpital pendant plusieurs années.Elle en profite pour apprendre à jouer de la guitare dans le style hawaïen et fait le serment de devenir chanteuse si elle s'en sort. En 1954, elle enregistre son premier disque pour un label congolo-belge. Sa voix superbe et sa personnalité hors norme lui confèrent très rapidement la célébrité. De concerts prestigieux en passages radios elle devient une gloire nationale (participation au festival Panafricain d'Alger en 1969, au Festac de Lagos en 1977…). Pourtant, peu à peu son étoile pâlit et elle s'enfonce dans une semi-retraite. En 1984, elle connaît un éphémère regain de succès avec la sortie de son album "Liberté". Mais il faudra attendre la 2ème moitié des années 90 pour que la reine du Bi-kutsi revienne sur le devant de la scène avec un éclat particulier puisqu'à 67 ans passés, elle s'apprête à entamer une carrière internationale. Avec dans les yeux et dans la voix l'espièglerie d'une petite fille qui joue un bon tour au temps qui passe.</p> <p style="text-align: justify;"><br /> Magali Bergès</p> <p style="text-align: justify;"><a href="http://annemarie_nzie.mondomix.com/fr/portrait17.htm">Source</a></p>Anne Marie Nziéinheritopenopen151-revision2012-01-18 13:56:172012-01-18 12:56:17151http://www.alicepegie.com/wordpress/wordpress/?p=1520revision0
16212012-01-18 14:03:572012-01-18 13:03:57<p style="text-align: justify;"><strong><span style="font-size: xx-large; font-family: arial,helvetica,sans-serif;"><a style="text-decoration: none;" title="Ecouter sa Musique;"><img style="float: left;" src="images/stories/nzie.jpg" alt="nzie" width="166" height="208" border="0" /></a></span></strong></p> <p style="text-align: justify;">La Maman de la musique camerounaise</p> <!--more--> <strong><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/centre_sud/AnneMarieNzie|1||a{/nmap}</span></strong> <p style="text-align: justify;">A l'âge où la plupart des femmes se glissent dans un repos bien mérité en regardant grandir leurs petits-enfants, Anne-Marie Nzié groove et chaloupe avec un enthousiasme communicatif. Sa voix coule et rebondit de rumba en bikutsi, qu'elle chante aussi bien en douala qu'en éwondo ou en ngumba saupoudrés d'un peu de français ou d'anglais.</p> Longtemps, Anne Marie Nzié a été une célébrité dans son pays (on la surnomme la "Maman" de la musique camerounaise) puis elle est peu à peu tombée en désuétude avant d'atteindre une sorte d'oubli. Mais en 1996 un animateur de radio, René Ayina, réussit à lui faire donner une série de concerts. Là, contre toute attente des médias, un public enthousiaste la retrouve. Du coup, l'année suivante le Centre Culturel Français de Yaoundé fête dignement ses 40 ans de carrière. <p style="text-align: justify;">En 1998, le festival d'Angoulême la programme et dans la foulée, Anne-Marie réalise son premier disque en France. Et l'Occident découvre avec plaisir cette nature qui ne mâche pas ses mots (interrogée sur son nouveau succès dans une émission de la Télévision camerounaise, elle n'a pas hésité à fustiger les producteurs africains et le ministère de la Culture). Si elle réagit ainsi, ce n'est pas parce qu'elle n'a rien à perdre, mais parce qu'elle connaît la valeur des choses.</p> &nbsp; <p style="text-align: justify;">A douze ans, une blessure infectée la cloue sur un lit d'hôpital pendant plusieurs années.Elle en profite pour apprendre à jouer de la guitare dans le style hawaïen et fait le serment de devenir chanteuse si elle s'en sort. En 1954, elle enregistre son premier disque pour un label congolo-belge. Sa voix superbe et sa personnalité hors norme lui confèrent très rapidement la célébrité. De concerts prestigieux en passages radios elle devient une gloire nationale (participation au festival Panafricain d'Alger en 1969, au Festac de Lagos en 1977…). Pourtant, peu à peu son étoile pâlit et elle s'enfonce dans une semi-retraite. En 1984, elle connaît un éphémère regain de succès avec la sortie de son album "Liberté". Mais il faudra attendre la 2ème moitié des années 90 pour que la reine du Bi-kutsi revienne sur le devant de la scène avec un éclat particulier puisqu'à 67 ans passés, elle s'apprête à entamer une carrière internationale. Avec dans les yeux et dans la voix l'espièglerie d'une petite fille qui joue un bon tour au temps qui passe.</p> <p style="text-align: justify;">Magali Bergès</p> <p style="text-align: justify;"><a href="http://annemarie_nzie.mondomix.com/fr/portrait17.htm">Source</a></p>Anne Marie Nziéinheritopenopen151-autosave2012-01-18 14:03:572012-01-18 13:03:57151http://www.alicepegie.com/wordpress/wordpress/?p=1620revision0
15312010-01-15 13:57:202010-01-15 12:57:20<p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: none;"><img src="images/esso%20essomba.jpg" alt="" width="518" height="400" border="0" /></span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: none;"><!--more--></span></span></span><strong><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/esso_essomba|1||a{/nmap}</span></strong> &nbsp; Nfie Yop, "lumière du firmament", illumine encore les mélomanes des années héroïques de la chanson camerounaise. Esso Essomba parle de la vie, de l'amour mais aussi, de la détresse et de la vanité. Avec Mun'a Iyo, visiblement influencé par son mentor de l'époque, Ekambi Brillant, qui a arrangé, dirigé et réalisé les albums à succès, le fils du pays Beti chante en duala et exécute un makossa aseptisé de ce que l'on rencontre aujourd'hui. A part cela, Esso Essomba est essentiellement bikutsi dans toutes ses formes, avec une voie juste qui fait regretter le ces années 80 de gloire de la musique camerounaise. Nye Ane A Mbe évoque (limite au bas de la porte) ne s'éloigne pas de Bideng Bideng, qui évoque le vagabondage ou encore Benga Dzo qui veut s'attaquer aux ragots. Il y a aussi, dans cet album, en position 8, Evouvoue, la paix ou encore en 7, Obog Oyili, le temps de l'entente. Le 9 février prochain, Esso Essomba jouera en life, ces titres qui charment encore les mélomanes camerounais, malgré l'environnement pollué par les musiques dites urbaines, souvent venues des deux Congo ou de Côte- d'Ivoire. Le retour d'Esso Essomba par cette compilation nous permet aussi de revisiter avec nostalgie, ce patrimoine musical national. Les textes d'Esso Essomba s'alignent sur les concepts poétiques de Donny Elwood, Ottou Marcellin, Claude Ndam, dans leur caractère intellectuel, élitiste et non moins moralisateurs et subversif. &nbsp; <p style="text-align: justify;">Ces musiques originellement arrangées, dirigées et réalisées par Ekambi Brillant pour le compte de Jengu production, avec des musiciens comme Jacob Desvarieux, Ebeny Donald Wesley, Ambassa Moustik, Jean-Claude Naimro, Douglas Mbida, pour ne citer que les plus connus au Cameroun ont été remastérisées au studio After Hours de Bochum en Allemagne et produites par Yves François Messi pour le groupe Impérial. Cette remise sur le marché veut s'attacher au passé, à ce temps qui a illuminé, par le Nfie Yop, l'un des titres les plus connus de l'ancien Président du conseil d'administration de la Socinada, l'univers musical camerounais par ces images des balafong (premier album, Bindeng Bindeng ) et du tableau de Jean-Marie Ahanda, référence de la peinture au Cameroun, illustrant Nyé Ane A Mbe. En attendant la nouvelle création de Esso Essomba, on revisite avec bonheur ces chanson qui datent d'il y a une vingtaine d'année. L'artiste est immortel, son œuvre aussi.</p>Esso Essombapublishopenopenesso-essomba2012-01-18 14:02:002012-01-18 13:02:000http://www.alicepegie.com/wordpress/wordpress/?p=1530post0
15412012-01-18 13:58:082012-01-18 12:58:08<p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: none;"><img src="images/esso%20essomba.jpg" border="0" height="400" width="518" /><hr id="system-readmore" /></span></span></span></p> <p><b><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/esso_essomba|1||a{/nmap}<span style="font-size: 12pt; line-height: 115%;"></span></span></b></p> <p>&nbsp;</p> <p>Nfie Yop, "lumière du firmament", illumine encore les mélomanes des années héroïques de la chanson camerounaise. Esso Essomba parle de la vie, de l'amour mais aussi, de la détresse et de la vanité.<br /><br />Avec Mun'a Iyo, visiblement influencé par son mentor de l'époque, Ekambi Brillant, qui a arrangé, dirigé et réalisé les albums à succès, le fils du pays Beti chante en duala et exécute un makossa aseptisé de ce que l'on rencontre aujourd'hui. A part cela, Esso Essomba est essentiellement bikutsi dans toutes ses formes, avec une voie juste qui fait regretter le ces années 80 de gloire de la musique camerounaise. Nye Ane A Mbe évoque (limite au bas de la porte) ne s'éloigne pas de Bideng Bideng, qui évoque le vagabondage ou encore Benga Dzo qui veut s'attaquer aux ragots. Il y a aussi, dans cet album, en position 8, Evouvoue, la paix ou encore en 7, Obog Oyili, le temps de l'entente.<br />Le 9 février prochain, Esso Essomba jouera en life, ces titres qui charment encore les mélomanes camerounais, malgré l'environnement pollué par les musiques dites urbaines, souvent venues des deux Congo ou de Côte- d'Ivoire. Le retour d'Esso Essomba par cette compilation nous permet aussi de revisiter avec nostalgie, ce patrimoine musical national. Les textes d'Esso Essomba s'alignent sur les concepts poétiques de Donny Elwood, Ottou Marcellin, Claude Ndam, dans leur caractère intellectuel, élitiste et non moins moralisateurs et subversif. </p> <p>&nbsp;</p> <p style="text-align: justify;">Ces musiques originellement arrangées, dirigées et réalisées par Ekambi Brillant pour le compte de Jengu production, avec des musiciens comme Jacob Desvarieux, Ebeny Donald Wesley, Ambassa Moustik, Jean-Claude Naimro, Douglas Mbida, pour ne citer que les plus connus au Cameroun ont été remastérisées au studio After Hours de Bochum en Allemagne et produites par Yves François Messi pour le groupe Impérial. Cette remise sur le marché veut s'attacher au passé, à ce temps qui a illuminé, par le Nfie Yop, l'un des titres les plus connus de l'ancien Président du conseil d'administration de la Socinada, l'univers musical camerounais par ces images des balafong (premier album, Bindeng Bindeng ) et du tableau de Jean-Marie Ahanda, référence de la peinture au Cameroun, illustrant Nyé Ane A Mbe. En attendant la nouvelle création de Esso Essomba, on revisite avec bonheur ces chanson qui datent d'il y a une vingtaine d'année. L'artiste est immortel, son œuvre aussi.</p>Esso Essombainheritopenopen153-revision2012-01-18 13:58:082012-01-18 12:58:08153http://www.alicepegie.com/wordpress/wordpress/?p=1540revision0
15512010-01-15 13:58:242010-01-15 12:58:24<div style="text-align: center;"> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="Georges Seba.jpg" href="http://s1.e-monsite.com/2009/10/05/11/6854306georges-seba-jpg.jpg"><img style="border: 0px none; float: left;" title="Georges Seba.jpg" src="images/stories/georgeseba.jpg" alt="georgeseba" width="184" height="184" border="0" /></a></span></span> </div> <strong><span style="font-family: 'Arial','sans-serif';"> </span></strong> <!--more--> {nmap}normal|250|150|images/stories/audio/centre_sud/Georges_Seba|1||a{/nmap} Date de naissance : 09/05/1959 <em>(format : jour/mois/année)</em> <strong>Son parcours :</strong> <strong>Georges Seba, </strong>né le 9 Mai 1959 est un chanteur Camerounais. Georges Seba est un métis d'origine camerounaise né le 9 mai 1959 à Enongal. Après avoir obtenu un diplôme universitaire, il opte pour sa passion : la musique. Il chante depuis son enfance et c'est au fur et à mesure qu'il compose les notes de son univers artistique. Il propose une musique colorée, variée, épicée où se marient à la fois sonorités modernes et traditionnelles, africaines et européennes, voire mondiales. <p style="text-align: justify;">Son métissage lui permet d'apprécier et de restituer le meilleur des cultures qu'il lui a été donné de côtoyer. Ce qui est frappant lorsque l'on écoute l'un de ses titres, c'est son engagement.On retrouve dans sa musique une grande générosité.</p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span class="txtGris">Au delà de sa passion, il veut faire découvrir le monde, voyager au sein de l'Afrique et nous transporter dans le temps.  De part ses mélodies et sa voix, il transmet sa joie de vivre et son sens du partage. Son univers musical est unique car il se l'est forgé lui-même. C'est en véritable autodidacte qu'il a appris à restituer les sons qui l'entourait puis ceux qui l'animait pour devenir un grand professionnel.</span></span></span></p> Il a <span style="color: #a10304;">7 albums </span>de <span style="color: #a10304;">1979 à 1994,</span> dont certains se sont vendus à plus de 100.000 exemplaires,  Il a été sociétaire du groupe de Nicole Croisille pour le spectacle « Juste pour Voix ». Il a Collaboré avec des artistes tels Deedee Bridgewater, Alpha Blondy, Céline Dion, Kassav, Sixun, <span style="color: #a10304;"><strong>Yannick Noah,</strong></span>… Il est chef de chœur de chorales gospel au travers la France et d'Europe. Il a dirigé les Chérubins pendant 20 ans et se consacre désormais à son nouveau groupe le <span style="color: #a10304;">Choeur Gospel de Paris</span>, dont les apparitions télévisuelles ont été appréciées dans des émissions telles que Taratata, Sacré soirée, Tapis Rouge, Vivement Dimanche, la Star Académie, ou encore plus récement le Symphonic Show. Il faut également souligner leur participation aux événements que sont « Sol en Si » à l'Olympia, le Téléthon ou les Enfoirés au Grand Rex. Il œuvre depuis des années pour soutenir le pays de son enfance : le Cameroun et plus généralement l'Afrique. Il organise depuis des années des collectes de vêtements et depuis Septembre 2005 s'est mise en place l'association <span style="color: #a10304;">AMVAM, </span>du nom de son village. C'est une chorale Gospel dont le but est de rassembler des fonds pour participer à son développement en envoyant du matériel scolaire, agraire,… <a href="http://www.africansuccess.org/visuFiche.php?id=128&amp;lang=fr">Source</a>Georges Sebapublishopenopengeorges-seba2012-01-18 14:01:142012-01-18 13:01:140http://www.alicepegie.com/wordpress/wordpress/?p=1550post0
15612012-01-18 13:58:492012-01-18 12:58:49<div style="text-align: center;"> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" href="http://s1.e-monsite.com/2009/10/05/11/6854306georges-seba-jpg.jpg" title="Georges Seba.jpg"><img src="images/stories/georgeseba.jpg" alt="georgeseba" title="Georges Seba.jpg" style="border: 0px none; float: left;" border="0" height="184" width="184" /></a></span></span></p> </div> <p><b><span style="font-family: 'Arial','sans-serif';"><hr id="system-readmore" />{nmap}normal|250|150|images/stories/audio/centre_sud/Georges_Seba|1||a{/nmap}<span style="font-size: 12pt; line-height: 115%;"></span></span></b></p> <p>&nbsp;</p> <p>Date de naissance : 09/05/1959 <em>(format : jour/mois/année)</em><br /><strong>Son parcours :</strong><br /><strong>Georges Seba, </strong>né le 9 Mai 1959 est un chanteur Camerounais.<br /><br />Georges Seba est un métis d'origine camerounaise né le 9 mai 1959 à Enongal. Après avoir obtenu un diplôme universitaire, il opte pour sa passion : la musique. Il chante depuis son enfance et c'est au fur et à mesure qu'il compose les notes de son univers artistique.<br />Il propose une musique colorée, variée, épicée où se marient à la fois sonorités modernes et traditionnelles, africaines et européennes, voire mondiales.</p> <p style="text-align: justify;">Son métissage lui permet d'apprécier et de restituer le meilleur des cultures qu'il lui a été donné de côtoyer. Ce qui est frappant lorsque l'on écoute l'un de ses titres, c'est son engagement.On retrouve dans sa musique une grande générosité.</p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span class="txtGris">Au delà de sa passion, il veut faire découvrir le monde, voyager au sein de l'Afrique et nous transporter dans le temps.&nbsp; De part ses mélodies et sa voix, il transmet sa joie de vivre et son sens du partage. Son univers musical est unique car il se l'est forgé lui-même. C'est en véritable autodidacte qu'il a appris à restituer les sons qui l'entourait puis ceux qui l'animait pour devenir un grand professionnel.<br /><br />Il a <span style="color: #a10304;">7 albums </span>de <span style="color: #a10304;">1979 à 1994,</span> dont certains se sont vendus à plus de 100.000 exemplaires,&nbsp; Il a été sociétaire du groupe de Nicole Croisille pour le spectacle « Juste pour Voix ». Il a Collaboré avec des artistes tels Deedee Bridgewater, Alpha Blondy, Céline Dion, Kassav, Sixun, <span style="color: #a10304;"><strong>Yannick Noah,</strong></span>… Il est chef de chœur de chorales gospel au travers la France et d'Europe. Il a dirigé les Chérubins pendant 20 ans et se consacre désormais à son nouveau groupe le <span style="color: #a10304;">Choeur Gospel de Paris</span>, dont les apparitions télévisuelles ont été appréciées dans des émissions telles que Taratata, Sacré soirée, Tapis Rouge, Vivement Dimanche, la Star Académie, ou encore plus récement le Symphonic Show.<br /><br />Il faut également souligner leur participation aux événements que sont « Sol en Si » à l'Olympia, le Téléthon ou les Enfoirés au Grand Rex. Il œuvre depuis des années pour soutenir le pays de son enfance : le Cameroun et plus généralement l'Afrique. Il organise depuis des années des collectes de vêtements et depuis Septembre 2005 s'est mise en place l'association <span style="color: #a10304;">AMVAM, </span>du nom de son village.<br />C'est une chorale Gospel dont le but est de rassembler des fonds pour participer à son développement en envoyant du matériel scolaire, agraire,… <br /><a href="http://www.africansuccess.org/visuFiche.php?id=128&amp;lang=fr">Source</a></span></span></span></p>Georges Sebainheritopenopen155-revision2012-01-18 13:58:492012-01-18 12:58:49155http://www.alicepegie.com/wordpress/wordpress/?p=1560revision0
15812012-01-18 13:59:382012-01-18 12:59:38<div style="text-align: center;"> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="Georges Seba.jpg" href="http://s1.e-monsite.com/2009/10/05/11/6854306georges-seba-jpg.jpg"><img style="border: 0px none; float: left;" title="Georges Seba.jpg" src="images/stories/georgeseba.jpg" alt="georgeseba" width="184" height="184" border="0" /></a></span></span> </div> <strong><span style="font-family: 'Arial','sans-serif';"> </span></strong> <hr id="system-readmore" /> {nmap}normal|250|150|images/stories/audio/centre_sud/Georges_Seba|1||a{/nmap} Date de naissance : 09/05/1959 <em>(format : jour/mois/année)</em> <strong>Son parcours :</strong> <strong>Georges Seba, </strong>né le 9 Mai 1959 est un chanteur Camerounais. Georges Seba est un métis d'origine camerounaise né le 9 mai 1959 à Enongal. Après avoir obtenu un diplôme universitaire, il opte pour sa passion : la musique. Il chante depuis son enfance et c'est au fur et à mesure qu'il compose les notes de son univers artistique. Il propose une musique colorée, variée, épicée où se marient à la fois sonorités modernes et traditionnelles, africaines et européennes, voire mondiales. <p style="text-align: justify;">Son métissage lui permet d'apprécier et de restituer le meilleur des cultures qu'il lui a été donné de côtoyer. Ce qui est frappant lorsque l'on écoute l'un de ses titres, c'est son engagement.On retrouve dans sa musique une grande générosité.</p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span class="txtGris">Au delà de sa passion, il veut faire découvrir le monde, voyager au sein de l'Afrique et nous transporter dans le temps.  De part ses mélodies et sa voix, il transmet sa joie de vivre et son sens du partage. Son univers musical est unique car il se l'est forgé lui-même. C'est en véritable autodidacte qu'il a appris à restituer les sons qui l'entourait puis ceux qui l'animait pour devenir un grand professionnel.</span></span></span></p> Il a <span style="color: #a10304;">7 albums </span>de <span style="color: #a10304;">1979 à 1994,</span> dont certains se sont vendus à plus de 100.000 exemplaires,  Il a été sociétaire du groupe de Nicole Croisille pour le spectacle « Juste pour Voix ». Il a Collaboré avec des artistes tels Deedee Bridgewater, Alpha Blondy, Céline Dion, Kassav, Sixun, <span style="color: #a10304;"><strong>Yannick Noah,</strong></span>… Il est chef de chœur de chorales gospel au travers la France et d'Europe. Il a dirigé les Chérubins pendant 20 ans et se consacre désormais à son nouveau groupe le <span style="color: #a10304;">Choeur Gospel de Paris</span>, dont les apparitions télévisuelles ont été appréciées dans des émissions telles que Taratata, Sacré soirée, Tapis Rouge, Vivement Dimanche, la Star Académie, ou encore plus récement le Symphonic Show. Il faut également souligner leur participation aux événements que sont « Sol en Si » à l'Olympia, le Téléthon ou les Enfoirés au Grand Rex. Il œuvre depuis des années pour soutenir le pays de son enfance : le Cameroun et plus généralement l'Afrique. Il organise depuis des années des collectes de vêtements et depuis Septembre 2005 s'est mise en place l'association <span style="color: #a10304;">AMVAM, </span>du nom de son village. C'est une chorale Gospel dont le but est de rassembler des fonds pour participer à son développement en envoyant du matériel scolaire, agraire,… <a href="http://www.africansuccess.org/visuFiche.php?id=128&amp;lang=fr">Source</a>Georges Sebainheritopenopen155-revision-32012-01-18 13:59:382012-01-18 12:59:38155http://www.alicepegie.com/wordpress/wordpress/?p=1580revision0
15712012-01-18 13:59:192012-01-18 12:59:19<div style="text-align: center;"> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" href="http://s1.e-monsite.com/2009/10/05/11/6854306georges-seba-jpg.jpg" title="Georges Seba.jpg"><img src="images/stories/georgeseba.jpg" alt="georgeseba" title="Georges Seba.jpg" style="border: 0px none; float: left;" border="0" height="184" width="184" /></a></span></span></p> </div> <p><b><span style="font-family: 'Arial','sans-serif';"><hr id="system-readmore" />{nmap}normal|250|150|images/stories/audio/centre_sud/Georges_Seba|1||a{/nmap}<span style="font-size: 12pt; line-height: 115%;"></span></span></b></p> <p>&nbsp;</p> <p>Date de naissance : 09/05/1959 <em>(format : jour/mois/année)</em><br /><strong>Son parcours :</strong><br /><strong>Georges Seba, </strong>né le 9 Mai 1959 est un chanteur Camerounais.<br /><br />Georges Seba est un métis d'origine camerounaise né le 9 mai 1959 à Enongal. Après avoir obtenu un diplôme universitaire, il opte pour sa passion : la musique. Il chante depuis son enfance et c'est au fur et à mesure qu'il compose les notes de son univers artistique.<br />Il propose une musique colorée, variée, épicée où se marient à la fois sonorités modernes et traditionnelles, africaines et européennes, voire mondiales.</p> <p style="text-align: justify;">Son métissage lui permet d'apprécier et de restituer le meilleur des cultures qu'il lui a été donné de côtoyer. Ce qui est frappant lorsque l'on écoute l'un de ses titres, c'est son engagement.On retrouve dans sa musique une grande générosité.</p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span class="txtGris">Au delà de sa passion, il veut faire découvrir le monde, voyager au sein de l'Afrique et nous transporter dans le temps.&nbsp; De part ses mélodies et sa voix, il transmet sa joie de vivre et son sens du partage. Son univers musical est unique car il se l'est forgé lui-même. C'est en véritable autodidacte qu'il a appris à restituer les sons qui l'entourait puis ceux qui l'animait pour devenir un grand professionnel.<br /><br />Il a <span style="color: #a10304;">7 albums </span>de <span style="color: #a10304;">1979 à 1994,</span> dont certains se sont vendus à plus de 100.000 exemplaires,&nbsp; Il a été sociétaire du groupe de Nicole Croisille pour le spectacle « Juste pour Voix ». Il a Collaboré avec des artistes tels Deedee Bridgewater, Alpha Blondy, Céline Dion, Kassav, Sixun, <span style="color: #a10304;"><strong>Yannick Noah,</strong></span>… Il est chef de chœur de chorales gospel au travers la France et d'Europe. Il a dirigé les Chérubins pendant 20 ans et se consacre désormais à son nouveau groupe le <span style="color: #a10304;">Choeur Gospel de Paris</span>, dont les apparitions télévisuelles ont été appréciées dans des émissions telles que Taratata, Sacré soirée, Tapis Rouge, Vivement Dimanche, la Star Académie, ou encore plus récement le Symphonic Show.<br /><br />Il faut également souligner leur participation aux événements que sont « Sol en Si » à l'Olympia, le Téléthon ou les Enfoirés au Grand Rex. Il œuvre depuis des années pour soutenir le pays de son enfance : le Cameroun et plus généralement l'Afrique. Il organise depuis des années des collectes de vêtements et depuis Septembre 2005 s'est mise en place l'association <span style="color: #a10304;">AMVAM, </span>du nom de son village.<br />C'est une chorale Gospel dont le but est de rassembler des fonds pour participer à son développement en envoyant du matériel scolaire, agraire,… <br /><a href="http://www.africansuccess.org/visuFiche.php?id=128&amp;lang=fr">Source</a></span></span></span></p>Georges Sebainheritopenopen155-revision-22012-01-18 13:59:192012-01-18 12:59:19155http://www.alicepegie.com/wordpress/wordpress/?p=1570revision0
15912012-01-18 14:00:182012-01-18 13:00:18<div style="text-align: center;"> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="Georges Seba.jpg" href="http://s1.e-monsite.com/2009/10/05/11/6854306georges-seba-jpg.jpg"><img style="border: 0px none; float: left;" title="Georges Seba.jpg" src="images/stories/georgeseba.jpg" alt="georgeseba" width="184" height="184" border="0" /></a></span></span> </div> <strong><span style="font-family: 'Arial','sans-serif';"> </span></strong> <!--more--> {nmap}normal|250|150|images/stories/audio/centre_sud/Georges_Seba|1||a{/nmap} Date de naissance : 09/05/1959 <em>(format : jour/mois/année)</em> <strong>Son parcours :</strong> <strong>Georges Seba, </strong>né le 9 Mai 1959 est un chanteur Camerounais. Georges Seba est un métis d'origine camerounaise né le 9 mai 1959 à Enongal. Après avoir obtenu un diplôme universitaire, il opte pour sa passion : la musique. Il chante depuis son enfance et c'est au fur et à mesure qu'il compose les notes de son univers artistique. Il propose une musique colorée, variée, épicée où se marient à la fois sonorités modernes et traditionnelles, africaines et européennes, voire mondiales. <p style="text-align: justify;">Son métissage lui permet d'apprécier et de restituer le meilleur des cultures qu'il lui a été donné de côtoyer. Ce qui est frappant lorsque l'on écoute l'un de ses titres, c'est son engagement.On retrouve dans sa musique une grande générosité.</p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span class="txtGris">Au delà de sa passion, il veut faire découvrir le monde, voyager au sein de l'Afrique et nous transporter dans le temps.  De part ses mélodies et sa voix, il transmet sa joie de vivre et son sens du partage. Son univers musical est unique car il se l'est forgé lui-même. C'est en véritable autodidacte qu'il a appris à restituer les sons qui l'entourait puis ceux qui l'animait pour devenir un grand professionnel.</span></span></span></p> Il a <span style="color: #a10304;">7 albums </span>de <span style="color: #a10304;">1979 à 1994,</span> dont certains se sont vendus à plus de 100.000 exemplaires,  Il a été sociétaire du groupe de Nicole Croisille pour le spectacle « Juste pour Voix ». Il a Collaboré avec des artistes tels Deedee Bridgewater, Alpha Blondy, Céline Dion, Kassav, Sixun, <span style="color: #a10304;"><strong>Yannick Noah,</strong></span>… Il est chef de chœur de chorales gospel au travers la France et d'Europe. Il a dirigé les Chérubins pendant 20 ans et se consacre désormais à son nouveau groupe le <span style="color: #a10304;">Choeur Gospel de Paris</span>, dont les apparitions télévisuelles ont été appréciées dans des émissions telles que Taratata, Sacré soirée, Tapis Rouge, Vivement Dimanche, la Star Académie, ou encore plus récement le Symphonic Show. Il faut également souligner leur participation aux événements que sont « Sol en Si » à l'Olympia, le Téléthon ou les Enfoirés au Grand Rex. Il œuvre depuis des années pour soutenir le pays de son enfance : le Cameroun et plus généralement l'Afrique. Il organise depuis des années des collectes de vêtements et depuis Septembre 2005 s'est mise en place l'association <span style="color: #a10304;">AMVAM, </span>du nom de son village. C'est une chorale Gospel dont le but est de rassembler des fonds pour participer à son développement en envoyant du matériel scolaire, agraire,… <a href="http://www.africansuccess.org/visuFiche.php?id=128&amp;lang=fr">Source</a>Georges Sebainheritopenopen155-revision-42012-01-18 14:00:182012-01-18 13:00:18155http://www.alicepegie.com/wordpress/wordpress/?p=1590revision0
16012012-01-18 13:58:172012-01-18 12:58:17<p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: none;"><img src="images/esso%20essomba.jpg" border="0" height="400" width="518" /><hr id="system-readmore" /></span></span></span></p> <p><b><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/esso_essomba|1||a{/nmap}<span style="font-size: 12pt; line-height: 115%;"></span></span></b></p> <p>&nbsp;</p> <p>Nfie Yop, "lumière du firmament", illumine encore les mélomanes des années héroïques de la chanson camerounaise. Esso Essomba parle de la vie, de l'amour mais aussi, de la détresse et de la vanité.<br /><br />Avec Mun'a Iyo, visiblement influencé par son mentor de l'époque, Ekambi Brillant, qui a arrangé, dirigé et réalisé les albums à succès, le fils du pays Beti chante en duala et exécute un makossa aseptisé de ce que l'on rencontre aujourd'hui. A part cela, Esso Essomba est essentiellement bikutsi dans toutes ses formes, avec une voie juste qui fait regretter le ces années 80 de gloire de la musique camerounaise. Nye Ane A Mbe évoque (limite au bas de la porte) ne s'éloigne pas de Bideng Bideng, qui évoque le vagabondage ou encore Benga Dzo qui veut s'attaquer aux ragots. Il y a aussi, dans cet album, en position 8, Evouvoue, la paix ou encore en 7, Obog Oyili, le temps de l'entente.<br />Le 9 février prochain, Esso Essomba jouera en life, ces titres qui charment encore les mélomanes camerounais, malgré l'environnement pollué par les musiques dites urbaines, souvent venues des deux Congo ou de Côte- d'Ivoire. Le retour d'Esso Essomba par cette compilation nous permet aussi de revisiter avec nostalgie, ce patrimoine musical national. Les textes d'Esso Essomba s'alignent sur les concepts poétiques de Donny Elwood, Ottou Marcellin, Claude Ndam, dans leur caractère intellectuel, élitiste et non moins moralisateurs et subversif. </p> <p>&nbsp;</p> <p style="text-align: justify;">Ces musiques originellement arrangées, dirigées et réalisées par Ekambi Brillant pour le compte de Jengu production, avec des musiciens comme Jacob Desvarieux, Ebeny Donald Wesley, Ambassa Moustik, Jean-Claude Naimro, Douglas Mbida, pour ne citer que les plus connus au Cameroun ont été remastérisées au studio After Hours de Bochum en Allemagne et produites par Yves François Messi pour le groupe Impérial. Cette remise sur le marché veut s'attacher au passé, à ce temps qui a illuminé, par le Nfie Yop, l'un des titres les plus connus de l'ancien Président du conseil d'administration de la Socinada, l'univers musical camerounais par ces images des balafong (premier album, Bindeng Bindeng ) et du tableau de Jean-Marie Ahanda, référence de la peinture au Cameroun, illustrant Nyé Ane A Mbe. En attendant la nouvelle création de Esso Essomba, on revisite avec bonheur ces chanson qui datent d'il y a une vingtaine d'année. L'artiste est immortel, son œuvre aussi.</p>Esso Essombainheritopenopen153-revision-22012-01-18 13:58:172012-01-18 12:58:17153http://www.alicepegie.com/wordpress/wordpress/?p=1600revision0
16112012-01-18 13:57:002012-01-18 12:57:00<p style="text-align: justify;"><strong><span style="font-size: xx-large; font-family: arial,helvetica,sans-serif;"><a title="Ecouter sa Musique;" style="text-decoration: none;"><img src="images/stories/nzie.jpg" alt="nzie" style="float: left;" height="208" border="0" width="166" /></a></span></strong></p> <p style="text-align: justify;"><hr id="system-readmore" />La Maman de la musique camerounaise</p> <p style="text-align: justify;">&nbsp;</p> <p>&nbsp;</p> <p><strong><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/centre_sud/AnneMarieNzie|1||a{/nmap}<span style="font-size: 12pt; line-height: 115%;"></span></span></strong></p> <p>&nbsp;</p> <p>&nbsp;</p> <p style="text-align: justify;">A l'âge où la plupart des femmes se glissent dans un repos bien mérité en regardant grandir leurs petits-enfants, Anne-Marie Nzié groove et chaloupe avec un enthousiasme communicatif. Sa voix coule et rebondit de rumba en bikutsi, qu'elle chante aussi bien en douala qu'en éwondo ou en ngumba saupoudrés d'un peu de français ou d'anglais.</p> <p>Longtemps, Anne Marie Nzié a été une célébrité dans son pays (on la surnomme la "Maman" de la musique camerounaise) puis elle est peu à peu tombée en désuétude avant d'atteindre une sorte d'oubli. Mais en 1996 un animateur de radio, René Ayina, réussit à lui faire donner une série de concerts. Là, contre toute attente des médias, un public enthousiaste la retrouve. Du coup, l'année suivante le Centre Culturel Français de Yaoundé fête dignement ses 40 ans de carrière.</p> <p style="text-align: justify;">En 1998, le festival d'Angoulême la programme et dans la foulée, Anne-Marie réalise son premier disque en France. Et l'Occident découvre avec plaisir cette nature qui ne mâche pas ses mots (interrogée sur son nouveau succès dans une émission de la Télévision camerounaise, elle n'a pas hésité à fustiger les producteurs africains et le ministère de la Culture). Si elle réagit ainsi, ce n'est pas parce qu'elle n'a rien à perdre, mais parce qu'elle connaît la valeur des choses.</p> <p>&nbsp;</p> <p style="text-align: justify;">A douze ans, une blessure infectée la cloue sur un lit d'hôpital pendant plusieurs années.Elle en profite pour apprendre à jouer de la guitare dans le style hawaïen et fait le serment de devenir chanteuse si elle s'en sort. En 1954, elle enregistre son premier disque pour un label congolo-belge. Sa voix superbe et sa personnalité hors norme lui confèrent très rapidement la célébrité. De concerts prestigieux en passages radios elle devient une gloire nationale (participation au festival Panafricain d'Alger en 1969, au Festac de Lagos en 1977…). Pourtant, peu à peu son étoile pâlit et elle s'enfonce dans une semi-retraite. En 1984, elle connaît un éphémère regain de succès avec la sortie de son album "Liberté". Mais il faudra attendre la 2ème moitié des années 90 pour que la reine du Bi-kutsi revienne sur le devant de la scène avec un éclat particulier puisqu'à 67 ans passés, elle s'apprête à entamer une carrière internationale. Avec dans les yeux et dans la voix l'espièglerie d'une petite fille qui joue un bon tour au temps qui passe.</p> <p style="text-align: justify;"><br /> Magali Bergès</p> <p style="text-align: justify;"><a href="http://annemarie_nzie.mondomix.com/fr/portrait17.htm">Source</a></p>Anne Marie Nziéinheritopenopen151-revision-22012-01-18 13:57:002012-01-18 12:57:00151http://www.alicepegie.com/wordpress/wordpress/?p=1610revision0
16312010-01-15 14:06:222010-01-15 13:06:22<img style="display: block; margin-left: auto; margin-right: auto; float: left;" title="lady-ponce-col.jpg" src="images/stories/lady%20ponce.jpg" alt="lady ponce" width="400" height="384" /><strong></strong><strong></strong> &nbsp; <strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><!--more--></strong></span></span></strong> <strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>{nmap}normal|250|150|images/stories/audio/centre_sud/Lady_ponce|1|a{/nmap}</strong></span> </span></strong> &nbsp; Elle est tombée dans le Bikutsi pour se faire une place parmi les étoiles de la musique camerounaise de demain, mais ses premiers amours sont des flirts avec le Jazz et le folklore façon Saly Nyolo. &nbsp; <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Des nattes longues jusqu’au bas du dos, un corps d’ado à peine sorti de la puberté, couronné d’un regard doux et un tantinet malicieux, voilà LADY PONCE de prime à bord. De ses laborieuses nuits de cabarets, nous la portons haut aujourd’hui sur la place publique car nous croyons qu’elle mérite une attention certaine. Pourtant elle, par son humilité et sa simplicité choisit de faire madame tout le monde. Qui est donc ce jeune loup aux dents longues ? Qui est donc celle qui à longueur de journée nous berce et nous fait frémir avec sa voix suave héritée des dieux. La clé du mystère est à la porte des pages à venir</span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span class="style6">Avec un nom emprunté aux déesses des hautes sphères et aux partisans de l’innovation de l’art du rythme et du son si mûrement conçus, la camerounaise LADY PONCE de son patronyme NGONO Adèle Rufine est incontestablement l’une des grosses étoiles montante de la chanson camerounaise. </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Auteur – compositeur – interprète, cette grande danseuse à la silhouette svelte a hérité de sa force de caractère et des rouages de la tradition « Béti » de sa maman, grande cantatrice et animatrice des réseaux d’association villageoise et par ailleurs homonyme de notre très chère diva (NGONO Rufine Adèle pour la maman).</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Très tôt initiée à l’art du champ alors que n’étant qu’âgée de 10 ans, LADY PONCE réussit avec brio à son « baptême de feu » lequel consistait à chanter pour sa première fois à la place publique, en remplacement de sa mère empêchée, lors d’une visite de Monsieur le Sous-préfet de la localité. Sa force de caractère et sa précision ferons de sa prestation une véritable émulation qui se propagera comme une traînée de poudre dans les localités environnantes et fera d’elle le bouquet de roses de toutes les manifestations analogues. Peu de temps après elle rejoindra les ordres dans l’espoir de devenir une sœur religieuse. Et laquelle éducation va forger son être et développer son altruisme</span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En pleine crise d’adolescence alors qu’âgée de 16 ans seulement, la « petite ponceuse » va toucher du doigt l’amertume de la vie, se traduisant par le décès de sa mère. Moralement désaxée, la diva migre vers Yaoundé et s’installe à Essos dans le domaine familial de ses parents aux côtés de ses frères aînés, et est déterminée à faire carrière dans la chanson. Mais le caractère tenace de la tristesse lui emboîte le pas, puisque 6 ans plus tard son papa oublie à son tour de respirer.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dévouée plus que jamais, elle s’inscrit presque dans une chorale à la Chapelle d’Essos l’année d’après. S’engage dans un groupe congolais et commence le cabaret au Camp Sonel. Un an plus tard, elle rejoint le cabaret le plus en vogue de la capitale (CASCADE) et est initiée à la théorie du Jazz par le groupe VIBRATION avec qui elle évolue pendant quelques temps tout en élargissant son répertoire sur les rythmes chauds (Bikutsi – Makossa – Ndombolo – Salsa…) et parallèlement les chansons d’écoute. Mais ses premiers amours restent le folklore et ses idoles : SALLY Nyolo – COCO Ateba – Anne Marie NZIE… pour ne citer que ceux là.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Alors que le cabaret bat son plein, LADY PONCE rejoint la célèbre troupe « AKOAK » véritable fondement musical et enregistreront un album de 10 titres dont la sortie sera retardée, voire même hypothéquée.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La vague est ascendante et en 2004 la diva toque aux portes des studios pour la réalisation de son album « le ventre » et s’entoure d’une équipe de jeune très dynamiques (Tonton EBOGO – Patou BASS – Aimé LEBEAU… et bien d’autres) qui lui donneront tout leur soutien moral et physique.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dans les perspectives à venir, faites la connaissance de Monsieur Joseph ANGOULA ANGOULA, producteur camerounais mais en fin de carrière en congé au pays, qui accepte le produit et se lance circonstanciellement. C’est le début des turpitudes ; L’album ne sort pas la même année à cause de la recrudescence de la piraterie. Après un passage à vide l’opus sort finalement en 2006 intitulé « le ventre » garnie de 06 superbes titres d’une pureté inouïe. Du Bikutsi, au folklore en passant par les rythmes urbains, tous les mélomanes s’y retrouvent.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La diffusion du titre éponyme « le ventre » lequel résume également l’album tout entier permettra à LADY d’entrée de jeu, d’être la révélation féminine de l’année dans plusieurs médias fera couler beaucoup d’encre et de salive. Sur scène, sa voix chaude à la fois suave et langoureuse, son charisme ahurissant et sa grande présence enivre les spectateurs.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Chaque jour encore et plus que jamais la LADY « Tsunami » continue de nous poncer.</span></span></p>Lady Poncepublishopenopenlady-ponce2012-01-18 14:09:552012-01-18 13:09:550http://www.alicepegie.com/wordpress/wordpress/?p=1630post0
16412012-01-18 14:06:442012-01-18 13:06:44<p><img src="images/stories/lady%20ponce.jpg" alt="lady ponce" title="lady-ponce-col.jpg" style="display: block; margin-left: auto; margin-right: auto; float: left;" height="384" width="400" /><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong></span><b></b><b><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><hr id="system-readmore" />{nmap}normal|250|150|images/stories/audio/centre_sud/Lady_ponce|1|a{/nmap}</strong></span> <br /></span></b></p> <p>&nbsp;</p> <p>Elle est tombée dans le Bikutsi pour se faire une place parmi les étoiles de la musique camerounaise de demain, mais ses premiers amours sont des flirts avec le Jazz et le folklore façon Saly Nyolo.</p> <p>&nbsp;</p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Des nattes longues jusqu’au bas du dos, un corps d’ado à peine sorti de la puberté, couronné d’un regard doux et un tantinet malicieux, voilà LADY PONCE de prime à bord. De ses laborieuses nuits de cabarets, nous la portons haut aujourd’hui sur la place publique car nous croyons qu’elle mérite une attention certaine. Pourtant elle, par son humilité et sa simplicité choisit de faire madame tout le monde. Qui est donc ce jeune loup aux dents longues ? Qui est donc celle qui à longueur de journée nous berce et nous fait frémir avec sa voix suave héritée des dieux. La clé du mystère est à la porte des pages à venir</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span class="style6">Avec un nom emprunté aux déesses des hautes sphères et aux partisans de l’innovation de l’art du rythme et du son si mûrement conçus, la camerounaise LADY PONCE de son patronyme NGONO Adèle Rufine est incontestablement l’une des grosses étoiles montante de la chanson camerounaise. </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Auteur – compositeur – interprète, cette grande danseuse à la silhouette svelte a hérité de sa force de caractère et des rouages de la tradition « Béti » de sa maman, grande cantatrice et animatrice des réseaux d’association villageoise et par ailleurs homonyme de notre très chère diva (NGONO Rufine Adèle pour la maman).</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Très tôt initiée à l’art du champ alors que n’étant qu’âgée de 10 ans, LADY PONCE réussit avec brio à son « baptême de feu » lequel consistait à chanter pour sa première fois à la place publique, en remplacement de sa mère empêchée, lors d’une visite de Monsieur le Sous-préfet de la localité. Sa force de caractère et sa précision ferons de sa prestation une véritable émulation qui se propagera comme une traînée de poudre dans les localités environnantes et fera d’elle le bouquet de roses de toutes les manifestations analogues. Peu de temps après elle rejoindra les ordres dans l’espoir de devenir une sœur religieuse. Et laquelle éducation va forger son être et développer son altruisme</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En pleine crise d’adolescence alors qu’âgée de 16 ans seulement, la « petite ponceuse » va toucher du doigt l’amertume de la vie, se traduisant par le décès de sa mère. Moralement désaxée, la diva migre vers Yaoundé et s’installe à Essos dans le domaine familial de ses parents aux côtés de ses frères aînés, et est déterminée à faire carrière dans la chanson. Mais le caractère tenace de la tristesse lui emboîte le pas, puisque 6 ans plus tard son papa oublie à son tour de respirer.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dévouée plus que jamais, elle s’inscrit presque dans une chorale à la Chapelle d’Essos l’année d’après. S’engage dans un groupe congolais et commence le cabaret au Camp Sonel. Un an plus tard, elle rejoint le cabaret le plus en vogue de la capitale (CASCADE) et est initiée à la théorie du Jazz par le groupe VIBRATION avec qui elle évolue pendant quelques temps tout en élargissant son répertoire sur les rythmes chauds (Bikutsi – Makossa – Ndombolo – Salsa…) et parallèlement les chansons d’écoute. Mais ses premiers amours restent le folklore et ses idoles : SALLY Nyolo – COCO Ateba – Anne Marie NZIE… pour ne citer que ceux là.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Alors que le cabaret bat son plein, LADY PONCE rejoint la célèbre troupe « AKOAK » véritable fondement musical et enregistreront un album de 10 titres dont la sortie sera retardée, voire même hypothéquée.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La vague est ascendante et en 2004 la diva toque aux portes des studios pour la réalisation de son album « le ventre » et s’entoure d’une équipe de jeune très dynamiques (Tonton EBOGO – Patou BASS – Aimé LEBEAU… et bien d’autres) qui lui donneront tout leur soutien moral et physique.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dans les perspectives à venir, faites la connaissance de Monsieur Joseph ANGOULA ANGOULA, producteur camerounais mais en fin de carrière en congé au pays, qui accepte le produit et se lance circonstanciellement. C’est le début des turpitudes ; L’album ne sort pas la même année à cause de la recrudescence de la piraterie. Après un passage à vide l’opus sort finalement en 2006 intitulé « le ventre » garnie de 06 superbes titres d’une pureté inouïe. Du Bikutsi, au folklore en passant par les rythmes urbains, tous les mélomanes s’y retrouvent.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La diffusion du titre éponyme « le ventre » lequel résume également l’album tout entier permettra à LADY d’entrée de jeu, d’être la révélation féminine de l’année dans plusieurs médias fera couler beaucoup d’encre et de salive. Sur scène, sa voix chaude à la fois suave et langoureuse, son charisme ahurissant et sa grande présence enivre les spectateurs.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Chaque jour encore et plus que jamais la LADY « Tsunami » continue de nous poncer.</span></span></p>Lady Ponceinheritopenopen163-revision2012-01-18 14:06:442012-01-18 13:06:44163http://www.alicepegie.com/wordpress/wordpress/?p=1640revision0
16512010-01-15 14:07:572010-01-15 13:07:57<h3 class="Style45" style="text-align: justify;"><img style="float: left;" title="tete brulees.jpg" src="images/stories/tetesbrulees.jpg" alt="tetesbrulees" width="271" height="200" border="0" /></h3> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong><strong></strong><strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong> </strong></span></span></strong></span></strong> {nmap}normal|250|150|images/stories/audio/centre_sud/Tetes_Brulees|1|a{/nmap} <!--more--> <h3><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">C’est en 1986 que le public découvre les Têtes Brûlées sur les écrans de la toute nouvelle télévision nationale du Cameroun. Visages peints, coiffures étranges, habits déchirés et colorés : les cinq membres du groupe formé autour du trompettiste Jean-Marie Ahanda apportent un air de révolution déjantée dans le monde musical camerounais, alors dominé par le makossa.</span></h3> &nbsp; <h3><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Grâce au talent exceptionnel de leur jeune guitariste Théodore Epeme dit Zanzibar, les Têtes Brûlées dépoussièrent le bikutsi, une musique traditionnelle du Sud forestier. Le succès est immédiat au Cameroun, comme en Europe. Il est tel que la première tournée des Têtes Brûlées en France fait l’objet d’un film réalisé par Claire Denis, Man no run (1989), après la sortie d’un premier album Essinga. Mais tout change avec la disparition brutale de Zanzibar. Le public camerounais impute son décès à ses camarades et se détourne du groupe, raconte aujourd'hui Ahanda. "Les gens se sont soudain mis à détester ce qu’ils aimaient", dit-il. </span></h3> <h3><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cahin-caha, les Têtes Brûlées poursuivent tout de même l’aventure. Trois disques, Ma musique à moi (1990), Bikutsi rock (1992), Be happy (1995) sont enregistrés. Au fur et à mesure que les années passent, certains de ses membres quittent le groupe, de nouveaux arrivent. Un album, Bikutsi Fever, qui rassemble les meilleurs titres des "Burnt Heads" sort en 2000 sous le label Africa Fête de Mamadou Konté. Un long silence le suit. Le single Repentance, enregistré à New York par Francis Mbappe, marque en 2009 la naissance d’une nouvelle version du groupe. Jean-Marie Ahanda, dernier rescapé des membres fondateurs des premières Têtes brûlées, et le guitariste Jacques Atini, dit Tino, en sont les piliers.</span></h3>Les Têtes Bruléespublishopenopenles-tetes-brulees2012-01-18 14:09:052012-01-18 13:09:050http://www.alicepegie.com/wordpress/wordpress/?p=1650post0
16612012-01-18 14:08:592012-01-18 13:08:59<h3 class="Style45" style="text-align: justify;"><img style="float: left;" title="tete brulees.jpg" src="images/stories/tetesbrulees.jpg" alt="tetesbrulees" width="271" height="200" border="0" /></h3> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong><strong></strong><strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong> </strong></span></span></strong></span></strong> {nmap}normal|250|150|images/stories/audio/centre_sud/Tetes_Brulees|1|a{/nmap} &nbsp; <h3><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">C’est en 1986 que le public découvre les Têtes Brûlées sur les écrans de la toute nouvelle télévision nationale du Cameroun. Visages peints, coiffures étranges, habits déchirés et colorés : les cinq membres du groupe formé autour du trompettiste Jean-Marie Ahanda apportent un air de révolution déjantée dans le monde musical camerounais, alors dominé par le makossa.</span></h3> &nbsp; <h3><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Grâce au talent exceptionnel de leur jeune guitariste Théodore Epeme dit Zanzibar, les Têtes Brûlées dépoussièrent le bikutsi, une musique traditionnelle du Sud forestier. Le succès est immédiat au Cameroun, comme en Europe. Il est tel que la première tournée des Têtes Brûlées en France fait l’objet d’un film réalisé par Claire Denis, Man no run (1989), après la sortie d’un premier album Essinga. Mais tout change avec la disparition brutale de Zanzibar. Le public camerounais impute son décès à ses camarades et se détourne du groupe, raconte aujourd'hui Ahanda. "Les gens se sont soudain mis à détester ce qu’ils aimaient", dit-il. </span></h3> <h3><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cahin-caha, les Têtes Brûlées poursuivent tout de même l’aventure. Trois disques, Ma musique à moi (1990), Bikutsi rock (1992), Be happy (1995) sont enregistrés. Au fur et à mesure que les années passent, certains de ses membres quittent le groupe, de nouveaux arrivent. Un album, Bikutsi Fever, qui rassemble les meilleurs titres des "Burnt Heads" sort en 2000 sous le label Africa Fête de Mamadou Konté. Un long silence le suit. Le single Repentance, enregistré à New York par Francis Mbappe, marque en 2009 la naissance d’une nouvelle version du groupe. Jean-Marie Ahanda, dernier rescapé des membres fondateurs des premières Têtes brûlées, et le guitariste Jacques Atini, dit Tino, en sont les piliers.</span></h3>Les Têtes Bruléesinheritopenopen165-revision2012-01-18 14:08:592012-01-18 13:08:59165http://www.alicepegie.com/wordpress/wordpress/?p=1660revision0
16712012-01-18 14:07:142012-01-18 13:07:14<p><img src="images/stories/lady%20ponce.jpg" alt="lady ponce" title="lady-ponce-col.jpg" style="display: block; margin-left: auto; margin-right: auto; float: left;" height="384" width="400" /><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong></span><b></b><b><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><hr id="system-readmore" />{nmap}normal|250|150|images/stories/audio/centre_sud/Lady_ponce|1|a{/nmap}</strong></span> <br /></span></b></p> <p>&nbsp;</p> <p>Elle est tombée dans le Bikutsi pour se faire une place parmi les étoiles de la musique camerounaise de demain, mais ses premiers amours sont des flirts avec le Jazz et le folklore façon Saly Nyolo.</p> <p>&nbsp;</p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Des nattes longues jusqu’au bas du dos, un corps d’ado à peine sorti de la puberté, couronné d’un regard doux et un tantinet malicieux, voilà LADY PONCE de prime à bord. De ses laborieuses nuits de cabarets, nous la portons haut aujourd’hui sur la place publique car nous croyons qu’elle mérite une attention certaine. Pourtant elle, par son humilité et sa simplicité choisit de faire madame tout le monde. Qui est donc ce jeune loup aux dents longues ? Qui est donc celle qui à longueur de journée nous berce et nous fait frémir avec sa voix suave héritée des dieux. La clé du mystère est à la porte des pages à venir</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span class="style6">Avec un nom emprunté aux déesses des hautes sphères et aux partisans de l’innovation de l’art du rythme et du son si mûrement conçus, la camerounaise LADY PONCE de son patronyme NGONO Adèle Rufine est incontestablement l’une des grosses étoiles montante de la chanson camerounaise. </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Auteur – compositeur – interprète, cette grande danseuse à la silhouette svelte a hérité de sa force de caractère et des rouages de la tradition « Béti » de sa maman, grande cantatrice et animatrice des réseaux d’association villageoise et par ailleurs homonyme de notre très chère diva (NGONO Rufine Adèle pour la maman).</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Très tôt initiée à l’art du champ alors que n’étant qu’âgée de 10 ans, LADY PONCE réussit avec brio à son « baptême de feu » lequel consistait à chanter pour sa première fois à la place publique, en remplacement de sa mère empêchée, lors d’une visite de Monsieur le Sous-préfet de la localité. Sa force de caractère et sa précision ferons de sa prestation une véritable émulation qui se propagera comme une traînée de poudre dans les localités environnantes et fera d’elle le bouquet de roses de toutes les manifestations analogues. Peu de temps après elle rejoindra les ordres dans l’espoir de devenir une sœur religieuse. Et laquelle éducation va forger son être et développer son altruisme</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En pleine crise d’adolescence alors qu’âgée de 16 ans seulement, la « petite ponceuse » va toucher du doigt l’amertume de la vie, se traduisant par le décès de sa mère. Moralement désaxée, la diva migre vers Yaoundé et s’installe à Essos dans le domaine familial de ses parents aux côtés de ses frères aînés, et est déterminée à faire carrière dans la chanson. Mais le caractère tenace de la tristesse lui emboîte le pas, puisque 6 ans plus tard son papa oublie à son tour de respirer.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dévouée plus que jamais, elle s’inscrit presque dans une chorale à la Chapelle d’Essos l’année d’après. S’engage dans un groupe congolais et commence le cabaret au Camp Sonel. Un an plus tard, elle rejoint le cabaret le plus en vogue de la capitale (CASCADE) et est initiée à la théorie du Jazz par le groupe VIBRATION avec qui elle évolue pendant quelques temps tout en élargissant son répertoire sur les rythmes chauds (Bikutsi – Makossa – Ndombolo – Salsa…) et parallèlement les chansons d’écoute. Mais ses premiers amours restent le folklore et ses idoles : SALLY Nyolo – COCO Ateba – Anne Marie NZIE… pour ne citer que ceux là.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Alors que le cabaret bat son plein, LADY PONCE rejoint la célèbre troupe « AKOAK » véritable fondement musical et enregistreront un album de 10 titres dont la sortie sera retardée, voire même hypothéquée.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La vague est ascendante et en 2004 la diva toque aux portes des studios pour la réalisation de son album « le ventre » et s’entoure d’une équipe de jeune très dynamiques (Tonton EBOGO – Patou BASS – Aimé LEBEAU… et bien d’autres) qui lui donneront tout leur soutien moral et physique.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dans les perspectives à venir, faites la connaissance de Monsieur Joseph ANGOULA ANGOULA, producteur camerounais mais en fin de carrière en congé au pays, qui accepte le produit et se lance circonstanciellement. C’est le début des turpitudes ; L’album ne sort pas la même année à cause de la recrudescence de la piraterie. Après un passage à vide l’opus sort finalement en 2006 intitulé « le ventre » garnie de 06 superbes titres d’une pureté inouïe. Du Bikutsi, au folklore en passant par les rythmes urbains, tous les mélomanes s’y retrouvent.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La diffusion du titre éponyme « le ventre » lequel résume également l’album tout entier permettra à LADY d’entrée de jeu, d’être la révélation féminine de l’année dans plusieurs médias fera couler beaucoup d’encre et de salive. Sur scène, sa voix chaude à la fois suave et langoureuse, son charisme ahurissant et sa grande présence enivre les spectateurs.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Chaque jour encore et plus que jamais la LADY « Tsunami » continue de nous poncer.</span></span></p>Lady Ponceinheritopenopen163-revision-22012-01-18 14:07:142012-01-18 13:07:14163http://www.alicepegie.com/wordpress/wordpress/?p=1670revision0
16812012-01-18 14:11:002012-01-18 13:11:00<img style="display: block; margin-left: auto; margin-right: auto; float: left;" title="lady-ponce-col.jpg" src="images/stories/lady%20ponce.jpg" alt="lady ponce" width="400" height="384" /><strong></strong><strong></strong> &nbsp; <strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><!--more--></strong></span></span></strong> <strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>{nmap}normal|250|150|images/stories/audio/centre_sud/Lady_ponce|1|a{/nmap}</strong></span> </span></strong> &nbsp; Elle est tombée dans le Bikutsi pour se faire une place parmi les étoiles de la musique camerounaise de demain, mais ses premiers amours sont des flirts avec le Jazz et le folklore façon Saly Nyolo. &nbsp; <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Des nattes longues jusqu’au bas du dos, un corps d’ado à peine sorti de la puberté, couronné d’un regard doux et un tantinet malicieux, voilà LADY PONCE de prime à bord. De ses laborieuses nuits de cabarets, nous la portons haut aujourd’hui sur la place publique car nous croyons qu’elle mérite une attention certaine. Pourtant elle, par son humilité et sa simplicité choisit de faire madame tout le monde. Qui est donc ce jeune loup aux dents longues ? Qui est donc celle qui à longueur de journée nous berce et nous fait frémir avec sa voix suave héritée des dieux. La clé du mystère est à la porte des pages à venir</span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span class="style6">Avec un nom emprunté aux déesses des hautes sphères et aux partisans de l’innovation de l’art du rythme et du son si mûrement conçus, la camerounaise LADY PONCE de son patronyme NGONO Adèle Rufine est incontestablement l’une des grosses étoiles montante de la chanson camerounaise. </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Auteur – compositeur – interprète, cette grande danseuse à la silhouette svelte a hérité de sa force de caractère et des rouages de la tradition « Béti » de sa maman, grande cantatrice et animatrice des réseaux d’association villageoise et par ailleurs homonyme de notre très chère diva (NGONO Rufine Adèle pour la maman).</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Très tôt initiée à l’art du champ alors que n’étant qu’âgée de 10 ans, LADY PONCE réussit avec brio à son « baptême de feu » lequel consistait à chanter pour sa première fois à la place publique, en remplacement de sa mère empêchée, lors d’une visite de Monsieur le Sous-préfet de la localité. Sa force de caractère et sa précision ferons de sa prestation une véritable émulation qui se propagera comme une traînée de poudre dans les localités environnantes et fera d’elle le bouquet de roses de toutes les manifestations analogues. Peu de temps après elle rejoindra les ordres dans l’espoir de devenir une sœur religieuse. Et laquelle éducation va forger son être et développer son altruisme</span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">En pleine crise d’adolescence alors qu’âgée de 16 ans seulement, la « petite ponceuse » va toucher du doigt l’amertume de la vie, se traduisant par le décès de sa mère. Moralement désaxée, la diva migre vers Yaoundé et s’installe à Essos dans le domaine familial de ses parents aux côtés de ses frères aînés, et est déterminée à faire carrière dans la chanson. Mais le caractère tenace de la tristesse lui emboîte le pas, puisque 6 ans plus tard son papa oublie à son tour de respirer.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dévouée plus que jamais, elle s’inscrit presque dans une chorale à la Chapelle d’Essos l’année d’après. S’engage dans un groupe congolais et commence le cabaret au Camp Sonel. Un an plus tard, elle rejoint le cabaret le plus en vogue de la capitale (CASCADE) et est initiée à la théorie du Jazz par le groupe VIBRATION avec qui elle évolue pendant quelques temps tout en élargissant son répertoire sur les rythmes chauds (Bikutsi – Makossa – Ndombolo – Salsa…) et parallèlement les chansons d’écoute. Mais ses premiers amours restent le folklore et ses idoles : SALLY Nyolo – COCO Ateba – Anne Marie NZIE… pour ne citer que ceux là.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Alors que le cabaret bat son plein, LADY PONCE rejoint la célèbre troupe « AKOAK » véritable fondement musical et enregistreront un album de 10 titres dont la sortie sera retardée, voire même hypothéquée.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La vague est ascendante et en 2004 la diva toque aux portes des studios pour la réalisation de son album « le ventre » et s’entoure d’une équipe de jeune très dynamiques (Tonton EBOGO – Patou BASS – Aimé LEBEAU… et bien d’autres) qui lui donneront tout leur soutien moral et physique.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Dans les perspectives à venir, faites la connaissance de Monsieur Joseph ANGOULA ANGOULA, producteur camerounais mais en fin de carrière en congé au pays, qui accepte le produit et se lance circonstanciellement. C’est le début des turpitudes ; L’album ne sort pas la même année à cause de la recrudescence de la piraterie. Après un passage à vide l’opus sort finalement en 2006 intitulé « le ventre » garnie de 06 superbes titres d’une pureté inouïe. Du Bikutsi, au folklore en passant par les rythmes urbains, tous les mélomanes s’y retrouvent.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La diffusion du titre éponyme « le ventre » lequel résume également l’album tout entier permettra à LADY d’entrée de jeu, d’être la révélation féminine de l’année dans plusieurs médias fera couler beaucoup d’encre et de salive. Sur scène, sa voix chaude à la fois suave et langoureuse, son charisme ahurissant et sa grande présence enivre les spectateurs.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Chaque jour encore et plus que jamais la LADY « Tsunami » continue de nous poncer.</span></span></p>Lady Ponceinheritopenopen163-autosave2012-01-18 14:11:002012-01-18 13:11:00163http://www.alicepegie.com/wordpress/wordpress/?p=1680revision0
16912010-01-15 14:11:502010-01-15 13:11:50<p><a title="Ecouter sa Musique" style="text-decoration: none;"> </a><a class="mb" href="http://s2.e-monsite.com/2009/12/19/10/resize_550_550/rotate_0//SNV33715.jpg"><img style="float: left;" src="http://s2.e-monsite.com/2009/12/19/10/resize_550_550/rotate_0//SNV33715.jpg" alt="marie archangelo" height="299" width="400" /></a><hr id="system-readmore" /><span style="font-size: x-large;"><strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong><b></b><b><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>{nmap}normal|250|150|images/stories/audio/centre_sud/Marie_Archangelo|1|a{/nmap}</strong></span></span></b></span></strong></span></p> <p>&nbsp;</p> <p>&nbsp;</p> <p>&nbsp;</p> <p><param name="wmode" value="transparent" /><param name="src" value="http://www.archive-host.com/dewplayer-playlist.swf?xml=http://www.archive-host.com/dew-playlist-xml.php?id=hb7gcj48v4iv&amp;showtime=1&amp;volume=50" />&nbsp;</p>Marie Archangelopublishopenopenmarie-archangelo2012-01-18 14:12:432012-01-18 13:12:430http://www.alicepegie.com/wordpress/wordpress/?p=1690post0
17012012-01-18 14:12:082012-01-18 13:12:08<p><a title="Ecouter sa Musique" style="text-decoration: none;"> </a><a class="mb" href="http://s2.e-monsite.com/2009/12/19/10/resize_550_550/rotate_0//SNV33715.jpg"><img style="float: left;" src="http://s2.e-monsite.com/2009/12/19/10/resize_550_550/rotate_0//SNV33715.jpg" alt="marie archangelo" height="299" width="400" /></a><hr id="system-readmore" /><span style="font-size: x-large;"><strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong><b></b><b><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>{nmap}normal|250|150|images/stories/audio/centre_sud/Marie_Archangelo|1|a{/nmap}</strong></span></span></b></span></strong></span></p> <p>&nbsp;</p> <p>&nbsp;</p> <p>&nbsp;</p> <p><param name="wmode" value="transparent" /><param name="src" value="http://www.archive-host.com/dewplayer-playlist.swf?xml=http://www.archive-host.com/dew-playlist-xml.php?id=hb7gcj48v4iv&amp;showtime=1&amp;volume=50" />&nbsp;</p>Marie Archangeloinheritopenopen169-revision2012-01-18 14:12:082012-01-18 13:12:08169http://www.alicepegie.com/wordpress/wordpress/?p=1700revision0
17112010-01-15 14:13:002010-01-15 13:13:00<p style="text-align: justify;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><img src="images/messi1.gif" alt="messi martin" style="float: left;" height="216" width="219" /></span> <a style="text-decoration: none;" title="Ecouter la Musique"><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: x-large;"><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b></b><b><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><hr id="system-readmore" />{nmap}normal|250|150|images/stories/audio/centre_sud/Messi_Martin|1|a{/nmap}</strong></span></span></b></span></strong></span></span></strong></a></p> <p>Yaoundé a des années durant,&nbsp; dansé au rythme de la guitare et de la voix de Messi Martin. <br />Né le 22 septembre 1946, Messi Martin est considéré comme le père du bikutsi moderne. En effet, dans les années 60, alors que cette musique jouée à l'aide des balafons est quelque peu en perte de vitesse, le guitariste a l'idée de reproduire le son du balafon à l'aide de la guitare électrique. Progressivement, il arrivera au sommet, deviendra un «titan». Le groupe qu'il crée dans la province du Nord ne s'appellera-t-il pas «Les Titans de Garoua» ? L'image de ce musicien exceptionnel restera toutefois gravée dans l'esprit de ceux qui l'ont connu.</p> <p>Les cheveux bien taillés en touffe au milieu de la tête dans une coiffure punk, une cigarette fixée en permanence au coin de la bouche, le geste onctueux, le débit saccadé et le discours volontiers abscons, Martin Messi Me Nkonda est tout de fierté cousu. Il se raconte péniblement. Comme si d'avoir à revisiter son parcours lui procurait quelque douleur...<br /><img style="display: block; margin-left: auto; margin-right: auto;" alt="messi martin" src="images/messi2.jpg" height="216" width="250" /><br /> Pourtant, il se souvient très bien de sa rencontre avec la passion de sa vie : la musique. Son destin. Une prédestination. «Je suis né intelligent et surdoué», déclame-t-il sans fausse modestie. C'est la raison pour laquelle, dès l'âge de douze ans, à l'heure où ses congénères s'occupent d'autres chats, lui, hante de sa présence la cour du chef supérieur des «Mvele», Ngoa Evina. Pour une raison simple: là, se trouve un instrument à cordes, le banjo, que le déjà virtuose Messi manie avec une dextérité hors du commun, sous le regard admiratif de la cantonade. Mais, un homme, Raphael Nkonda, le géniteur du génie, ne partage pas l'enthousiasme général. Ce qui est d'ailleurs peu dire puisque, en réalité, il désapprouve totalement les accointances de son fils avec le monde de l'art, «ces activités de voyous, de gens qui ont raté leur vie», aime-t-il alors à dire. Aujourd'hui encore, Messi Me Nkonda Martin se souvient douloureusement des colères noires de son paternel: «Un jour qu'il m'a encore retrouvé dans la cour du chef en train de jouer contre ses injonctions, il s'est saisi du banjo et me l'a asséné sur la tête comme un gourdin. J'en porte toujours le souvenir», achève-t-il en montrant la cicatrice qu'il porte au niveau de l'arcade sourcilière droite.<br /><br /><strong>Gloire</strong><br /><br /> A la mort de son père, Messi Me Nkonda décide de se prendre en mains. Il y est d'autant plus résolu que cet événement malheureux lève heureusement la dernière banière qui I'empéchait de vivre pleinement sa passion. Mais il y avait autre chose: «J'étais malheureux de voir ma mère (Bekono Anasthasie) désormais veuve, monter et descendre comme une âme en peine, sans soutien!»<br /> Décembre 1960. L'artiste prend la route du Nord où l'entraîne un ami, Saidou Ghana, rencontré à Yaoundé. Il dépose ses bagages à Garoua et y fait une rencontre détenninante. Il fait la connaissance de Jean Gabary, un Kaka de Batouri. Celui-ci devient son mentor. Ensemble, ils évoluent dans le groupe Jazzy Garo (jazz de Garoua). Qui éblouit les mélomanes du septentrion une fois le soir venu, dans un bar situé au quartier Nkolbivès (la colline des os). Le jeune artiste, de plus en plus remarqué, tisse la toile de sa gloire. Ses performances émerveillent un Togolais du nom de Jean Bossou, qui l'emmène à Maroua. Evoluant désormais en solo, il fonde le groupe Diamafoune, qui connaît un succès tellement grand qu'il ne peut plus se suffire du seul septentrion. Les vannes de l'aventure s'ouvrent. Messi et son propre groupe foncent à l'ouest, traversent la frontière et se retrouvent au Nigeria. Ils y passeront un séjour plutôt discret.<br /><br /> Retour au pays. Changement de producteur. Joseph Tamla de «Afrique ambiance» prend la place de Jean Bossou. Retour de la gloire. L'album Bekono Nga Nkonda», dédié à la mère de l'artiste, voit le jour en 1964. Ses chansons enchantent le Cameroun. Comme toutes les productions du jeune prodige. Bientôt «Amu dzé», «Mengala Maurice», «Minyono», «Ovongo ane man Bella» sont fredonnées à longueur de journée et personne n'ose organiser une fête en faisant l'économie de la galette Messi. L'étoile du Nord, plus que jamais scintillante, peut amorcer la descente vers le sud. Dix ans après. En service commandé.<br /> C'est le ministre des Forces Armées de !'époque, Sadou Daoudou, qui instruit un musicien - soldat, Archangelo de Moneko (de son vrai nom Philippe Nkoa), d'aller chercher ce jeune musicien dont on parle tant au Nord, aux fins de l`enrôler dans l'armée camerounaise. Cette proposition n'est pas bien accueillie au sein de la famille Messi qui voit d'un très mauvais oeil le métier de pandore. L'offre est déclinée. Un de ses «gars», Elanga Maurice, saute sur l'occasion et choisit, lui, de servir sous le drapeaux. Il est aujourd'hui adjudant chef.<br /><br /> Elanga Maurice, que tout le monde n'appelle plus que «Elamo», va.d'ailleurs devenir son principal rival, dans ce quartier d'EligEffa où ils s'installent l'un et l'autre, dans deux cabarets qui se faisaient face, comme dans un défi. «Mango bar» pour Messi et «Colombey-les deux-églises» pour Elamo. Le combat est âpre, mais reste loyal: «Nous nous passions souvent les clients. Mais, au final, c'est chez moi à «Mango bar» qu'il y avait toujours la plus grande affluence», révèle Messi Me. Nkonda. Souvenir ému d'une époque où, selon lui, la musique camerounaise connaît alors son heure de gloire avec des têtes de proue comme Jacob Medjo Me Nsom, Jean Bikoko Aladin, Nelle Eyoum et lui-même, Messi Martin. Les artistes jouent alors pleinement leur rôle, celui de gardiens de la sagesse ancestrale, «donnant de judicieux conseils à leur public, évitant de verser dans la trivialité et la pornographie.» Comme c'est le cas aujourd'hui, laisse-t-il deviner plus qu'il ne le dit. Alors, on se laisse tenter à vouloir savoir comment lui qui a définitivement établi sa réputation de grand parolier s'y prenait. Mais lui, précise: «Je ne suis pas un parolier. Je suis un messager. Sur la base de mes expériences personnelles, j'essaie de mettre les autres en garde. Parce que l'artiste est une fosse septique que l'on creuse et que l'on entretient soi-même, mais dont on est souvent le premier à se plaindre des odeurs.»<br /><br /><strong>Ingratitudes</strong><br /><br /> Des odeurs, et de nauséabondes justement, recouvrent à son sens les instances dirigeantes de notre art d'un halo d'ingratitudes. «Peut-on me dire pourquoi Messi Martin, commissaire d'identification des oeuvres à la Socinada a été bouté hors de cette structure? Sous le coup de quelle loi est-il tombé? Qui est Esso Essomba? Qui est Vincent Diboti? Qui est Messi pour Esso Essomba?»<br /> Ces questions sybillines qu'il retourne systématiquement à son interlocuteur donnent une idée de la profondeur de son amertume. D'ailleurs, il achève comme pour convaincre du peu de cas qui est souvent fait de ceux qui méritent pourtant la reconnaissance de la nation, par une autre question: «Où est Joseph Kono, le célèbre cycliste qui a tant fait honneur au Cameroun ? Et Joseph Bessala grand Jo?»<br /> Malgré tout, Messi Me Nkonda Martin se dit encore prét à rendre service. Il dit avoir tellement de projets et de propositions à faire pour la rénovation du monde artistique camerounais qu'il aimerait rencontrer le président de la République en personne pour en parler.<br /><br /> Mais, en attendant il invite 1es jeunes artistes camerounais à sa rencontre «Je suis le patriarche. Il f aut qu'ils viennent et que je leur montre où sont cachés les trésors inestimables de notre patrimoine culturel.» Quelques jeunes artistes, Zanzibar, Mballa Roger's... auraient d'ailleurs déjà eu à bénéficier de ses conseils. Au même titre que sa nombreuse famille (2 épouses et 9 enfants) avec une partie de laquelle il partage des moments de bonheur simple dans ce studio réduit qu'il loue laboneusement au quartier Kondengui à Yaoundé.<br /><br /> On l'y voyait, chaque matin, lustrant ses chaussures pendant de longues heures en sirotant de l'eau de vie sous le regard attendri de sa Rose d'épouse. On l'y apercevait souvent, se pavanant dans les ruelles, une fleur à la main ou une guitare au bras, un mégot incandescent toujours fiché au coin de la lippe, le torse bombé, la démarche altière et fière, apparemment à la recherche d'un destin progressivement mais inexorablement évanescent dans le rétroviseur de sa vie.<br /><br /> (Article Publié dans Mutations n° 145 du 28 août 1998 et actualisé)</p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.bonaberi.com/article.php?aid=1503">Source</a></span></span></p>Messi Martinpublishopenopenmessi-martin2012-01-18 14:14:002012-01-18 13:14:000http://www.alicepegie.com/wordpress/wordpress/?p=1710post0
17212012-01-18 14:13:342012-01-18 13:13:34<p style="text-align: justify;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><img src="images/messi1.gif" alt="messi martin" style="float: left;" height="216" width="219" /></span> <a style="text-decoration: none;" title="Ecouter la Musique"><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: x-large;"><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b></b><b><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><hr id="system-readmore" />{nmap}normal|250|150|images/stories/audio/centre_sud/Messi_Martin|1|a{/nmap}</strong></span></span></b></span></strong></span></span></strong></a></p> <p>Yaoundé a des années durant,&nbsp; dansé au rythme de la guitare et de la voix de Messi Martin. <br />Né le 22 septembre 1946, Messi Martin est considéré comme le père du bikutsi moderne. En effet, dans les années 60, alors que cette musique jouée à l'aide des balafons est quelque peu en perte de vitesse, le guitariste a l'idée de reproduire le son du balafon à l'aide de la guitare électrique. Progressivement, il arrivera au sommet, deviendra un «titan». Le groupe qu'il crée dans la province du Nord ne s'appellera-t-il pas «Les Titans de Garoua» ? L'image de ce musicien exceptionnel restera toutefois gravée dans l'esprit de ceux qui l'ont connu.</p> <p>Les cheveux bien taillés en touffe au milieu de la tête dans une coiffure punk, une cigarette fixée en permanence au coin de la bouche, le geste onctueux, le débit saccadé et le discours volontiers abscons, Martin Messi Me Nkonda est tout de fierté cousu. Il se raconte péniblement. Comme si d'avoir à revisiter son parcours lui procurait quelque douleur...<br /><img style="display: block; margin-left: auto; margin-right: auto;" alt="messi martin" src="images/messi2.jpg" height="216" width="250" /><br /> Pourtant, il se souvient très bien de sa rencontre avec la passion de sa vie : la musique. Son destin. Une prédestination. «Je suis né intelligent et surdoué», déclame-t-il sans fausse modestie. C'est la raison pour laquelle, dès l'âge de douze ans, à l'heure où ses congénères s'occupent d'autres chats, lui, hante de sa présence la cour du chef supérieur des «Mvele», Ngoa Evina. Pour une raison simple: là, se trouve un instrument à cordes, le banjo, que le déjà virtuose Messi manie avec une dextérité hors du commun, sous le regard admiratif de la cantonade. Mais, un homme, Raphael Nkonda, le géniteur du génie, ne partage pas l'enthousiasme général. Ce qui est d'ailleurs peu dire puisque, en réalité, il désapprouve totalement les accointances de son fils avec le monde de l'art, «ces activités de voyous, de gens qui ont raté leur vie», aime-t-il alors à dire. Aujourd'hui encore, Messi Me Nkonda Martin se souvient douloureusement des colères noires de son paternel: «Un jour qu'il m'a encore retrouvé dans la cour du chef en train de jouer contre ses injonctions, il s'est saisi du banjo et me l'a asséné sur la tête comme un gourdin. J'en porte toujours le souvenir», achève-t-il en montrant la cicatrice qu'il porte au niveau de l'arcade sourcilière droite.<br /><br /><strong>Gloire</strong><br /><br /> A la mort de son père, Messi Me Nkonda décide de se prendre en mains. Il y est d'autant plus résolu que cet événement malheureux lève heureusement la dernière banière qui I'empéchait de vivre pleinement sa passion. Mais il y avait autre chose: «J'étais malheureux de voir ma mère (Bekono Anasthasie) désormais veuve, monter et descendre comme une âme en peine, sans soutien!»<br /> Décembre 1960. L'artiste prend la route du Nord où l'entraîne un ami, Saidou Ghana, rencontré à Yaoundé. Il dépose ses bagages à Garoua et y fait une rencontre détenninante. Il fait la connaissance de Jean Gabary, un Kaka de Batouri. Celui-ci devient son mentor. Ensemble, ils évoluent dans le groupe Jazzy Garo (jazz de Garoua). Qui éblouit les mélomanes du septentrion une fois le soir venu, dans un bar situé au quartier Nkolbivès (la colline des os). Le jeune artiste, de plus en plus remarqué, tisse la toile de sa gloire. Ses performances émerveillent un Togolais du nom de Jean Bossou, qui l'emmène à Maroua. Evoluant désormais en solo, il fonde le groupe Diamafoune, qui connaît un succès tellement grand qu'il ne peut plus se suffire du seul septentrion. Les vannes de l'aventure s'ouvrent. Messi et son propre groupe foncent à l'ouest, traversent la frontière et se retrouvent au Nigeria. Ils y passeront un séjour plutôt discret.<br /><br /> Retour au pays. Changement de producteur. Joseph Tamla de «Afrique ambiance» prend la place de Jean Bossou. Retour de la gloire. L'album Bekono Nga Nkonda», dédié à la mère de l'artiste, voit le jour en 1964. Ses chansons enchantent le Cameroun. Comme toutes les productions du jeune prodige. Bientôt «Amu dzé», «Mengala Maurice», «Minyono», «Ovongo ane man Bella» sont fredonnées à longueur de journée et personne n'ose organiser une fête en faisant l'économie de la galette Messi. L'étoile du Nord, plus que jamais scintillante, peut amorcer la descente vers le sud. Dix ans après. En service commandé.<br /> C'est le ministre des Forces Armées de !'époque, Sadou Daoudou, qui instruit un musicien - soldat, Archangelo de Moneko (de son vrai nom Philippe Nkoa), d'aller chercher ce jeune musicien dont on parle tant au Nord, aux fins de l`enrôler dans l'armée camerounaise. Cette proposition n'est pas bien accueillie au sein de la famille Messi qui voit d'un très mauvais oeil le métier de pandore. L'offre est déclinée. Un de ses «gars», Elanga Maurice, saute sur l'occasion et choisit, lui, de servir sous le drapeaux. Il est aujourd'hui adjudant chef.<br /><br /> Elanga Maurice, que tout le monde n'appelle plus que «Elamo», va.d'ailleurs devenir son principal rival, dans ce quartier d'EligEffa où ils s'installent l'un et l'autre, dans deux cabarets qui se faisaient face, comme dans un défi. «Mango bar» pour Messi et «Colombey-les deux-églises» pour Elamo. Le combat est âpre, mais reste loyal: «Nous nous passions souvent les clients. Mais, au final, c'est chez moi à «Mango bar» qu'il y avait toujours la plus grande affluence», révèle Messi Me. Nkonda. Souvenir ému d'une époque où, selon lui, la musique camerounaise connaît alors son heure de gloire avec des têtes de proue comme Jacob Medjo Me Nsom, Jean Bikoko Aladin, Nelle Eyoum et lui-même, Messi Martin. Les artistes jouent alors pleinement leur rôle, celui de gardiens de la sagesse ancestrale, «donnant de judicieux conseils à leur public, évitant de verser dans la trivialité et la pornographie.» Comme c'est le cas aujourd'hui, laisse-t-il deviner plus qu'il ne le dit. Alors, on se laisse tenter à vouloir savoir comment lui qui a définitivement établi sa réputation de grand parolier s'y prenait. Mais lui, précise: «Je ne suis pas un parolier. Je suis un messager. Sur la base de mes expériences personnelles, j'essaie de mettre les autres en garde. Parce que l'artiste est une fosse septique que l'on creuse et que l'on entretient soi-même, mais dont on est souvent le premier à se plaindre des odeurs.»<br /><br /><strong>Ingratitudes</strong><br /><br /> Des odeurs, et de nauséabondes justement, recouvrent à son sens les instances dirigeantes de notre art d'un halo d'ingratitudes. «Peut-on me dire pourquoi Messi Martin, commissaire d'identification des oeuvres à la Socinada a été bouté hors de cette structure? Sous le coup de quelle loi est-il tombé? Qui est Esso Essomba? Qui est Vincent Diboti? Qui est Messi pour Esso Essomba?»<br /> Ces questions sybillines qu'il retourne systématiquement à son interlocuteur donnent une idée de la profondeur de son amertume. D'ailleurs, il achève comme pour convaincre du peu de cas qui est souvent fait de ceux qui méritent pourtant la reconnaissance de la nation, par une autre question: «Où est Joseph Kono, le célèbre cycliste qui a tant fait honneur au Cameroun ? Et Joseph Bessala grand Jo?»<br /> Malgré tout, Messi Me Nkonda Martin se dit encore prét à rendre service. Il dit avoir tellement de projets et de propositions à faire pour la rénovation du monde artistique camerounais qu'il aimerait rencontrer le président de la République en personne pour en parler.<br /><br /> Mais, en attendant il invite 1es jeunes artistes camerounais à sa rencontre «Je suis le patriarche. Il f aut qu'ils viennent et que je leur montre où sont cachés les trésors inestimables de notre patrimoine culturel.» Quelques jeunes artistes, Zanzibar, Mballa Roger's... auraient d'ailleurs déjà eu à bénéficier de ses conseils. Au même titre que sa nombreuse famille (2 épouses et 9 enfants) avec une partie de laquelle il partage des moments de bonheur simple dans ce studio réduit qu'il loue laboneusement au quartier Kondengui à Yaoundé.<br /><br /> On l'y voyait, chaque matin, lustrant ses chaussures pendant de longues heures en sirotant de l'eau de vie sous le regard attendri de sa Rose d'épouse. On l'y apercevait souvent, se pavanant dans les ruelles, une fleur à la main ou une guitare au bras, un mégot incandescent toujours fiché au coin de la lippe, le torse bombé, la démarche altière et fière, apparemment à la recherche d'un destin progressivement mais inexorablement évanescent dans le rétroviseur de sa vie.<br /><br /> (Article Publié dans Mutations n° 145 du 28 août 1998 et actualisé)</p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.bonaberi.com/article.php?aid=1503">Source</a></span></span></p>Messi Martininheritopenopen171-revision2012-01-18 14:13:342012-01-18 13:13:34171http://www.alicepegie.com/wordpress/wordpress/?p=1720revision0
17312010-01-15 14:16:142010-01-15 13:16:14<img style="display: block; margin-left: auto; margin-right: auto; float: left;" src="images/monazan.jpg" alt="" width="200" height="212" /> &nbsp; <strong><a style="text-decoration: none;" title="Ecouter la Musique"><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: x-large;"><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong><strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><!--more--></strong></span></span></strong></span></strong></span></span></strong></a></strong> {nmap}normal|250|150|images/stories/audio/centre_sud/Monazang|1|a{/nmap} De son vrai nom, Joseph Elle Mvouma est un Accordéoniste et chansonnier. Il est l'auteur de titres inspirés et se distingue par sa technique de chant et ses textes mélangeant humour et allégories érotiques. Titres célèbres : « Subaru », « Tse e nga lende », « E djom dja ba’ale », « Bewo’o bela », « Oba’ale nkanda ».Monazangpublishopenopenmonazang2012-01-18 14:20:002012-01-18 13:20:000http://www.alicepegie.com/wordpress/wordpress/?p=1730post0
17412012-01-18 14:16:282012-01-18 13:16:28<p><img src="images/monazan.jpg" style="display: block; margin-left: auto; margin-right: auto; float: left;" height="212" width="200" /></p> <p><b><a style="text-decoration: none;" title="Ecouter la Musique"><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: x-large;"><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><b></b><b><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><hr id="system-readmore" />{nmap}normal|250|150|images/stories/audio/centre_sud/Monazang|1|a{/nmap}</strong></span></span></b></span></strong></span></span></strong></a></b></p> <p>De son vrai nom, Joseph Elle Mvouma est un Accordéoniste et chansonnier. Il est l'auteur de titres inspirés et se distingue par sa technique de chant et ses textes mélangeant humour et allégories érotiques. Titres célèbres&nbsp;: «&nbsp;Subaru&nbsp;», «&nbsp;Tse e nga lende&nbsp;», «&nbsp;E djom dja ba’ale&nbsp;», «&nbsp;Bewo’o bela&nbsp;», «&nbsp;Oba’ale nkanda&nbsp;».</p>Monazanginheritopenopen173-revision2012-01-18 14:16:282012-01-18 13:16:28173http://www.alicepegie.com/wordpress/wordpress/?p=1740revision0
17512010-01-15 14:17:532010-01-15 13:17:53<p style="text-align: justify;"><img style="float: left;" src="images/stories/merengue.jpg" alt="merengue" width="206" height="206" border="0" /></p> &nbsp; <a style="text-decoration: none;" title="Ecouter la Musique"><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: x-large;"><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong><strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><!--more--></strong></span></span></strong></span></strong></span></span></strong></a>{nmap}normal|250|150|images/stories/audio/centre_sud/merengue1|1|a{/nmap} Le Merengue j'avoue que je ne saurais le définir, mais en général c'est du Bikutsi un peu plus doux, plus entrainant. Les chansons de ces Album ont en majorité pour Auteur: Ange Ebogo Emerant, Beti Joseph, Marthe Zambo, Messi Martin.... un délicieux moment. &nbsp; <span style="font-size: x-large;"><strong><span style="font-family: arial,helvetica,sans-serif;"><a style="text-decoration: none;" title="Ecouter la Musique"> </a></span></strong></span>Testament du Merenguepublishopenopentestament-du-merengue2012-01-18 14:19:042012-01-18 13:19:040http://www.alicepegie.com/wordpress/wordpress/?p=1750post0
17612012-01-18 14:18:312012-01-18 13:18:31<p style="text-align: justify;"><img style="float: left;" src="images/stories/merengue.jpg" alt="merengue" width="206" height="206" border="0" /></p> &nbsp; <a style="text-decoration: none;" title="Ecouter la Musique"><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: x-large;"><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong><strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><!--more--></strong></span></span></strong></span></strong></span></span></strong></a>{nmap}normal|250|150|images/stories/audio/centre_sud/merengue1|1|a{/nmap} Le Merengue j'avoue que je ne saurais le définir, mais en général c'est du Bikutsi un peu plus doux, plus entrainant. Les chansons de ces Album ont en majorité pour Auteur: Ange Ebogo Emerant, Beti Joseph, Marthe Zambo, Messi Martin.... un délicieux moment. &nbsp; <span style="font-size: x-large;"><strong><span style="font-family: arial,helvetica,sans-serif;"><a style="text-decoration: none;" title="Ecouter la Musique"> </a></span></strong></span>Testament du Merengueinheritopenopen175-revision2012-01-18 14:18:312012-01-18 13:18:31175http://www.alicepegie.com/wordpress/wordpress/?p=1760revision0
17712012-01-18 14:17:032012-01-18 13:17:03<img style="display: block; margin-left: auto; margin-right: auto; float: left;" src="images/monazan.jpg" alt="" width="200" height="212" /> &nbsp; <strong><a style="text-decoration: none;" title="Ecouter la Musique"><strong><span style="font-family: 'Arial','sans-serif';"><span style="font-size: x-large;"><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong><strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><!--more--></strong></span></span></strong></span></strong></span></span></strong></a></strong> {nmap}normal|250|150|images/stories/audio/centre_sud/Monazang|1|a{/nmap} De son vrai nom, Joseph Elle Mvouma est un Accordéoniste et chansonnier. Il est l'auteur de titres inspirés et se distingue par sa technique de chant et ses textes mélangeant humour et allégories érotiques. Titres célèbres : « Subaru », « Tse e nga lende », « E djom dja ba’ale », « Bewo’o bela », « Oba’ale nkanda ».Monazanginheritopenopen173-revision-22012-01-18 14:17:032012-01-18 13:17:03173http://www.alicepegie.com/wordpress/wordpress/?p=1770revision0
17812010-01-15 14:20:192010-01-15 13:20:19<img title="zag.jpg" src="images/stories/zangalewa.jpg" alt="zangalewa" width="204" height="203" border="0" /> &nbsp; <!--more--> {nmap}normal|250|150|images/stories/audio/centre_sud/zangalewa|1|a{/nmap} Nous sommes en 1986. La télévision camerounaise fait ses premiers pas. Sur le petit écran, un clip des Golden Sounds est très souvent diffusé. Le film met en scène des hommes : Guy Dooh, Ze Bella, Eyebe et Kojidie, quatre gendarmes en service à la garde présidentielle. Sur un rythme cadencé qui rappelait les entraînements des militaires, les Golden Sounds égayent les téléspectateurs. Le groupe est très vite adopté par le public. Un auditoire attiré non seulement par son originalité, mais aussi par la variété des rythmes musicaux. Ils font à la fois du high-life, du makossa, du bikutsi et de la musique zoulou. Ils s'habillent en uniforme militaire, et exhibent des ventres bedonnants et des arrières-trains grossis par des chiffons. Tous ces éléments changent positivement l'image sévère que beaucoup ont du militaire à l'époque. Avec le titre Zangalewa, les Golden Sounds font un tabac. Et Claude Tchameni, le producteur de la maison Ebobolo Fia, leur versera un cachet de 30 millions de Fcfa. &nbsp; <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le titre de cet album par lequel le groupe s'est fait connaître a été inspiré, selon Dooh, par l'exclamation d'un militaire étranger venu en formation au Cameroun. "Comme il se plaignait, un de nos camarades lui a demandé en langue Ewondo: qui l'avait envoyé ? (Za engalomwa)", explique-t-il. En dehors des militaires qu'on aperçoit dans ce premier clip, il y a une jeune chanteuse qui ne fait pas partie de la Garde présidentielle : elle s'appelle Annie Anzouer et a été présentée aux autres par Georges Seba, chanteur camerounais bien connu. Elle apparaît pour la première fois aux yeux des téléspectateurs dans le second clip réalisé, celui du titre à succès Maladie difficile à soigner. Un autre membre, Kero, a aussi rejoint l'équipe entre-temps. Après les albums Zangalewa et Caporal grillé sous le nom de Golden Sounds, le groupe change de dénomination. "Nous nous sommes fait connaître au public sous le nom des Golden sounds. Malheureusement, ce nom étant celui de l'orchestre de la Garde présidentielle dans lequel Ze Bella, Eyebe, Kojidie et moi évoluons aussi. Nous avons préféré changer. C'est pour ça qu'après, le groupe va s'appeler Zangalewa en mémoire à un notre premier album qui nous a fait connaître", explique Dooh.</span></span></p> Disparition Après quatre albums sortis sur le marché du disque camerounais (Zangalewa, Caporal grillé, et Zangabiduwa et Casque colonial), le groupe ne se maintiendra pas au sommet. Il disparaît pratiquement après la sortie de Casque colonial, dans les années 1990. On lie ce silence à des ennuis que ses membres auraient eu au sein de l'armée. Ce qu'ils réfutent : "Nous ne sommes plus le même nombre et nous n'avons plus commis d'album, mais le groupe Zangalewa existe toujours. Ze Bella et moi faisons des spectacles en privé selon les sollicitations", explique Guy Dooh, un des deux membres fondateurs du groupe. Restés visibles sur la scène musicale, quelques-uns comme Ze Bella et Annie Anzouer tentent de mener une carrière solo. Emile Kojidie a démissionné de l'armée pour s'exiler en Angleterre. Luc Eyebe, aujourd'hui lieutenant, et Kero, ne font plus parler d'eux. Tandis qu'Annie Anzouer, la seule femme du groupe est devenue une artiste confirmée classée parmi les grandes stars de la chanson camerounaise. Elle a à son actif quatre albums. Le plus récent, Si malaya, marche plutôt bien et elle vit pratiquement. Il nous a été difficile de la joindre, car elle se trouve actuellement en France. Par ailleurs, une fois parti à la retraite, Ze Bella, l'autre membre fondateur du groupe, va continuer de chanter. Dans son dernier opus, l'ex-membre des Zangalewa chante pour les femmes du monde. Aujourd'hui encore, la couleur de sa voix et son timbre restent évocateurs. Comme autrefois, lorsqu'avec les autres membres du groupe, il fit irruption sur la scène musicale camerounaise. Il garde cependant les séquelles d'un accident survenu lorsqu'il était dans la presqu'île de Bakassi. Quant à Guy Dooh, la barbe taillée en cerceau, le ventre proéminent, l'adjudant-chef n'a pas vraiment changé. Des années après le succès du groupe, le gendarme a gardé son embonpoint. Il a peut-être du mal à perdre ces quelques kilos en trop qui lui ont valu le surnom de Big Bèlè (gros ventre, en pidgin english) et qui ont contribué à le rendre davantage célèbre. Une notoriété dont il jouit toujours. Dans la ville de Douala, où il a été affecté, il ne passe pas inaperçu. Ce vendredi 11 novembre 2005, au quartier Bonapriso où Guy Dooh vit, ses voisins ne se lassent pas de se retourner à son passage et de lui lancer un mot aimable. C'est la même attitude à la 2ème région de gendarmerie où il officie désormais. Autant de choses qui le poussent à revenir sur la scène musicale. "Je viens de finir mon album. J'attends que mon producteur le mette sur le marché", dit-il. Semaine Mindef, le titre de cet album, relate l'ambiance qui suit la période des salaires chez les militaires. <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.bonaberi.com/article.php?aid=1434">Source</a></span></span></p>Zangalewapublishopenopenzangalewa2012-01-18 14:24:282012-01-18 13:24:280http://www.alicepegie.com/wordpress/wordpress/?p=1780post0
17912012-01-18 14:20:462012-01-18 13:20:46<img style="float: left;" title="zag.jpg" src="images/stories/zangalewa.jpg" alt="zangalewa" width="204" height="203" border="0" /> <p style="text-align: justify;"></p> <!--more-->{nmap}normal|250|150|images/stories/audio/centre_sud/zangalewa|1|a{/nmap} Nous sommes en 1986. La télévision camerounaise fait ses premiers pas. Sur le petit écran, un clip des Golden Sounds est très souvent diffusé. Le film met en scène des hommes : Guy Dooh, Ze Bella, Eyebe et Kojidie, quatre gendarmes en service à la garde présidentielle. Sur un rythme cadencé qui rappelait les entraînements des militaires, les Golden Sounds égayent les téléspectateurs. Le groupe est très vite adopté par le public. Un auditoire attiré non seulement par son originalité, mais aussi par la variété des rythmes musicaux. Ils font à la fois du high-life, du makossa, du bikutsi et de la musique zoulou. Ils s'habillent en uniforme militaire, et exhibent des ventres bedonnants et des arrières-trains grossis par des chiffons. Tous ces éléments changent positivement l'image sévère que beaucoup ont du militaire à l'époque. Avec le titre Zangalewa, les Golden Sounds font un tabac. Et Claude Tchameni, le producteur de la maison Ebobolo Fia, leur versera un cachet de 30 millions de Fcfa. &nbsp; <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le titre de cet album par lequel le groupe s'est fait connaître a été inspiré, selon Dooh, par l'exclamation d'un militaire étranger venu en formation au Cameroun. "Comme il se plaignait, un de nos camarades lui a demandé en langue Ewondo: qui l'avait envoyé ? (Za engalomwa)", explique-t-il. En dehors des militaires qu'on aperçoit dans ce premier clip, il y a une jeune chanteuse qui ne fait pas partie de la Garde présidentielle : elle s'appelle Annie Anzouer et a été présentée aux autres par Georges Seba, chanteur camerounais bien connu. Elle apparaît pour la première fois aux yeux des téléspectateurs dans le second clip réalisé, celui du titre à succès Maladie difficile à soigner. Un autre membre, Kero, a aussi rejoint l'équipe entre-temps. Après les albums Zangalewa et Caporal grillé sous le nom de Golden Sounds, le groupe change de dénomination. "Nous nous sommes fait connaître au public sous le nom des Golden sounds. Malheureusement, ce nom étant celui de l'orchestre de la Garde présidentielle dans lequel Ze Bella, Eyebe, Kojidie et moi évoluons aussi. Nous avons préféré changer. C'est pour ça qu'après, le groupe va s'appeler Zangalewa en mémoire à un notre premier album qui nous a fait connaître", explique Dooh.</span></span></p> Disparition Après quatre albums sortis sur le marché du disque camerounais (Zangalewa, Caporal grillé, et Zangabiduwa et Casque colonial), le groupe ne se maintiendra pas au sommet. Il disparaît pratiquement après la sortie de Casque colonial, dans les années 1990. On lie ce silence à des ennuis que ses membres auraient eu au sein de l'armée. Ce qu'ils réfutent : "Nous ne sommes plus le même nombre et nous n'avons plus commis d'album, mais le groupe Zangalewa existe toujours. Ze Bella et moi faisons des spectacles en privé selon les sollicitations", explique Guy Dooh, un des deux membres fondateurs du groupe. Restés visibles sur la scène musicale, quelques-uns comme Ze Bella et Annie Anzouer tentent de mener une carrière solo. Emile Kojidie a démissionné de l'armée pour s'exiler en Angleterre. Luc Eyebe, aujourd'hui lieutenant, et Kero, ne font plus parler d'eux. Tandis qu'Annie Anzouer, la seule femme du groupe est devenue une artiste confirmée classée parmi les grandes stars de la chanson camerounaise. Elle a à son actif quatre albums. Le plus récent, Si malaya, marche plutôt bien et elle vit pratiquement. Il nous a été difficile de la joindre, car elle se trouve actuellement en France. Par ailleurs, une fois parti à la retraite, Ze Bella, l'autre membre fondateur du groupe, va continuer de chanter. Dans son dernier opus, l'ex-membre des Zangalewa chante pour les femmes du monde. Aujourd'hui encore, la couleur de sa voix et son timbre restent évocateurs. Comme autrefois, lorsqu'avec les autres membres du groupe, il fit irruption sur la scène musicale camerounaise. Il garde cependant les séquelles d'un accident survenu lorsqu'il était dans la presqu'île de Bakassi. Quant à Guy Dooh, la barbe taillée en cerceau, le ventre proéminent, l'adjudant-chef n'a pas vraiment changé. Des années après le succès du groupe, le gendarme a gardé son embonpoint. Il a peut-être du mal à perdre ces quelques kilos en trop qui lui ont valu le surnom de Big Bèlè (gros ventre, en pidgin english) et qui ont contribué à le rendre davantage célèbre. Une notoriété dont il jouit toujours. Dans la ville de Douala, où il a été affecté, il ne passe pas inaperçu. Ce vendredi 11 novembre 2005, au quartier Bonapriso où Guy Dooh vit, ses voisins ne se lassent pas de se retourner à son passage et de lui lancer un mot aimable. C'est la même attitude à la 2ème région de gendarmerie où il officie désormais. Autant de choses qui le poussent à revenir sur la scène musicale. "Je viens de finir mon album. J'attends que mon producteur le mette sur le marché", dit-il. Semaine Mindef, le titre de cet album, relate l'ambiance qui suit la période des salaires chez les militaires. <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.bonaberi.com/article.php?aid=1434">Source</a></span></span></p>Zangalewainheritopenopen178-revision2012-01-18 14:20:462012-01-18 13:20:46178http://www.alicepegie.com/wordpress/wordpress/?p=1790revision0
18112012-01-18 14:24:330000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-18 14:24:330000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=1810post0
18012012-01-18 14:21:142012-01-18 13:21:14<img style="float: left;" title="zag.jpg" src="images/stories/zangalewa.jpg" alt="zangalewa" width="204" height="203" border="0" /> <p style="text-align: justify;"></p> <!--more-->{nmap}normal|250|150|images/stories/audio/centre_sud/zangalewa|1|a{/nmap} Nous sommes en 1986. La télévision camerounaise fait ses premiers pas. Sur le petit écran, un clip des Golden Sounds est très souvent diffusé. Le film met en scène des hommes : Guy Dooh, Ze Bella, Eyebe et Kojidie, quatre gendarmes en service à la garde présidentielle. Sur un rythme cadencé qui rappelait les entraînements des militaires, les Golden Sounds égayent les téléspectateurs. Le groupe est très vite adopté par le public. Un auditoire attiré non seulement par son originalité, mais aussi par la variété des rythmes musicaux. Ils font à la fois du high-life, du makossa, du bikutsi et de la musique zoulou. Ils s'habillent en uniforme militaire, et exhibent des ventres bedonnants et des arrières-trains grossis par des chiffons. Tous ces éléments changent positivement l'image sévère que beaucoup ont du militaire à l'époque. Avec le titre Zangalewa, les Golden Sounds font un tabac. Et Claude Tchameni, le producteur de la maison Ebobolo Fia, leur versera un cachet de 30 millions de Fcfa. &nbsp; <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le titre de cet album par lequel le groupe s'est fait connaître a été inspiré, selon Dooh, par l'exclamation d'un militaire étranger venu en formation au Cameroun. "Comme il se plaignait, un de nos camarades lui a demandé en langue Ewondo: qui l'avait envoyé ? (Za engalomwa)", explique-t-il. En dehors des militaires qu'on aperçoit dans ce premier clip, il y a une jeune chanteuse qui ne fait pas partie de la Garde présidentielle : elle s'appelle Annie Anzouer et a été présentée aux autres par Georges Seba, chanteur camerounais bien connu. Elle apparaît pour la première fois aux yeux des téléspectateurs dans le second clip réalisé, celui du titre à succès Maladie difficile à soigner. Un autre membre, Kero, a aussi rejoint l'équipe entre-temps. Après les albums Zangalewa et Caporal grillé sous le nom de Golden Sounds, le groupe change de dénomination. "Nous nous sommes fait connaître au public sous le nom des Golden sounds. Malheureusement, ce nom étant celui de l'orchestre de la Garde présidentielle dans lequel Ze Bella, Eyebe, Kojidie et moi évoluons aussi. Nous avons préféré changer. C'est pour ça qu'après, le groupe va s'appeler Zangalewa en mémoire à un notre premier album qui nous a fait connaître", explique Dooh.</span></span></p> Disparition Après quatre albums sortis sur le marché du disque camerounais (Zangalewa, Caporal grillé, et Zangabiduwa et Casque colonial), le groupe ne se maintiendra pas au sommet. Il disparaît pratiquement après la sortie de Casque colonial, dans les années 1990. On lie ce silence à des ennuis que ses membres auraient eu au sein de l'armée. Ce qu'ils réfutent : "Nous ne sommes plus le même nombre et nous n'avons plus commis d'album, mais le groupe Zangalewa existe toujours. Ze Bella et moi faisons des spectacles en privé selon les sollicitations", explique Guy Dooh, un des deux membres fondateurs du groupe. Restés visibles sur la scène musicale, quelques-uns comme Ze Bella et Annie Anzouer tentent de mener une carrière solo. Emile Kojidie a démissionné de l'armée pour s'exiler en Angleterre. Luc Eyebe, aujourd'hui lieutenant, et Kero, ne font plus parler d'eux. Tandis qu'Annie Anzouer, la seule femme du groupe est devenue une artiste confirmée classée parmi les grandes stars de la chanson camerounaise. Elle a à son actif quatre albums. Le plus récent, Si malaya, marche plutôt bien et elle vit pratiquement. Il nous a été difficile de la joindre, car elle se trouve actuellement en France. Par ailleurs, une fois parti à la retraite, Ze Bella, l'autre membre fondateur du groupe, va continuer de chanter. Dans son dernier opus, l'ex-membre des Zangalewa chante pour les femmes du monde. Aujourd'hui encore, la couleur de sa voix et son timbre restent évocateurs. Comme autrefois, lorsqu'avec les autres membres du groupe, il fit irruption sur la scène musicale camerounaise. Il garde cependant les séquelles d'un accident survenu lorsqu'il était dans la presqu'île de Bakassi. Quant à Guy Dooh, la barbe taillée en cerceau, le ventre proéminent, l'adjudant-chef n'a pas vraiment changé. Des années après le succès du groupe, le gendarme a gardé son embonpoint. Il a peut-être du mal à perdre ces quelques kilos en trop qui lui ont valu le surnom de Big Bèlè (gros ventre, en pidgin english) et qui ont contribué à le rendre davantage célèbre. Une notoriété dont il jouit toujours. Dans la ville de Douala, où il a été affecté, il ne passe pas inaperçu. Ce vendredi 11 novembre 2005, au quartier Bonapriso où Guy Dooh vit, ses voisins ne se lassent pas de se retourner à son passage et de lui lancer un mot aimable. C'est la même attitude à la 2ème région de gendarmerie où il officie désormais. Autant de choses qui le poussent à revenir sur la scène musicale. "Je viens de finir mon album. J'attends que mon producteur le mette sur le marché", dit-il. Semaine Mindef, le titre de cet album, relate l'ambiance qui suit la période des salaires chez les militaires. <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.bonaberi.com/article.php?aid=1434">Source</a></span></span></p>Zangalewainheritopenopen178-revision-22012-01-18 14:21:142012-01-18 13:21:14178http://www.alicepegie.com/wordpress/wordpress/?p=1800revision0
18212010-01-15 14:24:492010-01-15 13:24:49<p style="text-align: justify;"><a class="mb" title="Charlotte Dipanda" href="http://s1.e-monsite.com/2009/06/30/09/24401486charlotte-dipanda-jpg.jpg"><img style="border: 0pt none; float: left;" title="Charlotte Dipanda" src="http://s1.e-monsite.com/2009/06/30/09/mini2-24401486charlotte-dipanda-jpg.jpg" alt="" width="267" height="243" border="0" /></a><em><strong></strong><strong></strong><strong></strong></em><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><em><strong>Emotion, partage et plaisir ont rythmé les moments que l'artiste a passés à Douala avec un public camerounais.</strong></em><span style="font-size: 14pt;"><strong><a style="text-decoration: none;" title="Ecouter sa Musique"> </a></strong></span> </span></span></p> &nbsp; <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Une véritable colle. Le staff du Centre culturel français Blaise Cendras de Douala n'a pas pu dire avec exactitude à quand remontait la dernière fois où un artiste camerounais avait fait le plein d'œuf sur deux dates dans leur salle. Charlotte Dipanda a crée un vrai séisme à Douala. L'artiste, qui donnait son premier spectacle au Cameroun jeudi 9 avril 2009 a pu, grâce à Orange Cameroun, offrir une seconde date, vendredi 10 avril 2009, au public qui venait de Yaoundé, Ngaoundéré, Mbouda, Nkongsamba et Douala. </span></span></p> Tout ce monde est venu voir Charlotte. Certains l'ont connu petite. Vu avec Jeannot Hens. Ecouté en cabaret. A-t-elle grandi ? Sa personnalité artistique s'est-elle départie de son mentor Jeannot Hens ? Sans parler, Charlotte Dipanda allait au long de ces spectacles donner des réponses en musique à son public. Les deux concerts étaient des moments mémorables. L'artiste était vraie, elle-même et les personnes qui l'ont vu sont reparties comblées. La rupture avec son passé musical s'est fait d'abord au niveau de la scène après la levée de rideau dans la salle de spectacle du Ccf de Douala, à 20h35mn.<!--more--> Avec Jeannot Hens, Charlotte Dipanda était toujours assise, sur une scène nue avec la guitare. Jeudi 9 avril 2009 Charlotte était debout. Belle et fière. Prête à dompter. Habillée avec une robe bleu or sans bretelles, dénudant ses cuises avec une traîne à l'arrière. A sa gauche Julien Pestre, à droite Arthur Manga, les deux guitaristes. Puis derrière, Charlotte a placé, un ami d'enfance qui comme elle a trouvé sa voie, le batteur Haoussa. L'artiste, devant son public a commencé son répertoire par "Ndutu Ndema". Une ballade douce en Bakaka, langue maternelle. Le silence s'est fait seul, quand Charlotte a fait une montée, fermant les yeux, laissant le souffle intérieur murmurer dans le micro son émotion. Chacun l'a senti. Le plus courageux a crié un "A loba é. Voici un ange que tu as laissé sur terre". Le regard noir que lui ont lancé certains l'ont rendu aphone. On voulait écouter. Rien qu'écouter cette voix claire, douce, qui susurre. L'artiste n'a pas seulement réussi son examen de technique vocale, elle a sorti le corrigé de la danse. Déhanchements, déplacement en diagonale avec pied droit en pivot pour le Makossa soft et même un bal-à-terre dans "Mbasan", "Eyaya" et "Ala woné". Les lignes de guitares basses ont apporté une densité musicale à ses chansons. Charlotte Dipanda, au cours de sa prestation, n'a pas chanté pour elle. Mais pour le public. Attentive, elle rallongeait les refrains, se faisait accompagner par ce qu'elle-même a appelé "la grande chorale du Ccf de Douala", tolérait les sorties de gamme et donnait le tempo du claquement des mains. Les reprises de titres faits avec Jeannot Hens, notamment Ndando, Cathy et Longuè ont été des moments de fusion parfaite, en termes d'émotion, de partage et de plaisir avec le public. Les mouchoirs blancs distribués à l'entrée du spectacle ont été brandis en mémoire de celui qui nous a fait découvrir Charlotte Dipanda et qui lui a montré la voie de son identité artistique. Certains ont mouillé leurs mouchoirs avec les larmes, mais Charlotte n'a pas arrêté. Elle a chanté jusqu'au bout. Elle s'est pliée en deux sur Ndando, le public a cru qu'elle allait se casser, sa voix a glissé sur la colline de l'émotion et elle est remontée plus forte et plus puissante. On sent que Lokua Kanza est passé par là, Jeannot aussi, d'autres influences comme l'afrobeat de Fela également. Mais charlotte a cette force qu'elle ne laisse rien la dominer. Le travail de sa voix l'a mise au dessus des instruments. Faudrait pas que cette voix s'arrête sur une voie parce qu'il n'y pas eu d'autres voies. Une mention toute particulière à Orange Cameroun qui a permis au public de vibrer, plutôt deux fois qu’une, avec cette jeune artiste déjà si mûre et pleine d’avenir. <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><em>Extrait du document de journal Mutations du 13 avril 200.</em></span></span></p> <em><strong></strong><strong></strong><strong><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Sawa2/Charlotte_Dipanda|1||a{/nmap}</span></span></strong></em> &nbsp;Charlotte Dipandapublishopenopencharlotte-dipanda2012-01-18 14:26:282012-01-18 13:26:280http://www.alicepegie.com/wordpress/wordpress/?p=1820post0
18312012-01-18 14:25:522012-01-18 13:25:52<p style="text-align: justify;"><a class="mb" title="Charlotte Dipanda" href="http://s1.e-monsite.com/2009/06/30/09/24401486charlotte-dipanda-jpg.jpg"><img style="border: 0pt none; float: left;" title="Charlotte Dipanda" src="http://s1.e-monsite.com/2009/06/30/09/mini2-24401486charlotte-dipanda-jpg.jpg" alt="" width="267" height="243" border="0" /></a><em><strong></strong><strong></strong><strong></strong></em><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><em><strong>Emotion, partage et plaisir ont rythmé les moments que l'artiste a passés à Douala avec un public camerounais.</strong></em><span style="font-size: 14pt;"><strong><a style="text-decoration: none;" title="Ecouter sa Musique"> </a></strong></span> </span></span></p> &nbsp; <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Une véritable colle. Le staff du Centre culturel français Blaise Cendras de Douala n'a pas pu dire avec exactitude à quand remontait la dernière fois où un artiste camerounais avait fait le plein d'œuf sur deux dates dans leur salle. Charlotte Dipanda a crée un vrai séisme à Douala. L'artiste, qui donnait son premier spectacle au Cameroun jeudi 9 avril 2009 a pu, grâce à Orange Cameroun, offrir une seconde date, vendredi 10 avril 2009, au public qui venait de Yaoundé, Ngaoundéré, Mbouda, Nkongsamba et Douala. </span></span></p> Tout ce monde est venu voir Charlotte. Certains l'ont connu petite. Vu avec Jeannot Hens. Ecouté en cabaret. A-t-elle grandi ? Sa personnalité artistique s'est-elle départie de son mentor Jeannot Hens ? Sans parler, Charlotte Dipanda allait au long de ces spectacles donner des réponses en musique à son public. Les deux concerts étaient des moments mémorables. L'artiste était vraie, elle-même et les personnes qui l'ont vu sont reparties comblées. La rupture avec son passé musical s'est fait d'abord au niveau de la scène après la levée de rideau dans la salle de spectacle du Ccf de Douala, à 20h35mn.<!--more--> Avec Jeannot Hens, Charlotte Dipanda était toujours assise, sur une scène nue avec la guitare. Jeudi 9 avril 2009 Charlotte était debout. Belle et fière. Prête à dompter. Habillée avec une robe bleu or sans bretelles, dénudant ses cuises avec une traîne à l'arrière. A sa gauche Julien Pestre, à droite Arthur Manga, les deux guitaristes. Puis derrière, Charlotte a placé, un ami d'enfance qui comme elle a trouvé sa voie, le batteur Haoussa. L'artiste, devant son public a commencé son répertoire par "Ndutu Ndema". Une ballade douce en Bakaka, langue maternelle. Le silence s'est fait seul, quand Charlotte a fait une montée, fermant les yeux, laissant le souffle intérieur murmurer dans le micro son émotion. Chacun l'a senti. Le plus courageux a crié un "A loba é. Voici un ange que tu as laissé sur terre". Le regard noir que lui ont lancé certains l'ont rendu aphone. On voulait écouter. Rien qu'écouter cette voix claire, douce, qui susurre. L'artiste n'a pas seulement réussi son examen de technique vocale, elle a sorti le corrigé de la danse. Déhanchements, déplacement en diagonale avec pied droit en pivot pour le Makossa soft et même un bal-à-terre dans "Mbasan", "Eyaya" et "Ala woné". Les lignes de guitares basses ont apporté une densité musicale à ses chansons. Charlotte Dipanda, au cours de sa prestation, n'a pas chanté pour elle. Mais pour le public. Attentive, elle rallongeait les refrains, se faisait accompagner par ce qu'elle-même a appelé "la grande chorale du Ccf de Douala", tolérait les sorties de gamme et donnait le tempo du claquement des mains. Les reprises de titres faits avec Jeannot Hens, notamment Ndando, Cathy et Longuè ont été des moments de fusion parfaite, en termes d'émotion, de partage et de plaisir avec le public. Les mouchoirs blancs distribués à l'entrée du spectacle ont été brandis en mémoire de celui qui nous a fait découvrir Charlotte Dipanda et qui lui a montré la voie de son identité artistique. Certains ont mouillé leurs mouchoirs avec les larmes, mais Charlotte n'a pas arrêté. Elle a chanté jusqu'au bout. Elle s'est pliée en deux sur Ndando, le public a cru qu'elle allait se casser, sa voix a glissé sur la colline de l'émotion et elle est remontée plus forte et plus puissante. On sent que Lokua Kanza est passé par là, Jeannot aussi, d'autres influences comme l'afrobeat de Fela également. Mais charlotte a cette force qu'elle ne laisse rien la dominer. Le travail de sa voix l'a mise au dessus des instruments. Faudrait pas que cette voix s'arrête sur une voie parce qu'il n'y pas eu d'autres voies. Une mention toute particulière à Orange Cameroun qui a permis au public de vibrer, plutôt deux fois qu’une, avec cette jeune artiste déjà si mûre et pleine d’avenir. <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><em>Extrait du document de journal Mutations du 13 avril 200.</em></span></span></p> <em><strong></strong><strong></strong><strong><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Sawa2/Charlotte_Dipanda|1||a{/nmap}</span></span></strong></em> &nbsp;inheritopenopen182-revision2012-01-18 14:25:522012-01-18 13:25:52182http://www.alicepegie.com/wordpress/wordpress/?p=1830revision0
18412012-01-18 14:25:562012-01-18 13:25:56<p style="text-align: justify;"><a class="mb" title="Charlotte Dipanda" href="http://s1.e-monsite.com/2009/06/30/09/24401486charlotte-dipanda-jpg.jpg"><img style="border: 0pt none; float: left;" title="Charlotte Dipanda" src="http://s1.e-monsite.com/2009/06/30/09/mini2-24401486charlotte-dipanda-jpg.jpg" alt="" width="267" height="243" border="0" /></a><em><strong></strong><strong></strong><strong></strong></em><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><em><strong>Emotion, partage et plaisir ont rythmé les moments que l'artiste a passés à Douala avec un public camerounais.</strong></em><span style="font-size: 14pt;"><strong><a style="text-decoration: none;" title="Ecouter sa Musique"> </a></strong></span> </span></span></p> &nbsp; <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Une véritable colle. Le staff du Centre culturel français Blaise Cendras de Douala n'a pas pu dire avec exactitude à quand remontait la dernière fois où un artiste camerounais avait fait le plein d'œuf sur deux dates dans leur salle. Charlotte Dipanda a crée un vrai séisme à Douala. L'artiste, qui donnait son premier spectacle au Cameroun jeudi 9 avril 2009 a pu, grâce à Orange Cameroun, offrir une seconde date, vendredi 10 avril 2009, au public qui venait de Yaoundé, Ngaoundéré, Mbouda, Nkongsamba et Douala. </span></span></p> Tout ce monde est venu voir Charlotte. Certains l'ont connu petite. Vu avec Jeannot Hens. Ecouté en cabaret. A-t-elle grandi ? Sa personnalité artistique s'est-elle départie de son mentor Jeannot Hens ? Sans parler, Charlotte Dipanda allait au long de ces spectacles donner des réponses en musique à son public. Les deux concerts étaient des moments mémorables. L'artiste était vraie, elle-même et les personnes qui l'ont vu sont reparties comblées. La rupture avec son passé musical s'est fait d'abord au niveau de la scène après la levée de rideau dans la salle de spectacle du Ccf de Douala, à 20h35mn.<!--more--> Avec Jeannot Hens, Charlotte Dipanda était toujours assise, sur une scène nue avec la guitare. Jeudi 9 avril 2009 Charlotte était debout. Belle et fière. Prête à dompter. Habillée avec une robe bleu or sans bretelles, dénudant ses cuises avec une traîne à l'arrière. A sa gauche Julien Pestre, à droite Arthur Manga, les deux guitaristes. Puis derrière, Charlotte a placé, un ami d'enfance qui comme elle a trouvé sa voie, le batteur Haoussa. L'artiste, devant son public a commencé son répertoire par "Ndutu Ndema". Une ballade douce en Bakaka, langue maternelle. Le silence s'est fait seul, quand Charlotte a fait une montée, fermant les yeux, laissant le souffle intérieur murmurer dans le micro son émotion. Chacun l'a senti. Le plus courageux a crié un "A loba é. Voici un ange que tu as laissé sur terre". Le regard noir que lui ont lancé certains l'ont rendu aphone. On voulait écouter. Rien qu'écouter cette voix claire, douce, qui susurre. L'artiste n'a pas seulement réussi son examen de technique vocale, elle a sorti le corrigé de la danse. Déhanchements, déplacement en diagonale avec pied droit en pivot pour le Makossa soft et même un bal-à-terre dans "Mbasan", "Eyaya" et "Ala woné". Les lignes de guitares basses ont apporté une densité musicale à ses chansons. Charlotte Dipanda, au cours de sa prestation, n'a pas chanté pour elle. Mais pour le public. Attentive, elle rallongeait les refrains, se faisait accompagner par ce qu'elle-même a appelé "la grande chorale du Ccf de Douala", tolérait les sorties de gamme et donnait le tempo du claquement des mains. Les reprises de titres faits avec Jeannot Hens, notamment Ndando, Cathy et Longuè ont été des moments de fusion parfaite, en termes d'émotion, de partage et de plaisir avec le public. Les mouchoirs blancs distribués à l'entrée du spectacle ont été brandis en mémoire de celui qui nous a fait découvrir Charlotte Dipanda et qui lui a montré la voie de son identité artistique. Certains ont mouillé leurs mouchoirs avec les larmes, mais Charlotte n'a pas arrêté. Elle a chanté jusqu'au bout. Elle s'est pliée en deux sur Ndando, le public a cru qu'elle allait se casser, sa voix a glissé sur la colline de l'émotion et elle est remontée plus forte et plus puissante. On sent que Lokua Kanza est passé par là, Jeannot aussi, d'autres influences comme l'afrobeat de Fela également. Mais charlotte a cette force qu'elle ne laisse rien la dominer. Le travail de sa voix l'a mise au dessus des instruments. Faudrait pas que cette voix s'arrête sur une voie parce qu'il n'y pas eu d'autres voies. Une mention toute particulière à Orange Cameroun qui a permis au public de vibrer, plutôt deux fois qu’une, avec cette jeune artiste déjà si mûre et pleine d’avenir. <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><em>Extrait du document de journal Mutations du 13 avril 200.</em></span></span></p> <em><strong></strong><strong></strong><strong><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Sawa2/Charlotte_Dipanda|1||a{/nmap}</span></span></strong></em> &nbsp;Charlotte Dipandainheritopenopen182-revision-22012-01-18 14:25:562012-01-18 13:25:56182http://www.alicepegie.com/wordpress/wordpress/?p=1840revision0
18512010-01-15 14:28:062010-01-15 13:28:06<span style="font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/eriko.jpg" alt="" border="0" /><em><strong></strong><strong></strong><strong><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Eriko|1||a{/nmap}</span></span></strong></em></span>Erikopublishopenopeneriko2012-01-18 15:00:232012-01-18 14:00:230http://www.alicepegie.com/wordpress/wordpress/?p=1850post0
18612012-01-18 14:27:442012-01-18 13:27:44<p><span style="font-family: arial,helvetica,sans-serif;"><img src="images/eriko.jpg" alt="" style="display: block; margin-left: auto; margin-right: auto;" border="0" /><em><strong><b></b><b><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Eriko|1||a{/nmap}</span></span></b></strong></em></span></p>Erikoinheritopenopen185-revision2012-01-18 14:27:442012-01-18 13:27:44185http://www.alicepegie.com/wordpress/wordpress/?p=1860revision0
18712010-01-15 14:28:192010-01-15 13:28:19<div><img style="display: block; margin-left: auto; margin-right: auto;" src="images/manulo.jpg" alt="" width="600" height="603" border="0" /></div> <div> <em><strong></strong><strong></strong><strong><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Manulo|1||a{/nmap}</span></span></strong></em> </div>Manulopublishopenopenmanulo2012-01-19 23:14:232012-01-19 22:14:230http://www.alicepegie.com/wordpress/wordpress/?p=1870post0
18812012-01-18 14:28:502012-01-18 13:28:50<div><img src="images/manulo.jpg" style="display: block; margin-left: auto; margin-right: auto;" border="0" height="603" width="600" /></div> <div> <p><em><strong><b></b><b><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Manulo|1||a{/nmap}</span></span></b></strong></em></p> </div>Manuloinheritopenopen187-revision2012-01-18 14:28:502012-01-18 13:28:50187http://www.alicepegie.com/wordpress/wordpress/?p=1880revision0
18912010-01-15 14:29:202010-01-15 13:29:20<p><a title="Ecouter la Musique" style="text-decoration: none;"><img src="images/stories/makossa.jpg" alt="makossa" style="float: left;" border="0" height="160" width="160" /><strong><span style="font-size: 14pt;"></span></strong></a><b data-mce-bogus="1"></b><b><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Sawa/Best_of_Makossa|1||a{/nmap}</span></span></b></p>Best of Makossa1publishopenopenbest-of-makossa12012-01-18 14:50:302012-01-18 13:50:300http://www.alicepegie.com/wordpress/wordpress/?p=1890post0
19012012-01-18 14:30:522012-01-18 13:30:52<p><a title="Ecouter la Musique" style="text-decoration: none;"><img src="images/stories/makossa.jpg" alt="makossa" style="float: left;" border="0" height="160" width="160" /><strong><span style="font-size: 14pt;"></span></strong></a><b data-mce-bogus="1"></b><b><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Sawa/Best_of_Makossa|1||a{/nmap}</span></span></b></p>Best of Makossa1inheritopenopen189-revision2012-01-18 14:30:522012-01-18 13:30:52189http://www.alicepegie.com/wordpress/wordpress/?p=1900revision0
19112010-01-15 14:50:512010-01-15 13:50:51<p><b><a href="mailto://sys_alicepeg@ftp.alicepegie.com/web/joomla18/images/stories/audio/centre_sud/Princesses_du_kmer"><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';"><img style="float: left;" alt="ben decca" src="images/ben_decca.jpg" height="400" width="400" /></span></span></a></b></p> <p>On dit de lui qu'il a une capacité de séduction sans pareil qui tient sans doute du charme qu'il dégage et de sa voix de rossignol. Il chante de préférence l'amour, l'amour et l'amour, dans un style qui sied bien au thème, le slow. <br />Dans sa longue carrière, il en a chanté qui ont fait des amoureux, réconcilié des couples et qui sont d'une manière générale, restées dans les mémoires des hommes et dans les annales de la musique.</p> <p>&nbsp;</p> <p><b><a href="mailto:%3Ca%20href=" mailto:="" sys_alicepeg="" ftp="" alicepegie="" com="" web="" joomla18="" images="" stories="" audio="" centre_sud="" princesses_du_kmer=""></a><span href="mailto:%3Ca%20href=" mailto:="" sys_alicepeg="" ftp="" alicepegie="" com="" web="" joomla18="" images="" stories="" audio="" centre_sud="" princesses_du_kmer=""><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Sawa/Ben_Decca|1||a{/nmap}</span></span></b></p> <p>&nbsp;</p> <p><span style="font-size: x-large; font-family: arial,helvetica,sans-serif;"><strong><a title="Ecouter sa Musique" style="text-decoration: none;"><br /></a></strong></span></p>Ben Deccapublishopenopenben-decca2012-01-18 14:51:332012-01-18 13:51:330http://www.alicepegie.com/wordpress/wordpress/?p=1910post0
19212012-01-18 14:51:102012-01-18 13:51:10<p><b><a href="mailto://sys_alicepeg@ftp.alicepegie.com/web/joomla18/images/stories/audio/centre_sud/Princesses_du_kmer"><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';"><img style="float: left;" alt="ben decca" src="images/ben_decca.jpg" height="400" width="400" /></span></span></a></b></p> <p>On dit de lui qu'il a une capacité de séduction sans pareil qui tient sans doute du charme qu'il dégage et de sa voix de rossignol. Il chante de préférence l'amour, l'amour et l'amour, dans un style qui sied bien au thème, le slow. <br />Dans sa longue carrière, il en a chanté qui ont fait des amoureux, réconcilié des couples et qui sont d'une manière générale, restées dans les mémoires des hommes et dans les annales de la musique.</p> <p>&nbsp;</p> <p><b><a href="mailto:%3Ca%20href=" mailto:="" sys_alicepeg="" ftp="" alicepegie="" com="" web="" joomla18="" images="" stories="" audio="" centre_sud="" princesses_du_kmer=""></a><span href="mailto:%3Ca%20href=" mailto:="" sys_alicepeg="" ftp="" alicepegie="" com="" web="" joomla18="" images="" stories="" audio="" centre_sud="" princesses_du_kmer=""><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Sawa/Ben_Decca|1||a{/nmap}</span></span></b></p> <p>&nbsp;</p> <p><span style="font-size: x-large; font-family: arial,helvetica,sans-serif;"><strong><a title="Ecouter sa Musique" style="text-decoration: none;"><br /></a></strong></span></p>Ben Deccainheritopenopen191-revision2012-01-18 14:51:102012-01-18 13:51:10191http://www.alicepegie.com/wordpress/wordpress/?p=1920revision0
19312010-01-15 14:52:522010-01-15 13:52:52<div style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/10/31/06/resize_550_550//GRACE_DECA.jpg"><img src="images/grace_deca.jpg" title="Grace decca" border="0" height="604" width="600" /></a></span></div> <p style="text-align: justify;">6ème d'une famille de 11 enfants, elle vient dans la musique grâce à son grand frère(Ben Decca) avec qui elle commence à faire les choeurs en 1984. Son 1er album solo sort en 1989 chez Issimo Productions. Elle est issue d'une famille d'artistes très connus au Cameroun, son arrière grand père maternel (Lobe Lobe Rameau qui est l'un des pionniers du Makossa) était musicien, son oncle également (le feu Eboa Lotin). Elle a sa petite soeur(Dora Decca) qui a sorti son album dont le titre est Aphrodite. Son 2nd album a été produit par elle-même , elle produit aussi de jeunes chanteurs dont son petit frère. Coté études elle est titulaire d'un 3émé cycle DEA en communication (sciences de l'éducation). C'est la chanteuse camerounaise la plus célèbre de cette décennie, la plus adulée, respectée et c'est un modèle pour les jeunes camerounaises. Elle par exemple à l'origine d'une robe du nom de Grace Decca. Palmarès: * DOi la mulma : Meilleur album féminin et meilleure chanteuse en 1993; 2 nominations aux Africans awards a Abidjan; meilleure vente *Appelle-moi princesse: Meilleur album féminin de l'année(1999); prix bernard folon pour la maturité artistique ; meilleure vente féminine de l'année *Donnes-moi un peu d'amour: Meilleure vente féminine de l'année(2001-2002), Meilleur album Makossa et féminin de l'année, trophée du prix d'excellence artistique aux african ladies (le 08 mars 2003)</p> <p style="text-align: justify;">&nbsp;</p> <p><em><strong><b></b><b><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Sawa2/grace_decca|1||a{/nmap}</span></span></b></strong></em></p>Grace Deccapublishopenopengrace-decca2012-01-18 14:53:392012-01-18 13:53:390http://www.alicepegie.com/wordpress/wordpress/?p=1930post0
19412012-01-18 14:53:092012-01-18 13:53:09<div style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/10/31/06/resize_550_550//GRACE_DECA.jpg"><img src="images/grace_deca.jpg" title="Grace decca" border="0" height="604" width="600" /></a></span></div> <p style="text-align: justify;">6ème d'une famille de 11 enfants, elle vient dans la musique grâce à son grand frère(Ben Decca) avec qui elle commence à faire les choeurs en 1984. Son 1er album solo sort en 1989 chez Issimo Productions. Elle est issue d'une famille d'artistes très connus au Cameroun, son arrière grand père maternel (Lobe Lobe Rameau qui est l'un des pionniers du Makossa) était musicien, son oncle également (le feu Eboa Lotin). Elle a sa petite soeur(Dora Decca) qui a sorti son album dont le titre est Aphrodite. Son 2nd album a été produit par elle-même , elle produit aussi de jeunes chanteurs dont son petit frère. Coté études elle est titulaire d'un 3émé cycle DEA en communication (sciences de l'éducation). C'est la chanteuse camerounaise la plus célèbre de cette décennie, la plus adulée, respectée et c'est un modèle pour les jeunes camerounaises. Elle par exemple à l'origine d'une robe du nom de Grace Decca. Palmarès: * DOi la mulma : Meilleur album féminin et meilleure chanteuse en 1993; 2 nominations aux Africans awards a Abidjan; meilleure vente *Appelle-moi princesse: Meilleur album féminin de l'année(1999); prix bernard folon pour la maturité artistique ; meilleure vente féminine de l'année *Donnes-moi un peu d'amour: Meilleure vente féminine de l'année(2001-2002), Meilleur album Makossa et féminin de l'année, trophée du prix d'excellence artistique aux african ladies (le 08 mars 2003)</p> <p style="text-align: justify;">&nbsp;</p> <p><em><strong><b></b><b><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Sawa2/grace_decca|1||a{/nmap}</span></span></b></strong></em></p>Grace Deccainheritopenopen193-revision2012-01-18 14:53:092012-01-18 13:53:09193http://www.alicepegie.com/wordpress/wordpress/?p=1940revision0
19512010-01-15 14:56:142010-01-15 13:56:14<p><img src="images/dleur.jpg" title="douleur" style="display: block; margin-left: auto; margin-right: auto;" border="0" height="549" width="545" /></p> <div id="print" class="print" style="text-align: justify;"> <p class="spip"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"></span></span></p> L’un des gros mystères de la musique camerounaise laisse enfin (presque) tomber le masque. Alexandre Douala alias Douleur, l’homme de la révolte, de la critique, de l’humour noir aurait-il viré de bord&nbsp;? Tout porte à le croire à l’écoute de sa dernière production, sagement intitulée <em class="spip">C’est magique&nbsp;! </em>. L’enfant terrible des quartiers chauds de Douala renvoie aux calendes grecques son dégoût de la vie pour magnifier le monde&nbsp;: <em class="spip">Wonderful World</em>, faire une ode aux femmes&nbsp;: <em class="spip">Gloire aux femmes</em>, quémander l’amour&nbsp;: <em class="spip">Give me your love</em>... <p>&nbsp;</p> <p class="spip"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong class="spip">L’énigme Douleur</strong></span></span></p> <p class="spip"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sur le plan purement artistique, Douala Alexandre qui depuis son premier album s’était cantonné au makossa et ses différentes variantes (l’essewé, le zengué, l’assiko,...) fait un pied de nez à son passé. <em class="spip">C’est Magique&nbsp;!</em> est un subtil mélange de pachanga, de high-life, d’afrobeat, de reggae et bien évidemment de makossa. Un cocktail détonant mis en musique par des artistes aguerris tels Patrick Bebey (claviers), Paolo Ponty, Hamed Barry (guitare) ou encore Douglas Mbida et Isabelle Gonzalez (aux choeurs). La cerise sur le gâteau est l’invitation de Manu Dibango sur le titre <em class="spip">Wéa Matanda</em>, le plus abouti de l’album, et d’Arbogaste Mbella sur <em class="spip">Oa pè</em>.</span></span></p> <hr id="system-readmore" /> <p class="spip" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Douleur a fait ses débuts en 1983 avec un album éponyme. Hormis les sept lettres inscrites en blanc sur une pochette noire, personne ne sait vraiment qui est Douleur. Personne n’a vraiment vu son visage. Sur toutes les pochettes de ses albums, il apparaît plus ou moins masqué. Les fantasmes les plus insolites entourent ce chanteur aux envolées lyriques, et ce d’autant plus que l’homme est très discret et porte nuit et jour des lunettes noires. Sur son dernier opus, il laisse apparaître son visage aux trois-quarts. Sorte de Myster Hyde de la musique camerounaise, Douleur ne cesse d’entretenir sa légende.</span></span></p> <p class="spip" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <p><em><strong><b></b><b><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Sawa/Douleur|1||a{/nmap}</span></span></b></strong></em></p> </span></span></p> </div>Douleurpublishopenopendouleur2012-01-18 14:57:392012-01-18 13:57:390http://www.alicepegie.com/wordpress/wordpress/?p=1950post0
19612012-01-18 14:57:052012-01-18 13:57:05<p><img src="images/dleur.jpg" title="douleur" style="display: block; margin-left: auto; margin-right: auto;" border="0" height="549" width="545" /></p> <div id="print" class="print" style="text-align: justify;"> <p class="spip"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"></span></span></p> L’un des gros mystères de la musique camerounaise laisse enfin (presque) tomber le masque. Alexandre Douala alias Douleur, l’homme de la révolte, de la critique, de l’humour noir aurait-il viré de bord&nbsp;? Tout porte à le croire à l’écoute de sa dernière production, sagement intitulée <em class="spip">C’est magique&nbsp;! </em>. L’enfant terrible des quartiers chauds de Douala renvoie aux calendes grecques son dégoût de la vie pour magnifier le monde&nbsp;: <em class="spip">Wonderful World</em>, faire une ode aux femmes&nbsp;: <em class="spip">Gloire aux femmes</em>, quémander l’amour&nbsp;: <em class="spip">Give me your love</em>... <p>&nbsp;</p> <p class="spip"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong class="spip">L’énigme Douleur</strong></span></span></p> <p class="spip"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sur le plan purement artistique, Douala Alexandre qui depuis son premier album s’était cantonné au makossa et ses différentes variantes (l’essewé, le zengué, l’assiko,...) fait un pied de nez à son passé. <em class="spip">C’est Magique&nbsp;!</em> est un subtil mélange de pachanga, de high-life, d’afrobeat, de reggae et bien évidemment de makossa. Un cocktail détonant mis en musique par des artistes aguerris tels Patrick Bebey (claviers), Paolo Ponty, Hamed Barry (guitare) ou encore Douglas Mbida et Isabelle Gonzalez (aux choeurs). La cerise sur le gâteau est l’invitation de Manu Dibango sur le titre <em class="spip">Wéa Matanda</em>, le plus abouti de l’album, et d’Arbogaste Mbella sur <em class="spip">Oa pè</em>.</span></span></p> <hr id="system-readmore" /> <p class="spip" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Douleur a fait ses débuts en 1983 avec un album éponyme. Hormis les sept lettres inscrites en blanc sur une pochette noire, personne ne sait vraiment qui est Douleur. Personne n’a vraiment vu son visage. Sur toutes les pochettes de ses albums, il apparaît plus ou moins masqué. Les fantasmes les plus insolites entourent ce chanteur aux envolées lyriques, et ce d’autant plus que l’homme est très discret et porte nuit et jour des lunettes noires. Sur son dernier opus, il laisse apparaître son visage aux trois-quarts. Sorte de Myster Hyde de la musique camerounaise, Douleur ne cesse d’entretenir sa légende.</span></span></p> <p class="spip" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <p><em><strong><b></b><b><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Sawa/Douleur|1||a{/nmap}</span></span></b></strong></em></p> </span></span></p> </div>Douleurinheritopenopen195-revision2012-01-18 14:57:052012-01-18 13:57:05195http://www.alicepegie.com/wordpress/wordpress/?p=1960revision0
19712010-01-15 14:58:032010-01-15 13:58:03<a class="mb" title="folder.jpg" href="http://s1.e-monsite.com/2009/06/04/11/80693492folder-jpg.jpg"><img style="border: 0pt none; float: left;" title="folder.jpg" src="http://s1.e-monsite.com/2009/06/04/11/mini2-80693492folder-jpg.jpg" alt="" border="0" /></a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Auteur, compositeur, guitariste, interprète, Théo Blaise navigue de la <span class="spip_in">rumba </span> à l’afro-zouk en passant par la <span class="spip_in">musique mandingue </span>, le <span class="spip_in">mbaqanga </span> zoulou, le <span class="spip_in">reggae </span>, le merengue, le <span class="spip_in">mbalax </span> ou le folklore et le <span class="spip_in">soukouss </span> congolais...En témoigne son album <em class="spip">Freedom Spirit</em></span></span> <span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/africaine/Theo_Blaise_kounkou|1||a{/nmap}</span> . &nbsp;Théo Blaise kounkoupublishopenopentheo-blaise-kounkou2012-01-18 15:00:032012-01-18 14:00:030http://www.alicepegie.com/wordpress/wordpress/?p=1970post0
19812012-01-18 14:58:182012-01-18 13:58:18<p><a class="mb" title="folder.jpg" href="http://s1.e-monsite.com/2009/06/04/11/80693492folder-jpg.jpg"><img style="border: 0pt none; float: left;" title="folder.jpg" src="http://s1.e-monsite.com/2009/06/04/11/mini2-80693492folder-jpg.jpg" alt="" border="0" /></a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><hr id="system-readmore" />Auteur, compositeur, guitariste, interprète, Théo Blaise navigue de la <span class="spip_in">rumba </span> à l’afro-zouk en passant par la <span class="spip_in">musique mandingue </span>, le <span class="spip_in">mbaqanga </span> zoulou, le <span class="spip_in">reggae </span>, le merengue, le <span class="spip_in">mbalax </span> ou le folklore et le <span class="spip_in">soukouss </span> congolais...En témoigne son album <em class="spip">Freedom Spirit</em></span></span></p> <p><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/africaine/Theo_Blaise_kounkou|1||a{/nmap}<span style="font-size: 12pt; line-height: 115%;"></span></span></p> . <p>&nbsp;</p>Théo Blaise kounkouinheritopenopen197-revision2012-01-18 14:58:182012-01-18 13:58:18197http://www.alicepegie.com/wordpress/wordpress/?p=1980revision0
20012012-01-18 14:28:062012-01-18 13:28:06<p><span style="font-family: arial,helvetica,sans-serif;"><img src="images/eriko.jpg" alt="" style="display: block; margin-left: auto; margin-right: auto;" border="0" /><em><strong><b></b><b><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Eriko|1||a{/nmap}</span></span></b></strong></em></span></p>Erikoinheritopenopen185-revision-22012-01-18 14:28:062012-01-18 13:28:06185http://www.alicepegie.com/wordpress/wordpress/?p=2000revision0
19912012-01-18 14:58:492012-01-18 13:58:49<p><a class="mb" title="folder.jpg" href="http://s1.e-monsite.com/2009/06/04/11/80693492folder-jpg.jpg"><img style="border: 0pt none; float: left;" title="folder.jpg" src="http://s1.e-monsite.com/2009/06/04/11/mini2-80693492folder-jpg.jpg" alt="" border="0" /></a><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><hr id="system-readmore" />Auteur, compositeur, guitariste, interprète, Théo Blaise navigue de la <span class="spip_in">rumba </span> à l’afro-zouk en passant par la <span class="spip_in">musique mandingue </span>, le <span class="spip_in">mbaqanga </span> zoulou, le <span class="spip_in">reggae </span>, le merengue, le <span class="spip_in">mbalax </span> ou le folklore et le <span class="spip_in">soukouss </span> congolais...En témoigne son album <em class="spip">Freedom Spirit</em></span></span></p> <p><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/africaine/Theo_Blaise_kounkou|1||a{/nmap}<span style="font-size: 12pt; line-height: 115%;"></span></span></p> . <p>&nbsp;</p>Théo Blaise kounkouinheritopenopen197-revision-22012-01-18 14:58:492012-01-18 13:58:49197http://www.alicepegie.com/wordpress/wordpress/?p=1990revision0
20112010-01-15 15:01:362010-01-15 14:01:36<span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Je vous propose dans cette page quelques succès africains que j'aime beaucoup et qui j'espère vous plairont. La qualité n'est pas toujours top. </span></span><a href="images/stories/audio/Daouda/02_Mon_coeur_Balance.MP3"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img style="display: block; margin-left: auto; margin-right: auto;" title="daouda" src="images/daouda.jpg" alt="daouda" width="312" height="408" /> </span></span></a><!--more--><span style="font-size: 10pt;"><strong><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/africaine/Daouda|1||a{/nmap}</span></strong></span> <strong> </strong> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Né:</strong> </span>à Abidjan, Côte d'Ivoire de parents Burkinabè, comme Daouda Tou Koné</span></span></p> &nbsp; <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">D<strong>aouda</strong> fut très connu en Afrique francophone pendant les années 80. Sa musique est un mélange des mélodies mandingue avec des rythmes du makossa et du soukous. Il est souvent aidé par des musiciens camerounais ou congolais (du moins sur une partie de ses albums). Ses paroles en français, traitant les réalités de la vie quotidienne africaine, sont pleins d'humour. </span></span></p> Daouda Koné travailla comme jeune technicien de télévision à Abidjan. En amateur, il chanta et joua la guitare, et en jouant au studio il a été répéré pratiquement par hasard. Peu après, il était à la télévision et un contrat pour un premier disque fut signé. Ce premier single, « <em>Les Gbakas D'Abidjan</em> » sort et fut un succès imm&amp;eacutediat en 1976. Daouda décida de se consacrer entièrement à la musique, mais il lui a fallu plusieurs albums avant de percer avec l'album « <em>Le Sentimental '83</em> », un ré-enregistrement du tout premier album, « <em>Mon Coeur Balance</em> », cette fois-ci avec <strong>Souzy Kasseya</strong> à la guitare, <strong>Alhadji Toure</strong> à la basse, <strong>Jimmy et Fredo</strong> (parmi les cuivres les plus chauds de l'Afrique) et arrangeur <strong>Jimmy Hyacinthe</strong>. Cet album fut un énorme succès dans le monde francophone et a été réédité au Royaume-Uni en 1985 par Stern's. En 1984, il enregistra « <em>La Femme de Mon Patron</em> » avec le concours de plusieurs musiciens camerounais, ce qui a donné à l'album un <em>feeling</em> plutôt makossa. Vers la fin des années 80, la popularité de Daouda diminue. En 1995, il s'installe aux Etats Unis, où la suite de sa carrière musicale s'avère difficile. Tout de même, en 2007, Daouda enregistre un nouvel album avec le producteur <strong>Jean-Aristide Dico</strong>.Daoudapublishopenopendaouda2012-01-18 15:02:302012-01-18 14:02:300http://www.alicepegie.com/wordpress/wordpress/?p=2010post0
20212012-01-18 15:02:072012-01-18 14:02:07<span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Je vous propose dans cette page quelques succès africains que j'aime beaucoup et qui j'espère vous plairont. La qualité n'est pas toujours top. </span></span><a href="images/stories/audio/Daouda/02_Mon_coeur_Balance.MP3"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img style="display: block; margin-left: auto; margin-right: auto;" title="daouda" src="images/daouda.jpg" alt="daouda" width="312" height="408" /> </span></span></a><!--more--><span style="font-size: 10pt;"><strong><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/africaine/Daouda|1||a{/nmap}</span></strong></span> <strong> </strong> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Né:</strong> </span>à Abidjan, Côte d'Ivoire de parents Burkinabè, comme Daouda Tou Koné</span></span></p> &nbsp; <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">D<strong>aouda</strong> fut très connu en Afrique francophone pendant les années 80. Sa musique est un mélange des mélodies mandingue avec des rythmes du makossa et du soukous. Il est souvent aidé par des musiciens camerounais ou congolais (du moins sur une partie de ses albums). Ses paroles en français, traitant les réalités de la vie quotidienne africaine, sont pleins d'humour. </span></span></p> Daouda Koné travailla comme jeune technicien de télévision à Abidjan. En amateur, il chanta et joua la guitare, et en jouant au studio il a été répéré pratiquement par hasard. Peu après, il était à la télévision et un contrat pour un premier disque fut signé. Ce premier single, « <em>Les Gbakas D'Abidjan</em> » sort et fut un succès imm&amp;eacutediat en 1976. Daouda décida de se consacrer entièrement à la musique, mais il lui a fallu plusieurs albums avant de percer avec l'album « <em>Le Sentimental '83</em> », un ré-enregistrement du tout premier album, « <em>Mon Coeur Balance</em> », cette fois-ci avec <strong>Souzy Kasseya</strong> à la guitare, <strong>Alhadji Toure</strong> à la basse, <strong>Jimmy et Fredo</strong> (parmi les cuivres les plus chauds de l'Afrique) et arrangeur <strong>Jimmy Hyacinthe</strong>. Cet album fut un énorme succès dans le monde francophone et a été réédité au Royaume-Uni en 1985 par Stern's. En 1984, il enregistra « <em>La Femme de Mon Patron</em> » avec le concours de plusieurs musiciens camerounais, ce qui a donné à l'album un <em>feeling</em> plutôt makossa. Vers la fin des années 80, la popularité de Daouda diminue. En 1995, il s'installe aux Etats Unis, où la suite de sa carrière musicale s'avère difficile. Tout de même, en 2007, Daouda enregistre un nouvel album avec le producteur <strong>Jean-Aristide Dico</strong>.Daoudainheritopenopen201-revision2012-01-18 15:02:072012-01-18 14:02:07201http://www.alicepegie.com/wordpress/wordpress/?p=2020revision0
20312012-01-18 16:49:262012-01-18 15:49:26Vous souhaitez en savoir plus sur moi, me poser des questions, proposer un article ou partenariat? N’hésitez pas à me contacter en utilisant le formulaire ci-dessous, je ferais de mon mieux pour vous répondre au plus vite. [cispm-contact-mail] Contactez Moipublishopenopenvous-aimez-mes-articles2012-01-18 20:36:092012-01-18 19:36:090http://www.alicepegie.com/wordpress/wordpress/?page_id=2030page0
20412012-01-18 15:11:412012-01-18 14:11:41Vous Aimez mes Articles?inheritopenopen203-revision2012-01-18 15:11:412012-01-18 14:11:41203http://www.alicepegie.com/wordpress/wordpress/?p=2040revision0
20512010-01-15 16:18:252010-01-15 15:18:25<p style="text-align: justify;">Normal 0 21 false false false MicrosoftInternetExplorer4 <a class="mb" href="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//blog17dec-007.jpg"><img src="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//blog17dec-007.jpg" alt="" align="left" border="0" /></a> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Hier c'était ma fête!! et j'ai eu le plaisir de recevoir 2 gourmands qui y ont pensé et j'ai eu un gage. Danser en string rouge sur la table ou faire un gateau lol!! les coquins ils savaient bien que je choisirais le gâteau bien sûre!!! alors j'ai fais ca comme ca en partant de la base d'un gâteau à savoir oeuf, beurre, sucre, farine. Sauf que j'ai opté pour ceci.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ingreditens pour 6 personnes </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">150 g de chocolat blanc</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">100 g de beurre 50 g de vergeoise 2 oeufs 110g de poudre de spéculoos <!--more--><strong></strong><strong> </strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Préchauffer le four à 180°C. <a class="mb" href="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//SNV33619.jpg"><img src="http://s2.e-monsite.com/2009/12/17/12/resize_128_128//SNV33619.jpg" alt="" border="0" /></a> Réduisez vos <a href="blog,mes-speculoos,190735.html">spéculoos </a>en poudre. <a class="mb" href="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//SNV33625.jpg"><img src="http://s2.e-monsite.com/2009/12/17/12/resize_128_128//SNV33625.jpg" alt="" border="0" /></a> Faire fondre le beurre et le chocolat au bain marie. <a class="mb" href="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//SNV33628.jpg"><img src="http://s2.e-monsite.com/2009/12/17/12/resize_128_128//SNV33628.jpg" alt="" border="0" /></a> Battre les oeufs, ajouter la vergeoise le chocolat blanc fondu avec le beurre, <a class="mb" href="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//SNV33630.jpg"><img src="http://s2.e-monsite.com/2009/12/17/12/resize_128_128//SNV33630.jpg" alt="" border="0" /></a> et la poudre de spéculoos tamisée Bien mélanger. Versez la préparation dans un moule, et faites cuire 30 minutes, après 20 minutes vérifiez avec un couteau. Et dégustez!!.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Un gâteau moelleux et savoureux à accompagnée d'une boisson chaude en ces jours de grand froid!!!</span></span></p>Le Moelleux de la Ste Alicepublishopenopenle-moelleux-de-la-ste-alice2012-01-18 16:19:202012-01-18 15:19:200http://www.alicepegie.com/wordpress/wordpress/?p=2050post0
20712010-01-15 16:22:442010-01-15 15:22:44<p class="MsoNormal" style="text-align: justify;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-866.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_250_250//blog-866.jpg" alt="" align="left" border="0" /></a> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour environ 15 croquettes</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-300g de filet de poisson (pour moi sole)</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-1 cas. de chapelure de pain</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-1 oeuf -1 filet d'huile d'olive -du sel </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-de l'huile végétale </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-<a href="blog,sole-braisee-a-la-camerounaise,185327.html"> de la marinade pour poisson </a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- 1cc d’ail en poudre</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- 1cc d’échalote séchée</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- 1cc de persil séché<!--more--></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-740.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-740.jpg" alt="" align="left" border="0" /></a> Mixez la chaire de sole, le sel et <a href="blog,sole-braisee-a-la-camerounaise,185327.html">la marinade.</a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-869.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-869.jpg" alt="" align="left" border="0" /></a>Battez l’œuf en omelette,</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-846.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-846.jpg" alt="" align="left" border="0" /></a>Dans un bol versez env 5cas de chapelure de pain, ajoutez y 1cc de persil, 1cc d’oignon et 1cc d’ail </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-861.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-861.jpg" alt="" align="left" border="0" /></a>Formez les croquettes, <a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-862.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-862.jpg" alt="" align="left" border="0" /></a>roulez-les dans l’œuf battu, </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-863.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-863.jpg" alt="" align="left" border="0" /></a> puis dans la chapelure assaisonnée.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Faite-les dorer dans l'huile chaude quelques minutes sur chaque face.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Et dégustez</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Bon Appétit!!!</span></span></p>Croquettes de Poissonpublishopenopencroquettes-de-poisson2012-01-18 16:41:182012-01-18 15:41:180http://www.alicepegie.com/wordpress/wordpress/?p=2070post0
20612012-01-18 16:18:422012-01-18 15:18:42<p style="text-align: justify;">Normal 0 21 false false false MicrosoftInternetExplorer4 <a class="mb" href="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//blog17dec-007.jpg"><img src="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//blog17dec-007.jpg" border="0" alt="" align="left" /></a> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Hier c'était ma fête!! et j'ai eu le plaisir de recevoir 2 gourmands qui y ont pensé et j'ai eu un gage. Danser en string rouge sur la table ou faire un gateau lol!! les coquins ils savaient bien que je choisirais le gâteau bien sûre!!! alors j'ai fais ca comme ca en partant de la base d'un gâteau à savoir oeuf, beurre, sucre, farine. Sauf que j'ai opté pour ceci.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ingreditens pour 6 personnes<br /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">150 g de chocolat blanc</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">100 g de beurre <br />50 g de vergeoise<br />2 oeufs <br />110g de poudre de spéculoos <strong></strong><strong> </strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <hr id="system-readmore" /> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong></strong><strong><br /></strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Préchauffer le four à 180°C. <br /><a class="mb" href="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//SNV33619.jpg"><img src="http://s2.e-monsite.com/2009/12/17/12/resize_128_128//SNV33619.jpg" border="0" alt="" /></a> Réduisez vos <a href="blog,mes-speculoos,190735.html">spéculoos </a>en poudre. <a class="mb" href="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//SNV33625.jpg"><img src="http://s2.e-monsite.com/2009/12/17/12/resize_128_128//SNV33625.jpg" border="0" alt="" /></a> Faire fondre le beurre et le chocolat au bain marie. <br /><a class="mb" href="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//SNV33628.jpg"><img src="http://s2.e-monsite.com/2009/12/17/12/resize_128_128//SNV33628.jpg" border="0" alt="" /></a> Battre les oeufs, ajouter la vergeoise le chocolat blanc fondu avec le beurre, <a class="mb" href="http://s2.e-monsite.com/2009/12/17/12/resize_550_550/rotate_0//SNV33630.jpg"><img src="http://s2.e-monsite.com/2009/12/17/12/resize_128_128//SNV33630.jpg" border="0" alt="" /></a> et la poudre de spéculoos tamisée Bien mélanger.<br />Versez la préparation dans un moule, et faites cuire 30 minutes, après 20 minutes vérifiez avec un couteau. Et dégustez!!.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Un gâteau moelleux et savoureux à accompagnée d'une boisson chaude en ces jours de grand froid!!!</span></span></p>Le Moelleux de la Ste Aliceinheritopenopen205-revision2012-01-18 16:18:422012-01-18 15:18:42205http://www.alicepegie.com/wordpress/wordpress/?p=2060revision0
20812012-01-18 16:20:422012-01-18 15:20:42<p class="MsoNormal" style="text-align: justify;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-866.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_250_250//blog-866.jpg" alt="" align="left" border="0" /></a> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour environ 15 croquettes</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-300g de filet de poisson (pour moi sole)</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-1 cas. de chapelure de pain</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-1 oeuf -1 filet d'huile d'olive -du sel </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-de l'huile végétale </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-<a href="blog,sole-braisee-a-la-camerounaise,185327.html"> de la marinade pour poisson </a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- 1cc d’ail en poudre</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- 1cc d’échalote séchée</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- 1cc de persil séché<!--more--></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-740.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-740.jpg" alt="" align="left" border="0" /></a> Mixez la chaire de sole, le sel et <a href="blog,sole-braisee-a-la-camerounaise,185327.html">la marinade.</a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-869.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-869.jpg" alt="" align="left" border="0" /></a>Battez l’œuf en omelette,</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-846.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-846.jpg" alt="" align="left" border="0" /></a>Dans un bol versez env 5cas de chapelure de pain, ajoutez y 1cc de persil, 1cc d’oignon et 1cc d’ail </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-861.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-861.jpg" alt="" align="left" border="0" /></a>Formez les croquettes, <a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-862.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-862.jpg" alt="" align="left" border="0" /></a>roulez-les dans l’œuf battu, </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-863.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-863.jpg" alt="" align="left" border="0" /></a> puis dans la chapelure assaisonnée.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Faite-les dorer dans l'huile chaude quelques minutes sur chaque face.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Et dégustez</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Bon Appétit!!!</span></span></p>Croquettes de Poissoninheritopenopen207-revision2012-01-18 16:20:422012-01-18 15:20:42207http://www.alicepegie.com/wordpress/wordpress/?p=2080revision0
20912010-01-15 16:23:052010-01-15 15:23:05<img style="display: block; margin-left: auto; margin-right: auto;" title="sachertorte" src="images/stories/sachertorte/sacher.jpg" alt="" width="600" height="277" border="0" /> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">voici je crois le gâteau que je préfère de tous, il est bon, moelleux et léger (je parle de texture!!)</span></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Ingrédients : pour 6 à 8 parts</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">100 g de chocolat noir 100g chocolat blanc, 4 jaunes d œuf 4 jaunes d oeuf 60 g de beurre fondu 60 g de beurre fondu 1/2 cuillerée à café de vanille 1/2 cuillerée à café de citron 5 blancs d œufs 5 blancs d oeufs 50 g de sucre 50 g de sucre 30 g de farine (1/2 maïzena) 30 g de farine tamisée<!--more--></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Faites chauffer le four à 180 Degrés. Beurrez et farinez le moule. </span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Faites fondre chaque chocolat au bain-marie, en le remuant de temps en temps avec une cuillère en bois.</span> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-749.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher1.jpg" alt="" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Battez ensuite les jaunes d’œufs à la fourchette, dans un bol, et ajoutez-y le chocolat, le beurre fondu et l’essence de vanille pour le chocolat noir et l’essence de citron pour le chocolat blanc.</span> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-759.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher2.jpg" alt="" width="384" height="287" border="0" /></a><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-758.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher3.jpg" alt="" width="387" height="287" border="0" /></a> </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Fouettez les blancs avec le sel jusqu'à ce qu ils moussent, puis ajoutez-y le sucre, 1 cuillerée à soupe à la fois, en continuant à battre jusqu'à ce que les blancs forment des pics neigeux tout à fait fermes, lorsque vous soulevez le batteur hors de la terrine.</span> </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-764.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher4.jpg" alt="" width="373" height="276" border="0" /></a><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-766.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher5.jpg" alt="" width="376" height="275" border="0" /></a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Mélangez environ 1/3 des blancs d'oeufs battus au mélange chocolaté</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-775.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher6.jpg" alt="" width="374" height="277" border="0" /></a><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-767.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher9.jpg" alt="" width="374" height="278" border="0" /></a> <span style="color: black;">puis versez le mélange au chocolat sur le reste des blancs.</span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-771.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher10.jpg" alt="" width="472" height="350" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Saupoudrez la surface de farine.</span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-773.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher11.jpg" alt="" width="602" height="446" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;"> Avec une spatule en caoutchouc, soulevez le mélange, au lieu de le tourner, </span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-772.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher12.jpg" alt="" width="360" height="334" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">et remuez, jusqu'à ce qu il reste aucune trace blanche. Prenez garde de ne pas remuer trop longtemps.</span> </span></span></p> <span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Versez ces pâtes dans le moule en alternant chocolat noir/puis blanc.</span> <span style="color: black;"> Laissez cuire 25 à 30 minutes ou jusqu'à ce que la pâte soit gonflée et sèche et qu 'un bâtonnet, plongé au milieu, en ressorte propre. Retirez du four. Laissez refroidir.</span> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-494.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" title="sachertorte" src="images/stories/sachertorte/sacher13.jpg" alt="" width="550" height="255" border="0" /></a> </span>Sachertorte aux 2 chocolatspublishopenopensachertorte-aux-2-chocolats2012-01-18 16:24:322012-01-18 15:24:320http://www.alicepegie.com/wordpress/wordpress/?p=2090post0
21012012-01-18 16:24:072012-01-18 15:24:07<img style="display: block; margin-left: auto; margin-right: auto;" title="sachertorte" src="images/stories/sachertorte/sacher.jpg" alt="" width="600" height="277" border="0" /> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">voici je crois le gâteau que je préfère de tous, il est bon, moelleux et léger (je parle de texture!!)</span></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Ingrédients : pour 6 à 8 parts</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">100 g de chocolat noir 100g chocolat blanc, 4 jaunes d œuf 4 jaunes d oeuf 60 g de beurre fondu 60 g de beurre fondu 1/2 cuillerée à café de vanille 1/2 cuillerée à café de citron 5 blancs d œufs 5 blancs d oeufs 50 g de sucre 50 g de sucre 30 g de farine (1/2 maïzena) 30 g de farine tamisée<!--more--></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Faites chauffer le four à 180 Degrés. Beurrez et farinez le moule. </span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Faites fondre chaque chocolat au bain-marie, en le remuant de temps en temps avec une cuillère en bois.</span> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-749.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher1.jpg" alt="" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Battez ensuite les jaunes d’œufs à la fourchette, dans un bol, et ajoutez-y le chocolat, le beurre fondu et l’essence de vanille pour le chocolat noir et l’essence de citron pour le chocolat blanc.</span> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-759.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher2.jpg" alt="" width="384" height="287" border="0" /></a><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-758.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher3.jpg" alt="" width="387" height="287" border="0" /></a> </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Fouettez les blancs avec le sel jusqu'à ce qu ils moussent, puis ajoutez-y le sucre, 1 cuillerée à soupe à la fois, en continuant à battre jusqu'à ce que les blancs forment des pics neigeux tout à fait fermes, lorsque vous soulevez le batteur hors de la terrine.</span> </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-764.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher4.jpg" alt="" width="373" height="276" border="0" /></a><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-766.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher5.jpg" alt="" width="376" height="275" border="0" /></a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Mélangez environ 1/3 des blancs d'oeufs battus au mélange chocolaté</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-775.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher6.jpg" alt="" width="374" height="277" border="0" /></a><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-767.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher9.jpg" alt="" width="374" height="278" border="0" /></a> <span style="color: black;">puis versez le mélange au chocolat sur le reste des blancs.</span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-771.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher10.jpg" alt="" width="472" height="350" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Saupoudrez la surface de farine.</span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-773.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher11.jpg" alt="" width="602" height="446" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;"> Avec une spatule en caoutchouc, soulevez le mélange, au lieu de le tourner, </span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-772.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher12.jpg" alt="" width="360" height="334" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">et remuez, jusqu'à ce qu il reste aucune trace blanche. Prenez garde de ne pas remuer trop longtemps.</span> </span></span></p> <span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Versez ces pâtes dans le moule en alternant chocolat noir/puis blanc.</span> <span style="color: black;"> Laissez cuire 25 à 30 minutes ou jusqu'à ce que la pâte soit gonflée et sèche et qu 'un bâtonnet, plongé au milieu, en ressorte propre. Retirez du four. Laissez refroidir.</span> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-494.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" title="sachertorte" src="images/stories/sachertorte/sacher13.jpg" alt="" width="550" height="255" border="0" /></a> </span>Sachertorte aux 2 chocolatsinheritopenopen209-revision2012-01-18 16:24:072012-01-18 15:24:07209http://www.alicepegie.com/wordpress/wordpress/?p=2100revision0
21112012-01-18 16:25:362012-01-18 15:25:36<img style="display: block; margin-left: auto; margin-right: auto;" title="sachertorte" src="images/stories/sachertorte/sacher.jpg" alt="" width="600" height="277" border="0" /> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">voici je crois le gâteau que je préfère de tous, il est bon, moelleux et léger (je parle de texture!!)</span></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Ingrédients : pour 6 à 8 parts</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">100 g de chocolat noir 100g chocolat blanc, 4 jaunes d œuf 4 jaunes d oeuf 60 g de beurre fondu 60 g de beurre fondu 1/2 cuillerée à café de vanille 1/2 cuillerée à café de citron 5 blancs d œufs 5 blancs d oeufs 50 g de sucre 50 g de sucre 30 g de farine (1/2 maïzena) 30 g de farine tamisée<!--more--></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Faites chauffer le four à 180 Degrés. Beurrez et farinez le moule. </span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Faites fondre chaque chocolat au bain-marie, en le remuant de temps en temps avec une cuillère en bois.</span> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-749.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher1.jpg" alt="" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Battez ensuite les jaunes d’œufs à la fourchette, dans un bol, et ajoutez-y le chocolat, le beurre fondu et l’essence de vanille pour le chocolat noir et l’essence de citron pour le chocolat blanc.</span> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-759.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher2.jpg" alt="" width="384" height="287" border="0" /></a><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-758.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher3.jpg" alt="" width="387" height="287" border="0" /></a> </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Fouettez les blancs avec le sel jusqu'à ce qu ils moussent, puis ajoutez-y le sucre, 1 cuillerée à soupe à la fois, en continuant à battre jusqu'à ce que les blancs forment des pics neigeux tout à fait fermes, lorsque vous soulevez le batteur hors de la terrine.</span> </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-764.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher4.jpg" alt="" width="373" height="276" border="0" /></a><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-766.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher5.jpg" alt="" width="376" height="275" border="0" /></a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Mélangez environ 1/3 des blancs d'oeufs battus au mélange chocolaté</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-775.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher6.jpg" alt="" width="374" height="277" border="0" /></a><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-767.jpg"><img title="sachertorte" src="images/stories/sachertorte/sacher9.jpg" alt="" width="374" height="278" border="0" /></a> <span style="color: black;">puis versez le mélange au chocolat sur le reste des blancs.</span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-771.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher10.jpg" alt="" width="472" height="350" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Saupoudrez la surface de farine.</span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-773.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher11.jpg" alt="" width="602" height="446" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;"> Avec une spatule en caoutchouc, soulevez le mélange, au lieu de le tourner, </span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-772.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sachertorte/sacher12.jpg" alt="" width="360" height="334" border="0" /></a> </span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">et remuez, jusqu'à ce qu il reste aucune trace blanche. Prenez garde de ne pas remuer trop longtemps.</span> </span></span></p> <span style="font-family: arial,helvetica,sans-serif;"><span style="color: black;">Versez ces pâtes dans le moule en alternant chocolat noir/puis blanc.</span> <span style="color: black;"> Laissez cuire 25 à 30 minutes ou jusqu'à ce que la pâte soit gonflée et sèche et qu 'un bâtonnet, plongé au milieu, en ressorte propre. Retirez du four. Laissez refroidir.</span> <a class="mb" href="http://s2.e-monsite.com/2009/12/15/05/resize_550_550/rotate_0//blog-494.jpg"><img style="display: block; margin-left: auto; margin-right: auto;" title="sachertorte" src="images/stories/sachertorte/sacher13.jpg" alt="" width="550" height="255" border="0" /></a> </span>Sachertorte aux 2 chocolatsinheritopenopen209-autosave2012-01-18 16:25:362012-01-18 15:25:36209http://www.alicepegie.com/wordpress/wordpress/?p=2110revision0
21212010-01-15 16:30:472010-01-15 15:30:47<img style="display: block; margin-left: auto; margin-right: auto;" src="images/creme%20karit%20aloe.jpg" alt="" width="600" height="449" border="0" /> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Depuis la crème noisette que j'avais fait pour ma fille j'ai testé 3 autres recettes pour elle et voici celle qui me plait le mieux pour l'instant.</span></span> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour 100g de crème</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">30g de gel d'aloe vera</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">35g de macérât hydro glycériné de Calendula</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">20 gr Beurre de Karité 15g de macérât d'Aloe vera</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5 ml Ester de Sucre 5 ml Émulsifiant MF 0.5g d'EPP</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1g d'arôme naturel de vanille<!--more--></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">S'agissant d'une crème pour ma fille je suis plus particulièrement attentive aux règles d'hygiène et je n'en fait pas beaucoup pour limiter la conservation (100g lui font 15 à 20 jours donc ca me fait 2 tambouilles par mois).</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/11/20/05/resize_550_550/rotate_0//creme-Karite-Aloe1.png"><img style="float: left;" src="images/creme-karite-aloe1.png" alt="" border="0" /></a></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-stérilisez votre matériel, portez des gants et passez vous un peu d'alcool sur les gants une fois que vous les avez mis.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Faites fondre votre beurre de Karité et le laisser refroidir</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pendant ce temps pesez le reste des ingrédients (pensez à tamiser les poudres pour limiter la formation des grumeaux)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Mettez touts les ingrédients dans un récipient stérile et chaud puis mixer le tout avec un mixeur plongeant puissant pendant 5 minutes.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Versez votre crème dans un contenant stérile.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingrédients : </strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Gel d'aloe vera :</strong> apaisant, cicatrisant, hydratant et nourrissant. Il est aussi purifiant, régénérant et adoucissant.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Calendula</strong> : Anti-inflammatoire puissant, cicatrisant et aseptisant, reconstituant et revitalisant, adoucissant et apaisant</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Macérât huileux d'Aloe vera :</strong> Nourrit, adoucit et apaise la peau, l'illumine et la revitalise, favorise sa cicatrisation et sa régénération, l'assouplit la rend plus élastique.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cette crème convient aussi bien aux adultes.</span></span></p> <p align="center"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/11/22/10/resize_550_550/rotate_0//DSC00025.jpg"><img title="crème corps kartié aloé véra" src="images/creme%20karit%20aloe2.jpg" alt="" width="600" height="445" border="0" /></a></span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Adaptez votre crème</strong></span></span></span></p> <ul> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></span></li> </ul> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Crème Corps Protectrice Karité & Aloe-Vérapublishopenopencreme-corps-protectrice-karite-aloe-vera2012-01-18 16:37:462012-01-18 15:37:460http://www.alicepegie.com/wordpress/wordpress/?p=2120post0
21312012-01-18 16:31:372012-01-18 15:31:37<img style="display: block; margin-left: auto; margin-right: auto;" src="images/creme%20karit%20aloe.jpg" alt="" width="600" height="449" border="0" /> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Depuis la crème noisette que j'avais fait pour ma fille j'ai testé 3 autres recettes pour elle et voici celle qui me plait le mieux pour l'instant.</span></span> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour 100g de crème</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">30g de gel d'aloe vera</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">35g de macérât hydro glycériné de Calendula</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">20 gr Beurre de Karité 15g de macérât d'Aloe vera</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5 ml Ester de Sucre 5 ml Émulsifiant MF 0.5g d'EPP</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1g d'arôme naturel de vanille<!--more--></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">S'agissant d'une crème pour ma fille je suis plus particulièrement attentive aux règles d'hygiène et je n'en fait pas beaucoup pour limiter la conservation (100g lui font 15 à 20 jours donc ca me fait 2 tambouilles par mois).</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/11/20/05/resize_550_550/rotate_0//creme-Karite-Aloe1.png"><img style="float: left;" src="images/creme-karite-aloe1.png" alt="" border="0" /></a></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-stérilisez votre matériel, portez des gants et passez vous un peu d'alcool sur les gants une fois que vous les avez mis.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Faites fondre votre beurre de Karité et le laisser refroidir</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pendant ce temps pesez le reste des ingrédients (pensez à tamiser les poudres pour limiter la formation des grumeaux)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Mettez touts les ingrédients dans un récipient stérile et chaud puis mixer le tout avec un mixeur plongeant puissant pendant 5 minutes.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Versez votre crème dans un contenant stérile.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingrédients : </strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Gel d'aloe vera :</strong> apaisant, cicatrisant, hydratant et nourrissant. Il est aussi purifiant, régénérant et adoucissant.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Calendula</strong> : Anti-inflammatoire puissant, cicatrisant et aseptisant, reconstituant et revitalisant, adoucissant et apaisant</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Macérât huileux d'Aloe vera :</strong> Nourrit, adoucit et apaise la peau, l'illumine et la revitalise, favorise sa cicatrisation et sa régénération, l'assouplit la rend plus élastique.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cette crème convient aussi bien aux adultes.</span></span></p> <p align="center"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/11/22/10/resize_550_550/rotate_0//DSC00025.jpg"><img title="crème corps kartié aloé véra" src="images/creme%20karit%20aloe2.jpg" alt="" width="600" height="445" border="0" /></a></span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Adaptez votre crème</strong></span></span></span></p> <ul> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></span></li> </ul> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Crème Corps Protectrice Karité & Aloe-Vérainheritopenopen212-revision2012-01-18 16:31:372012-01-18 15:31:37212http://www.alicepegie.com/wordpress/wordpress/?p=2130revision0
21412012-01-18 16:33:292012-01-18 15:33:29<img style="display: block; margin-left: auto; margin-right: auto;" src="images/creme%20karit%20aloe.jpg" alt="" width="600" height="449" border="0" /> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Depuis la crème noisette que j'avais fait pour ma fille j'ai testé 3 autres recettes pour elle et voici celle qui me plait le mieux pour l'instant.</span></span> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour 100g de crème</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">30g de gel d'aloe vera</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">35g de macérât hydro glycériné de Calendula</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">20 gr Beurre de Karité 15g de macérât d'Aloe vera</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5 ml Ester de Sucre 5 ml Émulsifiant MF 0.5g d'EPP</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1g d'arôme naturel de vanille<!--more--></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">S'agissant d'une crème pour ma fille je suis plus particulièrement attentive aux règles d'hygiène et je n'en fait pas beaucoup pour limiter la conservation (100g lui font 15 à 20 jours donc ca me fait 2 tambouilles par mois).</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/11/20/05/resize_550_550/rotate_0//creme-Karite-Aloe1.png"><img style="float: left;" src="images/creme-karite-aloe1.png" alt="" border="0" /></a></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-stérilisez votre matériel, portez des gants et passez vous un peu d'alcool sur les gants une fois que vous les avez mis.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Faites fondre votre beurre de Karité et le laisser refroidir</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pendant ce temps pesez le reste des ingrédients (pensez à tamiser les poudres pour limiter la formation des grumeaux)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Mettez touts les ingrédients dans un récipient stérile et chaud puis mixer le tout avec un mixeur plongeant puissant pendant 5 minutes.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Versez votre crème dans un contenant stérile.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingrédients : </strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Gel d'aloe vera :</strong> apaisant, cicatrisant, hydratant et nourrissant. Il est aussi purifiant, régénérant et adoucissant.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Calendula</strong> : Anti-inflammatoire puissant, cicatrisant et aseptisant, reconstituant et revitalisant, adoucissant et apaisant</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Macérât huileux d'Aloe vera :</strong> Nourrit, adoucit et apaise la peau, l'illumine et la revitalise, favorise sa cicatrisation et sa régénération, l'assouplit la rend plus élastique.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cette crème convient aussi bien aux adultes.</span></span></p> <p align="center"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/11/22/10/resize_550_550/rotate_0//DSC00025.jpg"><img title="crème corps kartié aloé véra" src="images/creme%20karit%20aloe2.jpg" alt="" width="600" height="445" border="0" /></a></span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Adaptez votre crème</strong></span></span></span></p> <ul> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></span></li> </ul> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Crème Corps Protectrice Karité & Aloe-Vérainheritopenopen212-autosave2012-01-18 16:33:292012-01-18 15:33:29212http://www.alicepegie.com/wordpress/wordpress/?p=2140revision0
21512012-01-18 16:32:242012-01-18 15:32:24<img style="display: block; margin-left: auto; margin-right: auto;" src="images/creme%20karit%20aloe.jpg" alt="" width="600" height="449" border="0" /> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Depuis la crème noisette que j'avais fait pour ma fille j'ai testé 3 autres recettes pour elle et voici celle qui me plait le mieux pour l'instant.</span></span> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour 100g de crème</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">30g de gel d'aloe vera</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">35g de macérât hydro glycériné de Calendula</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">20 gr Beurre de Karité 15g de macérât d'Aloe vera</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5 ml Ester de Sucre 5 ml Émulsifiant MF 0.5g d'EPP</span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1g d'arôme naturel de vanille<!--more--></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">S'agissant d'une crème pour ma fille je suis plus particulièrement attentive aux règles d'hygiène et je n'en fait pas beaucoup pour limiter la conservation (100g lui font 15 à 20 jours donc ca me fait 2 tambouilles par mois).</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/11/20/05/resize_550_550/rotate_0//creme-Karite-Aloe1.png"><img style="float: left;" src="images/creme-karite-aloe1.png" alt="" border="0" /></a></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-stérilisez votre matériel, portez des gants et passez vous un peu d'alcool sur les gants une fois que vous les avez mis.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Faites fondre votre beurre de Karité et le laisser refroidir</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pendant ce temps pesez le reste des ingrédients (pensez à tamiser les poudres pour limiter la formation des grumeaux)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Mettez touts les ingrédients dans un récipient stérile et chaud puis mixer le tout avec un mixeur plongeant puissant pendant 5 minutes.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Versez votre crème dans un contenant stérile.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingrédients : </strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Gel d'aloe vera :</strong> apaisant, cicatrisant, hydratant et nourrissant. Il est aussi purifiant, régénérant et adoucissant.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Calendula</strong> : Anti-inflammatoire puissant, cicatrisant et aseptisant, reconstituant et revitalisant, adoucissant et apaisant</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Macérât huileux d'Aloe vera :</strong> Nourrit, adoucit et apaise la peau, l'illumine et la revitalise, favorise sa cicatrisation et sa régénération, l'assouplit la rend plus élastique.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cette crème convient aussi bien aux adultes.</span></span></p> <p align="center"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/11/22/10/resize_550_550/rotate_0//DSC00025.jpg"><img title="crème corps kartié aloé véra" src="images/creme%20karit%20aloe2.jpg" alt="" width="600" height="445" border="0" /></a></span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Adaptez votre crème</strong></span></span></span></p> <ul> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></span></li> </ul> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Crème Corps Protectrice Karité & Aloe-Vérainheritopenopen212-revision-22012-01-18 16:32:242012-01-18 15:32:24212http://www.alicepegie.com/wordpress/wordpress/?p=2150revision0
21612010-01-15 16:38:042010-01-15 15:38:04<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span class="mb">pour cette crème, je me suis inspiré de <a href="http://www.aroma-zone.com/aroma/FicheBeurrecacao.asp#mousse_chocolatee">celle ci</a> de chez AZ</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="creme visage2.jpg" href="http://s1.e-monsite.com/2009/09/17/10/71965484creme-visage2-jpg.jpg"><img title="creme visage2.jpg" src="http://s1.e-monsite.com/2009/09/17/10/mini2-71965484creme-visage2-jpg.jpg" alt="" border="0" /></a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #800000;"><strong>Prix env 4.46 pour 50g temps de réalisation 25 min </strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>PHASE AQUEUSE 57.36 %</strong> Macérât hydro glycériné de Centella asiatica à 10% 11.6g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Macérât hydro glycériné de Busserole à 10% 10.4g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>PHASE HUILEUSE 29.72 %</strong> HV Rose Musquée 10.2g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Cacao Bio 1.2g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>EMULSIFIANT 7.82%</strong> Cire Emulsifiante 3 g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ACTIFS 0.5%</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Huile essentielle de Bois de Rose 7 gouttes<!--more--></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>EXTRAIT AROMATIQUE 4 %</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Extrait aromatique de Cacao 1.5 g</span></span></p> <strong>CONSERVATEURS 0.6 %</strong> EPP 0.25g <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="creme visage.jpg" src="http://s1.e-monsite.com/2009/09/17/10/67872344creme-visage-jpg.jpg" alt="" border="0" /></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/ Transférez l'huile de Rose Musquée + beurre de Cacao + cire émulsifiante dans un récipient.</span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ Dans autre récipient, transférez les macérâts hydro glycérinés</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ Faites chauffer séparément au bain-marie les deux phases.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ Lorsque les deux phases sont à la même température, versez lentement la phase huileuse dans la phase aqueuse sans cesser d'agiter vigoureusement au fouet</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5/ Sans cesser d'agiter, mettez le récipient dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">6/ Ajoutez enfin l'Extrait aromatique de Cacao, l'huile essentielle et Extrait de Pépins de Pamplemousse puis mélangez bien entre chaque ajout.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">7/ Pour finir, reprenez le fouet et agitez encore pendant 2 minutes par de légers mouvements.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">8/ Arrêtez l'agitation, puis transférez directement la préparation dans votre contenant sans attendre.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cette crème chocolatée est assez épaisse et pour des raisons pratiques je préfère la mettre en flacon plutôt qu'en pot. La texture me convient mais si vous la voulez vous pouvez augmenter la phase aqueuse.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Stockez votre crème à l'abri de la lumière et de la chaleur. Cette quantité me fait environ 6 semaines à raison d'une utilisation par jour.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cette fois je n'ai pas mis l'extrait aromatique d'où la couleur plutôt café.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Choix des ingredients:</strong></span></span></span></p> <ul style="text-align: justify;"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>Macérât hydro glycériné de Centella asiatica à 10% :</strong> Plante </span></span><span style="color: #000000;"> Connue pour stimuler la production de collagène, elle répare la peau, retarde le vieillissement cutané et permet de prévenir les vergetures.</span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>Macérât hydro glycériné de Busserole à 10% </strong>:la Busserole est une plante qui </span></span><span style="color: #000000;">produit un actif clarifiant naturel, l'arbutine, en concentration importante. Cette substance, qui est un dérivé naturel de l'hydroquinone possède une efficacité supérieure à cette dernière, sans en présenter la toxicité. L'arbutine intervient uniquement sur la synthèse excessive de la mélanine (taches de grossesse, vieillissement de la peau etc.....) à des doses faibles. permet de clarifier et uniformiser le teint sans irritation ni sensibilisation. </span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>HV Rose Musquée</strong>: </span></span>Idéale pour la jeunesse et l'éclat de la peau. Elle a une action régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. Il en résultera une peau plus lisse avec pour effet une fraîcheur retrouvée et un nouvel éclat</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="line-height: 115%;"><strong>Beurre de Cacao Bio</strong>: </span> idéal pour lutter contre les effets néfastes du temps, redonne élasticité et tonus à la peau, Nourrissant et protecteur, il a une action apaisante</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="line-height: 115%;"><strong>Huile essentielle de Bois de Rose: </strong></span><span style="color: #003366;"><span style="color: #000000;">reconnue pour son effet rajeunissant et régénérant sur la peau. Elle s'emploie ainsi largement pour estomper les rides et régénérer les peaux fatiguées. </span> </span></span></span></li> </ul> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Adaptez votre crème</strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> Normal 0 21 false false false FR X-NONE X-NONE MicrosoftInternetExplorer4 <p style="text-align: justify;"></p> <ul style="text-align: justify;"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></span></li> </ul> <p style="text-align: justify;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span></p>Creme eclaircissante chocolatée pour le Visagepublishopenopencreme-eclaircissante-chocolatee-pour-le-visage2012-01-18 16:39:142012-01-18 15:39:140http://www.alicepegie.com/wordpress/wordpress/?p=2160post0
21712012-01-18 16:39:072012-01-18 15:39:07<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span class="mb">pour cette crème, je me suis inspiré de <a href="http://www.aroma-zone.com/aroma/FicheBeurrecacao.asp#mousse_chocolatee">celle ci</a> de chez AZ</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="creme visage2.jpg" href="http://s1.e-monsite.com/2009/09/17/10/71965484creme-visage2-jpg.jpg"><img title="creme visage2.jpg" src="http://s1.e-monsite.com/2009/09/17/10/mini2-71965484creme-visage2-jpg.jpg" alt="" border="0" /></a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #800000;"><strong>Prix env 4.46 pour 50g temps de réalisation 25 min </strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>PHASE AQUEUSE 57.36 %</strong> Macérât hydro glycériné de Centella asiatica à 10% 11.6g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Macérât hydro glycériné de Busserole à 10% 10.4g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>PHASE HUILEUSE 29.72 %</strong> HV Rose Musquée 10.2g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Cacao Bio 1.2g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>EMULSIFIANT 7.82%</strong> Cire Emulsifiante 3 g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ACTIFS 0.5%</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Huile essentielle de Bois de Rose 7 gouttes<!--more--></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>EXTRAIT AROMATIQUE 4 %</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Extrait aromatique de Cacao 1.5 g</span></span></p> <strong>CONSERVATEURS 0.6 %</strong> EPP 0.25g <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="creme visage.jpg" src="http://s1.e-monsite.com/2009/09/17/10/67872344creme-visage-jpg.jpg" alt="" border="0" /></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/ Transférez l'huile de Rose Musquée + beurre de Cacao + cire émulsifiante dans un récipient.</span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ Dans autre récipient, transférez les macérâts hydro glycérinés</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ Faites chauffer séparément au bain-marie les deux phases.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ Lorsque les deux phases sont à la même température, versez lentement la phase huileuse dans la phase aqueuse sans cesser d'agiter vigoureusement au fouet</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5/ Sans cesser d'agiter, mettez le récipient dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">6/ Ajoutez enfin l'Extrait aromatique de Cacao, l'huile essentielle et Extrait de Pépins de Pamplemousse puis mélangez bien entre chaque ajout.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">7/ Pour finir, reprenez le fouet et agitez encore pendant 2 minutes par de légers mouvements.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">8/ Arrêtez l'agitation, puis transférez directement la préparation dans votre contenant sans attendre.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cette crème chocolatée est assez épaisse et pour des raisons pratiques je préfère la mettre en flacon plutôt qu'en pot. La texture me convient mais si vous la voulez vous pouvez augmenter la phase aqueuse.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Stockez votre crème à l'abri de la lumière et de la chaleur. Cette quantité me fait environ 6 semaines à raison d'une utilisation par jour.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cette fois je n'ai pas mis l'extrait aromatique d'où la couleur plutôt café.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Choix des ingredients:</strong></span></span></span></p> <ul style="text-align: justify;"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>Macérât hydro glycériné de Centella asiatica à 10% :</strong> Plante </span></span><span style="color: #000000;"> Connue pour stimuler la production de collagène, elle répare la peau, retarde le vieillissement cutané et permet de prévenir les vergetures.</span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>Macérât hydro glycériné de Busserole à 10% </strong>:la Busserole est une plante qui </span></span><span style="color: #000000;">produit un actif clarifiant naturel, l'arbutine, en concentration importante. Cette substance, qui est un dérivé naturel de l'hydroquinone possède une efficacité supérieure à cette dernière, sans en présenter la toxicité. L'arbutine intervient uniquement sur la synthèse excessive de la mélanine (taches de grossesse, vieillissement de la peau etc.....) à des doses faibles. permet de clarifier et uniformiser le teint sans irritation ni sensibilisation. </span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>HV Rose Musquée</strong>: </span></span>Idéale pour la jeunesse et l'éclat de la peau. Elle a une action régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. Il en résultera une peau plus lisse avec pour effet une fraîcheur retrouvée et un nouvel éclat</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="line-height: 115%;"><strong>Beurre de Cacao Bio</strong>: </span> idéal pour lutter contre les effets néfastes du temps, redonne élasticité et tonus à la peau, Nourrissant et protecteur, il a une action apaisante</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="line-height: 115%;"><strong>Huile essentielle de Bois de Rose: </strong></span><span style="color: #003366;"><span style="color: #000000;">reconnue pour son effet rajeunissant et régénérant sur la peau. Elle s'emploie ainsi largement pour estomper les rides et régénérer les peaux fatiguées. </span> </span></span></span></li> </ul> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Adaptez votre crème</strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> Normal 0 21 false false false FR X-NONE X-NONE MicrosoftInternetExplorer4 <p style="text-align: justify;"></p> <ul style="text-align: justify;"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></span></li> </ul> <p style="text-align: justify;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span></p>Creme eclaircissante chocolatée pour le Visageinheritopenopen216-revision2012-01-18 16:39:072012-01-18 15:39:07216http://www.alicepegie.com/wordpress/wordpress/?p=2170revision0
21812012-01-18 16:22:442012-01-18 15:22:44<p class="MsoNormal" style="text-align: justify;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-866.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_250_250//blog-866.jpg" alt="" align="left" border="0" /></a> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour environ 15 croquettes</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-300g de filet de poisson (pour moi sole)</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-1 cas. de chapelure de pain</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-1 oeuf -1 filet d'huile d'olive -du sel </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-de l'huile végétale </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">-<a href="blog,sole-braisee-a-la-camerounaise,185327.html"> de la marinade pour poisson </a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- 1cc d’ail en poudre</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- 1cc d’échalote séchée</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- 1cc de persil séché<!--more--></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-740.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-740.jpg" alt="" align="left" border="0" /></a> Mixez la chaire de sole, le sel et <a href="blog,sole-braisee-a-la-camerounaise,185327.html">la marinade.</a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-869.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-869.jpg" alt="" align="left" border="0" /></a>Battez l’œuf en omelette,</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-846.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-846.jpg" alt="" align="left" border="0" /></a>Dans un bol versez env 5cas de chapelure de pain, ajoutez y 1cc de persil, 1cc d’oignon et 1cc d’ail </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-861.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-861.jpg" alt="" align="left" border="0" /></a>Formez les croquettes, <a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-862.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-862.jpg" alt="" align="left" border="0" /></a>roulez-les dans l’œuf battu, </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s2.e-monsite.com/2009/12/15/12/resize_550_550/rotate_0//blog-863.jpg"><img src="http://s2.e-monsite.com/2009/12/15/12/resize_128_128//blog-863.jpg" alt="" align="left" border="0" /></a> puis dans la chapelure assaisonnée.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Faite-les dorer dans l'huile chaude quelques minutes sur chaque face.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Et dégustez</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Bon Appétit!!!</span></span></p>Croquettes de Poissoninheritopenopen207-revision-22012-01-18 16:22:442012-01-18 15:22:44207http://www.alicepegie.com/wordpress/wordpress/?p=2180revision0
21912012-01-18 16:46:532012-01-18 15:46:53news2inheritopenopennews22012-01-18 16:46:532012-01-18 15:46:53203http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg0attachmentimage/jpeg0
22012012-01-18 16:47:552012-01-18 15:47:55facebookinheritopenopenfacebook-icone-9714-322012-01-18 16:47:552012-01-18 15:47:55203http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png0attachmentimage/png0
22112012-01-18 16:48:192012-01-18 15:48:19twitterinheritopenopentwitter-icone-8387-3212012-01-18 16:48:192012-01-18 15:48:19203http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png0attachmentimage/png0
22212012-01-18 16:48:452012-01-18 15:48:45rssinheritopenopenrss-picto-flux-format-18-icone-6712-322012-01-18 16:48:452012-01-18 15:48:45203http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png0attachmentimage/png0
22312012-01-18 15:12:162012-01-18 14:12:16<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <a title="Afrigator" href="http://afrigator.com/"> <img src="http://afrigator.com/track/15684-none.gif" alt="Afrigator" /> </a> <ul> <li>      <a title="Newsletter" href="index.php/2011-10-13-18-59-58/newsletter1"><span style="background-color: #000000;"><span style="background-color: #000000;"><img src="images/news2.jpg" alt="" width="33" height="26" border="0" /></span></span></a>       <a href="http://www.facebook.com/Alicepegie1"><img src="images/facebook-icone-9714-32.png" alt="" border="0" /></a>        <a href="http://twitter.com/#!/ALICEPEGIE"><img src="images/twitter-icone-8387-321.png" alt="" border="0" /></a>    <a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><img src="images/rss-picto-flux-format-18-icone-6712-32.png" alt="" border="0" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a> <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook  </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-22012-01-18 15:12:162012-01-18 14:12:16203http://www.alicepegie.com/wordpress/wordpress/?p=2230revision0
22912012-01-18 16:57:262012-01-18 15:57:26<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="32" height="32" /></a>       <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>        <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>    <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>   <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook   </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-72012-01-18 16:57:262012-01-18 15:57:26203http://www.alicepegie.com/wordpress/wordpress/?p=2290revision0
22612012-01-18 16:51:412012-01-18 15:51:41<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a>       <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone size-full wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>        <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>    <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>          <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook     </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-52012-01-18 16:51:412012-01-18 15:51:41203http://www.alicepegie.com/wordpress/wordpress/?p=2260revision0
22412012-01-18 16:49:262012-01-18 15:49:26<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a title="Newsletter" href="index.php/2011-10-13-18-59-58/newsletter1"><span style="background-color: #000000;"><span style="background-color: #000000;"><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a></span></span></a>       <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone size-full wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>        <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>    <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>      <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook     </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-32012-01-18 16:49:262012-01-18 15:49:26203http://www.alicepegie.com/wordpress/wordpress/?p=2240revision0
22512012-01-18 16:49:262012-01-18 15:49:26<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a title="Newsletter" href="index.php/2011-10-13-18-59-58/newsletter1"><span style="background-color: #000000;"><span style="background-color: #000000;"><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a></span></span></a>       <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone size-full wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>        <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>    <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>      <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook     </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-42012-01-18 16:49:262012-01-18 15:49:26203http://www.alicepegie.com/wordpress/wordpress/?p=2250revision0
22712012-01-18 17:15:472012-01-18 16:15:47<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong> Abonnez-Vous!</strong></span></a></span><strong> </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> <li></li> </ul> <ul> <li>. <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="32" height="32" /></a> .. <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> .. <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> .. <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a> <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-autosave2012-01-18 17:15:472012-01-18 16:15:47203http://www.alicepegie.com/wordpress/wordpress/?p=2270revision0
23612010-01-15 17:18:292010-01-15 16:18:29<p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ca fait 3 mois que j'ai acheté mon tube d'acide de fruits de chez AZ et je ne les avais toujours pas utilisé. Et comme j'ai 3 personnes au tour de moi qui ne jure que par leur lotion aux AHA, j'ai décidé de tester pour voir. Je me suis donc concocter une crème de 50 ml. inspirée d'une recete d'AZ.</strong></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="creme lissante mangue.jpg" src="http://s1.e-monsite.com/2009/09/20/07/27314925creme-lissante-mangue-jpg.jpg" alt="" border="0" /></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;">Coût : 4.55€ </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;">Temps de réalisation : </span><strong>25 minutes<!--more--></strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Matériel nécessaire </strong></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="Balance_proscale600_OPT30.jpg" href="http://s1.e-monsite.com/2009/09/20/06/36883741balance-proscale600-opt30-jpg.jpg"><img style="border: 0pt none; float: left;" title="Balance_proscale600_OPT30.jpg" src="http://s1.e-monsite.com/2009/09/20/06/mini2-36883741balance-proscale600-opt30-jpg.jpg" alt="" width="85" height="116" border="0" /></a></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="fouet.jpg" href="http://s1.e-monsite.com/2009/09/20/07/18119267fouet-jpg.jpg"><img title="fouet.jpg" src="http://s1.e-monsite.com/2009/09/20/07/mini-18119267fouet-jpg.jpg" alt="" width="115" height="115" align="left" border="0" /></a>- mini-fouet</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Balance de précision</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase Huileuse</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- HV de Rose Musquée BIO : 15 ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Émulsifiant VE : 0.5 g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase Aqueuse</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Hydrolat de Rose de Damas : 30 ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Émulsifiant MF : 2.5 g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ajouts</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- AHA - acides de fruits : 2.5 ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait Aromatique Mangue BIO : 25 gouttes</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait de Pépins de Pamplemousse : 10 gouttes</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/ Dans un bol , pesez la phase huileuse </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ Dans un autre bol , transférez la phase aqueuse en prenant soin de bien mélanger les deux pour obtenir un mélange homogène</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ Faire chauffer séparément au bain-marie les deux phases</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ Lorsque les deux phases sont à la même température, versez lentement la phase aqueuse dans la phase huileuse sans cesser d'agiter vigoureusement au mini-fouet pendant environ 3 minutes. Le mélange blanchit et s'homogénéise.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="CECILE 016.JPG" href="http://s1.e-monsite.com/2009/09/20/06/80412475cecile-016-jpg.jpg"><img title="CECILE 016.JPG" src="http://s1.e-monsite.com/2009/09/20/06/mini-80412475cecile-016-jpg.jpg" alt="" align="right" border="0" /></a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5/ Sans cesser d'agiter, mettre le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">6/ Ajoutez enfin le reste des ingrédients un à un puis mélanger bien entre chaque ajout</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">7/ Arrêtez l'agitation, puis transférer la préparation dans votre flacon.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="creme lissante mangue.jpg" src="http://s1.e-monsite.com/2009/09/20/07/32638448creme-lissante-mangue-jpg.jpg" alt="" border="0" /></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Cette crème a une odeur délicieuse de mangue et est riche en actifs anti-âge. </strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>- La texture est un peu trop liquide à mon gout je préfère les textures épaisses. La prochaine fois je mettrais un peu de Beurre de Karité pour voir.</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>- Elle est un peu trop légère, je suis obligée de mettre 2 couches pour ne pas avoir la peau qui tire, mais heureusement, elle n'est pas grasse.</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Stockez votre flacon ou pot à l'abri de la lumière et de la chaleur.</span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="text-decoration: underline;"><strong>Choix des ingredients:</strong></span></span></span></span></p> <ul> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>AHA: </strong></span></span><span style="color: #000000;">Les AHA sont connus pour leurs effets bénéfiques sur le renouvellement de la peau et l'éclat du teint, ainsi que leurs effets anti-âge. Ils s’incorporent dans les crèmes et masques pour les peaux ternes et fatiguées.</span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>Emulsifiant MF: </strong></span></span><span style="color: #000000;">Son association avec l'émulsifiant VE en fait un émulsifiant très apprécié pour réaliser des émulsions légères très riches en eau ou hydrolat.</span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>HV Rose Musquée</strong>: </span></span><span style="color: #000000;">Idéale pour la jeunesse et l'éclat de la peau. Elle a une action régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. Il en résultera une peau plus lisse avec pour effet une fraîcheur retrouvée et un nouvel éclat</span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>Emulsifiant VE: </strong></span></span><span style="color: #000000;">Co-émulsifiant qui a la propriété d'assouplir et de nourrir la peau, pour des émulsions légères et pénétrantes.</span></span></span></li> <li style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Hydrolat de Rose de damas: </strong></span><span style="color: #000000;">Astringent et tenseur, cet hydrolat est incontournable pour prévenir et lutter contre le vieillissement cutané. Il purifie, rafraîchit et adoucit la peau. Il est aussi connu pour calmer les irritations et les rougeurs. Tout comme l’huile essentielle, il procure une sensation de bien-être et d’harmonie.</span></span></span></li> </ul> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Adaptez votre crème</strong></span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> Normal 0 21 false false false FR X-NONE X-NONE MicrosoftInternetExplorer4 <ul> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></span></li> </ul>Crème de jour lissante à la mangue et aux AHApublishopenopencreme-de-jour-lissante-a-la-mangue-et-aux-aha2012-01-18 17:19:432012-01-18 16:19:430http://www.alicepegie.com/wordpress/wordpress/?p=2360post0
22812012-01-18 16:51:412012-01-18 15:51:41<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a>       <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone size-full wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>        <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>    <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>          <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook     </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-62012-01-18 16:51:412012-01-18 15:51:41203http://www.alicepegie.com/wordpress/wordpress/?p=2280revision0
23012012-01-18 16:57:262012-01-18 15:57:26<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="32" height="32" /></a>       <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>        <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>    <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>   <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook   </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-82012-01-18 16:57:262012-01-18 15:57:26203http://www.alicepegie.com/wordpress/wordpress/?p=2300revision0
23112012-01-18 16:58:062012-01-18 15:58:06<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="32" height="32" /></a>       <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>        <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>    <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>   <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook   </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-92012-01-18 16:58:062012-01-18 15:58:06203http://www.alicepegie.com/wordpress/wordpress/?p=2310revision0
23212012-01-18 16:58:062012-01-18 15:58:06<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="32" height="32" /></a>       <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>        <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>    <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>   <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook   </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-102012-01-18 16:58:062012-01-18 15:58:06203http://www.alicepegie.com/wordpress/wordpress/?p=2320revision0
23312012-01-18 17:00:352012-01-18 16:00:35<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="32" height="32" /></a>           <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>          <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>   <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook   </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-112012-01-18 17:00:352012-01-18 16:00:35203http://www.alicepegie.com/wordpress/wordpress/?p=2330revision0
23412012-01-18 17:00:352012-01-18 16:00:35<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="32" height="32" /></a>           <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>          <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>   <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook   </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-122012-01-18 17:00:352012-01-18 16:00:35203http://www.alicepegie.com/wordpress/wordpress/?p=2340revision0
25812012-01-18 17:28:112012-01-18 16:28:11<img style="border: 0pt none; float: left;" title="creme coprs unifiante.jpg" src="http://s1.e-monsite.com/2009/09/20/10/7917853creme-coprs-unifiante-jpg.jpg" alt="" width="421" height="305" border="0" /> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;">Coût : 6.06€</span></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Temps de réalisation : <strong>25 minutes</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Matériel nécessaire </strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">- mini-fouet</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Balance de précision</span> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Phase huileuse</strong></span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- HV de Rose Musquée BIO : 30 ml</span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Émulsifiant VE : 5 g</span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Phase aqueuse</strong></span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Macérât hydro-glycériné de Busserole BIO : 60 ml</span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Émulsifiant MF : 5 g<!--more--></span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Ajouts</strong></span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Miel : 2 g</span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- AHA - acides de fruits : 5 ml</span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Extrait aromatique de mangue</span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Extrait de Pépins de Pamplemousse : 20 gouttes</span></p> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">1/ Dans un bol, transférez la phase huileuse</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">2/ Dans un autre bol, transférez la phase aqueuse en prenant soin de bien mélanger les deux pour obtenir un mélange homogène</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">3/ Faire chauffer séparément au bain-marie les deux phases.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Lorsqu'elles sont à la même température, verser lentement la phase aqueuse dans la phase grasse sans cesser d'agiter vigoureusement au fouet pendant environ 3 minutes. Le mélange blanchit et s'homogénéise.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">4/ Sans cesser d'agiter, mettre le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">5/ Laissez reposer votre crème 15 minutes sans y toucher afin qu'elle prenne en viscosité.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">6/ Mélangez enfin pendant 30 secondes votre produit afin de le rendre bien lisse puis ajouter progressivement le reste des ingrédients un à un en homogénéisant au fouet main, entre chaque ajout.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">7/ Arrêtez l'agitation puis transférer rapidement la préparation dans votre flacon.</span> <p style="text-align: center;"><a class="mb" title="creme aha main.jpg" href="http://s1.e-monsite.com/2009/09/20/10/42358629creme-aha-main-jpg.jpg"><img title="creme aha main.jpg" src="http://s1.e-monsite.com/2009/09/20/10/mini2-42358629creme-aha-main-jpg.jpg" alt="" align="left" border="0" /></a></p> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"> <strong>Une senteur délicieuse pour une crème corporelle nourrissante qui stimulera le renouvellement cellulaire.</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Stockez votre pot à l'abri de la lumière et de la chaleur.</span> <img title="creme coprs unifiante2.jpg" src="http://s1.e-monsite.com/2009/09/20/10/49553054creme-coprs-unifiante2-jpg.jpg" alt="" border="0" /> <span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"> </span> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="text-decoration: underline;"><strong><span>Choix des ingredients:</span></strong></span></span></p> <ul> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><strong><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">AHA:</span></span></strong></span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;">Les AHA sont connus pour leurs <strong>effets bénéfiques sur le renouvellement de la peau et l'éclat du teint</strong>, ainsi que leurs effets anti-âge. Ils s’incorporent dans les crèmes et masques pour les peaux ternes et fatiguées.</span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><strong><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Emulsifiant MF: </span></span></strong></span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;">Son association avec l'émulsifiant VE en fait un émulsifiant très apprécié pour réaliser des émulsions légères très riches en eau ou hydrolat.</span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><strong><span style="font-size: small;">HV Rose Musquée</span></strong>: </span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="font-family: Arial;">Idéale pour la jeunesse et l'éclat de la peau. Elle a une action régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. Il en résultera une peau plus lisse avec pour effet une fraîcheur retrouvée et un nouvel éclat</span></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><span style="font-size: small;"><strong><span style="font-family: arial,helvetica,sans-serif;">Emulsifiant VE: </span></strong></span></span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;">Co-émulsifiant qui a la propriété d'assouplir et de nourrir la peau, pour des émulsions légères et pénétrantes.</span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><strong>Macérât hydro glycériné de Busserole à 10% </strong>: la Busserole est une plante qui produit un actif clarifiant naturel, l'arbutine, en concentration importante. Cette substance, qui est un dérivé naturel de l'hydroquinone possède une efficacité supérieure à cette dernière, sans en présenter la toxicité. L'arbutine intervient uniquement sur la synthèse excessive de la mélanine (taches de grossesse, vieillissement de la peau etc.....) à des doses faibles. permet de clarifier et uniformiser le teint sans irritation ni sensibilisation. </span></li> </ul> <p class="MsoNormal" style="text-align: center;"><span style="text-decoration: underline;"><strong><span style="font-size: small; font-family: arial,helvetica,sans-serif;">Adaptez votre crème</span></strong></span></p> Normal 0 21 false false false FR X-NONE X-NONE MicrosoftInternetExplorer4 <ul> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></li> </ul> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Crème Corps Unifiante au Miel & AHAinheritopenopen246-revision-22012-01-18 17:28:112012-01-18 16:28:11246http://www.alicepegie.com/wordpress/wordpress/?p=2580revision0
23512012-01-18 17:02:352012-01-18 16:02:35<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="32" height="32" /></a>                   <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>            <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>          <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>   <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook   </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-132012-01-18 17:02:352012-01-18 16:02:35203http://www.alicepegie.com/wordpress/wordpress/?p=2350revision0
23712012-01-18 17:19:022012-01-18 16:19:02<p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>ca fait 3 mois que j'ai acheté mon tube d'acide de fruits de chez AZ et je ne les avais toujours pas utilisé. Et comme j'ai 3 personnes au tour de moi qui ne jure que par leur lotion aux AHA, j'ai décidé de tester pour voir. Je me suis donc concocter une crème de 50 ml. inspirée d'une recete d'AZ.</strong></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="creme lissante mangue.jpg" src="http://s1.e-monsite.com/2009/09/20/07/27314925creme-lissante-mangue-jpg.jpg" alt="" border="0" /></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;">Coût : 4.55€ </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;">Temps de réalisation : </span><strong>25 minutes<!--more--></strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Matériel nécessaire </strong></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="Balance_proscale600_OPT30.jpg" href="http://s1.e-monsite.com/2009/09/20/06/36883741balance-proscale600-opt30-jpg.jpg"><img style="border: 0pt none; float: left;" title="Balance_proscale600_OPT30.jpg" src="http://s1.e-monsite.com/2009/09/20/06/mini2-36883741balance-proscale600-opt30-jpg.jpg" alt="" width="85" height="116" border="0" /></a></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="fouet.jpg" href="http://s1.e-monsite.com/2009/09/20/07/18119267fouet-jpg.jpg"><img title="fouet.jpg" src="http://s1.e-monsite.com/2009/09/20/07/mini-18119267fouet-jpg.jpg" alt="" width="115" height="115" align="left" border="0" /></a>- mini-fouet</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Balance de précision</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase Huileuse</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- HV de Rose Musquée BIO : 15 ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Émulsifiant VE : 0.5 g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase Aqueuse</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Hydrolat de Rose de Damas : 30 ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Émulsifiant MF : 2.5 g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ajouts</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- AHA - acides de fruits : 2.5 ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait Aromatique Mangue BIO : 25 gouttes</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait de Pépins de Pamplemousse : 10 gouttes</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/ Dans un bol , pesez la phase huileuse </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ Dans un autre bol , transférez la phase aqueuse en prenant soin de bien mélanger les deux pour obtenir un mélange homogène</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ Faire chauffer séparément au bain-marie les deux phases</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ Lorsque les deux phases sont à la même température, versez lentement la phase aqueuse dans la phase huileuse sans cesser d'agiter vigoureusement au mini-fouet pendant environ 3 minutes. Le mélange blanchit et s'homogénéise.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="CECILE 016.JPG" href="http://s1.e-monsite.com/2009/09/20/06/80412475cecile-016-jpg.jpg"><img title="CECILE 016.JPG" src="http://s1.e-monsite.com/2009/09/20/06/mini-80412475cecile-016-jpg.jpg" alt="" align="right" border="0" /></a></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5/ Sans cesser d'agiter, mettre le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">6/ Ajoutez enfin le reste des ingrédients un à un puis mélanger bien entre chaque ajout</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">7/ Arrêtez l'agitation, puis transférer la préparation dans votre flacon.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="creme lissante mangue.jpg" src="http://s1.e-monsite.com/2009/09/20/07/32638448creme-lissante-mangue-jpg.jpg" alt="" border="0" /></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Cette crème a une odeur délicieuse de mangue et est riche en actifs anti-âge. </strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>- La texture est un peu trop liquide à mon gout je préfère les textures épaisses. La prochaine fois je mettrais un peu de Beurre de Karité pour voir.</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>- Elle est un peu trop légère, je suis obligée de mettre 2 couches pour ne pas avoir la peau qui tire, mais heureusement, elle n'est pas grasse.</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Stockez votre flacon ou pot à l'abri de la lumière et de la chaleur.</span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="text-decoration: underline;"><strong>Choix des ingredients:</strong></span></span></span></span></p> <ul> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>AHA: </strong></span></span><span style="color: #000000;">Les AHA sont connus pour leurs effets bénéfiques sur le renouvellement de la peau et l'éclat du teint, ainsi que leurs effets anti-âge. Ils s’incorporent dans les crèmes et masques pour les peaux ternes et fatiguées.</span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>Emulsifiant MF: </strong></span></span><span style="color: #000000;">Son association avec l'émulsifiant VE en fait un émulsifiant très apprécié pour réaliser des émulsions légères très riches en eau ou hydrolat.</span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>HV Rose Musquée</strong>: </span></span><span style="color: #000000;">Idéale pour la jeunesse et l'éclat de la peau. Elle a une action régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. Il en résultera une peau plus lisse avec pour effet une fraîcheur retrouvée et un nouvel éclat</span></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><span style="line-height: 115%;"><strong>Emulsifiant VE: </strong></span></span><span style="color: #000000;">Co-émulsifiant qui a la propriété d'assouplir et de nourrir la peau, pour des émulsions légères et pénétrantes.</span></span></span></li> <li style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Hydrolat de Rose de damas: </strong></span><span style="color: #000000;">Astringent et tenseur, cet hydrolat est incontournable pour prévenir et lutter contre le vieillissement cutané. Il purifie, rafraîchit et adoucit la peau. Il est aussi connu pour calmer les irritations et les rougeurs. Tout comme l’huile essentielle, il procure une sensation de bien-être et d’harmonie.</span></span></span></li> </ul> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Adaptez votre crème</strong></span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> Normal 0 21 false false false FR X-NONE X-NONE MicrosoftInternetExplorer4 <ul> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></span></li> </ul>Crème de jour lissante à la mangue et aux AHAinheritopenopen236-revision2012-01-18 17:19:022012-01-18 16:19:02236http://www.alicepegie.com/wordpress/wordpress/?p=2370revision0
23812010-01-15 17:20:562010-01-15 16:20:56<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le Savon Noir d’Afrique est l'un des savons les plus traditionnels et les plus doux qui existe et également l'un des secrets les mieux gardés en terme de fabrication. Pour mes premiers savons j’ai voulu faire mon propre savon noir en m’inspirant de <a href="http://www.afriqueessences.com/shampooing-au-karite/authentique-savon-noir-afrique-de-louest-equitable/fiche-produit-detaillee.html">celui-ci</a>. Composé de 48% de beurre de karité, d'huile de palmiste, de beurre de cacao, et de poudre de coque de cacaoyer. Je limite ainsi tout risque d'allergie, le beurre de karité, de cacao et l’huile de palmiste, étant mes principaux ingrédients pour mes cosmétiques maison. <strong><span style="color: red;"><a href="http://www.afriqueessences.com/shampooing-au-karite/authentique-savon-noir-afrique-de-louest-equitable/fiche-produit-detaillee.html"> D’après afriqueessence</a></span></strong> Il s'utilise tout aussi bien sur la peau que sur les cheveux qu'il laisse propres, doux, hydratés et sains. Il soigne l'acné, les boutons, l'eczéma, les feux de rasoir... Si utilisé conjointement au beurre de karité ou du karité doré, en quelques jours, on devrait sentir la différence.</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>Ingredients </strong><strong>pour 510g coût environ 14,90€</strong></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="savon1.jpg" src="http://s1.e-monsite.com/2009/09/17/10/18117959savon1-jpg.jpg" alt="" border="0" /></span></span> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Karité Bio 201g soit 48,1%</span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Cacao Bio 43.5g soit 16,7% </span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Huile de Palmiste (direct du Cameroun) 136g soit 35,2% </span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Surgraissage 10%</strong></span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Rose musquée 18g </span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Inca Inchi 14g </span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Karité 8g (oui l’excès ne nuit pas) </span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pour la Saponification</strong></span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Soude 54.7g et Eau 126.8g</span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ajouts à la trace </strong></span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Miel 5g </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Poudre de coque de cacaoyer 5g</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="savon2.jpg" src="http://s1.e-monsite.com/2009/09/17/10/61050197savon2-jpg.jpg" alt="" border="0" /></span></span> <p class="MsoNormal" style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Après 4 semaines de murissement, j’ai mesuré le PH avec un papier PH acheté en pharmacie, et j’ai pris comme référence mon savon habituel qui a un PH de 9 et mon savon noir a un PH de 7.5/8.</span></span></p> <hr id="system-readmore" /> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32261.JPG" href="http://s1.e-monsite.com/2009/09/20/05/88496480snv32261-jpg.jpg"><img title="SNV32261.JPG" src="http://s1.e-monsite.com/2009/09/20/05/mini2-88496480snv32261-jpg.jpg" alt="" border="0" /></a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Jusqu’ici pas de réaction allergique, ma fille de 2 ans 1/2 et moi l’utilisons depuis 2 semaines (faites toujours un test sur vous, puis sur l’enfant avant toute utilisation).</span></span></p> <p class="MsoNormal" style="text-align: justify;"></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #800000;"><strong>Réalisation</strong></span></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Matériel Nécessaire :</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32234.JPG" href="http://s1.e-monsite.com/2009/09/20/04/76450233snv32234-jpg.jpg"><img title="SNV32234.JPG" src="http://s1.e-monsite.com/2009/09/20/04/mini2-76450233snv32234-jpg.jpg" alt="" border="0" /></a></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Une Balance de précision (au gramme près) - Un Micro-ondes ou du matériel pour réaliser un Bain Marie : pour faire fondre les beurres et huiles - Des gants, lunettes, masque (ou un foulard) : La Soude est dangereuse à manipuler ! - Plusieurs contenants résistants à la chaleur, Une cuillère en inox, une spatule, Moules pour vos Savons - Du Vinaigre (en cas de projection de soude ou de pâte de savon rincez instantanément avec du Vinaigre, cela neutralise l'effet corrosif de la Soude)</span></span> <ul style="text-align: left;"> <li style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 1 : la même pour toute réalisation de cosmétiques maison :</strong></span> </span></span></li> </ul> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Stérilisez votre matériel, protégez vous et votre plan de travail, portez des gangs, un masque, aérez</span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32262.JPG" href="http://s1.e-monsite.com/2009/09/20/04/30361677snv32262-jpg.jpg"><img title="SNV32262.JPG" src="http://s1.e-monsite.com/2009/09/20/04/mini2-30361677snv32262-jpg.jpg" alt="" border="0" /></a></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La Soude caustique est très dangereuse, c'est pour cela qu'il faut protégez votre plan de travail (papier journal, torchons..), porter des gants, des vêtements couvrants (manches longues, pantalon) et si possible des lunettes et un masque de protection. En cas de projection de Soude, ou de savon frais, sur votre plan de travail ou sur vous même, rincez abondamment au Vinaigre puis à l'eau. Portez également des gants lorsque vous nettoyez vos ustensiles pleins de pâte à savon et lorsque vous démoulez et découpez vos savons frais.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Vérifiez votre recette de Savon et surtout votre quantité de Soude à peser<span style="color: #800000;"><strong>, É.l.o.i.g.n.e.z l.e.s. e.n.f.a.n.t.s,</strong> </span> animaux pour éviter tout accident !!!!! </span></span> <ul> <li style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 2 Pesez très précisément et séparément tous vos ingrédients, surtout la soude !</strong></span> </span></span></li> </ul> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Trop de Soude ou pas assez d'huiles donnera un savon agressif et irritant pour la peau. Au contraire, pas assez de Soude ou Trop d'Huile donnera un savon trop mou ou pas de savon du tout ! Ne faites chauffer que les produits solides (ici beurres de Karité et de cacao, Huile de Palmiste) pour les liquéfier</span></span> <ul> <li> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32241.JPG" href="http://s1.e-monsite.com/2009/09/20/04/77488146snv32241-jpg.jpg"><img title="SNV32241.JPG" src="http://s1.e-monsite.com/2009/09/20/04/mini2-77488146snv32241-jpg.jpg" alt="" border="0" /></a></span></span></p> </li> </ul> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #800000;"><strong>Diluez la soude dans l'eau (jamais le contraire) TOUJOURS SOUDE DANS EAU !!!, </strong></span>la soude dégage des vapeurs, ne mettez pas votre tête juste au dessus du mélange soude eau, mettez un masque, des gants et des lunettes, tenez le récipient le plus loin possible de vous tout en mélangeant jusqu'à ca que le mélange ne dégage plus de vapeur. Attendez environs 30 minutes le temps que vos ingrédients soient à Température Ambiante avant de faire le mélange Huile + Soude. Et pendant ce temps, Huilez vos moules (eh oui comme pour les gâteaux) ! Moi j'ai acheté des petits moules en silicone à 5€ l'un, ce qui me permet de mouler 500g (en 6 parts) de savon par fournée</span></span> <ul> <li style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 3 la Saponification</strong></span><span style="color: #800000;"><strong> </strong></span></span></span></li> </ul> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #800000;"><strong>Versez lentement votre Soude DANS vos Huiles</strong></span><span style="color: #800000;">, <strong>jamais le contraire</strong></span>, tout en mélangeant, le mieux à mon avis c'est avec un mixeur plongeant (le miens m'a couté 10€ et il est exclusivement réservé à la savonnerie), votre pâte à savon sera plus homogène et lisse. Sinon vous pouvez y aller à la Mano mais prévoyez l'après midi, Attention à bien laisser la tête de votre mixeur dans la pâte à savon, risque de projections.</span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32247.JPG" href="http://s1.e-monsite.com/2009/09/20/04/83632556snv32247-jpg.jpg"><img title="SNV32247.JPG" src="http://s1.e-monsite.com/2009/09/20/04/mini2-83632556snv32247-jpg.jpg" alt="" border="0" /></a></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La Trace</strong> </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32252.JPG" href="http://s1.e-monsite.com/2009/09/20/04/74966345snv32252-jpg.jpg"><img title="SNV32252.JPG" src="http://s1.e-monsite.com/2009/09/20/04/mini2-74966345snv32252-jpg.jpg" alt="" border="0" /></a></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">c'est lorsque la pâte à Savon s'épaissie et qu'il reste une trace en surface lorsque vous sortez le mixeur (éteint) de la pate, faites rapidement votre Surgraissage et vos ajouts finaux, sinon vous aurez une pâte à savon trop compacte, et difficile à mettre en moule (j'en ai fait l'expérience). Versez votre pate à savon dans les moules et si comme moi elle est trop compacte, allez y la cuillère et façonnez là bien (je l'ai pas fait d'où les irrégularités sur mes savons). Recouvrir vos savons d'un film plastique pour le protéger. Si vous avez des moules individuels comme moi vous pouvez les y laisser pour la cure, sinon attendez environs 3 jours pour le démouler et les couper (avec des gants). Pendant cette durée, le procédé de saponification continu, placez votre savon à l'endroit le plus chaud de la maison.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La Cure</strong> : elle dure 3 à 4 semaines qui servent à finaliser vos savons : ils vont durcir, l'eau va s'évaporer, ils seront aussi plus moussants. Pendant la cure entreposez vos savons dans une pièce aérée, à l'abri de la lumière. </span></span> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Analyse de mon savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></strong></span>: Selon laquelle les paramettres suivants doivent avoir une valeure comprise entre 40 et 60,<span style="background-color: #888888;"> 50 étant la valeur idéale.</span> mon savon aurait donc une mousse trop persistante. mais je n'ai aucun mal à la rincer.<strong> </strong></span></span></p> <img title="022.gif" src="http://s1.e-monsite.com/2009/09/18/41220669022-gif.gif" alt="" border="0" /> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Dureté 58 </strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pouvoir nettoyant 55 </strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Douceur 51 </strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Persistance de la Mousse: 61 </strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>INS 145 </strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Choix des ingredients</strong></span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HV de Palmiste</strong> : exfoliante et purifiante, cette huile utilisée dans les bains laisse une peau propre et douce. Un usage régulier de cette huile prévient les problèmes de peaux.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HV de Rose musqué</strong> : Idéale pour la jeunesse et l'éclat de la peau. Elle a une action régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. Il en résultera une peau plus lisse avec pour effet une fraîcheur retrouvée et un nouvel éclat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HV d'Inca inchi</strong> : fabuleuse source d'acides gras essentiels, la plus riche en oméga 3 avec environ 40% de cet acide gras indispensable à la santé de la peau et du corps. En cosmétique, de par sa richesse en acides gras et en vitamine E, cette huile restructure, répare et protège l'épiderme.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Miel</strong> : Connu pour ses propriétés réparatrices, purifiantes et adoucissantes, le miel est un véritable trésor de beauté idéal pour les peaux sèches.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Poudre de coque de cacaoyer :</strong> exfoliant doux, anti-oxydant, agit contre le vieillissement de la peau, hydratant, nutritif, convient à toutes les peaux, surtout les plus sensibles.</span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes impressions:</strong> Je trouve ce savon très doux , la peau est douce au sortir de la douche et tire moins que d'habitude. je recommence bientôt!!. </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les Retours de mes Key User</strong></span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Olga: </strong></span>savon très doux, mousse comme il faut, rincage facile, dureté impeccable par contre l'odeur est un peut brute, peut être penser à le parfumer la prochaine fois.</span></span></p> <img title="021.gif" src="http://s1.e-monsite.com/2009/09/18/10933462021-gif.gif" alt="" border="0" /> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">et Voici la 2é fournée, les ingredients restent les même mais j'ai travaillé un peu plus vite pour avoir un moulage plus facile</span>. <p style="text-align: center;"><img title="savon noir2.jpg" src="http://s1.e-monsite.com/2009/09/18/12/62717117savon-noir2-jpg.jpg" alt="" border="0" /></p> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Mon Savon Noir d'Afriquepublishopenopenmon-savon-noir-dafrique2012-01-18 17:21:522012-01-18 16:21:520http://www.alicepegie.com/wordpress/wordpress/?p=2380post0
23912012-01-18 17:21:392012-01-18 16:21:39<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Le Savon Noir d’Afrique est l'un des savons les plus traditionnels et les plus doux qui existe et également l'un des secrets les mieux gardés en terme de fabrication. Pour mes premiers savons j’ai voulu faire mon propre savon noir en m’inspirant de <a href="http://www.afriqueessences.com/shampooing-au-karite/authentique-savon-noir-afrique-de-louest-equitable/fiche-produit-detaillee.html">celui-ci</a>. Composé de 48% de beurre de karité, d'huile de palmiste, de beurre de cacao, et de poudre de coque de cacaoyer. Je limite ainsi tout risque d'allergie, le beurre de karité, de cacao et l’huile de palmiste, étant mes principaux ingrédients pour mes cosmétiques maison. <strong><span style="color: red;"><a href="http://www.afriqueessences.com/shampooing-au-karite/authentique-savon-noir-afrique-de-louest-equitable/fiche-produit-detaillee.html"> D’après afriqueessence</a></span></strong> Il s'utilise tout aussi bien sur la peau que sur les cheveux qu'il laisse propres, doux, hydratés et sains. Il soigne l'acné, les boutons, l'eczéma, les feux de rasoir... Si utilisé conjointement au beurre de karité ou du karité doré, en quelques jours, on devrait sentir la différence.</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> <strong>Ingredients </strong><strong>pour 510g coût environ 14,90€</strong></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="savon1.jpg" src="http://s1.e-monsite.com/2009/09/17/10/18117959savon1-jpg.jpg" alt="" border="0" /></span></span> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Karité Bio 201g soit 48,1%</span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Cacao Bio 43.5g soit 16,7% </span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Huile de Palmiste (direct du Cameroun) 136g soit 35,2% </span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Surgraissage 10%</strong></span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Rose musquée 18g </span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Inca Inchi 14g </span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Karité 8g (oui l’excès ne nuit pas) </span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pour la Saponification</strong></span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Soude 54.7g et Eau 126.8g</span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ajouts à la trace </strong></span></span></p> <p class="MsoNormal" style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Miel 5g </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Poudre de coque de cacaoyer 5g</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="savon2.jpg" src="http://s1.e-monsite.com/2009/09/17/10/61050197savon2-jpg.jpg" alt="" border="0" /></span></span> <p class="MsoNormal" style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Après 4 semaines de murissement, j’ai mesuré le PH avec un papier PH acheté en pharmacie, et j’ai pris comme référence mon savon habituel qui a un PH de 9 et mon savon noir a un PH de 7.5/8.</span></span></p> <hr id="system-readmore" /> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32261.JPG" href="http://s1.e-monsite.com/2009/09/20/05/88496480snv32261-jpg.jpg"><img title="SNV32261.JPG" src="http://s1.e-monsite.com/2009/09/20/05/mini2-88496480snv32261-jpg.jpg" alt="" border="0" /></a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Jusqu’ici pas de réaction allergique, ma fille de 2 ans 1/2 et moi l’utilisons depuis 2 semaines (faites toujours un test sur vous, puis sur l’enfant avant toute utilisation).</span></span></p> <p class="MsoNormal" style="text-align: justify;"></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #800000;"><strong>Réalisation</strong></span></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Matériel Nécessaire :</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32234.JPG" href="http://s1.e-monsite.com/2009/09/20/04/76450233snv32234-jpg.jpg"><img title="SNV32234.JPG" src="http://s1.e-monsite.com/2009/09/20/04/mini2-76450233snv32234-jpg.jpg" alt="" border="0" /></a></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Une Balance de précision (au gramme près) - Un Micro-ondes ou du matériel pour réaliser un Bain Marie : pour faire fondre les beurres et huiles - Des gants, lunettes, masque (ou un foulard) : La Soude est dangereuse à manipuler ! - Plusieurs contenants résistants à la chaleur, Une cuillère en inox, une spatule, Moules pour vos Savons - Du Vinaigre (en cas de projection de soude ou de pâte de savon rincez instantanément avec du Vinaigre, cela neutralise l'effet corrosif de la Soude)</span></span> <ul style="text-align: left;"> <li style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 1 : la même pour toute réalisation de cosmétiques maison :</strong></span> </span></span></li> </ul> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Stérilisez votre matériel, protégez vous et votre plan de travail, portez des gangs, un masque, aérez</span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32262.JPG" href="http://s1.e-monsite.com/2009/09/20/04/30361677snv32262-jpg.jpg"><img title="SNV32262.JPG" src="http://s1.e-monsite.com/2009/09/20/04/mini2-30361677snv32262-jpg.jpg" alt="" border="0" /></a></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La Soude caustique est très dangereuse, c'est pour cela qu'il faut protégez votre plan de travail (papier journal, torchons..), porter des gants, des vêtements couvrants (manches longues, pantalon) et si possible des lunettes et un masque de protection. En cas de projection de Soude, ou de savon frais, sur votre plan de travail ou sur vous même, rincez abondamment au Vinaigre puis à l'eau. Portez également des gants lorsque vous nettoyez vos ustensiles pleins de pâte à savon et lorsque vous démoulez et découpez vos savons frais.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Vérifiez votre recette de Savon et surtout votre quantité de Soude à peser<span style="color: #800000;"><strong>, É.l.o.i.g.n.e.z l.e.s. e.n.f.a.n.t.s,</strong> </span> animaux pour éviter tout accident !!!!! </span></span> <ul> <li style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 2 Pesez très précisément et séparément tous vos ingrédients, surtout la soude !</strong></span> </span></span></li> </ul> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Trop de Soude ou pas assez d'huiles donnera un savon agressif et irritant pour la peau. Au contraire, pas assez de Soude ou Trop d'Huile donnera un savon trop mou ou pas de savon du tout ! Ne faites chauffer que les produits solides (ici beurres de Karité et de cacao, Huile de Palmiste) pour les liquéfier</span></span> <ul> <li> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32241.JPG" href="http://s1.e-monsite.com/2009/09/20/04/77488146snv32241-jpg.jpg"><img title="SNV32241.JPG" src="http://s1.e-monsite.com/2009/09/20/04/mini2-77488146snv32241-jpg.jpg" alt="" border="0" /></a></span></span></p> </li> </ul> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #800000;"><strong>Diluez la soude dans l'eau (jamais le contraire) TOUJOURS SOUDE DANS EAU !!!, </strong></span>la soude dégage des vapeurs, ne mettez pas votre tête juste au dessus du mélange soude eau, mettez un masque, des gants et des lunettes, tenez le récipient le plus loin possible de vous tout en mélangeant jusqu'à ca que le mélange ne dégage plus de vapeur. Attendez environs 30 minutes le temps que vos ingrédients soient à Température Ambiante avant de faire le mélange Huile + Soude. Et pendant ce temps, Huilez vos moules (eh oui comme pour les gâteaux) ! Moi j'ai acheté des petits moules en silicone à 5€ l'un, ce qui me permet de mouler 500g (en 6 parts) de savon par fournée</span></span> <ul> <li style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 3 la Saponification</strong></span><span style="color: #800000;"><strong> </strong></span></span></span></li> </ul> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #800000;"><strong>Versez lentement votre Soude DANS vos Huiles</strong></span><span style="color: #800000;">, <strong>jamais le contraire</strong></span>, tout en mélangeant, le mieux à mon avis c'est avec un mixeur plongeant (le miens m'a couté 10€ et il est exclusivement réservé à la savonnerie), votre pâte à savon sera plus homogène et lisse. Sinon vous pouvez y aller à la Mano mais prévoyez l'après midi, Attention à bien laisser la tête de votre mixeur dans la pâte à savon, risque de projections.</span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32247.JPG" href="http://s1.e-monsite.com/2009/09/20/04/83632556snv32247-jpg.jpg"><img title="SNV32247.JPG" src="http://s1.e-monsite.com/2009/09/20/04/mini2-83632556snv32247-jpg.jpg" alt="" border="0" /></a></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La Trace</strong> </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32252.JPG" href="http://s1.e-monsite.com/2009/09/20/04/74966345snv32252-jpg.jpg"><img title="SNV32252.JPG" src="http://s1.e-monsite.com/2009/09/20/04/mini2-74966345snv32252-jpg.jpg" alt="" border="0" /></a></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">c'est lorsque la pâte à Savon s'épaissie et qu'il reste une trace en surface lorsque vous sortez le mixeur (éteint) de la pate, faites rapidement votre Surgraissage et vos ajouts finaux, sinon vous aurez une pâte à savon trop compacte, et difficile à mettre en moule (j'en ai fait l'expérience). Versez votre pate à savon dans les moules et si comme moi elle est trop compacte, allez y la cuillère et façonnez là bien (je l'ai pas fait d'où les irrégularités sur mes savons). Recouvrir vos savons d'un film plastique pour le protéger. Si vous avez des moules individuels comme moi vous pouvez les y laisser pour la cure, sinon attendez environs 3 jours pour le démouler et les couper (avec des gants). Pendant cette durée, le procédé de saponification continu, placez votre savon à l'endroit le plus chaud de la maison.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La Cure</strong> : elle dure 3 à 4 semaines qui servent à finaliser vos savons : ils vont durcir, l'eau va s'évaporer, ils seront aussi plus moussants. Pendant la cure entreposez vos savons dans une pièce aérée, à l'abri de la lumière. </span></span> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Analyse de mon savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></strong></span>: Selon laquelle les paramettres suivants doivent avoir une valeure comprise entre 40 et 60,<span style="background-color: #888888;"> 50 étant la valeur idéale.</span> mon savon aurait donc une mousse trop persistante. mais je n'ai aucun mal à la rincer.<strong> </strong></span></span></p> <img title="022.gif" src="http://s1.e-monsite.com/2009/09/18/41220669022-gif.gif" alt="" border="0" /> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Dureté 58 </strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pouvoir nettoyant 55 </strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Douceur 51 </strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Persistance de la Mousse: 61 </strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>INS 145 </strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Choix des ingredients</strong></span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HV de Palmiste</strong> : exfoliante et purifiante, cette huile utilisée dans les bains laisse une peau propre et douce. Un usage régulier de cette huile prévient les problèmes de peaux.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HV de Rose musqué</strong> : Idéale pour la jeunesse et l'éclat de la peau. Elle a une action régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. Il en résultera une peau plus lisse avec pour effet une fraîcheur retrouvée et un nouvel éclat</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HV d'Inca inchi</strong> : fabuleuse source d'acides gras essentiels, la plus riche en oméga 3 avec environ 40% de cet acide gras indispensable à la santé de la peau et du corps. En cosmétique, de par sa richesse en acides gras et en vitamine E, cette huile restructure, répare et protège l'épiderme.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Miel</strong> : Connu pour ses propriétés réparatrices, purifiantes et adoucissantes, le miel est un véritable trésor de beauté idéal pour les peaux sèches.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Poudre de coque de cacaoyer :</strong> exfoliant doux, anti-oxydant, agit contre le vieillissement de la peau, hydratant, nutritif, convient à toutes les peaux, surtout les plus sensibles.</span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes impressions:</strong> Je trouve ce savon très doux , la peau est douce au sortir de la douche et tire moins que d'habitude. je recommence bientôt!!. </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les Retours de mes Key User</strong></span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>Olga: </strong></span>savon très doux, mousse comme il faut, rincage facile, dureté impeccable par contre l'odeur est un peut brute, peut être penser à le parfumer la prochaine fois.</span></span></p> <img title="021.gif" src="http://s1.e-monsite.com/2009/09/18/10933462021-gif.gif" alt="" border="0" /> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">et Voici la 2é fournée, les ingredients restent les même mais j'ai travaillé un peu plus vite pour avoir un moulage plus facile</span>. <p style="text-align: center;"><img title="savon noir2.jpg" src="http://s1.e-monsite.com/2009/09/18/12/62717117savon-noir2-jpg.jpg" alt="" border="0" /></p> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Mon Savon Noir d'Afriqueinheritopenopen238-revision2012-01-18 17:21:392012-01-18 16:21:39238http://www.alicepegie.com/wordpress/wordpress/?p=2390revision0
24012010-01-15 17:22:042010-01-15 16:22:04<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Après ma « réussite » quant à la réalisation de mon premier savon, j'ai eu envie d'en faire très vite d'autres d'autant que le premier est très vite partie pour test. Alors voici mon deuxième cru.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Mon savon exfolient au Thé Rooibos. Pour cela je me suis inspirée de cette<a href="http://www.afriqueessences.com/savons-artisanaux-africains/les-savons-peaux-a-problemes/savon-karite-rooibos-lait-de-chevre-commerce-equitable/fiche-produit-detaillee.html"> recette d'afriqueessence.</a></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> Ingrédients : pour 580g prix env 22€</strong></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="savon rooibos.jpg" src="http://s1.e-monsite.com/2009/09/17/11/3802973savon-rooibos-jpg.jpg" alt="" border="0" /></span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="rooibos" href="http://s1.e-monsite.com/2009/09/13/10/74783371130809-003-jpg.jpg"><!--more--></a></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de karité 300g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Huile de coco extra-vierge 140g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pour la saponification</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Eau 146.7</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Soude 64.3</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ajouts à la trace</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Lait de Jument 3g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Thé de rooibos 5g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Huile essentielle d'ylang ylang 1ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Extrait de vanille 5ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> Surgraissage 10.7%</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Huile de Palme 45g </span></span> Normal 0 21 false false false MicrosoftInternetExplorer4</p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #800000;"><strong>Réalisation</strong></span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="index.php?option=com_content&amp;view=article&amp;id=206:mon-savon-noir-dafrique&amp;catid=59&amp;Itemid=82">(procédure détaillée ici)</a></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Matériel Nécessaire :</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Une Balance de précision (au gramme près)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Un Micro-ondes ou du matériel pour réaliser un Bain Marie - Des gants, lunettes, masque (ou un foulard! - Plusieurs contenants résistants à la chaleur, Une cuillère en inox, une spatule, Moules pour vos Savons - Du Vinaigre (en cas de projection de soude ou de pâte à savon rincez instantanément avec du Vinaigre, cela neutralise l'effet corrosif de la Soude)</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 1 </strong>: <strong>la même pour toute réalisation de cosmétiques maison :</strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Stérilisez votre matériel, protégez vous et votre plan de travail, portez des gants, un masque, aérez la pièce.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Vérifiez votre recette de Savon et surtout votre quantité de Soude à peser</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>- É.l.o.i.g.n.e.z l.e.s. e.n.f.a.n.t.s,</strong> animaux pour éviter tout accident !!!!! </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 2 </strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pesez très précisément et séparément tous vos ingrédients, surtout la soude !</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Faites chauffer le beurre de Karité et l'huile de palme si ce dernier s'est solidifié.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Diluez la soude dans l'eau (jamais le contraire) <strong>TOUJOURS SOUDE DANS EAU !!!</strong>, la soude dégage des vapeurs, ne mettez pas votre tête juste au dessus du mélange soude eau, mettez un masque, des gants et des lunettes, tenez le récipient le plus loin possible de vous tout en mélangeant jusqu'à ca que le mélange ne dégage plus de vapeur.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Attendez environs 30 minutes le temps que vos ingrédients soient à Température Ambiante avant de faire le mélange Huile + Soude. Et pendant ce temps, Huilez vos moules (eh oui comme pour les gâteaux) !</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 3 la Saponification</strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Mélanger l'huile de coco et le beurre de karité fondu.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Versez lentement votre Soude DANS vos Huiles, jamais le contraire, tout en mélangeant, un mixeur plongeant. Attention à bien laisser la tête de votre mixeur dans la pâte à savon, risque de projections.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Lorsque la Trace</strong> apparaît, versez rapidement votre huile de palme, les feuilles de thé Rooibos, l'huile essentielle, le lait de jument et l'extrait de vanille et mélangez. Versez votre pate à savon dans les moules et si comme moi elle est trop compacte, allez y la cuillère et façonnez là bien (cette fois pas d'irrégularités).Recouvrir vos savons d'un film plastique pour le protéger. Si vous avez des moules individuels comme moi vous pouvez les y laisser pour la <strong>cure (3 à 4 semaines),</strong> sinon attendez environs 3 jours pour le démouler et les couper (avec des gants). Pendant cette durée, le procédé de saponification continu, placez votre savon à l'endroit le plus chaud de la maison.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingrédients</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le Rooibos ou thé rouge Africain</strong>: Le thé de rooibos est extrait des feuilles du Sud-africain <em>(Aspalathus linearis)</em>. La teneur du rooibos en substances antioxydantes et antimicrobiales pourrait justifier son emploi topique pour soulager allergies cutanées, eczéma et érythème fessier, acné. Ce thé est très souvent utilisé en Afrique du Sud pour prendre le bain aux enfants souffrant d'allergies ou de problèmes de peau. j'ai acheté le mien chez Biocoop. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'huile de coco extra</strong> riche en anti-oxydants naturels et protège la peau des dommages liés aux radicaux libres. Elle aide également la peau à se cicatriser et à se réparer et la rend toute douce.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'huile de palme pure non traitée: </strong><span style="color: #000000;">L’huile rouge, cultivée essentiellement en Afrique, est très nutritive et bonne pour la santé tant qu’elle n’est pas cuite. Utilisée en fin de cuisson dans certains plats africains elle garde ses vertus. L'huile de palme rouge (non raffinée ni traitée) est considérée comme l'aliment naturel le plus riche en vitamine A, elle en contient environ 15 fois plus que la carotte. </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Lait de Jument :</strong> riche en minéraux, vitamines et oligo-éléments, le lait de jument est une véritable source de nutriments essentiels pour la peau. Il est réputé pour apaiser les peaux irritées ou fragiles.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Huile essentielle d'ylang ylang :</strong> cette fleur est stimulante et tonifiante. Elle est reconnue pour agir contre la dépression et l'excitabilité. Régénérateur cellulaire et antiseptique, elle est Séborégulatrice.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="rooibos2" href="http://s1.e-monsite.com/2009/09/13/10/93310391130809-004-jpg.jpg"> </a></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="roiibos2.jpg" src="http://s1.e-monsite.com/2009/09/17/11/32536197roiibos2-jpg.jpg" alt="" border="0" /></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Analyse de mon savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>INS</strong> 161</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Dureté</strong> 58</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Persistance de la Mousse</strong> 64</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pouvoir nettoyant</strong> 55</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Douceur 54</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes impressions:</strong> 1er jour d'utilisation, il est doux je pensais qu'on sentirait le frottement des feuilles de thé sur la peau mais ce n'est pas le cas. PH 7.5/8 (toujours en comparaison de la teinte obtenue avec le même papier mon mon savon industriel mais naturel, habituel). ca fait plus d'une semaine que je l'utilise et on sens finalement les feuilles de thé sur la peau, surtout sur le visage. la prochaine fournée, sera faite de l'infusion de ce thé ou des feuilles réduites en poudre. </span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Savon Extra doux Rooibospublishopenopensavon-extra-doux-rooibos2012-01-18 17:23:062012-01-18 16:23:060http://www.alicepegie.com/wordpress/wordpress/?p=2400post0
24112012-01-18 17:22:352012-01-18 16:22:35<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Après ma « réussite » quant à la réalisation de mon premier savon, j'ai eu envie d'en faire très vite d'autres d'autant que le premier est très vite partie pour test. Alors voici mon deuxième cru.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Mon savon exfolient au Thé Rooibos. Pour cela je me suis inspirée de cette<a href="http://www.afriqueessences.com/savons-artisanaux-africains/les-savons-peaux-a-problemes/savon-karite-rooibos-lait-de-chevre-commerce-equitable/fiche-produit-detaillee.html"> recette d'afriqueessence.</a></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> Ingrédients : pour 580g prix env 22€</strong></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="savon rooibos.jpg" src="http://s1.e-monsite.com/2009/09/17/11/3802973savon-rooibos-jpg.jpg" alt="" border="0" /></span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="rooibos" href="http://s1.e-monsite.com/2009/09/13/10/74783371130809-003-jpg.jpg"><!--more--></a></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de karité 300g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Huile de coco extra-vierge 140g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pour la saponification</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Eau 146.7</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Soude 64.3</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ajouts à la trace</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Lait de Jument 3g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Thé de rooibos 5g</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Huile essentielle d'ylang ylang 1ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Extrait de vanille 5ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong> Surgraissage 10.7%</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Huile de Palme 45g </span></span> Normal 0 21 false false false MicrosoftInternetExplorer4</p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #800000;"><strong>Réalisation</strong></span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="index.php?option=com_content&amp;view=article&amp;id=206:mon-savon-noir-dafrique&amp;catid=59&amp;Itemid=82">(procédure détaillée ici)</a></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Matériel Nécessaire :</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Une Balance de précision (au gramme près)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Un Micro-ondes ou du matériel pour réaliser un Bain Marie - Des gants, lunettes, masque (ou un foulard! - Plusieurs contenants résistants à la chaleur, Une cuillère en inox, une spatule, Moules pour vos Savons - Du Vinaigre (en cas de projection de soude ou de pâte à savon rincez instantanément avec du Vinaigre, cela neutralise l'effet corrosif de la Soude)</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 1 </strong>: <strong>la même pour toute réalisation de cosmétiques maison :</strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Stérilisez votre matériel, protégez vous et votre plan de travail, portez des gants, un masque, aérez la pièce.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Vérifiez votre recette de Savon et surtout votre quantité de Soude à peser</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>- É.l.o.i.g.n.e.z l.e.s. e.n.f.a.n.t.s,</strong> animaux pour éviter tout accident !!!!! </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 2 </strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pesez très précisément et séparément tous vos ingrédients, surtout la soude !</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Faites chauffer le beurre de Karité et l'huile de palme si ce dernier s'est solidifié.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Diluez la soude dans l'eau (jamais le contraire) <strong>TOUJOURS SOUDE DANS EAU !!!</strong>, la soude dégage des vapeurs, ne mettez pas votre tête juste au dessus du mélange soude eau, mettez un masque, des gants et des lunettes, tenez le récipient le plus loin possible de vous tout en mélangeant jusqu'à ca que le mélange ne dégage plus de vapeur.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Attendez environs 30 minutes le temps que vos ingrédients soient à Température Ambiante avant de faire le mélange Huile + Soude. Et pendant ce temps, Huilez vos moules (eh oui comme pour les gâteaux) !</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 3 la Saponification</strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Mélanger l'huile de coco et le beurre de karité fondu.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Versez lentement votre Soude DANS vos Huiles, jamais le contraire, tout en mélangeant, un mixeur plongeant. Attention à bien laisser la tête de votre mixeur dans la pâte à savon, risque de projections.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Lorsque la Trace</strong> apparaît, versez rapidement votre huile de palme, les feuilles de thé Rooibos, l'huile essentielle, le lait de jument et l'extrait de vanille et mélangez. Versez votre pate à savon dans les moules et si comme moi elle est trop compacte, allez y la cuillère et façonnez là bien (cette fois pas d'irrégularités).Recouvrir vos savons d'un film plastique pour le protéger. Si vous avez des moules individuels comme moi vous pouvez les y laisser pour la <strong>cure (3 à 4 semaines),</strong> sinon attendez environs 3 jours pour le démouler et les couper (avec des gants). Pendant cette durée, le procédé de saponification continu, placez votre savon à l'endroit le plus chaud de la maison.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingrédients</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le Rooibos ou thé rouge Africain</strong>: Le thé de rooibos est extrait des feuilles du Sud-africain <em>(Aspalathus linearis)</em>. La teneur du rooibos en substances antioxydantes et antimicrobiales pourrait justifier son emploi topique pour soulager allergies cutanées, eczéma et érythème fessier, acné. Ce thé est très souvent utilisé en Afrique du Sud pour prendre le bain aux enfants souffrant d'allergies ou de problèmes de peau. j'ai acheté le mien chez Biocoop. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'huile de coco extra</strong> riche en anti-oxydants naturels et protège la peau des dommages liés aux radicaux libres. Elle aide également la peau à se cicatriser et à se réparer et la rend toute douce.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'huile de palme pure non traitée: </strong><span style="color: #000000;">L’huile rouge, cultivée essentiellement en Afrique, est très nutritive et bonne pour la santé tant qu’elle n’est pas cuite. Utilisée en fin de cuisson dans certains plats africains elle garde ses vertus. L'huile de palme rouge (non raffinée ni traitée) est considérée comme l'aliment naturel le plus riche en vitamine A, elle en contient environ 15 fois plus que la carotte. </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Lait de Jument :</strong> riche en minéraux, vitamines et oligo-éléments, le lait de jument est une véritable source de nutriments essentiels pour la peau. Il est réputé pour apaiser les peaux irritées ou fragiles.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Huile essentielle d'ylang ylang :</strong> cette fleur est stimulante et tonifiante. Elle est reconnue pour agir contre la dépression et l'excitabilité. Régénérateur cellulaire et antiseptique, elle est Séborégulatrice.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="rooibos2" href="http://s1.e-monsite.com/2009/09/13/10/93310391130809-004-jpg.jpg"> </a></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="roiibos2.jpg" src="http://s1.e-monsite.com/2009/09/17/11/32536197roiibos2-jpg.jpg" alt="" border="0" /></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Analyse de mon savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>INS</strong> 161</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Dureté</strong> 58</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Persistance de la Mousse</strong> 64</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pouvoir nettoyant</strong> 55</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Douceur 54</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes impressions:</strong> 1er jour d'utilisation, il est doux je pensais qu'on sentirait le frottement des feuilles de thé sur la peau mais ce n'est pas le cas. PH 7.5/8 (toujours en comparaison de la teinte obtenue avec le même papier mon mon savon industriel mais naturel, habituel). ca fait plus d'une semaine que je l'utilise et on sens finalement les feuilles de thé sur la peau, surtout sur le visage. la prochaine fournée, sera faite de l'infusion de ce thé ou des feuilles réduites en poudre. </span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Savon Extra doux Rooibosinheritopenopen240-revision2012-01-18 17:22:352012-01-18 16:22:35240http://www.alicepegie.com/wordpress/wordpress/?p=2410revision0
24212010-01-15 17:23:232010-01-15 16:23:23<span style="font-size: small; font-family: arial,helvetica,sans-serif;">Et voici mon premier shampooing en barre toujours inspirée de <a href="http://www.afriqueessences.com/shampooing-au-karite/barre-shampooing-karite-miel-sauvage-du-togo/fiche-produit-detaillee.html"> recette d'afriqueessence.</a></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong> Ingrédients : pour 566g prix env 25€</strong></span> <img title="shampooing.jpg" src="http://s1.e-monsite.com/2009/09/18/12/82116568shampooing-jpg.jpg" alt="" border="0" /> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Beurre de karité 300g</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Huile de coco extra-vierge 140g</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Pour la saponification<!--more--></strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Eau 146.7</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Soude 64.3</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Ajouts à la trace</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Poudre de miel lyophilisée 5g (le liquide convient aussi bien)</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong> Surgraissage 4.8%</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"> Beurre de Karité 20g</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Réalisation</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><a href="blog,mon-savon-noir-d-afrique,169993.html">(Procédure détaillée ici)</a></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Matériel Nécessaire :</strong></span> <p style="text-align: justify;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Une Balance de précision (au gramme près)</span></p> <p style="text-align: justify;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Un Micro-ondes ou du matériel pour réaliser un Bain Marie - Des gants, lunettes, masque (ou un foulard! - Plusieurs contenants résistants à la chaleur, Une cuillère en inox, une spatule, Moules pour vos Savons - Du Vinaigre (en cas de projection de soude ou de pâte à savon rincez instantanément avec du Vinaigre, cela neutralise l'effet corrosif de la Soude)</span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 1 </strong>: <strong>la même pour toute réalisation de cosmétiques maison :</strong></span></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Stérilisez votre matériel, protégez vous et votre plan de travail, portez des gants, un masque, aérez la pièce.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Vérifiez votre recette de Savon et surtout votre quantité de Soude à peser</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>- É.l.o.i.g.n.e.z l.e.s. e.n.f.a.n.t.s,</strong> animaux pour éviter tout accident !!!!! </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 2</strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pesez très précisément et séparément tous vos ingrédients, surtout la soude !</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Faites chauffer le beurre de Karité pour le liquéfier</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Diluez la soude dans l'eau (jamais le contraire) <strong>TOUJOURS SOUDE DANS EAU !!!</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Attendez environs 30 minutes le temps que vos ingrédients soient à Température Ambiante avant de faire le mélange Huile + Soude. Et pendant ce temps, Huilez vos moules</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 3 la Saponification</strong></span></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Mélanger l'huile de coco et le beurre de karité fondu.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Versez lentement votre <strong>Soude DANS vos Huiles</strong>, tout en mélangeant avec un mixeur plongeant. Attention aux projections.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Lorsque la Trace</strong> apparaît, versez rapidement votre Surgraissage et le miel, puis mélangez. Versez votre pate à savon dans les moules.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Recouvrir vos savons d'un film plastique pour le protéger. Si vous avez des moules individuels comme moi vous pouvez les y laisser pour la <strong>cure (3 à 4 semaines),</strong> sinon attendez environs 3 jours pour le démouler et les couper (avec des gants).</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingrédients</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le Miel:</strong> Connu pour ses propriétés réparatrices, purifiantes et adoucissantes, le miel est un véritable trésor de beauté idéal pour les peaux sèches. Il Favorise l'hydratation de la peau, Accélère la cicatrisation et la régénération de la peau, Lutte contre les inflammations, adoucit la peau, Puissant bactériostatique (empêche le développement des bactéries)</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="shampooing2.jpg" src="http://s1.e-monsite.com/2009/09/18/12/27917514shampooing2-jpg.jpg" alt="" border="0" /></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Analyse de mon shampooing selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>INS</strong> 161</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Dureté</strong> 61</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Persistance de la Mousse</strong> 60</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pouvoir nettoyant</strong> 59 <span style="background-color: #888888;">(PH à contrôler !!)</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Douceur </strong>50<strong> (valeur idéale)</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">il a fini sa cure hier, j'ai pu mesurer son PH et j'obtient un teinte comprise entre 6 et 7.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation : </strong>Peut s'utiliser pour laver les cheveux qu'il laisse propres et hydratés. Faire suivre dans ce cas d'un rinçage au vinaigre dans les proportions de 1,5 litre d'eau pour deux cuillères à soupe de vinaigre de votre choix. Vous n'aurez pas besoin d'après shampooing!</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Barre Shampooing Karite et Mielpublishopenopenbarre-shampooing-karite-et-miel2012-01-18 17:24:382012-01-18 16:24:380http://www.alicepegie.com/wordpress/wordpress/?p=2420post0
24312012-01-18 17:24:142012-01-18 16:24:14<span style="font-size: small; font-family: arial,helvetica,sans-serif;">Et voici mon premier shampooing en barre toujours inspirée de <a href="http://www.afriqueessences.com/shampooing-au-karite/barre-shampooing-karite-miel-sauvage-du-togo/fiche-produit-detaillee.html"> recette d'afriqueessence.</a></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong> Ingrédients : pour 566g prix env 25€</strong></span> <img title="shampooing.jpg" src="http://s1.e-monsite.com/2009/09/18/12/82116568shampooing-jpg.jpg" alt="" border="0" /> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Beurre de karité 300g</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Huile de coco extra-vierge 140g</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Pour la saponification<!--more--></strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Eau 146.7</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Soude 64.3</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Ajouts à la trace</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Poudre de miel lyophilisée 5g (le liquide convient aussi bien)</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong> Surgraissage 4.8%</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"> Beurre de Karité 20g</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Réalisation</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><a href="blog,mon-savon-noir-d-afrique,169993.html">(Procédure détaillée ici)</a></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Matériel Nécessaire :</strong></span> <p style="text-align: justify;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Une Balance de précision (au gramme près)</span></p> <p style="text-align: justify;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Un Micro-ondes ou du matériel pour réaliser un Bain Marie - Des gants, lunettes, masque (ou un foulard! - Plusieurs contenants résistants à la chaleur, Une cuillère en inox, une spatule, Moules pour vos Savons - Du Vinaigre (en cas de projection de soude ou de pâte à savon rincez instantanément avec du Vinaigre, cela neutralise l'effet corrosif de la Soude)</span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 1 </strong>: <strong>la même pour toute réalisation de cosmétiques maison :</strong></span></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Stérilisez votre matériel, protégez vous et votre plan de travail, portez des gants, un masque, aérez la pièce.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Vérifiez votre recette de Savon et surtout votre quantité de Soude à peser</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>- É.l.o.i.g.n.e.z l.e.s. e.n.f.a.n.t.s,</strong> animaux pour éviter tout accident !!!!! </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 2</strong></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Pesez très précisément et séparément tous vos ingrédients, surtout la soude !</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Faites chauffer le beurre de Karité pour le liquéfier</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Diluez la soude dans l'eau (jamais le contraire) <strong>TOUJOURS SOUDE DANS EAU !!!</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Attendez environs 30 minutes le temps que vos ingrédients soient à Température Ambiante avant de faire le mélange Huile + Soude. Et pendant ce temps, Huilez vos moules</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;"><strong>ETAPE 3 la Saponification</strong></span></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Mélanger l'huile de coco et le beurre de karité fondu.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Versez lentement votre <strong>Soude DANS vos Huiles</strong>, tout en mélangeant avec un mixeur plongeant. Attention aux projections.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Lorsque la Trace</strong> apparaît, versez rapidement votre Surgraissage et le miel, puis mélangez. Versez votre pate à savon dans les moules.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Recouvrir vos savons d'un film plastique pour le protéger. Si vous avez des moules individuels comme moi vous pouvez les y laisser pour la <strong>cure (3 à 4 semaines),</strong> sinon attendez environs 3 jours pour le démouler et les couper (avec des gants).</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingrédients</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le Miel:</strong> Connu pour ses propriétés réparatrices, purifiantes et adoucissantes, le miel est un véritable trésor de beauté idéal pour les peaux sèches. Il Favorise l'hydratation de la peau, Accélère la cicatrisation et la régénération de la peau, Lutte contre les inflammations, adoucit la peau, Puissant bactériostatique (empêche le développement des bactéries)</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="shampooing2.jpg" src="http://s1.e-monsite.com/2009/09/18/12/27917514shampooing2-jpg.jpg" alt="" border="0" /></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Analyse de mon shampooing selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>INS</strong> 161</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Dureté</strong> 61</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Persistance de la Mousse</strong> 60</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pouvoir nettoyant</strong> 59 <span style="background-color: #888888;">(PH à contrôler !!)</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Douceur </strong>50<strong> (valeur idéale)</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">il a fini sa cure hier, j'ai pu mesurer son PH et j'obtient un teinte comprise entre 6 et 7.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation : </strong>Peut s'utiliser pour laver les cheveux qu'il laisse propres et hydratés. Faire suivre dans ce cas d'un rinçage au vinaigre dans les proportions de 1,5 litre d'eau pour deux cuillères à soupe de vinaigre de votre choix. Vous n'aurez pas besoin d'après shampooing!</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Barre Shampooing Karite et Mielinheritopenopen242-revision2012-01-18 17:24:142012-01-18 16:24:14242http://www.alicepegie.com/wordpress/wordpress/?p=2430revision0
24412010-01-15 17:25:102010-01-15 16:25:10<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Une amie m'a demandé comment réaliser soi-même une crème maison quand on a aucune connaissance en cosmétique et avec pour tout ingrédients les produits que l'on trouve dans les rayons d'un supermarché. Eh bien c'est comme pour faire un gâteau soit :</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>De l'Eau</strong> qui pourra être remplacée par une infusion de plante(s), ou par de l'Hydrolat(s).</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Des Huile(s)/Beurres Végétaux</strong> : Vous pouvez utiliser une ou plusieurs huiles et ou beurres végétaux.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Un Emulsifiant</strong> : vous en trouverez facilement sur les sites de matières premières cosmetiques.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conservation de votre Crème</strong> : Si vous n'avez pas de conservateur à votre disposition, soyez particulièrement attentifs à l'hygiène lors de la réalisation de votre crème, stockez la au frais et utilisez-la dans les 2 semaines maximum.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Sinon moi j'utilise exclusivement de l'extrait de pépins de pamplemousse (EPP) seule ce qui me permet de garder ma crème 1mois à température ambiante. Dosage 1 % soit environ 35 gouttes pour 100 ml de crème</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Mais vous pouvez associer l'Extrait de pépins de pamplemousse à du Sodium Benzoate ou du Sorbate de Potassium, vous pourrez conserver plusieurs mois vos crèmes à température Ambiante. Dosage : 0,5 % EPP + 0,5 % Sodium Benzoate ou 0,5 % EPP + 0,2 % Sorbate de Potassium.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Il existe un Conservateur Naturel, appelé Plantaserv que vous pourrez trouver <a href="http://www.alternativenature.fr/PBHomePage.asp?PBMInit=1">ICI</a> qui est vraiment efficace et qui permet de garder un an une crème !!</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">IMPORTANT !!</span> </strong>Nettoyez et Désinfectez votre matériel, vos ustensiles, sans oublier vos Mains. Ayez une Hygiène rigoureuse lorsque vous travaillez.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Voici quelques recettes.<!--more--></strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><span style="color: #ff0000;"><strong><span style="text-decoration: underline;">Crème de soin choco pour le corps </span></strong></span></em></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><span style="color: #ff0000;"><strong><span style="color: #993300;">prix 7.51€ pour 100g temps de réalisation 25 mn.</span><span style="text-decoration: underline;"> </span></strong></span></em></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Inspirée par cette recette d'<a href="http://www.aroma-zone.com/aroma/FicheBeurrecacao.asp#mousse_chocolatee">AZ</a></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img class="aligncenter" title="creme corps.jpg" src="http://s1.e-monsite.com/2009/09/17/09/59885837creme-corps-jpg.jpg" alt="" border="0" /></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #0000ff;"><strong>PHASE AQUEUSE 65 %</strong></span> Hydrolat de Rose de Damas 35 g</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Macérât hydro glycériné de Busserole à 10% 30g</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #ffcc00;"> </span><strong><span style="color: #993300;">PHASE HUILEUSE 23 %</span> </strong>HV Rose musquée 14 g Beurre de Karité 1.5 g</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Cacao 1.5g</span></span> <strong><span style="color: #800080;">EMULSIFIANT 8%</span> </strong>Cire Emulsifiante N°2 de chez AZ 6 g <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>EXTRAIT AROMATIQUE 4 %</strong></span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Extrait aromatique de Cacao 3g</span></span> <strong><span style="color: #333300;">CONSERVATEURS 0.6 %</span> </strong>EPP 0.5g <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/ Transférez l'huile végétale de Rose musquée + les beurres de Cacao et de karité + la cire émulsifiante n°2 dans un récipient.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ Dans un autre récipient, transférez la phase aqueuse.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ Faites chauffer séparément au bain-marie les deux phases.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ Lorsque les deux phases sont à la même température, versez lentement la phase huileuse dans la phase aqueuse sans cesser d'agiter vigoureusement au batteur pendant environ 3 minutes. Le mélange blanchit et s'homogénéise. Si le produit devient trop épais, finissez de mélanger au mini-fouet manuel, à la spatule ou à la cuillère.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5/ Sans cesser d'agiter, mettez le récipient dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">6/ Ajoutez enfin l'Extrait aromatique de Cacao, l'huile essentielle et Extrait de Pépins de Pamplemousse ingrédient par ingrédient puis mélangez bien entre chaque ajout. </span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">7/ Pour finir, reprenez le fouet et agitez encore pendant 2 minutes par de légers mouvements.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">8/ Arrêtez l'agitation, puis transférez directement la préparation dans votre contenant sans attendre.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">9/ Laissez reposer votre produit à température ambiante sans y toucher pendant environ 24 heures.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation : </strong>Cette crème chocolatée très gourmande s'applique sur l'ensemble du corps en légers massages circulaires jusqu'à pénétration complète du produit.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Stockez votre pot à l'abri de la lumière et de la chaleur.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Conservation : au moins 1 mois. j'en fais toujours 300ml maxi ce qui me fait 4 à 5 semaines. </span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="creme corps2.jpg" src="http://s1.e-monsite.com/2009/09/17/10/76961544creme-corps2-jpg.jpg" alt="" border="0" /></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Choix des ingrédients:</span></strong></span></span> <ul type="disc"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Hydrolat de Rose de Damas:</strong> Astringent et tenseur, il permet de prévenir et lutter contre le vieillissement cutané. Il purifie, rafraîchit et adoucit la peau. Il est aussi connu pour calmer les irritations et les rougeurs. Il procure une sensation de bien-être et d'harmonie.</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Macérât hydro glycériné de Busserole à 10% </strong>: la Busserole est une plante qui produit un actif clarifiant naturel, l'arbutine, en concentration importante. Cette substance, qui est un dérivé naturel de l'hydroquinone possède une efficacité supérieure à cette dernière, sans en présenter la toxicité. L'arbutine intervient uniquement sur la synthèse excessive de la mélanine (taches de grossesse, vieillissement de la peau etc.....) à des doses faibles. permet de clarifier et uniformiser le teint sans irritation ni sensibilisation. </span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HV Rose Musquée</strong>: Idéale pour la jeunesse et l'éclat de la peau. Elle a une action régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. Il en résultera une peau plus lisse avec pour effet une fraîcheur retrouvée et un nouvel éclat</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Beurre de Cacao</strong>: idéal pour lutter contre les effets néfastes du temps, redonne élasticité et tonus à la peau, Nourrissant et protecteur, il a une action apaisante.</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Beurre de Karité:</strong> apaisant et calmant, hydratant et nourrit la peau et les cheveux. c'est aussi une régénérant cutané, revitalisant tissulaire, il redonne de l'élasticité à la peau.</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Huile essentielle de Bois de Rose: </strong>reconnue pour son effet rajeunissant et régénérant sur la peau. Elle s'emploie ainsi largement pour estomper les rides et régénérer les peaux fatiguées. </span></span></li> </ul> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Adaptez votre crème</span></strong></span></span></p> <ul type="disc"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></span></li> </ul> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Creme de Soin Choco pour le Corpspublishopenopencreme-de-soin-choco-pour-le-corps2012-01-18 17:26:252012-01-18 16:26:250http://www.alicepegie.com/wordpress/wordpress/?p=2440post0
24512012-01-18 17:26:122012-01-18 16:26:12<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Une amie m'a demandé comment réaliser soi-même une crème maison quand on a aucune connaissance en cosmétique et avec pour tout ingrédients les produits que l'on trouve dans les rayons d'un supermarché. Eh bien c'est comme pour faire un gâteau soit :</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>De l'Eau</strong> qui pourra être remplacée par une infusion de plante(s), ou par de l'Hydrolat(s).</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Des Huile(s)/Beurres Végétaux</strong> : Vous pouvez utiliser une ou plusieurs huiles et ou beurres végétaux.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Un Emulsifiant</strong> : vous en trouverez facilement sur les sites de matières premières cosmetiques.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Conservation de votre Crème</strong> : Si vous n'avez pas de conservateur à votre disposition, soyez particulièrement attentifs à l'hygiène lors de la réalisation de votre crème, stockez la au frais et utilisez-la dans les 2 semaines maximum.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Sinon moi j'utilise exclusivement de l'extrait de pépins de pamplemousse (EPP) seule ce qui me permet de garder ma crème 1mois à température ambiante. Dosage 1 % soit environ 35 gouttes pour 100 ml de crème</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Mais vous pouvez associer l'Extrait de pépins de pamplemousse à du Sodium Benzoate ou du Sorbate de Potassium, vous pourrez conserver plusieurs mois vos crèmes à température Ambiante. Dosage : 0,5 % EPP + 0,5 % Sodium Benzoate ou 0,5 % EPP + 0,2 % Sorbate de Potassium.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Il existe un Conservateur Naturel, appelé Plantaserv que vous pourrez trouver <a href="http://www.alternativenature.fr/PBHomePage.asp?PBMInit=1">ICI</a> qui est vraiment efficace et qui permet de garder un an une crème !!</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">IMPORTANT !!</span> </strong>Nettoyez et Désinfectez votre matériel, vos ustensiles, sans oublier vos Mains. Ayez une Hygiène rigoureuse lorsque vous travaillez.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Voici quelques recettes.<!--more--></strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><span style="color: #ff0000;"><strong><span style="text-decoration: underline;">Crème de soin choco pour le corps </span></strong></span></em></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em><span style="color: #ff0000;"><strong><span style="color: #993300;">prix 7.51€ pour 100g temps de réalisation 25 mn.</span><span style="text-decoration: underline;"> </span></strong></span></em></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Inspirée par cette recette d'<a href="http://www.aroma-zone.com/aroma/FicheBeurrecacao.asp#mousse_chocolatee">AZ</a></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img class="aligncenter" title="creme corps.jpg" src="http://s1.e-monsite.com/2009/09/17/09/59885837creme-corps-jpg.jpg" alt="" border="0" /></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #0000ff;"><strong>PHASE AQUEUSE 65 %</strong></span> Hydrolat de Rose de Damas 35 g</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Macérât hydro glycériné de Busserole à 10% 30g</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #ffcc00;"> </span><strong><span style="color: #993300;">PHASE HUILEUSE 23 %</span> </strong>HV Rose musquée 14 g Beurre de Karité 1.5 g</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Cacao 1.5g</span></span> <strong><span style="color: #800080;">EMULSIFIANT 8%</span> </strong>Cire Emulsifiante N°2 de chez AZ 6 g <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>EXTRAIT AROMATIQUE 4 %</strong></span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Extrait aromatique de Cacao 3g</span></span> <strong><span style="color: #333300;">CONSERVATEURS 0.6 %</span> </strong>EPP 0.5g <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/ Transférez l'huile végétale de Rose musquée + les beurres de Cacao et de karité + la cire émulsifiante n°2 dans un récipient.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ Dans un autre récipient, transférez la phase aqueuse.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ Faites chauffer séparément au bain-marie les deux phases.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ Lorsque les deux phases sont à la même température, versez lentement la phase huileuse dans la phase aqueuse sans cesser d'agiter vigoureusement au batteur pendant environ 3 minutes. Le mélange blanchit et s'homogénéise. Si le produit devient trop épais, finissez de mélanger au mini-fouet manuel, à la spatule ou à la cuillère.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5/ Sans cesser d'agiter, mettez le récipient dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">6/ Ajoutez enfin l'Extrait aromatique de Cacao, l'huile essentielle et Extrait de Pépins de Pamplemousse ingrédient par ingrédient puis mélangez bien entre chaque ajout. </span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">7/ Pour finir, reprenez le fouet et agitez encore pendant 2 minutes par de légers mouvements.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">8/ Arrêtez l'agitation, puis transférez directement la préparation dans votre contenant sans attendre.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">9/ Laissez reposer votre produit à température ambiante sans y toucher pendant environ 24 heures.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation : </strong>Cette crème chocolatée très gourmande s'applique sur l'ensemble du corps en légers massages circulaires jusqu'à pénétration complète du produit.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Stockez votre pot à l'abri de la lumière et de la chaleur.</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Conservation : au moins 1 mois. j'en fais toujours 300ml maxi ce qui me fait 4 à 5 semaines. </span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="creme corps2.jpg" src="http://s1.e-monsite.com/2009/09/17/10/76961544creme-corps2-jpg.jpg" alt="" border="0" /></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Choix des ingrédients:</span></strong></span></span> <ul type="disc"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Hydrolat de Rose de Damas:</strong> Astringent et tenseur, il permet de prévenir et lutter contre le vieillissement cutané. Il purifie, rafraîchit et adoucit la peau. Il est aussi connu pour calmer les irritations et les rougeurs. Il procure une sensation de bien-être et d'harmonie.</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Macérât hydro glycériné de Busserole à 10% </strong>: la Busserole est une plante qui produit un actif clarifiant naturel, l'arbutine, en concentration importante. Cette substance, qui est un dérivé naturel de l'hydroquinone possède une efficacité supérieure à cette dernière, sans en présenter la toxicité. L'arbutine intervient uniquement sur la synthèse excessive de la mélanine (taches de grossesse, vieillissement de la peau etc.....) à des doses faibles. permet de clarifier et uniformiser le teint sans irritation ni sensibilisation. </span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HV Rose Musquée</strong>: Idéale pour la jeunesse et l'éclat de la peau. Elle a une action régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. Il en résultera une peau plus lisse avec pour effet une fraîcheur retrouvée et un nouvel éclat</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Beurre de Cacao</strong>: idéal pour lutter contre les effets néfastes du temps, redonne élasticité et tonus à la peau, Nourrissant et protecteur, il a une action apaisante.</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Beurre de Karité:</strong> apaisant et calmant, hydratant et nourrit la peau et les cheveux. c'est aussi une régénérant cutané, revitalisant tissulaire, il redonne de l'élasticité à la peau.</span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Huile essentielle de Bois de Rose: </strong>reconnue pour son effet rajeunissant et régénérant sur la peau. Elle s'emploie ainsi largement pour estomper les rides et régénérer les peaux fatiguées. </span></span></li> </ul> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Adaptez votre crème</span></strong></span></span></p> <ul type="disc"> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></span></li> <li><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></span></li> </ul> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Creme de Soin Choco pour le Corpsinheritopenopen244-revision2012-01-18 17:26:122012-01-18 16:26:12244http://www.alicepegie.com/wordpress/wordpress/?p=2450revision0
24612010-01-15 17:26:542010-01-15 16:26:54&nbsp; <img style="border: 0pt none; float: left;" title="creme coprs unifiante.jpg" src="http://s1.e-monsite.com/2009/09/20/10/7917853creme-coprs-unifiante-jpg.jpg" alt="" width="421" height="305" border="0" /> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;">Coût : 6.06€</span></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Temps de réalisation : <strong>25 minutes</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Matériel nécessaire </strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">- mini-fouet</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Balance de précision</span> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Phase huileuse</strong></span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- HV de Rose Musquée BIO : 30 ml</span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Émulsifiant VE : 5 g</span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Phase aqueuse</strong></span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Macérât hydro-glycériné de Busserole BIO : 60 ml</span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Émulsifiant MF : 5 g</span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><!--more--></span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Ajouts</strong></span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Miel : 2 g</span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- AHA - acides de fruits : 5 ml</span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Extrait aromatique de mangue</span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Extrait de Pépins de Pamplemousse : 20 gouttes</span></p> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">1/ Dans un bol, transférez la phase huileuse</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">2/ Dans un autre bol, transférez la phase aqueuse en prenant soin de bien mélanger les deux pour obtenir un mélange homogène</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">3/ Faire chauffer séparément au bain-marie les deux phases.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Lorsqu'elles sont à la même température, verser lentement la phase aqueuse dans la phase grasse sans cesser d'agiter vigoureusement au fouet pendant environ 3 minutes. Le mélange blanchit et s'homogénéise.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">4/ Sans cesser d'agiter, mettre le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">5/ Laissez reposer votre crème 15 minutes sans y toucher afin qu'elle prenne en viscosité.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">6/ Mélangez enfin pendant 30 secondes votre produit afin de le rendre bien lisse puis ajouter progressivement le reste des ingrédients un à un en homogénéisant au fouet main, entre chaque ajout.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">7/ Arrêtez l'agitation puis transférer rapidement la préparation dans votre flacon.</span> <p style="text-align: center;"><a class="mb" title="creme aha main.jpg" href="http://s1.e-monsite.com/2009/09/20/10/42358629creme-aha-main-jpg.jpg"><img title="creme aha main.jpg" src="http://s1.e-monsite.com/2009/09/20/10/mini2-42358629creme-aha-main-jpg.jpg" alt="" align="left" border="0" /></a></p> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"> <strong>Une senteur délicieuse pour une crème corporelle nourrissante qui stimulera le renouvellement cellulaire.</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Stockez votre pot à l'abri de la lumière et de la chaleur.</span> <img title="creme coprs unifiante2.jpg" src="http://s1.e-monsite.com/2009/09/20/10/49553054creme-coprs-unifiante2-jpg.jpg" alt="" border="0" /> <span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"> </span> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="text-decoration: underline;"><strong><span>Choix des ingredients:</span></strong></span></span></p> <ul> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><strong><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">AHA:</span></span></strong></span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;">Les AHA sont connus pour leurs <strong>effets bénéfiques sur le renouvellement de la peau et l'éclat du teint</strong>, ainsi que leurs effets anti-âge. Ils s’incorporent dans les crèmes et masques pour les peaux ternes et fatiguées.</span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><strong><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Emulsifiant MF: </span></span></strong></span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;">Son association avec l'émulsifiant VE en fait un émulsifiant très apprécié pour réaliser des émulsions légères très riches en eau ou hydrolat.</span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><strong><span style="font-size: small;">HV Rose Musquée</span></strong>: </span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="font-family: Arial;">Idéale pour la jeunesse et l'éclat de la peau. Elle a une action régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. Il en résultera une peau plus lisse avec pour effet une fraîcheur retrouvée et un nouvel éclat</span></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><span style="font-size: small;"><strong><span style="font-family: arial,helvetica,sans-serif;">Emulsifiant VE: </span></strong></span></span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;">Co-émulsifiant qui a la propriété d'assouplir et de nourrir la peau, pour des émulsions légères et pénétrantes.</span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><strong>Macérât hydro glycériné de Busserole à 10% </strong>: la Busserole est une plante qui produit un actif clarifiant naturel, l'arbutine, en concentration importante. Cette substance, qui est un dérivé naturel de l'hydroquinone possède une efficacité supérieure à cette dernière, sans en présenter la toxicité. L'arbutine intervient uniquement sur la synthèse excessive de la mélanine (taches de grossesse, vieillissement de la peau etc.....) à des doses faibles. permet de clarifier et uniformiser le teint sans irritation ni sensibilisation. </span></li> </ul> <p class="MsoNormal" style="text-align: center;"><span style="text-decoration: underline;"><strong><span style="font-size: small; font-family: arial,helvetica,sans-serif;">Adaptez votre crème</span></strong></span></p> Normal 0 21 false false false FR X-NONE X-NONE MicrosoftInternetExplorer4 <ul> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></li> </ul> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Crème Corps Unifiante au Miel & AHApublishopenopencreme-corps-unifiante-au-miel-aha2012-01-18 20:55:322012-01-18 19:55:320http://www.alicepegie.com/wordpress/wordpress/?p=2460post0
24712012-01-18 17:27:562012-01-18 16:27:56<img style="border: 0pt none; float: left;" title="creme coprs unifiante.jpg" src="http://s1.e-monsite.com/2009/09/20/10/7917853creme-coprs-unifiante-jpg.jpg" alt="" width="421" height="305" border="0" /> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><span style="text-decoration: underline;">Coût : 6.06€</span></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Temps de réalisation : <strong>25 minutes</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Matériel nécessaire </strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">- mini-fouet</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Balance de précision</span> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Phase huileuse</strong></span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- HV de Rose Musquée BIO : 30 ml</span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Émulsifiant VE : 5 g</span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Phase aqueuse</strong></span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Macérât hydro-glycériné de Busserole BIO : 60 ml</span></p> <p style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Émulsifiant MF : 5 g<!--more--></span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Ajouts</strong></span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Miel : 2 g</span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- AHA - acides de fruits : 5 ml</span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Extrait aromatique de mangue</span></p> <p style="text-align: left;"><span style="font-size: small; font-family: arial,helvetica,sans-serif;">- Extrait de Pépins de Pamplemousse : 20 gouttes</span></p> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">1/ Dans un bol, transférez la phase huileuse</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">2/ Dans un autre bol, transférez la phase aqueuse en prenant soin de bien mélanger les deux pour obtenir un mélange homogène</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">3/ Faire chauffer séparément au bain-marie les deux phases.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Lorsqu'elles sont à la même température, verser lentement la phase aqueuse dans la phase grasse sans cesser d'agiter vigoureusement au fouet pendant environ 3 minutes. Le mélange blanchit et s'homogénéise.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">4/ Sans cesser d'agiter, mettre le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">5/ Laissez reposer votre crème 15 minutes sans y toucher afin qu'elle prenne en viscosité.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">6/ Mélangez enfin pendant 30 secondes votre produit afin de le rendre bien lisse puis ajouter progressivement le reste des ingrédients un à un en homogénéisant au fouet main, entre chaque ajout.</span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">7/ Arrêtez l'agitation puis transférer rapidement la préparation dans votre flacon.</span> <p style="text-align: center;"><a class="mb" title="creme aha main.jpg" href="http://s1.e-monsite.com/2009/09/20/10/42358629creme-aha-main-jpg.jpg"><img title="creme aha main.jpg" src="http://s1.e-monsite.com/2009/09/20/10/mini2-42358629creme-aha-main-jpg.jpg" alt="" align="left" border="0" /></a></p> <span style="font-size: small; font-family: arial,helvetica,sans-serif;"> <strong>Une senteur délicieuse pour une crème corporelle nourrissante qui stimulera le renouvellement cellulaire.</strong></span> <span style="font-size: small; font-family: arial,helvetica,sans-serif;">Stockez votre pot à l'abri de la lumière et de la chaleur.</span> <img title="creme coprs unifiante2.jpg" src="http://s1.e-monsite.com/2009/09/20/10/49553054creme-coprs-unifiante2-jpg.jpg" alt="" border="0" /> <span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"> </span> <p class="MsoNormal" style="text-align: center;"><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="text-decoration: underline;"><strong><span>Choix des ingredients:</span></strong></span></span></p> <ul> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><strong><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">AHA:</span></span></strong></span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;">Les AHA sont connus pour leurs <strong>effets bénéfiques sur le renouvellement de la peau et l'éclat du teint</strong>, ainsi que leurs effets anti-âge. Ils s’incorporent dans les crèmes et masques pour les peaux ternes et fatiguées.</span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><strong><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Emulsifiant MF: </span></span></strong></span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;">Son association avec l'émulsifiant VE en fait un émulsifiant très apprécié pour réaliser des émulsions légères très riches en eau ou hydrolat.</span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><strong><span style="font-size: small;">HV Rose Musquée</span></strong>: </span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="font-family: Arial;">Idéale pour la jeunesse et l'éclat de la peau. Elle a une action régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. Il en résultera une peau plus lisse avec pour effet une fraîcheur retrouvée et un nouvel éclat</span></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><span style="line-height: 115%; font-family: &amp;amp;"><span><span style="font-size: small;"><strong><span style="font-family: arial,helvetica,sans-serif;">Emulsifiant VE: </span></strong></span></span></span></span><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;">Co-émulsifiant qui a la propriété d'assouplir et de nourrir la peau, pour des émulsions légères et pénétrantes.</span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif; color: #000000;"><strong>Macérât hydro glycériné de Busserole à 10% </strong>: la Busserole est une plante qui produit un actif clarifiant naturel, l'arbutine, en concentration importante. Cette substance, qui est un dérivé naturel de l'hydroquinone possède une efficacité supérieure à cette dernière, sans en présenter la toxicité. L'arbutine intervient uniquement sur la synthèse excessive de la mélanine (taches de grossesse, vieillissement de la peau etc.....) à des doses faibles. permet de clarifier et uniformiser le teint sans irritation ni sensibilisation. </span></li> </ul> <p class="MsoNormal" style="text-align: center;"><span style="text-decoration: underline;"><strong><span style="font-size: small; font-family: arial,helvetica,sans-serif;">Adaptez votre crème</span></strong></span></p> Normal 0 21 false false false FR X-NONE X-NONE MicrosoftInternetExplorer4 <ul> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau grasse : </strong><a href="rubrique,peau-grasse,463780.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau acnéique : </strong><a href="rubrique,peau-acneique,463788.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sensible : </strong><a href="rubrique,peau-sensible,463792.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau sèche :</strong><a href="rubrique,peau-seche,463794.html"> Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau mature : </strong><a href="rubrique,peau-mature,463797.html">Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau normale à mixte :</strong><a href="rubrique,peau-normale-a-mixte,463798.html"> Vos ingrédients de choix ICI</a></span></li> <li><span style="font-size: small; font-family: arial,helvetica,sans-serif;"><strong>Vous avez la peau irritée : </strong><a href="rubrique,peau-irritee,463801.html">Vos ingrédients de choix ICI</a></span></li> </ul> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Crème Corps Unifiante au Miel & AHAinheritopenopen246-revision2012-01-18 17:27:562012-01-18 16:27:56246http://www.alicepegie.com/wordpress/wordpress/?p=2470revision0
24812010-01-15 17:28:292010-01-15 16:28:29<span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">J'ai constaté lundi que la crème habituelle de ma fille était presque finie, alors je me suis dit que j'allais tenter une crème maison pour sa jolie petite peau noisette et dans mes recherches je suis tombée sur cette <a href="http://www.aroma-zone.com/aroma/ficheHVcalendula.asp#beurre_tendre_bebe">recette d'AZ.</a> Mais je suis réfractaire, pour des raisons d'hygiène, aux cosmétiques en pots, je préfère les recettes crème que je peux mettre en bouteille et prélever à l'aide d'une pompe. Alors, j'ai décidé d'adapter ce baume en crème en réalisant une émulsion eau dans huile, et voici ce que ca donne.</span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation: env 40mn</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Coût: 3.80 pour 100g</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="creme cecile.jpg" src="http://s1.e-monsite.com/2009/09/24/10/45032439creme-cecile-jpg.jpg" alt="" border="0" /><!--more--></span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase huileuse</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">16 g cire N°2</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">20 g HV calendula</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">10g Karité</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">10g mangue</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase aqueuse</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">40g infusion de calendula</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Additifs</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Extraits aromatique de framboise à discrétion</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">16 gttes EPP</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4 gtte Vit E</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>1/ Faites fondre au bain-marie la phase huileuse, une fois que tous est fondu, Prélevez la quantité nécessaire de macérât de Calendula et transférez-le dans le beurre fondu, retirez la du feu </em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>2/pendant ce temps préparez votre infusion</em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>3/ lorsque les phases sont à la même température, versez lentement la phase aqueuse dans la phase huileuse sans cesser d'agiter vigoureusement au fouet pendant environ 3 minutes. Le mélange blanchit et s'homogénéise.</em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="border: 0pt none; float: left;" title="SNV32364.JPG" src="http://s1.e-monsite.com/2009/09/24/10/29084679snv32364-jpg.jpg" alt="" width="362" height="271" border="0" /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>5/ Sans cesser d'agiter, mettre le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>6/ ajoutez progressivement le reste des ingrédients un à un en homogénéisant au fouet entre chaque ajout.</em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>8/ Arrêtez l'agitation puis transférer directement la préparation dans votre flacon.</em></span></span></p> <p style="text-align: justify;"></p> &nbsp; &nbsp; &nbsp; &nbsp; <span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32375.JPG" href="http://s1.e-monsite.com/2009/09/24/10/55922455snv32375-jpg.jpg"><img style="border: 0pt none; float: left;" title="SNV32375.JPG" src="http://s1.e-monsite.com/2009/09/24/10/mini2-55922455snv32375-jpg.jpg" alt="" border="0" /></a><a class="mb" title="SNV32372.JPG" href="http://s1.e-monsite.com/2009/09/24/10/16632429snv32372-jpg.jpg"><img style="border: 0pt none; float: left;" title="SNV32372.JPG" src="http://s1.e-monsite.com/2009/09/24/10/mini2-16632429snv32372-jpg.jpg" alt="" border="0" /></a></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation </strong>:</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>Cette crème s'applique sur l'ensemble du corps de votre enfant en légers massages circulaires jusqu'à pénétration complète du produit. </em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>Testez toujours tous nouveau produit dans le creux du coude et observez la réaction 24h plus tard, avant de l'appliquer sur tout le corps. J'avais dajà utilisé chacun de ces ingrédients sur ma fille donc aucune réaction allergique.</em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>Évitez le contact avec yeux. Stockez votre pot à l'abri de la lumière et de la chaleur. </em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes impressions :</strong> La prise est un peu longue du coup quand on le fait à la main ca peut être fatiguant, la prochaine fois je pense que je la ferais au batteur électrique. après 5 jours d'utilisations je trouve qu'elle est quand même un épaisse. je la referais amis en version huile dans eau pour voir. </span></span></p> <p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingredients:</strong></span></span></p> <p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Beurre de Mangue:</strong> Emollient, le beurre de mangue maintient l'hydratation de la peau, Adoucissant, la peau est satinée, Assouplissant et régénérant, ce beurre préserve du vieillissement prématuré.</span></span></p> <p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Calendula: </strong>Traditionnellement recommandée pour les peaux sensibles, rugueuses et couperosées, le Calendula obtenue par macération/infusion de fleurs de Souci des Jardins est parfaite pour traiter les problèmes cutanés comme les irritations, les brûlures, les crevasses, les mains gercées, les coups de soleil,… Elle est antiseptique, cicatrisante, reconstituante et anti-inflammatoire.</span></span></p> <p style="text-align: justify;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span></p>Crème Tendresse pour Peau Noisettepublishopenopencreme-tendresse-pour-peau-noisette2012-01-18 17:29:492012-01-18 16:29:490http://www.alicepegie.com/wordpress/wordpress/?p=2480post0
24912012-01-18 17:29:312012-01-18 16:29:31<span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">J'ai constaté lundi que la crème habituelle de ma fille était presque finie, alors je me suis dit que j'allais tenter une crème maison pour sa jolie petite peau noisette et dans mes recherches je suis tombée sur cette <a href="http://www.aroma-zone.com/aroma/ficheHVcalendula.asp#beurre_tendre_bebe">recette d'AZ.</a> Mais je suis réfractaire, pour des raisons d'hygiène, aux cosmétiques en pots, je préfère les recettes crème que je peux mettre en bouteille et prélever à l'aide d'une pompe. Alors, j'ai décidé d'adapter ce baume en crème en réalisant une émulsion eau dans huile, et voici ce que ca donne.</span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation: env 40mn</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Coût: 3.80 pour 100g</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="creme cecile.jpg" src="http://s1.e-monsite.com/2009/09/24/10/45032439creme-cecile-jpg.jpg" alt="" border="0" /><!--more--></span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase huileuse</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">16 g cire N°2</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">20 g HV calendula</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">10g Karité</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">10g mangue</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase aqueuse</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">40g infusion de calendula</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Additifs</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Extraits aromatique de framboise à discrétion</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">16 gttes EPP</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4 gtte Vit E</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong></span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>1/ Faites fondre au bain-marie la phase huileuse, une fois que tous est fondu, Prélevez la quantité nécessaire de macérât de Calendula et transférez-le dans le beurre fondu, retirez la du feu </em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>2/pendant ce temps préparez votre infusion</em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>3/ lorsque les phases sont à la même température, versez lentement la phase aqueuse dans la phase huileuse sans cesser d'agiter vigoureusement au fouet pendant environ 3 minutes. Le mélange blanchit et s'homogénéise.</em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="border: 0pt none; float: left;" title="SNV32364.JPG" src="http://s1.e-monsite.com/2009/09/24/10/29084679snv32364-jpg.jpg" alt="" width="362" height="271" border="0" /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>5/ Sans cesser d'agiter, mettre le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>6/ ajoutez progressivement le reste des ingrédients un à un en homogénéisant au fouet entre chaque ajout.</em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>8/ Arrêtez l'agitation puis transférer directement la préparation dans votre flacon.</em></span></span></p> <p style="text-align: justify;"></p> &nbsp; &nbsp; &nbsp; &nbsp; <span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32375.JPG" href="http://s1.e-monsite.com/2009/09/24/10/55922455snv32375-jpg.jpg"><img style="border: 0pt none; float: left;" title="SNV32375.JPG" src="http://s1.e-monsite.com/2009/09/24/10/mini2-55922455snv32375-jpg.jpg" alt="" border="0" /></a><a class="mb" title="SNV32372.JPG" href="http://s1.e-monsite.com/2009/09/24/10/16632429snv32372-jpg.jpg"><img style="border: 0pt none; float: left;" title="SNV32372.JPG" src="http://s1.e-monsite.com/2009/09/24/10/mini2-16632429snv32372-jpg.jpg" alt="" border="0" /></a></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation </strong>:</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>Cette crème s'applique sur l'ensemble du corps de votre enfant en légers massages circulaires jusqu'à pénétration complète du produit. </em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>Testez toujours tous nouveau produit dans le creux du coude et observez la réaction 24h plus tard, avant de l'appliquer sur tout le corps. J'avais dajà utilisé chacun de ces ingrédients sur ma fille donc aucune réaction allergique.</em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em>Évitez le contact avec yeux. Stockez votre pot à l'abri de la lumière et de la chaleur. </em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes impressions :</strong> La prise est un peu longue du coup quand on le fait à la main ca peut être fatiguant, la prochaine fois je pense que je la ferais au batteur électrique. après 5 jours d'utilisations je trouve qu'elle est quand même un épaisse. je la referais amis en version huile dans eau pour voir. </span></span></p> <p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingredients:</strong></span></span></p> <p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Beurre de Mangue:</strong> Emollient, le beurre de mangue maintient l'hydratation de la peau, Adoucissant, la peau est satinée, Assouplissant et régénérant, ce beurre préserve du vieillissement prématuré.</span></span></p> <p style="margin: 0cm 0cm 0.0001pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Calendula: </strong>Traditionnellement recommandée pour les peaux sensibles, rugueuses et couperosées, le Calendula obtenue par macération/infusion de fleurs de Souci des Jardins est parfaite pour traiter les problèmes cutanés comme les irritations, les brûlures, les crevasses, les mains gercées, les coups de soleil,… Elle est antiseptique, cicatrisante, reconstituante et anti-inflammatoire.</span></span></p> <p style="text-align: justify;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span></p>Crème Tendresse pour Peau Noisetteinheritopenopen248-revision2012-01-18 17:29:312012-01-18 16:29:31248http://www.alicepegie.com/wordpress/wordpress/?p=2490revision0
25012010-01-15 17:30:542010-01-15 16:30:54<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">J'en ai enfin fini avec ma crème main que je n'aimais pas tellement, du fait qu'elle était beaucoup trop liquide. J’ai donc pu faire une nouvelle crème pour mes mains sèches que je maltraite tant. Alors que je réfléchissais à une recette facile et rapide, j'ai eu envie de chocolat et, tout en tartinant mon pain (maison) de Nutella, je me suis dit que j'aimerais avoir des mains qui sentent le Nutella en permanence. Ni une Ni deux, me voila partie pour une crème main tout choco dont voici la recette.</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation: env 20mn</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Coût: en 2.30€ pour 50ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="CACAO Mains.png" src="http://s1.e-monsite.com/2009/09/26/12/21655218cacao-mains-png.png" alt="" width="184" height="368" border="0" /></span></span> <!--more--></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase Huileuse</strong></span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Cacao 5g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cire émulsifiante N° 2 de chez AZ 0.5g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Hv amande douce 15g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase aqueuse</strong></span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Infusion de Calendula 20 g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Glycérine 5g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Gel d'aloe vera 5 g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ajouts/conservateurs</strong></span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Arome cacao 1ml</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Epp 20gttes</span></span></p> <p style="margin-bottom: 0.0001pt; line-height: normal; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire</strong></span></span></p> <p style="margin-bottom: 0.0001pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Faites fondre la cire d'abeille et le beurre de cacao au bain-marie. </span></span></p> <p style="margin-bottom: 0.0001pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Réchauffez l'infusion de calendula. Lorsqu'elle arrive presque à ébullition, mélangez là avec le gel d'aloe vera et la glycérine puis versez le mélange dans la phase huileuse petit à petit, en mélangeant avec un fouet ou un batteur électrique pour former une émulsion. </span></span></p> <p style="margin-bottom: 0.0001pt; line-height: normal; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour finir, ajoutez l'extrait de pépins de pamplemousse. Laisser refroidir.</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="border: 0pt none; vertical-align: middle;" title="SNV32396.JPG" src="http://s1.e-monsite.com/2009/09/26/12/mini2-46492333snv32396-jpg.jpg" alt="" border="0" /></span></span></p> <p style="margin-bottom: 0.0001pt; line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingrédients:</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HV AMANDE DOUCE</strong>: Très adoucissante et émolliente, c'est un allié précieux des peaux gercées et crevassées, Assouplissante, fortifiante : elle active la réparation des dermatoses, des brûlures superficielle, Apaisante : elle calme les démangeaisons et les irritations, Aide à la prévention des vergetures.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>BEURRE DE CACAO</strong> le beurre de cacao est LE beurre idéal pour lutter contre les effets néfastes du temps, il redonne élasticité et tonus à la peau, apporte douceur et volupté à tous les types de peau, apaise.</span></span></p> <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>GEL D'ALOE VERA </strong>connu pour ses multiples propriétés sur la peau, notamment pour ses vertus : apaisantes et cicatrisantes, hydratantes et nourrissantes, purifiantes et régénérantes, astringentes et raffermissantes, adoucissantes</span></span></p> <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>GLYCERINE VEGETALE:</strong> protège la peau et les cheveux de la déshydratation, assouplît et lisse peau et cheveux par son action émolliente.<a href="http://www.aroma-zone.com/aroma/Ficheexf_coco.asp" target="_blank"> </a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes impressions:</strong> Cette crème sent délicieusement le chocolat, elle hydrate bien mes mains et les laisse douce. Je l'ai mise pour la première fois mercredi et j'ai failli me faire croquer!!</span></span></p> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Crème Main tout Chocopublishopenopencreme-main-tout-choco2012-01-18 17:31:542012-01-18 16:31:540http://www.alicepegie.com/wordpress/wordpress/?p=2500post0
25112012-01-18 17:31:272012-01-18 16:31:27<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">J'en ai enfin fini avec ma crème main que je n'aimais pas tellement, du fait qu'elle était beaucoup trop liquide. J’ai donc pu faire une nouvelle crème pour mes mains sèches que je maltraite tant. Alors que je réfléchissais à une recette facile et rapide, j'ai eu envie de chocolat et, tout en tartinant mon pain (maison) de Nutella, je me suis dit que j'aimerais avoir des mains qui sentent le Nutella en permanence. Ni une Ni deux, me voila partie pour une crème main tout choco dont voici la recette.</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation: env 20mn</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Coût: en 2.30€ pour 50ml</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="CACAO Mains.png" src="http://s1.e-monsite.com/2009/09/26/12/21655218cacao-mains-png.png" alt="" width="184" height="368" border="0" /></span></span> <!--more--></p> <p style="text-align: center; line-height: normal;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase Huileuse</strong></span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Cacao 5g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cire émulsifiante N° 2 de chez AZ 0.5g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Hv amande douce 15g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Phase aqueuse</strong></span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Infusion de Calendula 20 g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Glycérine 5g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Gel d'aloe vera 5 g</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ajouts/conservateurs</strong></span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Arome cacao 1ml</span></span></p> <p style="line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Epp 20gttes</span></span></p> <p style="margin-bottom: 0.0001pt; line-height: normal; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire</strong></span></span></p> <p style="margin-bottom: 0.0001pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Faites fondre la cire d'abeille et le beurre de cacao au bain-marie. </span></span></p> <p style="margin-bottom: 0.0001pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Réchauffez l'infusion de calendula. Lorsqu'elle arrive presque à ébullition, mélangez là avec le gel d'aloe vera et la glycérine puis versez le mélange dans la phase huileuse petit à petit, en mélangeant avec un fouet ou un batteur électrique pour former une émulsion. </span></span></p> <p style="margin-bottom: 0.0001pt; line-height: normal; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour finir, ajoutez l'extrait de pépins de pamplemousse. Laisser refroidir.</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="border: 0pt none; vertical-align: middle;" title="SNV32396.JPG" src="http://s1.e-monsite.com/2009/09/26/12/mini2-46492333snv32396-jpg.jpg" alt="" border="0" /></span></span></p> <p style="margin-bottom: 0.0001pt; line-height: normal; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingrédients:</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>HV AMANDE DOUCE</strong>: Très adoucissante et émolliente, c'est un allié précieux des peaux gercées et crevassées, Assouplissante, fortifiante : elle active la réparation des dermatoses, des brûlures superficielle, Apaisante : elle calme les démangeaisons et les irritations, Aide à la prévention des vergetures.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>BEURRE DE CACAO</strong> le beurre de cacao est LE beurre idéal pour lutter contre les effets néfastes du temps, il redonne élasticité et tonus à la peau, apporte douceur et volupté à tous les types de peau, apaise.</span></span></p> <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>GEL D'ALOE VERA </strong>connu pour ses multiples propriétés sur la peau, notamment pour ses vertus : apaisantes et cicatrisantes, hydratantes et nourrissantes, purifiantes et régénérantes, astringentes et raffermissantes, adoucissantes</span></span></p> <p style="margin-top: 0pt; margin-bottom: 0pt; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>GLYCERINE VEGETALE:</strong> protège la peau et les cheveux de la déshydratation, assouplît et lisse peau et cheveux par son action émolliente.<a href="http://www.aroma-zone.com/aroma/Ficheexf_coco.asp" target="_blank"> </a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mes impressions:</strong> Cette crème sent délicieusement le chocolat, elle hydrate bien mes mains et les laisse douce. Je l'ai mise pour la première fois mercredi et j'ai failli me faire croquer!!</span></span></p> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Crème Main tout Chocoinheritopenopen250-revision2012-01-18 17:31:272012-01-18 16:31:27250http://www.alicepegie.com/wordpress/wordpress/?p=2510revision0
25212010-01-15 17:32:072010-01-15 16:32:07<p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Après <a href="blog,barre-shampooing-karite-et-miel,169997.html">le shampooing</a>, voici l'après shampooing, nos cheveux sont assez compliqués et, nécessitent un démêlage appliqué et le moins douloureux possible. Même si le shampooing en barre que j'ai confectionné dernièrement laisse les boucles de ma pitchoune douces et plus faciles à coiffer qu'avec son Klorane bébé habituel, j'ai eu envie de faciliter un peu plus son coiffage tout en les nourrissant. Alors je lui ai confectionné cet après-shampooing démêlant en barre. Et voici sa recette.</span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Cout: 3.40€ </span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Temps de réalisation: env. 20mn hors séchage</span></span></p> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img title="demelant en barre.jpg" src="http://s1.e-monsite.com/2009/09/26/03/31978467demelant-en-barre-jpg.jpg" alt="" border="0" /><!--more--></span></span> <h3 style="text-align: center;"><span style="color: #000000;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Ingrédients</span></span></span></h3> <h3 style="text-align: center;"><span style="color: #000000;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">40 g de BTMS</span></span></span></h3> <h3 style="text-align: center;"><span style="color: #000000;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">10 g de cire N° 1 de chez AZ</span></span></span></h3> <h3 style="text-align: center;"><span style="color: #000000;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">24 g de beurre de karité</span></span></span></h3> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">20g d'huile de coco</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">4 g de cire de carnauba</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Ajouts</strong> </span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">4 gouttes de vitamine E</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Mode opératoire:</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">1/ pesez vos ingrédients et faites les chauffer au bain marie jusqu'à ce qu'il soient complètement fondus. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">2/sortez les du feu et mélangez au fouet</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">3/ versez vos ajouts, mélangez et versez dans les moules.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">4/ laissez séchez jusqu'à ce que le mélange durcisse.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">5/ démoulez et démêlez!!!</span></span></p> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> </span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img title="SNV32418.JPG" src="http://s1.e-monsite.com/2009/09/26/04/68323555snv32418-jpg.jpg" alt="" border="0" /></span></span> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Conservez vos barres d'après shampooing au sec et à température ambiante.</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Choix des ingrédients:</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>BTMS</strong>: </span><span style="color: #000000;">conditionneur capillaire, c'est à dire qu'il lisse et démêle le cheveu. Il est ainsi particulièrement utile pour composer des shampooings et après-shampooings démêlants. C'est aussi un conditionneur cutané superbe pour réaliser des crèmes, gommages et crèmes de douche rendant la peau toute douce.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Cire de Carnauba: </span></strong><span style="color: #000000;">Cette cire est particulièrement appréciée pour son grand pouvoir filmogène, idéal pour le soin des lèvres et des peaux fragiles</span><span style="color: #000000;">.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Cire émulsifiante N° 1 de chez AZ:</strong> </span><span style="color: #000000;">Appelée également Polawax outre-manche, cette cire d'origine végétale rend la confection de crèmes onctueuses à épaisses très simple. Elle permet aussi la réalisation de textures "mousse".</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Beurre de Karité</strong>: </span><span style="color: #000000;">Protège, adoucit et reconstruit la peau et les cheveux.(dois je encore le présenter?)</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Huile de coco:</strong> Embellisseur capillaire, cette huile s'emploie aussi sur les cheveux en petite dose pour leur donner brillance et vigueur.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Mes impressions: </strong>ca marche!!!</span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Adaptez votre après shampooing:</strong></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Vous pouvez rajouter toutes sortes d'actifs capillaires, antipelliculaires, embellisseurs, des senteurs, de la couleur.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Vous trouverez <a href="rubrique,selon-votre-type-de-cheveux,443931.html"><span style="color: blue;">ICI</span></a> un tableau récapitulatif des huiles et Beurres végétaux classés selon votre type de cheveux</span></span></p> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Après shampooing en barre pour jolies bouclettespublishopenopenapres-shampooing-en-barre-pour-jolies-bouclettes2012-01-18 17:33:052012-01-18 16:33:050http://www.alicepegie.com/wordpress/wordpress/?p=2520post0
25312012-01-18 17:32:442012-01-18 16:32:44<p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Après <a href="blog,barre-shampooing-karite-et-miel,169997.html">le shampooing</a>, voici l'après shampooing, nos cheveux sont assez compliqués et, nécessitent un démêlage appliqué et le moins douloureux possible. Même si le shampooing en barre que j'ai confectionné dernièrement laisse les boucles de ma pitchoune douces et plus faciles à coiffer qu'avec son Klorane bébé habituel, j'ai eu envie de faciliter un peu plus son coiffage tout en les nourrissant. Alors je lui ai confectionné cet après-shampooing démêlant en barre. Et voici sa recette.</span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Cout: 3.40€ </span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Temps de réalisation: env. 20mn hors séchage</span></span></p> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img title="demelant en barre.jpg" src="http://s1.e-monsite.com/2009/09/26/03/31978467demelant-en-barre-jpg.jpg" alt="" border="0" /><!--more--></span></span> <h3 style="text-align: center;"><span style="color: #000000;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Ingrédients</span></span></span></h3> <h3 style="text-align: center;"><span style="color: #000000;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">40 g de BTMS</span></span></span></h3> <h3 style="text-align: center;"><span style="color: #000000;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">10 g de cire N° 1 de chez AZ</span></span></span></h3> <h3 style="text-align: center;"><span style="color: #000000;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">24 g de beurre de karité</span></span></span></h3> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">20g d'huile de coco</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">4 g de cire de carnauba</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Ajouts</strong> </span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">4 gouttes de vitamine E</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Mode opératoire:</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">1/ pesez vos ingrédients et faites les chauffer au bain marie jusqu'à ce qu'il soient complètement fondus. </span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">2/sortez les du feu et mélangez au fouet</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">3/ versez vos ajouts, mélangez et versez dans les moules.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">4/ laissez séchez jusqu'à ce que le mélange durcisse.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">5/ démoulez et démêlez!!!</span></span></p> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> </span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img title="SNV32418.JPG" src="http://s1.e-monsite.com/2009/09/26/04/68323555snv32418-jpg.jpg" alt="" border="0" /></span></span> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Conservez vos barres d'après shampooing au sec et à température ambiante.</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Choix des ingrédients:</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>BTMS</strong>: </span><span style="color: #000000;">conditionneur capillaire, c'est à dire qu'il lisse et démêle le cheveu. Il est ainsi particulièrement utile pour composer des shampooings et après-shampooings démêlants. C'est aussi un conditionneur cutané superbe pour réaliser des crèmes, gommages et crèmes de douche rendant la peau toute douce.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Cire de Carnauba: </span></strong><span style="color: #000000;">Cette cire est particulièrement appréciée pour son grand pouvoir filmogène, idéal pour le soin des lèvres et des peaux fragiles</span><span style="color: #000000;">.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Cire émulsifiante N° 1 de chez AZ:</strong> </span><span style="color: #000000;">Appelée également Polawax outre-manche, cette cire d'origine végétale rend la confection de crèmes onctueuses à épaisses très simple. Elle permet aussi la réalisation de textures "mousse".</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Beurre de Karité</strong>: </span><span style="color: #000000;">Protège, adoucit et reconstruit la peau et les cheveux.(dois je encore le présenter?)</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Huile de coco:</strong> Embellisseur capillaire, cette huile s'emploie aussi sur les cheveux en petite dose pour leur donner brillance et vigueur.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Mes impressions: </strong>ca marche!!!</span></span></p> <p class="MsoNormal" style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Adaptez votre après shampooing:</strong></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Vous pouvez rajouter toutes sortes d'actifs capillaires, antipelliculaires, embellisseurs, des senteurs, de la couleur.</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Vous trouverez <a href="rubrique,selon-votre-type-de-cheveux,443931.html"><span style="color: blue;">ICI</span></a> un tableau récapitulatif des huiles et Beurres végétaux classés selon votre type de cheveux</span></span></p> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Après shampooing en barre pour jolies bouclettesinheritopenopen252-revision2012-01-18 17:32:442012-01-18 16:32:44252http://www.alicepegie.com/wordpress/wordpress/?p=2530revision0
25412010-01-15 17:34:112010-01-15 16:34:11<p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Et le 2ème produit du Panier de Framboises</strong></span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a href="http://www.aroma-zone.com/aroma/fiche_EA_fraisedesbois.asp#huile_capillaire_protectrice_fraisebois">Inspirée de cette recette d'AZ</a></span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Cout : 4.79 pour 100ml</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Temps de réalisation env 15mn</span></span></p> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img title="Huile de soin capillaire framboise.jpg" src="http://s1.e-monsite.com/2009/09/27/09/39920322huile-de-soin-capillaire-framboise-jpg.jpg" alt="" border="0" /><!--more--></span></span> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Ingrédients :</strong></span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- HV Oléine de Karité : 48 ml</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- HV Sésame BIO : 49 ml</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Extrait aromatique framboise : 66 gouttes</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- HE Bois de Rose BIO : 16 gouttes</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Oxyde de Zinc : 0.5 g (soit 2 cuillères PINCH)</span></span></p> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Mode opératoire :</strong></span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">1/ Peser l'oxyde de zinc dans un mortier puis y ajouter 1 ml d'huile végétale de sésame</span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">2/ Broyer le tout à l'aide d'un pilon afin d'obtenir une pâte homogène</span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">3/ Dans un bol, mettre tous les ingrédients un à un avec la pâte d'oxyde de zinc puis mélanger à l'aide d'une cuillère ou du mini-fouet</span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">4/ Transférer la préparation dans votre flacon spray.</span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" href="http://s1.e-monsite.com/2009/09/27/08/64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg"><img title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" src="http://s1.e-monsite.com/2009/09/27/08/mini2-64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg" alt="" border="0" /></a></span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Utilisation :</strong></span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">A vaporiser sur l'ensemble de la chevelure notamment pour les cheveux colorés, méchés et abîmés lors d'expositions prolongées au soleil et au sel marin. Bien agiter avant chaque emploi.</span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">A conserver à l'abri de la lumière ou dans un packaging opaque.</span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Les impressions de Miss Framboise bientôt.</strong></span></span> <span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> </span></span> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Les autres produits du Panier:</strong></span></span></p> <p class="MsoNormal"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="SNV32393.JPG" href="http://s1.e-monsite.com/2009/09/26/05/96316870snv32393-jpg.jpg"><img title="SNV32393.JPG" src="http://s1.e-monsite.com/2009/09/26/05/mini-96316870snv32393-jpg.jpg" alt="" width="11" height="44" align="left" border="0" /></a><a href="blog,panier-de-framboises-pour-miss-framboise,172089.html">- une crème de lait à la framboise pour le corps et le Visage,</a></span></span></p> <p class="MsoNormal"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> </span></span></p> <p class="MsoNormal"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Un Savon liquide peau nette à la propolis : pour ses petits problèmes d'Ado</span></span></p> <p class="MsoNormal"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="lotion_purifiante_teatree_opt40.jpg" href="http://s1.e-monsite.com/2009/09/27/09/6923382lotion-purifiante-teatree-opt40-jpg.jpg"><img title="lotion_purifiante_teatree_opt40.jpg" src="http://s1.e-monsite.com/2009/09/27/09/mini-6923382lotion-purifiante-teatree-opt40-jpg.jpg" alt="" width="40" height="34" align="left" border="0" /></a><a href="blog,lotion-tonique-purifiante-et-matifiante-pour-peaux-a-problemes-100-ml,172493.html">- Une Lotion tonique purifiante et Mâtifiante pour peaux à problèmes </a></span></span></p> <p class="MsoNormal"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> </span></span></p> <p class="MsoNormal"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="stick levres framboise.jpg" href="http://s1.e-monsite.com/2009/09/27/10/19121000stick-levres-framboise-jpg.jpg"><img title="stick levres framboise.jpg" src="http://s1.e-monsite.com/2009/09/27/10/mini-19121000stick-levres-framboise-jpg.jpg" alt="" width="41" height="31" align="left" border="0" /></a><a href="blog,stick-levres-nourrissant-et-protecteur-a-la-framboise,172504.html">- un stick lèvre nourrissant et protecteur.</a></span></span></p> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Huile de soin capillaire protectrice pour cheveux sensibiliséspublishopenopenhuile-de-soin-capillaire-protectrice-pour-cheveux-sensibilises2012-01-18 17:35:052012-01-18 16:35:050http://www.alicepegie.com/wordpress/wordpress/?p=2540post0
25512012-01-18 17:34:172012-01-18 16:34:17Huile de soin capillaire protectrice pour cheveux sensibilisésinheritopenopen254-revision2012-01-18 17:34:172012-01-18 16:34:17254http://www.alicepegie.com/wordpress/wordpress/?p=2550revision0
25712012-01-18 17:02:352012-01-18 16:02:35<ul> <li><span style="color: #000000;"><a title="Abonnez-vous" href="index.php/2011-10-13-18-59-58"><span style="font-size: large; color: #000000;"><strong>    Abonnez-Vous!</strong></span></a></span><strong>    </strong><a href="http://www.wikio.fr/subscribethis?url=http%3A%2F%2Fwww.alicepegie.com%2Fblog.rss" target="_blank"><img style="border: none;" src="http://www.wikio.fr/shared/images/wikiothis/buttons/wikio_btn_abo-univ_rounded-open_fr.png" alt="http://www.wikio.fr" width="74" height="17" border="0" /></a></li> </ul> <ul> <li>      <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="32" height="32" /></a>                   <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a>            <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a>          <a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a></li> </ul> <ul> <li class="centernotext"><span style="font-family: arial black,avant garde; color: #000000; font-size: small;"><strong><a href="index.php/2011-10-13-18-59-58/newsletter1"><span style="color: #000000;">Newsletter</span></a>   <a href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook   </span></a><a href="http://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter  </span></a><a href="index.php/accueil1/a-la-une?format=feed&amp;type=rss"><span style="color: #000000;"> RSS </span></a></strong></span></li> </ul>Vous Aimez mes Articles?inheritopenopen203-revision-142012-01-18 17:02:352012-01-18 16:02:35203http://www.alicepegie.com/wordpress/wordpress/?p=2570revision0
25910209-01-18 21:09:371969-12-31 23:00:00Le site internet <a href="http://www.alicepegie.com"><strong>Une Graine de Maniguette</strong></a> est un blog personnel, régie par les conditions suivantes. <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Propriété intellectuelle</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">L'ensemble du contenu publié par <a href="http://www.alicepegie.com">alicepegie.com</a>, les images diffusées, logos et textes contenus sur le site ne peuvent être reproduits sans mon autorisation écrite.</span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Je reste la <strong>seule détentrice </strong>des droits d'auteurs sur le contenu et les photos que je publie, par l'intermédiaire de cet espace. <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Tout autre contenu ne m’appartenant pas : photos, textes, images, logos, noms de produits ou marques citées…, sera explicitement désigné et reste la propriété de leurs détenteurs.</span></span></p> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">La modération des commentaires du blog</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Les commentaires et trackbacks/pingback de ce blog sont modérés en amont. Tout commentaire ou trackback/pingback correspondants à au moins l’un des critères ci-dessous ne seront pas publiés:</span></p> <ul> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">diffamatoires, racistes, pornographiques, pédophiles, incitant au délit, crimes ou suicides,…</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">reproduisant une correspondance privée sans l’accord des personnes concernées,</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Commentaires visant uniquement à mettre en ligne un lien vers un site extérieur (spam de commentaires ou de trackback/pingback).</span></li> </ul> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Responsabilité</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Toutes les recettes de cuisine ou de cosmétiques que je publie, les avis, les dossiers et autre conseils, ne peuvent se substitués à l’avis d’un professionnel. Je ne pourrais être tenue pour responsable ni être accusée d’une quelconque responsabilité par rapport à l’usage, l’application ou l’utilisation d’un produit, d’une recette, d’un conseil, avis, donné sur ce site.</span></p> <p style="text-align: justify; line-height: normal;">J'espère que cet espace vous plaira. N'hésitez pas à me faire part de vos suggestions, idées, remarques....</p>Conditions Générales d'Utilisation publishopenopenhttpwww-alicepegie-comwordpresswordpresspage_id1302012-01-20 13:58:272012-01-20 12:58:270http://www.alicepegie.com/wordpress/wordpress/?p=2590post0
26012012-01-18 21:08:452012-01-18 20:08:45Le site internet <strong>Une Graine de Maniguette</strong> est un blog personnel, régie par les conditions suivantes. <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Propriété intellectuelle</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">L'ensemble du contenu publié par alicepegie.com, les images diffusées, logos et textes contenus sur le site ne peuvent être reproduits sans mon autorisation écrite.</span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Je reste la <strong>seule détentrice </strong>des droits d'auteurs sur le contenu et les photos que je publie, par l'intermédiaire de cet espace. <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Tout autre contenu ne m’appartenant pas : photos, textes, images, logos, noms de produits ou marques citées…, sera explicitement désigné et reste la propriété de leurs détenteurs.</span></span></p> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">La modération des commentaires du blog</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Les commentaires et trackbacks/pingback de ce blog sont modérés en amont. Tout commentaire ou trackback/pingback correspondants à au moins l’un des critères ci-dessous ne seront pas publiés:</span></p> <ul> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">diffamatoires, racistes, pornographiques, pédophiles, incitant au délit, crimes ou suicides,…</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">reproduisant une correspondance privée sans l’accord des personnes concernées,</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Commentaires visant uniquement à mettre en ligne un lien vers un site extérieur (spam de commentaires ou de trackback/pingback).</span></li> </ul> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Responsabilité</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Toutes les recettes de cuisine ou de cosmétiques que je publie, les avis, les dossiers et autre conseils, ne peuvent se substitués à l’avis d’un professionnel. Je ne pourrais être tenue pour responsable ni être accusée d’une quelconque responsabilité par rapport à l’usage, l’application ou l’utilisation d’un produit, d’une recette, d’un conseil, avis, donné sur ce site.</span></p> <p style="text-align: justify; line-height: normal;">J'espère que cet space vous plaira. n'hésitezpas à mefaire part de vos sugge</p>http://www.alicepegie.com/wordpress/wordpress/?page_id=130inheritopenopen259-revision2012-01-18 21:08:452012-01-18 20:08:45259http://www.alicepegie.com/wordpress/wordpress/?p=2600revision0
26112012-01-18 21:09:372012-01-18 20:09:37Le site internet <strong>Une Graine de Maniguette</strong> est un blog personnel, régie par les conditions suivantes. <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Propriété intellectuelle</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">L'ensemble du contenu publié par alicepegie.com, les images diffusées, logos et textes contenus sur le site ne peuvent être reproduits sans mon autorisation écrite.</span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Je reste la <strong>seule détentrice </strong>des droits d'auteurs sur le contenu et les photos que je publie, par l'intermédiaire de cet espace. <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Tout autre contenu ne m’appartenant pas : photos, textes, images, logos, noms de produits ou marques citées…, sera explicitement désigné et reste la propriété de leurs détenteurs.</span></span></p> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">La modération des commentaires du blog</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Les commentaires et trackbacks/pingback de ce blog sont modérés en amont. Tout commentaire ou trackback/pingback correspondants à au moins l’un des critères ci-dessous ne seront pas publiés:</span></p> <ul> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">diffamatoires, racistes, pornographiques, pédophiles, incitant au délit, crimes ou suicides,…</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">reproduisant une correspondance privée sans l’accord des personnes concernées,</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Commentaires visant uniquement à mettre en ligne un lien vers un site extérieur (spam de commentaires ou de trackback/pingback).</span></li> </ul> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Responsabilité</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Toutes les recettes de cuisine ou de cosmétiques que je publie, les avis, les dossiers et autre conseils, ne peuvent se substitués à l’avis d’un professionnel. Je ne pourrais être tenue pour responsable ni être accusée d’une quelconque responsabilité par rapport à l’usage, l’application ou l’utilisation d’un produit, d’une recette, d’un conseil, avis, donné sur ce site.</span></p> <p style="text-align: justify; line-height: normal;">J'espère que cet espace vous plaira. N'hésitez pas à me faire part de vos suggestions, idées, remarques....</p>http://www.alicepegie.com/wordpress/wordpress/?page_id=130inheritopenopen259-revision-22012-01-18 21:09:372012-01-18 20:09:37259http://www.alicepegie.com/wordpress/wordpress/?p=2610revision0
26212010-01-16 12:34:102010-01-16 11:34:10<p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Encore une recette d'AZ</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Coût : 4.23</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Temps de réalisation : 15 minutes</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img style="border: 0pt none; float: left;" title="lotion purifiante.jpg" src="http://s1.e-monsite.com/2009/09/27/09/42308425lotion-purifiante-jpg.jpg" alt="" width="503" height="366" border="0" /></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Ingrédients :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Hydrolat Tea tree BIO : 50 ml</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Hydrolat Camomille romaine BIO : 10 ml</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Hydrolat Menthe poivrée BIO : 35 ml</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Mousse de Babassu (tensioactif doux) : 2 ml</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Allantoïne : 3 g</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- jus de betterave : 0.01g (soit 1/2 cuillère DROP)</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Extrait de pépins de pamplemousse : 20 gouttes</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Mode opératoire :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">1/ Dans un bol , mélangez les hydrolats.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">2/ Ajouterzensuite chaque ingrédient un à un puis remuer doucement entre chaque incorporation afin de bien homogénéiser le tout à l'aide du mini fouet  ou d'une cuillère à café.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">3/ Transférer le produit dans votre flacon.<!--more--></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="lotion_purifiante_teatree_opt40.jpg" href="http://s1.e-monsite.com/2009/09/27/09/6923382lotion-purifiante-teatree-opt40-jpg.jpg"><img style="border: 0pt none; float: left;" title="lotion_purifiante_teatree_opt40.jpg" src="http://s1.e-monsite.com/2009/09/27/09/mini2-6923382lotion-purifiante-teatree-opt40-jpg.jpg" alt="" border="0" /></a></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Image AZ</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Utilisation :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Cette lotion absorbante sans rinçage peut s'utiliser à la fois en tant que démaquillant visage et yeux ou en tant que tonique purifiant pour les peaux à problèmes. A agiter avant chaque emploi afin de mettre en suspension la poudre absorbante et antiseptique d'allantoïne. A conserver à l'abri de la lumière.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Les autres produits du Panier:</strong></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="SNV32393.JPG" href="http://s1.e-monsite.com/2009/09/26/05/96316870snv32393-jpg.jpg"><img title="SNV32393.JPG" src="http://s1.e-monsite.com/2009/09/26/05/mini-96316870snv32393-jpg.jpg" alt="" width="10" height="40" align="left" border="0" /></a><a href="blog,panier-de-framboises-pour-miss-framboise,172089.html">- une crème de lait à la framboise pour le corps et le Visage,</a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Un Savon liquide peau nette à la propolis : pour ses petits problèmes d'Ado</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" href="http://s1.e-monsite.com/2009/09/27/08/64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg"><img title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" src="http://s1.e-monsite.com/2009/09/27/08/mini-64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg" alt="" width="25" height="25" align="left" border="0" /></a><a href="blog,huile-de-soin-capillaire-protectrice-pour-cheveux-sensibilises,172476.html">- une Huile de soin capillaire protectrice pour cheveux sensibilisés </a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="stick levres framboise.jpg" href="http://s1.e-monsite.com/2009/09/27/10/19121000stick-levres-framboise-jpg.jpg"><img title="stick levres framboise.jpg" src="http://s1.e-monsite.com/2009/09/27/10/mini-19121000stick-levres-framboise-jpg.jpg" alt="" width="42" height="31" align="left" border="0" /></a><a href="blog,stick-levres-nourrissant-et-protecteur-a-la-framboise,172504.html">- un stick lèvre nourrissant et protecteur.</a></span></span></p> <p style="text-align: justify;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a></span></p>Lotion tonique purifiante et matifiante pour peaux à problèmespublishopenopenlotion-tonique-purifiante-et-matifiante-pour-peaux-a-problemes2012-01-19 12:36:122012-01-19 11:36:120http://www.alicepegie.com/wordpress/wordpress/?p=2620post0
26312012-01-19 12:36:122012-01-19 11:36:12<p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Encore une recette d'AZ</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Coût : 4.23</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Temps de réalisation : 15 minutes</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img style="border: 0pt none; float: left;" title="lotion purifiante.jpg" src="http://s1.e-monsite.com/2009/09/27/09/42308425lotion-purifiante-jpg.jpg" alt="" width="503" height="366" border="0" /></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Ingrédients :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Hydrolat Tea tree BIO : 50 ml</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Hydrolat Camomille romaine BIO : 10 ml</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Hydrolat Menthe poivrée BIO : 35 ml</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Mousse de Babassu (tensioactif doux) : 2 ml</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Allantoïne : 3 g</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- jus de betterave : 0.01g (soit 1/2 cuillère DROP)</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Extrait de pépins de pamplemousse : 20 gouttes</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Mode opératoire :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">1/ Dans un bol , mélangez les hydrolats.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">2/ Ajouterzensuite chaque ingrédient un à un puis remuer doucement entre chaque incorporation afin de bien homogénéiser le tout à l'aide du mini fouet  ou d'une cuillère à café.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">3/ Transférer le produit dans votre flacon.<!--more--></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="lotion_purifiante_teatree_opt40.jpg" href="http://s1.e-monsite.com/2009/09/27/09/6923382lotion-purifiante-teatree-opt40-jpg.jpg"><img style="border: 0pt none; float: left;" title="lotion_purifiante_teatree_opt40.jpg" src="http://s1.e-monsite.com/2009/09/27/09/mini2-6923382lotion-purifiante-teatree-opt40-jpg.jpg" alt="" border="0" /></a></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Image AZ</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Utilisation :</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Cette lotion absorbante sans rinçage peut s'utiliser à la fois en tant que démaquillant visage et yeux ou en tant que tonique purifiant pour les peaux à problèmes. A agiter avant chaque emploi afin de mettre en suspension la poudre absorbante et antiseptique d'allantoïne. A conserver à l'abri de la lumière.</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Les autres produits du Panier:</strong></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="SNV32393.JPG" href="http://s1.e-monsite.com/2009/09/26/05/96316870snv32393-jpg.jpg"><img title="SNV32393.JPG" src="http://s1.e-monsite.com/2009/09/26/05/mini-96316870snv32393-jpg.jpg" alt="" width="10" height="40" align="left" border="0" /></a><a href="blog,panier-de-framboises-pour-miss-framboise,172089.html">- une crème de lait à la framboise pour le corps et le Visage,</a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"> </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">- Un Savon liquide peau nette à la propolis : pour ses petits problèmes d'Ado</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" href="http://s1.e-monsite.com/2009/09/27/08/64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg"><img title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" src="http://s1.e-monsite.com/2009/09/27/08/mini-64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg" alt="" width="25" height="25" align="left" border="0" /></a><a href="blog,huile-de-soin-capillaire-protectrice-pour-cheveux-sensibilises,172476.html">- une Huile de soin capillaire protectrice pour cheveux sensibilisés </a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><a class="mb" title="stick levres framboise.jpg" href="http://s1.e-monsite.com/2009/09/27/10/19121000stick-levres-framboise-jpg.jpg"><img title="stick levres framboise.jpg" src="http://s1.e-monsite.com/2009/09/27/10/mini-19121000stick-levres-framboise-jpg.jpg" alt="" width="42" height="31" align="left" border="0" /></a><a href="blog,stick-levres-nourrissant-et-protecteur-a-la-framboise,172504.html">- un stick lèvre nourrissant et protecteur.</a></span></span></p> <p style="text-align: justify;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a></span></p>Lotion tonique purifiante et matifiante pour peaux à problèmesinheritopenopen262-revision2012-01-19 12:36:122012-01-19 11:36:12262http://www.alicepegie.com/wordpress/wordpress/?p=2630revision0
26412010-01-16 12:36:172010-01-16 11:36:17<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Coût: 0.99€ pour 12g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation : 20 minutes</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="border: 0pt none; float: left;" title="stick levres framboise.jpg" src="http://s1.e-monsite.com/2009/09/27/10/19121000stick-levres-framboise-jpg.jpg" alt="" width="349" height="255" border="0" /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ingrédients :</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire de carnauba : 0.5 g (soit 1 cuillère TAD)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire de riz : 0.75 g (soit 3 cuillères DASH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire d'abeille blanche : 1 g (soit 5 cuillères DASH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- HV Calendula BIO : 6.5 ml</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Beurre de karité BIO : 2.5 g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Poudre de framboise : 0.5 g (soit 5 cuillères PINCH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Oxyde de zinc : 0.02 g (soit 1/2 cuillère DROP)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait aromatique de framboise BIO : 8 gouttes<!--more--></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong> Faire fondre les cires, le beurre et l'huile végétale au bain-marie jusqu'à la fonte totale du mélange. Retirer du feu puis laisser refroidir l'ensemble quelques minutes. Ajouter ensuite le reste des ingrédients. Remuer soigneusement et énergiquement afin de bien développer la teinte. Couler ensuite le mélange bien homogène lorsqu'il est encore chaud très rapidement dans le moule à rouge à lèvres selon la méthode conseillée sur le site d'AZ, puis démouler selon les instructions.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation :</strong> A appliquer sur les lèvres aussi souvent que nécessaire. Vous pouvez moduler la couleur du baume en augmentant ou en diminuant la poudre de Cranberry et/ou l'oxyde de zinc.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les autres produits du Panier:</strong></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32393.JPG" href="http://s1.e-monsite.com/2009/09/26/05/96316870snv32393-jpg.jpg"><img title="SNV32393.JPG" src="http://s1.e-monsite.com/2009/09/26/05/mini-96316870snv32393-jpg.jpg" alt="" width="16" height="66" align="left" border="0" /></a><a href="blog,panier-de-framboises-pour-miss-framboise,172089.html">- une crème de lait à la framboise pour le corps et le Visage,</a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Un Savon liquide peau nette à la propolis : pour ses petits problèmes d'Ado</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="lotion_purifiante_teatree_opt40.jpg" href="http://s1.e-monsite.com/2009/09/27/09/6923382lotion-purifiante-teatree-opt40-jpg.jpg"><img title="lotion_purifiante_teatree_opt40.jpg" src="http://s1.e-monsite.com/2009/09/27/09/mini-6923382lotion-purifiante-teatree-opt40-jpg.jpg" alt="" width="41" height="31" align="left" border="0" /></a><a href="blog,lotion-tonique-purifiante-et-matifiante-pour-peaux-a-problemes-100-ml,172493.html">- Une Lotion tonique purifiante et Mâtifiante pour peaux à problèmes </a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" href="http://s1.e-monsite.com/2009/09/27/08/64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg"><img title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" src="http://s1.e-monsite.com/2009/09/27/08/mini-64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg" alt="" width="28" height="28" align="left" border="0" /></a><a href="blog,huile-de-soin-capillaire-protectrice-pour-cheveux-sensibilises,172476.html">- une Huile de soin capillaire protectrice pour cheveux sensibilisés </a></span></span></p> <p style="text-align: justify;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span></p>Stick lèvres nourrissant et protecteur à la framboisepublishopenopenstick-levres-nourrissant-et-protecteur-a-la-framboise2012-01-19 12:40:132012-01-19 11:40:130http://www.alicepegie.com/wordpress/wordpress/?p=2640post0
26512012-01-19 12:36:442012-01-19 11:36:44<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Coût: 0.99€ pour 12g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation : 20 minutes</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img src="http://s1.e-monsite.com/2009/09/27/10/19121000stick-levres-framboise-jpg.jpg" border="0" alt="" title="stick levres framboise.jpg" width="349" height="255" style="border: 0pt none; float: left;" /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ingrédients :</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire de carnauba : 0.5 g (soit 1 cuillère TAD)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire de riz : 0.75 g (soit 3 cuillères DASH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire d'abeille blanche : 1 g (soit 5 cuillères DASH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- HV Calendula BIO : 6.5 ml</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Beurre de karité BIO : 2.5 g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Poudre de framboise : 0.5 g (soit 5 cuillères PINCH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Oxyde de zinc : 0.02 g (soit 1/2 cuillère DROP)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait aromatique de framboise BIO : 8 gouttes</span></span></p> <p style="text-align: justify;"> </p> <hr id="system-readmore" /> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong><br /> Faire fondre les cires, le beurre et l'huile végétale au bain-marie jusqu'à la fonte totale du mélange. Retirer du feu puis laisser refroidir l'ensemble quelques minutes. Ajouter ensuite le reste des ingrédients. Remuer soigneusement et énergiquement afin de bien développer la teinte. <br /> Couler ensuite le mélange bien homogène lorsqu'il est encore chaud très rapidement dans le moule à rouge à lèvres selon la méthode conseillée sur le site d'AZ, puis démouler selon les instructions.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation :</strong><br /> A appliquer sur les lèvres aussi souvent que nécessaire. Vous pouvez moduler la couleur du baume en augmentant ou en diminuant la poudre de Cranberry et/ou l'oxyde de zinc.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;"><img src="http://widget.hellocoton.fr/img/action-on.gif" border="0" alt="" style="padding: 0; border: 0; margin: 0; float: none;" /></a><a href="http://www.hellocoton.fr" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;"><img src="http://widget.hellocoton.fr/img/hellocoton.gif" border="0" alt="Rendez-vous sur Hellocoton !" style="padding: 0; border: 0; margin: 0; float: none;" /></a></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les autres produits du Panier:</strong></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s1.e-monsite.com/2009/09/26/05/96316870snv32393-jpg.jpg" title="SNV32393.JPG"><img src="http://s1.e-monsite.com/2009/09/26/05/mini-96316870snv32393-jpg.jpg" border="0" alt="" title="SNV32393.JPG" width="16" height="66" align="left" /></a><a href="blog,panier-de-framboises-pour-miss-framboise,172089.html">- une crème de lait à la framboise pour le corps et le Visage,</a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Un Savon liquide peau nette à la propolis : pour ses petits problèmes d'Ado</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s1.e-monsite.com/2009/09/27/09/6923382lotion-purifiante-teatree-opt40-jpg.jpg" title="lotion_purifiante_teatree_opt40.jpg"><img src="http://s1.e-monsite.com/2009/09/27/09/mini-6923382lotion-purifiante-teatree-opt40-jpg.jpg" border="0" alt="" title="lotion_purifiante_teatree_opt40.jpg" width="41" height="31" align="left" /></a><a href="blog,lotion-tonique-purifiante-et-matifiante-pour-peaux-a-problemes-100-ml,172493.html">- Une Lotion tonique purifiante et Mâtifiante pour peaux à problèmes </a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s1.e-monsite.com/2009/09/27/08/64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg" title="huile_protectrice_capillaire_fraisebois_OPT40.jpg"><img src="http://s1.e-monsite.com/2009/09/27/08/mini-64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg" border="0" alt="" title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" width="28" height="28" align="left" /></a><a href="blog,huile-de-soin-capillaire-protectrice-pour-cheveux-sensibilises,172476.html">- une Huile de soin capillaire protectrice pour cheveux sensibilisés </a></span></span></p> <p style="text-align: justify;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;"><img src="http://widget.hellocoton.fr/img/action-on.gif" border="0" alt="" style="padding: 0; border: 0; margin: 0; float: none;" /></a><a href="http://www.hellocoton.fr" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;"><img src="http://widget.hellocoton.fr/img/hellocoton.gif" border="0" alt="Rendez-vous sur Hellocoton !" style="padding: 0; border: 0; margin: 0; float: none;" /></a></span></p>Stick lèvres nourrissant et protecteur à la framboiseinheritopenopen264-revision2012-01-19 12:36:442012-01-19 11:36:44264http://www.alicepegie.com/wordpress/wordpress/?p=2650revision0
26712010-01-16 12:37:532010-01-16 11:37:53<p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ca y est Bébé est entrée à l'école, et souvent quand j'annonce tout fièrement cette grande nouvelle à quelqu'un, ca fini souvent par aie aie attention aux poux. Et comme je suis d'un naturel préventif j'ai cherché une recette qui pouvrrait empêcher que cela n'arrive et j'ai trouvé <a href="http://www.aroma-zone.com/aroma/fichelavandevraieBIO.asp#spray_poux">cette recette d'AZ.</a></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">coût pour 100ml 4.39€</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation: en 15mn</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="spray_preventif_pouxOPT40.jpg" src="http://s1.e-monsite.com/2009/10/10/07/67541600spray-preventif-pouxopt40-jpg.jpg" alt="" border="0" />image AZ<!--more--> </span></span> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pour 100ml de lotion </strong></span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">cout: 4.54€</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation: env 10mn</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ingredients</strong></span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Hydrolat Lavande BIO : 93 g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Solubol : 4,0 g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Huile essentielle de Géranium Égypte BIO : 0,5 g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Huile essentielle de Lavande Fine BIO : 0,5 g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait aromatique de Fraise des Bois : 1,5 g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait de Pépins de Pamplemousse Aroma-Zone : 0.6g</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Mode opératoire :</span></span> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/ Prélevez la quantité nécessaire de solubol et transférez-le dans un récipient.</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ Ajoutez les huiles essentielles de géranium et de lavande puis mélangez-les délicatement et longuement jusqu'à complète dissolution à l'aide du mini-fouet ou d’une spatule.</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ Ajoutez ensuite l’hydrolat de lavande, l’extrait aromatique de fraise des bois et l'extrait de pépins de pamplemousse puis mélangez de nouveau afin d'homogénéiser le tout.</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ Transférez la préparation dans votre flacon. </span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5/ Laissez reposer 24 heures avant utilisation. </span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation :</strong></span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cette lotion préventive anti-poux à la fraise des bois s'utilise en spray sur les cheveux secs ou mouillés. Insistez sur les zones à risque : derrière les oreilles et à la racine des cheveux sur la nuque.</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Bien entendu, Faites un test dans le pli du coude de votre enfant pour vérifier qu'aucun réaction allergique n'apparaît dans les 24H qui suivent cette application avant toute utilisation de votre spray.Bien agiter avant emploi. Stockez votre flacon à l'abri de la lumière et de la chaleur. Évitez le contact avec les yeux.</span></span></p> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">je lui pschitt ca tout les matin avant d'aller à l'école. Je ne sais pas si ça contre vraiment les poux vu qu'elle n'en a pas eu ni pendant son séjour au Cameroun cet été ni depuis la rentré mais ma petite sœur m'a fait savoir qu'elle lui démêle bien les cheveux.</span></span></p> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span> Spray "Halte aux poux"publishopenopenspray-halte-aux-poux2012-01-19 12:39:212012-01-19 11:39:210http://www.alicepegie.com/wordpress/wordpress/?p=2670post0
26612012-01-19 12:37:152012-01-19 11:37:15<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Coût: 0.99€ pour 12g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation : 20 minutes</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img src="http://s1.e-monsite.com/2009/09/27/10/19121000stick-levres-framboise-jpg.jpg" border="0" alt="" title="stick levres framboise.jpg" width="349" height="255" style="border: 0pt none; float: left;" /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ingrédients :</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire de carnauba : 0.5 g (soit 1 cuillère TAD)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire de riz : 0.75 g (soit 3 cuillères DASH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire d'abeille blanche : 1 g (soit 5 cuillères DASH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- HV Calendula BIO : 6.5 ml</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Beurre de karité BIO : 2.5 g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Poudre de framboise : 0.5 g (soit 5 cuillères PINCH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Oxyde de zinc : 0.02 g (soit 1/2 cuillère DROP)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait aromatique de framboise BIO : 8 gouttes</span></span></p> <p style="text-align: justify;"> </p> <hr id="system-readmore" /> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong><br /> Faire fondre les cires, le beurre et l'huile végétale au bain-marie jusqu'à la fonte totale du mélange. Retirer du feu puis laisser refroidir l'ensemble quelques minutes. Ajouter ensuite le reste des ingrédients. Remuer soigneusement et énergiquement afin de bien développer la teinte. <br /> Couler ensuite le mélange bien homogène lorsqu'il est encore chaud très rapidement dans le moule à rouge à lèvres selon la méthode conseillée sur le site d'AZ, puis démouler selon les instructions.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation :</strong><br /> A appliquer sur les lèvres aussi souvent que nécessaire. Vous pouvez moduler la couleur du baume en augmentant ou en diminuant la poudre de Cranberry et/ou l'oxyde de zinc.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;"><img src="http://widget.hellocoton.fr/img/action-on.gif" border="0" alt="" style="padding: 0; border: 0; margin: 0; float: none;" /></a><a href="http://www.hellocoton.fr" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;"><img src="http://widget.hellocoton.fr/img/hellocoton.gif" border="0" alt="Rendez-vous sur Hellocoton !" style="padding: 0; border: 0; margin: 0; float: none;" /></a></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les autres produits du Panier:</strong></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s1.e-monsite.com/2009/09/26/05/96316870snv32393-jpg.jpg" title="SNV32393.JPG"><img src="http://s1.e-monsite.com/2009/09/26/05/mini-96316870snv32393-jpg.jpg" border="0" alt="" title="SNV32393.JPG" width="16" height="66" align="left" /></a><a href="blog,panier-de-framboises-pour-miss-framboise,172089.html">- une crème de lait à la framboise pour le corps et le Visage,</a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Un Savon liquide peau nette à la propolis : pour ses petits problèmes d'Ado</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s1.e-monsite.com/2009/09/27/09/6923382lotion-purifiante-teatree-opt40-jpg.jpg" title="lotion_purifiante_teatree_opt40.jpg"><img src="http://s1.e-monsite.com/2009/09/27/09/mini-6923382lotion-purifiante-teatree-opt40-jpg.jpg" border="0" alt="" title="lotion_purifiante_teatree_opt40.jpg" width="41" height="31" align="left" /></a><a href="blog,lotion-tonique-purifiante-et-matifiante-pour-peaux-a-problemes-100-ml,172493.html">- Une Lotion tonique purifiante et Mâtifiante pour peaux à problèmes </a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" href="http://s1.e-monsite.com/2009/09/27/08/64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg" title="huile_protectrice_capillaire_fraisebois_OPT40.jpg"><img src="http://s1.e-monsite.com/2009/09/27/08/mini-64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg" border="0" alt="" title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" width="28" height="28" align="left" /></a><a href="blog,huile-de-soin-capillaire-protectrice-pour-cheveux-sensibilises,172476.html">- une Huile de soin capillaire protectrice pour cheveux sensibilisés </a></span></span></p> <p style="text-align: justify;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;"><img src="http://widget.hellocoton.fr/img/action-on.gif" border="0" alt="" style="padding: 0; border: 0; margin: 0; float: none;" /></a><a href="http://www.hellocoton.fr" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;"><img src="http://widget.hellocoton.fr/img/hellocoton.gif" border="0" alt="Rendez-vous sur Hellocoton !" style="padding: 0; border: 0; margin: 0; float: none;" /></a></span></p>Stick lèvres nourrissant et protecteur à la framboiseinheritopenopen264-revision-22012-01-19 12:37:152012-01-19 11:37:15264http://www.alicepegie.com/wordpress/wordpress/?p=2660revision0
26812012-01-19 12:38:562012-01-19 11:38:56<p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Ca y est Bébé est entrée à l'école, et souvent quand j'annonce tout fièrement cette grande nouvelle à quelqu'un, ca fini souvent par aie aie attention aux poux. Et comme je suis d'un naturel préventif j'ai cherché une recette qui pouvrrait empêcher que cela n'arrive et j'ai trouvé <a href="http://www.aroma-zone.com/aroma/fichelavandevraieBIO.asp#spray_poux">cette recette d'AZ.</a></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">coût pour 100ml 4.39€</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation: en 15mn</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="spray_preventif_pouxOPT40.jpg" src="http://s1.e-monsite.com/2009/10/10/07/67541600spray-preventif-pouxopt40-jpg.jpg" alt="" border="0" />image AZ </span></span> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pour 100ml de lotion </strong></span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">cout: 4.54€</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation: env 10mn</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ingredients</strong></span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Hydrolat Lavande BIO : 93 g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Solubol : 4,0 g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Huile essentielle de Géranium Égypte BIO : 0,5 g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Huile essentielle de Lavande Fine BIO : 0,5 g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait aromatique de Fraise des Bois : 1,5 g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait de Pépins de Pamplemousse Aroma-Zone : 0.6g</span></span></p> <hr id="system-readmore" /> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Mode opératoire :</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/ Prélevez la quantité nécessaire de solubol et transférez-le dans un récipient.</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ Ajoutez les huiles essentielles de géranium et de lavande puis mélangez-les délicatement et longuement jusqu'à complète dissolution à l'aide du mini-fouet ou d’une spatule.</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ Ajoutez ensuite l’hydrolat de lavande, l’extrait aromatique de fraise des bois et l'extrait de pépins de pamplemousse puis mélangez de nouveau afin d'homogénéiser le tout.</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ Transférez la préparation dans votre flacon. </span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">5/ Laissez reposer 24 heures avant utilisation. </span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation :</strong></span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Cette lotion préventive anti-poux à la fraise des bois s'utilise en spray sur les cheveux secs ou mouillés. Insistez sur les zones à risque : derrière les oreilles et à la racine des cheveux sur la nuque.</span></span></p> <p style="margin-bottom: 0cm;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Bien entendu, Faites un test dans le pli du coude de votre enfant pour vérifier qu'aucun réaction allergique n'apparaît dans les 24H qui suivent cette application avant toute utilisation de votre spray.Bien agiter avant emploi. Stockez votre flacon à l'abri de la lumière et de la chaleur. Évitez le contact avec les yeux.</span></span></p> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">je lui pschitt ca tout les matin avant d'aller à l'école. Je ne sais pas si ça contre vraiment les poux vu qu'elle n'en a pas eu ni pendant son séjour au Cameroun cet été ni depuis la rentré mais ma petite sœur m'a fait savoir qu'elle lui démêle bien les cheveux.</span></span></p> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span> Spray "Halte aux poux"inheritopenopen267-revision2012-01-19 12:38:562012-01-19 11:38:56267http://www.alicepegie.com/wordpress/wordpress/?p=2680revision0
26912012-01-19 12:37:372012-01-19 11:37:37<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Coût: 0.99€ pour 12g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation : 20 minutes</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="border: 0pt none; float: left;" title="stick levres framboise.jpg" src="http://s1.e-monsite.com/2009/09/27/10/19121000stick-levres-framboise-jpg.jpg" alt="" width="349" height="255" border="0" /></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ingrédients :</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire de carnauba : 0.5 g (soit 1 cuillère TAD)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire de riz : 0.75 g (soit 3 cuillères DASH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Cire d'abeille blanche : 1 g (soit 5 cuillères DASH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- HV Calendula BIO : 6.5 ml</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Beurre de karité BIO : 2.5 g</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Poudre de framboise : 0.5 g (soit 5 cuillères PINCH)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Oxyde de zinc : 0.02 g (soit 1/2 cuillère DROP)</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Extrait aromatique de framboise BIO : 8 gouttes<!--more--></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire :</strong> Faire fondre les cires, le beurre et l'huile végétale au bain-marie jusqu'à la fonte totale du mélange. Retirer du feu puis laisser refroidir l'ensemble quelques minutes. Ajouter ensuite le reste des ingrédients. Remuer soigneusement et énergiquement afin de bien développer la teinte. Couler ensuite le mélange bien homogène lorsqu'il est encore chaud très rapidement dans le moule à rouge à lèvres selon la méthode conseillée sur le site d'AZ, puis démouler selon les instructions.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Utilisation :</strong> A appliquer sur les lèvres aussi souvent que nécessaire. Vous pouvez moduler la couleur du baume en augmentant ou en diminuant la poudre de Cranberry et/ou l'oxyde de zinc.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les autres produits du Panier:</strong></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="SNV32393.JPG" href="http://s1.e-monsite.com/2009/09/26/05/96316870snv32393-jpg.jpg"><img title="SNV32393.JPG" src="http://s1.e-monsite.com/2009/09/26/05/mini-96316870snv32393-jpg.jpg" alt="" width="16" height="66" align="left" border="0" /></a><a href="blog,panier-de-framboises-pour-miss-framboise,172089.html">- une crème de lait à la framboise pour le corps et le Visage,</a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">- Un Savon liquide peau nette à la propolis : pour ses petits problèmes d'Ado</span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="lotion_purifiante_teatree_opt40.jpg" href="http://s1.e-monsite.com/2009/09/27/09/6923382lotion-purifiante-teatree-opt40-jpg.jpg"><img title="lotion_purifiante_teatree_opt40.jpg" src="http://s1.e-monsite.com/2009/09/27/09/mini-6923382lotion-purifiante-teatree-opt40-jpg.jpg" alt="" width="41" height="31" align="left" border="0" /></a><a href="blog,lotion-tonique-purifiante-et-matifiante-pour-peaux-a-problemes-100-ml,172493.html">- Une Lotion tonique purifiante et Mâtifiante pour peaux à problèmes </a></span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></p> <p class="MsoNormal" style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" href="http://s1.e-monsite.com/2009/09/27/08/64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg"><img title="huile_protectrice_capillaire_fraisebois_OPT40.jpg" src="http://s1.e-monsite.com/2009/09/27/08/mini-64976883huile-protectrice-capillaire-fraisebois-opt40-jpg.jpg" alt="" width="28" height="28" align="left" border="0" /></a><a href="blog,huile-de-soin-capillaire-protectrice-pour-cheveux-sensibilises,172476.html">- une Huile de soin capillaire protectrice pour cheveux sensibilisés </a></span></span></p> <p style="text-align: justify;"><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span></p>Stick lèvres nourrissant et protecteur à la framboiseinheritopenopen264-revision-32012-01-19 12:37:372012-01-19 11:37:37264http://www.alicepegie.com/wordpress/wordpress/?p=2690revision0
27012010-01-16 12:40:292010-01-16 11:40:29<p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Je l'avoue je suis accro, depuis que je me suis mise à la savonnerie, j'ai envie d'en faire tout le temps. En cherchant des recettes de savon à adapter, j'ai découvert le <a href="http://maiskeskafee.free.fr/?p=441">savon fouétté</a> sur le blog de <a href="http://kafee.fr/">kafee</a> (blog super riche!!) alors pour mon premier savon fouette, je suis partie de <a href="http://www.afriqueessences.com/savons-artisanaux-africains/les-savons-peaux-grasses/savon-karite-spa-aux-argiles-et-sels-de-mer/fiche-produit-detaillee.html">cette recette d'afriqueessence</a></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Coût pour 100g 2.99€</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">temps de réalisation env 30mn après refroidissement des beurres</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img style="float: left;" title="Savon Spa.jpg" src="http://s1.e-monsite.com/2009/10/11/02/59291970savon-spa-jpg.jpg" alt="" width="446" height="325" border="0" /></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Ingrédients</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Beurre de Karité 163g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">HV de coco 70g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Pour le Saponification</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Soude 33.8g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Eau 77.6 g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Surgraissage à 10.2%</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Beurre de Karité 30g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Ajouts</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">8g de sel fin de la mer morte</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">8g de kaolin<!--more--></span></span></span></p> <p style="text-align: left;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">5g de rhassoul</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="text-decoration: underline;">Analyse de mon Savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>INS</strong> 159</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Dureté</strong> 61</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Persistance de la Mousse</strong> 64</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Pouvoir nettoyant</strong> 56</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Douceur 56</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Mode Opératoire:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">1/ pesez votre eau et votre soude, faites le mélange et laissez reposer</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">2/ pesez séparément votre beurre et votre huile .</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">3/ faites fondre votre beurre et votre HV de coco si elle est trouble (la mienne était encore liquide je ne l'ai donc pas chauffé)</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">4/ mélangez votre beurre et votre huile dans le récipient prévu pour la réalisation du savon.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">5/ laissez refroidir vos huiles/beurres au frais jusqu'à ce qu'ils aient la consistance d'une crème (env 40mn au frais)</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">6/ ensuite fouettez les au fouet électrique, jusqu'à ce que vous obteniez un aspect chantilly, puis finissez au fouet manuel</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">7/ versez enfin votre mélange soude/eau dans les huiles en continuant de fouetter à la main.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">8/ versez enfin vos ajouts (colorant, parfum, HE.....)</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">9/ puis versez dans le moule. Si vous avez un grand moule vous pourrez procéder à la découpe 3h après. Si comme moi vous avez des moules individuels, vous pourrez les démouler et les stocker pour la cure ou les laisser dans le moule.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Mes impressions:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">je pense que je vais définitivement adopter cette méthode, elle est plus facile surtout pour la réalisation des savons artisanaux africains qui sont généralement à base d'au moins 80% de beurre. De plus, étant tout de même encore apprentie dans la savonnerie je ne fais pas plus de 300g de savon par fournée, avec cette méthode on travaille facilement avec de petites quantités.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Choix des ingrédients:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Sel de la mer morte: </strong>il a </span><span style="color: #000000;"> des propriétés de purification, d'apaisement et de regénérescence pour le corps et l'esprit, une action apaisante et purifiante grâce à ses puissants sédatifs naturels. De plus, les sels de la mer morte chassent différentes substances toxiques et excédentaires du corps. Il favorise un sommeil réparateur ; . Il nettoie et purifie la peau ;soulage et atténue les problèmes de peau.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Rhassoul</strong>: Le rhassoul est une argile du Maroc qui sert à débarrasser la peau de ses impuretés les plus profondes, il dégraisse la peau, régule le sébum, il a des propriétés astringentes. Il est également utilisée comme shampoing. Il peut aussi servir à se laver. Bref un produit 100 % bio aux multiples usages. <span style="background: #ffffff none repeat scroll 0% 0%;">Il est hypoallergénique et convient parfaitement aux peaux sensibles.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Kaolin</strong>: argile </span><span style="color: #000000;">très douce, </span><span style="color: #000000;">décongestionnante et apaisante</span><span style="color: #000000;">, est particulièrement adaptée aux </span><span style="color: #000000;">peaux sèches sensibles ou irritées</span><span style="color: #000000;"> et aux peaux matures.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Fin de Cure le 29 octobre 2009. Il me tardeee!!!</span></span></p>Savon Spapublishopenopensavon-spa2012-01-19 12:42:062012-01-19 11:42:060http://www.alicepegie.com/wordpress/wordpress/?p=2700post0
27112012-01-19 12:40:592012-01-19 11:40:59<p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Je l'avoue je suis accro, depuis que je me suis mise à la savonnerie, j'ai envie d'en faire tout le temps. En cherchant des recettes de savon à adapter, j'ai découvert le <a href="http://maiskeskafee.free.fr/?p=441">savon fouétté</a> sur le blog de <a href="http://kafee.fr/">kafee</a> (blog super riche!!) alors pour mon premier savon fouette, je suis partie de <a href="http://www.afriqueessences.com/savons-artisanaux-africains/les-savons-peaux-grasses/savon-karite-spa-aux-argiles-et-sels-de-mer/fiche-produit-detaillee.html">cette recette d'afriqueessence</a></span></span></p> <p style="text-align: justify;"> </p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Coût pour 100g 2.99€</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">temps de réalisation env 30mn après refroidissement des beurres</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img src="http://s1.e-monsite.com/2009/10/11/02/59291970savon-spa-jpg.jpg" border="0" alt="" title="Savon Spa.jpg" width="446" height="325" style="float: left;" /></span></span></p> <p style="text-align: justify;"> </p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Ingrédients</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Beurre de Karité 163g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">HV de coco 70g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Pour le Saponification</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Soude 33.8g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Eau 77.6 g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Surgraissage à 10.2%</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Beurre de Karité 30g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Ajouts</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">8g de sel fin de la mer morte</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">8g de kaolin</span></span></span></p> <p style="text-align: left;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">5g de rhassoul</span></span></span></p> <hr id="system-readmore" /> <p style="text-align: justify;"> </p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="text-decoration: underline;">Analyse de mon Savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>INS</strong> 159</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Dureté</strong> 61</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Persistance de la Mousse</strong> 64</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Pouvoir nettoyant</strong> 56</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Douceur 56</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Mode Opératoire:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">1/ pesez votre eau et votre soude, faites le mélange et laissez reposer</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">2/ pesez séparément votre beurre et votre huile .</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">3/ faites fondre votre beurre et votre HV de coco si elle est trouble (la mienne était encore liquide je ne l'ai donc pas chauffé)</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">4/ mélangez votre beurre et votre huile dans le récipient prévu pour la réalisation du savon.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">5/ laissez refroidir vos huiles/beurres au frais jusqu'à ce qu'ils aient la consistance d'une crème (env 40mn au frais)</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">6/ ensuite fouettez les au fouet électrique, jusqu'à ce que vous obteniez un aspect chantilly, puis finissez au fouet manuel</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">7/ versez enfin votre mélange soude/eau dans les huiles en continuant de fouetter à la main.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">8/ versez enfin vos ajouts (colorant, parfum, HE.....)</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">9/ puis versez dans le moule. Si vous avez un grand moule vous pourrez procéder à la découpe 3h après. Si comme moi vous avez des moules individuels, vous pourrez les démouler et les stocker pour la cure ou les laisser dans le moule.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Mes impressions:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">je pense que je vais définitivement adopter cette méthode, elle est plus facile surtout pour la réalisation des savons artisanaux africains qui sont généralement à base d'au moins 80% de beurre. De plus, étant tout de même encore apprentie dans la savonnerie je ne fais pas plus de 300g de savon par fournée, avec cette méthode on travaille facilement avec de petites quantités.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Choix des ingrédients:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Sel de la mer morte: </strong>il a </span><span style="color: #000000;"> des propriétés de purification, d'apaisement et de regénérescence pour le corps et l'esprit, une action apaisante et purifiante grâce à ses puissants sédatifs naturels. De plus, les sels de la mer morte chassent différentes substances toxiques et excédentaires du corps. Il favorise un sommeil réparateur ; . Il nettoie et purifie la peau ;soulage et atténue les problèmes de peau.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Rhassoul</strong>: Le rhassoul est une argile du Maroc qui sert à débarrasser la peau de ses impuretés les plus profondes, il dégraisse la peau, régule le sébum, il a des propriétés astringentes. Il est également utilisée comme shampoing. Il peut aussi servir à se laver. Bref un produit 100 % bio aux multiples usages. <span style="background: #ffffff none repeat scroll 0% 0%;">Il est hypoallergénique et convient parfaitement aux peaux sensibles.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Kaolin</strong>: argile </span><span style="color: #000000;">très douce, </span><span style="color: #000000;">décongestionnante et apaisante</span><span style="color: #000000;">, est particulièrement adaptée aux </span><span style="color: #000000;">peaux sèches sensibles ou irritées</span><span style="color: #000000;"> et aux peaux matures.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Fin de Cure le 29 octobre 2009. Il me tardeee!!!</span></span></p>Savon Spainheritopenopen270-revision2012-01-19 12:40:592012-01-19 11:40:59270http://www.alicepegie.com/wordpress/wordpress/?p=2710revision0
27312010-01-16 12:42:432010-01-16 11:42:43<p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Eh bien! Mon premier essaie de savon fouetté semble réussi du coup j'ai eu envie de continuer, alors j'ai décidé de fouetter le Noir (lol) Et voici une nouvelle édition de mon si bon <a href="blog,mon-savon-noir-d-afrique,169993.html#suite">savon noi</a><a href="index.php?option=com_content&amp;view=article&amp;id=206:mon-savon-noir-dafrique&amp;catid=59&amp;Itemid=82">r</a>, mon préféré, cette fois il ne sera pas exfolient.</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">coût pour 100g 2.90€</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Temps de réalisation env 30mn après refroidissement des Beurres</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img src="http://s1.e-monsite.com/2009/10/11/04/61888559snv32446-jpg.jpg" border="0" alt="" title="SNV32446.JPG" /></span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Ingrédients</strong></span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Beurre de Karité 150g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Beurre de Cacao 85g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">HV de Palmiste 75g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Pour le Saponification</strong></span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Soude 43.5g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Eau 103.3 g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Surgraissage à 9.1%</strong></span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Beurre de Karité 10g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Beurre de Cacao 10g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">HV palmiste 10</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Ajouts</strong></span></span></p> <p style="text-align: left;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Arôme naturel de Cacao 2g<br /></span></span></p> <p style="text-align: left;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Mode Opératoire: </strong>Même méthode qu'<a href="index.php?option=com_content&amp;view=article&amp;id=1955:shampooing-gloss&amp;catid=368&amp;Itemid=126">ici</a></span></span></p> <hr id="system-readmore" /> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="text-decoration: underline;">Analyse de mon Savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>INS</strong> 145</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Dureté</strong> 59</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Persistance de la Mousse</strong> 64</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Pouvoir nettoyant</strong> 50 (valeur idéale)</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Douceur </strong>50<strong> (valeur idéale)</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Mes impressions: </strong>j'aime définitivement cette méthode. je pensais pouvoir changer l'odeur du savon comme me l'avait suggéré Olga mais je ne vois pas vraiment de différence avec les 2 première fournée. il faut dire que l'odeur de l'huile de palmiste est tenace. J'ai d'ailleurs appris qu'on produisait désormais de l'huile de palmiste de couleur blanche, qui sentirait moins fort j'essaierais de m'en procurer.</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Fin de cure 29 octobre 2009.</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><br /></span></span></p> <p><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;"><img src="http://widget.hellocoton.fr/img/action-on.gif" border="0" alt="" style="padding: 0; border: 0; margin: 0; float: none;" /></a><a href="http://www.hellocoton.fr" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;"><img src="http://widget.hellocoton.fr/img/hellocoton.gif" border="0" alt="Rendez-vous sur Hellocoton !" style="padding: 0; border: 0; margin: 0; float: none;" /></a></span></p>Savon Noir Fouettépublishopenopensavon-noir-fouette2012-01-19 12:43:282012-01-19 11:43:280http://www.alicepegie.com/wordpress/wordpress/?p=2730post0
27212012-01-19 12:41:362012-01-19 11:41:36<p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Je l'avoue je suis accro, depuis que je me suis mise à la savonnerie, j'ai envie d'en faire tout le temps. En cherchant des recettes de savon à adapter, j'ai découvert le <a href="http://maiskeskafee.free.fr/?p=441">savon fouétté</a> sur le blog de <a href="http://kafee.fr/">kafee</a> (blog super riche!!) alors pour mon premier savon fouette, je suis partie de <a href="http://www.afriqueessences.com/savons-artisanaux-africains/les-savons-peaux-grasses/savon-karite-spa-aux-argiles-et-sels-de-mer/fiche-produit-detaillee.html">cette recette d'afriqueessence</a></span></span></p> <p style="text-align: justify;"> </p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Coût pour 100g 2.99€</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">temps de réalisation env 30mn après refroidissement des beurres</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img src="http://s1.e-monsite.com/2009/10/11/02/59291970savon-spa-jpg.jpg" border="0" alt="" title="Savon Spa.jpg" width="446" height="325" style="float: left;" /></span></span></p> <p style="text-align: justify;"> </p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Ingrédients</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Beurre de Karité 163g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">HV de coco 70g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Pour le Saponification</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Soude 33.8g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Eau 77.6 g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Surgraissage à 10.2%</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">Beurre de Karité 30g</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Ajouts</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">8g de sel fin de la mer morte</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">8g de kaolin</span></span></span></p> <p style="text-align: left;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">5g de rhassoul</span></span></span></p> <hr id="system-readmore" /> <p style="text-align: justify;"> </p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="text-decoration: underline;">Analyse de mon Savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>INS</strong> 159</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Dureté</strong> 61</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Persistance de la Mousse</strong> 64</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Pouvoir nettoyant</strong> 56</span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Douceur 56</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Mode Opératoire:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">1/ pesez votre eau et votre soude, faites le mélange et laissez reposer</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">2/ pesez séparément votre beurre et votre huile .</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">3/ faites fondre votre beurre et votre HV de coco si elle est trouble (la mienne était encore liquide je ne l'ai donc pas chauffé)</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">4/ mélangez votre beurre et votre huile dans le récipient prévu pour la réalisation du savon.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">5/ laissez refroidir vos huiles/beurres au frais jusqu'à ce qu'ils aient la consistance d'une crème (env 40mn au frais)</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">6/ ensuite fouettez les au fouet électrique, jusqu'à ce que vous obteniez un aspect chantilly, puis finissez au fouet manuel</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">7/ versez enfin votre mélange soude/eau dans les huiles en continuant de fouetter à la main.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">8/ versez enfin vos ajouts (colorant, parfum, HE.....)</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">9/ puis versez dans le moule. Si vous avez un grand moule vous pourrez procéder à la découpe 3h après. Si comme moi vous avez des moules individuels, vous pourrez les démouler et les stocker pour la cure ou les laisser dans le moule.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Mes impressions:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;">je pense que je vais définitivement adopter cette méthode, elle est plus facile surtout pour la réalisation des savons artisanaux africains qui sont généralement à base d'au moins 80% de beurre. De plus, étant tout de même encore apprentie dans la savonnerie je ne fais pas plus de 300g de savon par fournée, avec cette méthode on travaille facilement avec de petites quantités.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="color: #000000;">Choix des ingrédients:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Sel de la mer morte: </strong>il a </span><span style="color: #000000;"> des propriétés de purification, d'apaisement et de regénérescence pour le corps et l'esprit, une action apaisante et purifiante grâce à ses puissants sédatifs naturels. De plus, les sels de la mer morte chassent différentes substances toxiques et excédentaires du corps. Il favorise un sommeil réparateur ; . Il nettoie et purifie la peau ;soulage et atténue les problèmes de peau.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Rhassoul</strong>: Le rhassoul est une argile du Maroc qui sert à débarrasser la peau de ses impuretés les plus profondes, il dégraisse la peau, régule le sébum, il a des propriétés astringentes. Il est également utilisée comme shampoing. Il peut aussi servir à se laver. Bref un produit 100 % bio aux multiples usages. <span style="background: #ffffff none repeat scroll 0% 0%;">Il est hypoallergénique et convient parfaitement aux peaux sensibles.</span></span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><span style="color: #000000;"><strong>Kaolin</strong>: argile </span><span style="color: #000000;">très douce, </span><span style="color: #000000;">décongestionnante et apaisante</span><span style="color: #000000;">, est particulièrement adaptée aux </span><span style="color: #000000;">peaux sèches sensibles ou irritées</span><span style="color: #000000;"> et aux peaux matures.</span></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Fin de Cure le 29 octobre 2009. Il me tardeee!!!</span></span></p>Savon Spainheritopenopen270-revision-22012-01-19 12:41:362012-01-19 11:41:36270http://www.alicepegie.com/wordpress/wordpress/?p=2720revision0
27412012-01-19 12:42:582012-01-19 11:42:58<p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Eh bien! Mon premier essaie de savon fouetté semble réussi du coup j'ai eu envie de continuer, alors j'ai décidé de fouetter le Noir (lol) Et voici une nouvelle édition de mon si bon <a href="blog,mon-savon-noir-d-afrique,169993.html#suite">savon noi</a><a href="index.php?option=com_content&amp;view=article&amp;id=206:mon-savon-noir-dafrique&amp;catid=59&amp;Itemid=82">r</a>, mon préféré, cette fois il ne sera pas exfolient.</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">coût pour 100g 2.90€</span></span></p> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Temps de réalisation env 30mn après refroidissement des Beurres</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><img src="http://s1.e-monsite.com/2009/10/11/04/61888559snv32446-jpg.jpg" border="0" alt="" title="SNV32446.JPG" /></span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Ingrédients</strong></span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Beurre de Karité 150g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Beurre de Cacao 85g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">HV de Palmiste 75g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Pour le Saponification</strong></span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Soude 43.5g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Eau 103.3 g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Surgraissage à 9.1%</strong></span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Beurre de Karité 10g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Beurre de Cacao 10g</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">HV palmiste 10</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Ajouts</strong></span></span></p> <p style="text-align: left;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Arôme naturel de Cacao 2g<br /></span></span></p> <p style="text-align: left;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Mode Opératoire: </strong>Même méthode qu'<a href="index.php?option=com_content&amp;view=article&amp;id=1955:shampooing-gloss&amp;catid=368&amp;Itemid=126">ici</a></span></span></p> <hr id="system-readmore" /> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong><span style="text-decoration: underline;">Analyse de mon Savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>INS</strong> 145</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Dureté</strong> 59</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Persistance de la Mousse</strong> 64</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Pouvoir nettoyant</strong> 50 (valeur idéale)</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Douceur </strong>50<strong> (valeur idéale)</strong></span></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><strong>Mes impressions: </strong>j'aime définitivement cette méthode. je pensais pouvoir changer l'odeur du savon comme me l'avait suggéré Olga mais je ne vois pas vraiment de différence avec les 2 première fournée. il faut dire que l'odeur de l'huile de palmiste est tenace. J'ai d'ailleurs appris qu'on produisait désormais de l'huile de palmiste de couleur blanche, qui sentirait moins fort j'essaierais de m'en procurer.</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Fin de cure 29 octobre 2009.</span></span></p> <p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><br /></span></span></p> <p><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;"><img src="http://widget.hellocoton.fr/img/action-on.gif" border="0" alt="" style="padding: 0; border: 0; margin: 0; float: none;" /></a><a href="http://www.hellocoton.fr" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;"><img src="http://widget.hellocoton.fr/img/hellocoton.gif" border="0" alt="Rendez-vous sur Hellocoton !" style="padding: 0; border: 0; margin: 0; float: none;" /></a></span></p>Savon Noir Fouettéinheritopenopen273-revision2012-01-19 12:42:582012-01-19 11:42:58273http://www.alicepegie.com/wordpress/wordpress/?p=2740revision0
27512010-01-16 12:44:072010-01-16 11:44:07<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">encore un! cette fois j'ai voulu faire un savon pour peaux sensibles et grasses, hydratant au beurre de karité et de cacao. Enrichis au kaolin et aux huiles essentielles rafraîchissantes et équilibrantes de lavande, de pamplemousse, de citron, d'ylang ylang III et de menthe verte, je voulais qu'il nettoie, apaise les peaux sensibles et à problèmes tout en apportant détente et fraîcheur. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Alors voici sa recette: </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>coût pour 100g 3.14€</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">temps de réalisation env 30mn (après refroidissement des huile)</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img title="SNV32449.JPG" src="http://s1.e-monsite.com/2009/10/11/04/40357626snv32449-jpg.jpg" alt="" border="0" /><!--more--></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Beurre de Karité 113g</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">HV de Coco 20g</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Hv de Palmiste 22g</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Beurre de Cacao 75g</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Pour la saponification</strong></span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">32.1g de soude</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">76.7 d'eau</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Surgraissage à 9.4%</strong></span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Beurre de Karité 12g</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Beurre de Cacao 13g</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Ajouts</strong></span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Kaolin 15g</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Huiles essentielles 2ml (dilution à 0.66% )</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">He de Lavande</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">He de menthe Verte</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">He d'Ylang Ylang III</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">He de Citron</span></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">He de pamplemousse.</span></span></span> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Mode opératoire</strong> le même qu'<a href="index.php?option=com_content&amp;view=article&amp;id=1955:shampooing-gloss&amp;catid=368&amp;Itemid=126">ici</a></span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Mes Impressions: </strong>en tout cas ça sent bon</span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Analyse de mon Savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>INS</strong>148</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Dureté</strong> 60</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Persistance de la Mousse</strong> 65</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pouvoir nettoyant</strong> 47</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Douceur </strong>50<strong> (valeur idéale)</strong></span></span> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="color: #000000;">Choix des ingredients:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>He de Lavande:</strong> </span><span style="color: #000000;">favorise le renouvellement des cellules et elle est utilisée pour lutter contre les infections cutanées telles que l'acné, le psoriasis, les mycoses,</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="color: #000000;">He de Menthe verte:</span></strong><span style="color: #000000;">stimule et rafraîchit, revigore corps et esprit. Effet "coup de fouet" garanti en cas de fatigue.</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>He d'Ylang Ylang III:</strong> Puissant aphrodisiaque, cette fleur est stimulante et tonifiante. Elle est reconnue pour agir contre la dépression et l'excitabilité </span><span style="color: #000000;"><strong>He de Pamplemousse:</strong> </span><span style="color: #000000;">Reconnue comme efficace contre la cellulite et les rétentions d'eau, elle s'utilise aussi pour traiter les peaux grasses et congestionnées ainsi que pour stopper la perte des cheveux. </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>He de Citron:</strong> </span><span style="color: #000000;">appréciée pour les cures d’amincissement et pour les soins des peaux à tendance grasse.</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Fin de cure le 29 octobre 2009</span></span></p> <span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;" href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/action-on.gif" alt="" border="0" /></a><a style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;" href="http://www.hellocoton.fr" target="_blank"><img style="padding: 0; border: 0; margin: 0; float: none;" src="http://widget.hellocoton.fr/img/hellocoton.gif" alt="Rendez-vous sur Hellocoton !" border="0" /></a></span>Savon Reequilibrantpublishopenopensavon-reequilibrant2012-01-19 12:45:352012-01-19 11:45:350http://www.alicepegie.com/wordpress/wordpress/?p=2750post0
27712010-01-16 12:45:472010-01-16 11:45:47<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour des mains très souvent maltraitées, Voici une crème de <em>Soin pour M</em>anucure expresse et naturelle.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em></em><em><strong>Émolliente et nourrissante</strong></em><em>, elle est idéale pour fortifier les ongles et exfolier efficacement les mains, De plus, </em><em></em><em><strong> elle facilite le retrait des petites peaux. </strong></em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Elle ne laisse pas de film gras sur la peau, vous pouvez ne pas y ajouter d'exfoliant, et en faire une crème pour les mains.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="border: 0pt none; float: left;" title="Manucure.jpg" src="http://s1.e-monsite.com/2009/10/12/09/42002663manucure-jpg.jpg" alt="" width="486" height="355" border="0" /></span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les ingrédients coût pour 100ml 5.5€</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation env 20mn</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">35 g Huile de Ricin 15 g Beurre d'Avocat 13 g Huile de Sésame 10 g Huile de Bourrache 20 g Beurre de Karité </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">7 g Phytokératine </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sels de la mer morte </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HE de Citron 30 gouttes</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HE de Lavande Vrai 15 gouttes</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/mélangez au fouet toutes vos matières grasses (huiles et beurres) . Je ne les ai pas chauffer mais vous pouvez le faire fondre si vous voulez.<!--more--></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ une fois que le mélange est bien homogène, rajoutez les HE. Si vous avez chauffé les Huiles et beurres, laissez les refroidir avant de rajouter les HE et mélangez de nouveau.</span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ si vous voulez en faire une huile exfoliante, rajoutez y du sel fin.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ mélangez et transférez dans votre contenant,</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Utilisation</span></strong><span style="text-decoration: underline;"> </span>Secouer énergiquement le flacon afin de mélanger Sels et huiles. Appliquez une petite quantité sur les mains sèches et massez délicatement en insistant sur les cuticules, massez bien les ongles et vos mains. Vous pouvez vous rincer les mains. Mettez votre crème habituelle.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Choix des ingredients</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile de Ricin, de Bourrache, l'Huile de Sésame</strong> fortifient et soignent les ongles fatigués, mous, cassants, elles assouplissent, protègent et nourrissent également les mains.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile Essentielle de Citron</strong> fortifie les ongles, les rendent brillants et plus blancs.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile Essentielle de Lavande</strong> est embellissante, elle répare, régénère et apaise l'épiderme.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Avocat et le Karité</strong> nourrissent et réparent.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le Sel de la mer morte </strong>est très riche en minéraux, exfolient nourrissent la peau.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La Phytokératine:</strong> Renforce la structure des ongles, apporte douceur et souplesse à la peau, protège la peau de la déshydratation.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Attention: </strong><em>l'huile essentielle de citron. Il est donc préférable de l'appliquer le soir et/ou d'éviter toutes expositions prolongées au soleil dans les 12H suivant son application.</em></span></span></p>Crème de soin Exfoliante Manucure expressepublishopenopencreme-de-soin-exfoliante-manucure-expresse2012-01-19 12:53:272012-01-19 11:53:270http://www.alicepegie.com/wordpress/wordpress/?p=2770post0
27612012-01-19 12:44:222012-01-19 11:44:22<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">encore un! cette fois j'ai voulu faire un savon pour peaux sensibles et grasses, hydratant au beurre de karité et de cacao. Enrichis au kaolin et aux huiles essentielles rafraîchissantes et équilibrantes de lavande, de pamplemousse, de citron, d'ylang ylang III et de menthe verte, je voulais qu'il nettoie, apaise les peaux sensibles et à problèmes tout en apportant détente et fraîcheur. </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Alors voici sa recette: </span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>coût pour 100g 3.14€</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">temps de réalisation env 30mn (après refroidissement des huile)</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img src="http://s1.e-monsite.com/2009/10/11/04/40357626snv32449-jpg.jpg" border="0" alt="" title="SNV32449.JPG" /></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Beurre de Karité 113g</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">HV de Coco 20g</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Hv de Palmiste 22g</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Beurre de Cacao 75g</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Pour la saponification</strong></span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">32.1g de soude</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">76.7 d'eau</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Surgraissage à 9.4%</strong></span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Beurre de Karité 12g</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Beurre de Cacao 13g</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Ajouts</strong></span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Kaolin 15g</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Huiles essentielles 2ml (dilution à 0.66% )</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">He de Lavande</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">He de menthe Verte</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">He d'Ylang Ylang III</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">He de Citron</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">He de pamplemousse.</span></span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Mode opératoire</strong> le même qu'<a href="index.php?option=com_content&amp;view=article&amp;id=1955:shampooing-gloss&amp;catid=368&amp;Itemid=126">ici</a></span></span></span></p> <hr id="system-readmore" /> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Mes Impressions: </strong>en tout cas ça sent bon</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Analyse de mon Savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>INS</strong>148</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Dureté</strong> 60</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Persistance de la Mousse</strong> 65</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pouvoir nettoyant</strong> 47</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Douceur </strong>50<strong> (valeur idéale)</strong></span></span></p> <p style="text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="color: #000000;">Choix des ingredients:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>He de Lavande:</strong> </span><span style="color: #000000;">favorise le renouvellement des cellules et elle est utilisée pour lutter contre les infections cutanées telles que l'acné, le psoriasis, les mycoses,</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="color: #000000;">He de Menthe verte:</span></strong><span style="color: #000000;">stimule et rafraîchit, revigore corps et esprit. Effet "coup de fouet" garanti en cas de fatigue.</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>He d'Ylang Ylang III:</strong> Puissant aphrodisiaque, cette fleur est stimulante et tonifiante. Elle est reconnue pour agir contre la dépression et l'excitabilité <br /></span><span style="color: #000000;"><strong>He de Pamplemousse:</strong> </span><span style="color: #000000;">Reconnue comme efficace contre la cellulite et les rétentions d'eau, elle s'utilise aussi pour traiter les peaux grasses et congestionnées ainsi que pour stopper la perte des cheveux. </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>He de Citron:</strong> </span><span style="color: #000000;">appréciée pour les cures d’amincissement et pour les soins des peaux à tendance grasse.</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Fin de cure le 29 octobre 2009</span></span></p> <p><span style="margin: 0pt; padding: 0pt; display: block; width: 147px; height: 26px; position: relative; clear: both;"><a href="http://www.hellocoton.fr/vote?url={$post.permalink}" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 0pt;"><img src="http://widget.hellocoton.fr/img/action-on.gif" border="0" alt="" style="padding: 0; border: 0; margin: 0; float: none;" /></a><a href="http://www.hellocoton.fr" target="_blank" style="display: block; width: 27px; height: 26px; position: absolute; top: 0pt; left: 120px;"><img src="http://widget.hellocoton.fr/img/hellocoton.gif" border="0" alt="Rendez-vous sur Hellocoton !" style="padding: 0; border: 0; margin: 0; float: none;" /></a></span></p>Savon Reequilibrantinheritopenopen275-revision2012-01-19 12:44:222012-01-19 11:44:22275http://www.alicepegie.com/wordpress/wordpress/?p=2760revision0
27812012-01-19 12:46:172012-01-19 11:46:17<p> </p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour des mains très souvent maltraitées, Voici une crème de <em>Soin pour M</em>anucure expresse et naturelle.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em></em><em><strong>Émolliente et nourrissante</strong></em><em>, elle est idéale pour fortifier les ongles et exfolier efficacement les mains, De plus, </em><em></em><em><strong> elle facilite le retrait des petites peaux. </strong></em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Elle ne laisse pas de film gras sur la peau, vous pouvez ne pas y ajouter d'exfoliant, et en faire une crème pour les mains.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img src="http://s1.e-monsite.com/2009/10/12/09/42002663manucure-jpg.jpg" border="0" alt="" title="Manucure.jpg" width="486" height="355" style="border: 0pt none; float: left;" /></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les ingrédients coût pour 100ml 5.5€</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation env 20mn</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">35 g Huile de Ricin<br />15 g Beurre d'Avocat<br />13 g Huile de Sésame<br />10 g Huile de Bourrache<br />20 g Beurre de Karité<br /></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">7 g Phytokératine </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sels de la mer morte<br /></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HE de Citron 30 gouttes</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HE de Lavande Vrai 15 gouttes</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/mélangez au fouet toutes vos matières grasses (huiles et beurres) . Je ne les ai pas chauffer mais vous pouvez le faire fondre si vous voulez.</span></span></p> <hr id="system-readmore" /> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ une fois que le mélange est bien homogène, rajoutez les HE. Si vous avez chauffé les Huiles et beurres, laissez les refroidir avant de rajouter les HE et mélangez de nouveau.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ si vous voulez en faire une huile exfoliante, rajoutez y du sel fin.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ mélangez et transférez dans votre contenant,</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Utilisation</span></strong><span style="text-decoration: underline;"><br /></span>Secouer énergiquement le flacon afin de mélanger Sels et huiles. <br />Appliquez une petite quantité sur les mains sèches et massez délicatement en insistant sur les cuticules, massez bien les ongles et vos mains. <br />Vous pouvez vous rincer les mains. Mettez votre crème habituelle.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Choix des ingredients</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile de Ricin, de Bourrache, l'Huile de Sésame</strong> fortifient et soignent les ongles fatigués, mous, cassants, elles assouplissent, protègent et nourrissent également les mains.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile Essentielle de Citron</strong> fortifie les ongles, les rendent brillants et plus blancs.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile Essentielle de Lavande</strong> est embellissante, elle répare, régénère et apaise l'épiderme.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Avocat et le Karité</strong> nourrissent et réparent.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le Sel de la mer morte </strong>est très riche en minéraux, exfolient nourrissent la peau.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La Phytokératine:</strong> Renforce la structure des ongles, apporte douceur et souplesse à la peau, protège la peau de la déshydratation.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Attention: </strong><em>l'huile essentielle de citron. Il est donc préférable de l'appliquer le soir et/ou d'éviter toutes expositions prolongées au soleil dans les 12H suivant son application.</em></span></span></p>Crème de soin Exfoliante Manucure expresseinheritopenopen277-revision2012-01-19 12:46:172012-01-19 11:46:17277http://www.alicepegie.com/wordpress/wordpress/?p=2780revision0
28112012-01-19 12:57:590000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-19 12:57:590000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?page_id=2810page0
27912012-01-19 12:52:542012-01-19 11:52:54<p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour des mains très souvent maltraitées, Voici une crème de <em>Soin pour M</em>anucure expresse et naturelle.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em></em><em><strong>Émolliente et nourrissante</strong></em><em>, elle est idéale pour fortifier les ongles et exfolier efficacement les mains, De plus, </em><em></em><em><strong> elle facilite le retrait des petites peaux. </strong></em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Elle ne laisse pas de film gras sur la peau, vous pouvez ne pas y ajouter d'exfoliant, et en faire une crème pour les mains.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img style="border: 0pt none; float: left;" title="Manucure.jpg" src="http://s1.e-monsite.com/2009/10/12/09/42002663manucure-jpg.jpg" alt="" width="486" height="355" border="0" /></span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les ingrédients coût pour 100ml 5.5€</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation env 20mn</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">35 g Huile de Ricin 15 g Beurre d'Avocat 13 g Huile de Sésame 10 g Huile de Bourrache 20 g Beurre de Karité </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">7 g Phytokératine </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sels de la mer morte </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HE de Citron 30 gouttes</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HE de Lavande Vrai 15 gouttes</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/mélangez au fouet toutes vos matières grasses (huiles et beurres) . Je ne les ai pas chauffer mais vous pouvez le faire fondre si vous voulez.<!--more--></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ une fois que le mélange est bien homogène, rajoutez les HE. Si vous avez chauffé les Huiles et beurres, laissez les refroidir avant de rajouter les HE et mélangez de nouveau.</span></span> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ si vous voulez en faire une huile exfoliante, rajoutez y du sel fin.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ mélangez et transférez dans votre contenant,</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Utilisation</span></strong><span style="text-decoration: underline;"> </span>Secouer énergiquement le flacon afin de mélanger Sels et huiles. Appliquez une petite quantité sur les mains sèches et massez délicatement en insistant sur les cuticules, massez bien les ongles et vos mains. Vous pouvez vous rincer les mains. Mettez votre crème habituelle.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Choix des ingredients</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile de Ricin, de Bourrache, l'Huile de Sésame</strong> fortifient et soignent les ongles fatigués, mous, cassants, elles assouplissent, protègent et nourrissent également les mains.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile Essentielle de Citron</strong> fortifie les ongles, les rendent brillants et plus blancs.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile Essentielle de Lavande</strong> est embellissante, elle répare, régénère et apaise l'épiderme.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Avocat et le Karité</strong> nourrissent et réparent.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le Sel de la mer morte </strong>est très riche en minéraux, exfolient nourrissent la peau.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La Phytokératine:</strong> Renforce la structure des ongles, apporte douceur et souplesse à la peau, protège la peau de la déshydratation.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Attention: </strong><em>l'huile essentielle de citron. Il est donc préférable de l'appliquer le soir et/ou d'éviter toutes expositions prolongées au soleil dans les 12H suivant son application.</em></span></span></p>Crème de soin Exfoliante Manucure expresseinheritopenopen277-autosave2012-01-19 12:52:542012-01-19 11:52:54277http://www.alicepegie.com/wordpress/wordpress/?p=2790revision0
28012012-01-19 12:46:512012-01-19 11:46:51<p> </p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour des mains très souvent maltraitées, Voici une crème de <em>Soin pour M</em>anucure expresse et naturelle.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><em></em><em><strong>Émolliente et nourrissante</strong></em><em>, elle est idéale pour fortifier les ongles et exfolier efficacement les mains, De plus, </em><em></em><em><strong> elle facilite le retrait des petites peaux. </strong></em></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Elle ne laisse pas de film gras sur la peau, vous pouvez ne pas y ajouter d'exfoliant, et en faire une crème pour les mains.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><img src="http://s1.e-monsite.com/2009/10/12/09/42002663manucure-jpg.jpg" border="0" alt="" title="Manucure.jpg" width="486" height="355" style="border: 0pt none; float: left;" /></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Les ingrédients coût pour 100ml 5.5€</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation env 20mn</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">35 g Huile de Ricin<br />15 g Beurre d'Avocat<br />13 g Huile de Sésame<br />10 g Huile de Bourrache<br />20 g Beurre de Karité<br /></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">7 g Phytokératine </span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Sels de la mer morte<br /></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HE de Citron 30 gouttes</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HE de Lavande Vrai 15 gouttes</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire</strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">1/mélangez au fouet toutes vos matières grasses (huiles et beurres) . Je ne les ai pas chauffer mais vous pouvez le faire fondre si vous voulez.</span></span></p> <hr id="system-readmore" /> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">2/ une fois que le mélange est bien homogène, rajoutez les HE. Si vous avez chauffé les Huiles et beurres, laissez les refroidir avant de rajouter les HE et mélangez de nouveau.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">3/ si vous voulez en faire une huile exfoliante, rajoutez y du sel fin.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">4/ mélangez et transférez dans votre contenant,</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Utilisation</span></strong><span style="text-decoration: underline;"><br /></span>Secouer énergiquement le flacon afin de mélanger Sels et huiles. <br />Appliquez une petite quantité sur les mains sèches et massez délicatement en insistant sur les cuticules, massez bien les ongles et vos mains. <br />Vous pouvez vous rincer les mains. Mettez votre crème habituelle.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Choix des ingredients</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile de Ricin, de Bourrache, l'Huile de Sésame</strong> fortifient et soignent les ongles fatigués, mous, cassants, elles assouplissent, protègent et nourrissent également les mains.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile Essentielle de Citron</strong> fortifie les ongles, les rendent brillants et plus blancs.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Huile Essentielle de Lavande</strong> est embellissante, elle répare, régénère et apaise l'épiderme.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>L'Avocat et le Karité</strong> nourrissent et réparent.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Le Sel de la mer morte </strong>est très riche en minéraux, exfolient nourrissent la peau.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>La Phytokératine:</strong> Renforce la structure des ongles, apporte douceur et souplesse à la peau, protège la peau de la déshydratation.</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Attention: </strong><em>l'huile essentielle de citron. Il est donc préférable de l'appliquer le soir et/ou d'éviter toutes expositions prolongées au soleil dans les 12H suivant son application.</em></span></span></p>Crème de soin Exfoliante Manucure expresseinheritopenopen277-revision-22012-01-19 12:46:512012-01-19 11:46:51277http://www.alicepegie.com/wordpress/wordpress/?p=2800revision0
28212012-01-19 13:13:450000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-19 13:13:450000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?page_id=2820page0
28312010-01-16 13:18:372010-01-16 12:18:37<p style="text-align: justify;"><img style="border: 0pt none; float: left;" title="shampooing gloss lissant.jpg" src="http://s1.e-monsite.com/2009/10/14/11/55772804shampooing-gloss-lissant-jpg.jpg" alt="" width="493" height="358" border="0" /><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Comme j'ai promis à une amie de lui confectionner quelques cosmétiques pour son anniv, ça fait environ 3 semaines que je planche sur des recettes que je pourrais lui proposer et qui réponderaient à ses attentes, alors j'ai glané par ci par là et j'ai élaboré (en recoupant plusieurs recettes trouvées sur différents sites et blogs), et voici la première. Une barre shampooing démêlante et embellissante avec la même base que <a href="blog,barre-shampooing-karite-et-miel,169997.html">celle ci, </a>dont je n'ai eu que de bons retours, Mais cette fois, je lai fouetté, mon nouveau hobby, </span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Alors voici sa recette:</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">coût pour 100 g 3.2 € Temps de réalisation env 45mn </span></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="color: #000000;">Base:</span></strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Beurre de Karité 70%</span></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">HV de coco 30%</span></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Actifs</strong></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">BTMS 10%<!--more--></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Conditionner émulsifier: 5%</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Acide Lactile 3%</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Protéine de soie liquide 2%</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"> Miel de thym 2 CAC</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Pour la Saponification</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Soude et eau selon les quantités</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Surgraissage à 9.4%</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Karité 5%</span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HV de coco 4.4%</span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">Selon la méthode de Kafé, il faut chauffer les beurres puis les laisser durcir avant de pouvoir les fouetter, puisque que je n'ai utilisé que des beurres tendres je me suis dit que ça ne valait pas le coup de les chauffer pour ensuite les laisser se solidifier à nouveau (la chaleur altère leurs propriétés),</span></span></span></p> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="color: #000000;">Mode Opératoire:</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">1/ peser votre soude et votre eau, faites le mélange et laissez reposer</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">2/ pesez vos actifs solides et faites les fondre, une fois qu'ils sont liquides ajoutez y les actifs liquides mélangez les et réservez</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">3/ pesez vos beurres et huiles, mettez les dans le récipient prévu pour la fabrication du savon</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">4/réduisez les en purée à l'aide d'une cuillère moi j'ai pris mon presse purée manuelle qui n'a jamais servi (lol)</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">5/ une fois que les beurres sont bien bous, fouettez les au fouet électrique, jusqu'à obtenir une sorte de crème chantilly.</span></span></span></p> <p style="text-align: center;"><img src="http://s2.e-monsite.com/2009/11/04/09/resize_250_250//SNV325531.jpg" alt="" border="0" /></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">6/ une fois qu'elle a l'allure d'une chantilly posez le fouet électrique et continuez au fouet manuel</span></span></span></p> <p style="text-align: center;"><img src="http://s2.e-monsite.com/2009/11/04/09/resize_250_250//SNV32567.jpg" alt="" border="0" /></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">7/ ajoutez ensuite votre soude en continuant de fouetter à la main</span></span></span></p> <p style="text-align: center;"><img src="http://s2.e-monsite.com/2009/11/04/09/resize_250_250//SNV32569.jpg" alt="" border="0" /></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">8/ une fois que vous avez une belle crème lisse et épaisse, rajoutez vos actifs</span></span></span></p> <p style="text-align: center;"><img src="http://s2.e-monsite.com/2009/11/04/09/resize_250_250//SNV32568.jpg" alt="" border="0" /></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">9/ mélangez et coulez dans les moules</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;">10/ au bout de 3/4h vous pourrez les démoule.</span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Analyse de mon shampooing selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>INS</strong> 163</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Dureté</strong>58</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Persistance de la Mousse</strong> 64</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pouvoir nettoyant</strong> 56</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Douceur </strong>54<strong> </strong></span></span> <p style="text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="color: #000000;">Choix des ingrédients</span></strong></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Karité</strong>: Protège, adoucit et reconstruit la peau et les cheveux.</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Coco</strong>: Embellisseur capillaire, cette huile s'emploie aussi sur les cheveux en petite dose pour leur donner brillance et vigueur</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Conditionner émulsifier:</strong> conditionneur capillaire réputé pour sa douceur. En combinaison avec l'acide lactique, il permet d'obtenir des shampooings et après-shampooings démêlants doux très efficaces. Il peut aussi s'utiliser en couplage avec le BTMS pour composer des soins démêlants après-shampooing.</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>BTMS</strong>: conditionneur capillaire, lisse et démêle le cheveu.</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Acide Tactile:</strong> L'acide lactique est utilisé pour acidifier les préparations notamment les shampooings et soins capillaires. Il est indispensable pour activer le conditionnant "conditionner émulsifier".</span></span></span></p> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="color: #000000;"><strong>Protéines de soie liquide: </strong>Elles rendent le cheveu lisse, soyeux et brillant, et apportent à la peau douceur et souplesse. La soie améliore l'élasticité des fibres du cheveu, lisse les écailles, apporte résistance et équilibre hydrique et lumière et brillance aux cheveux. L'effet est immédiat les cheveux sont soyeux et brillants, faciles à démêler et souples.</span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Fin de cure le 13/11/09</span></span>Shampooing Glosspublishopenopenshampooing-gloss2012-01-19 13:20:242012-01-19 12:20:240http://www.alicepegie.com/wordpress/wordpress/?p=2830post0
28412012-01-19 13:18:372012-01-19 12:18:37Brouillon autoinheritopenopen283-revision2012-01-19 13:18:372012-01-19 12:18:37283http://www.alicepegie.com/wordpress/wordpress/?p=2840revision0
28512010-01-16 13:21:352010-01-16 12:21:35<p style="margin-bottom: 0cm; text-align: justify;"><img title="savon mango.jpg" src="http://s1.e-monsite.com/2009/10/14/11/10502309savon-mango-jpg.jpg" alt="" width="344" height="250" align="left" border="0" /><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La mangue est l'un des fruits que je préfère, et AZ a un extrait aromatique de mangue qui me donne envie de vider la bouteille dans ma bouche à chaque fois, toujours en préparation du cadeau d'anniv à venir, voici une petite mangue fouettée, pas très lisse, mais qui sent cro cro bon! Les ingrédients</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Mangue: 65%</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Karité 19%</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HV de coco 16%</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Surgraissage à 10%</strong></span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Mangue 50g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HV de Palme rouge 7g</span></span></p> <!--more--> <p style="margin-bottom: 0cm; text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ajouts</strong></span></span></p> <p style="margin-bottom: 0cm; text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Purée de mangue fraiche Bio 5%</span></span></p> <p style="margin-bottom: 0cm; text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">extrait aromatique de mangue 3%</span></span></p> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>coût 3.5€ pour 100g </strong></span></span></p> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation env 45mn</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire:</strong></span></span></p> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="index.php?option=com_content&amp;view=article&amp;id=1955:shampooing-gloss&amp;catid=368&amp;Itemid=126">Le même qu'ici,</a> mais là il faut y aller plus vite, j'ai trainer du coup mes savons ont des bulles d'air mais je les trouve très réussis.</span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Analyse de mon Savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>INS</strong> 158</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Dureté</strong> 61</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Persistance de la Mousse</strong> 71 (trop mousseux?) </span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pouvoir nettoyant</strong> 48</span></span> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Douceur </strong>50<strong> (valeur idéale)</strong></span></span> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingredients:</strong></span></span></p> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Beurre de Mangue:</strong> <span style="color: #000000;">nourrissante et adoucissante</span></span></span></p> <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Fin de cure le 13/11/09</span></span>Mangue de bain Miam Miam!!publishopenopenmangue-de-bain-miam-miam2012-01-19 13:23:002012-01-19 12:23:000http://www.alicepegie.com/wordpress/wordpress/?p=2850post0
28712012-01-19 14:32:552012-01-19 13:32:55<h2><a title="Abonnez-Vous!!!" href="http://www.alicepegie.com/wordpress/wordpress/?p=288"><strong>Abonnez-Vous!!!!</strong></a></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"> <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /> </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong><strong></strong><strong><span style="color: #000000;">Newsletter <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a> <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a> <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;">RSS</span></a></span></strong></h3>Abonnez-Vous!!!trashopenopenabonnez-vous2012-01-20 00:20:402012-01-19 23:20:400http://www.alicepegie.com/wordpress/wordpress/?page_id=2870page0
28612012-01-19 13:22:022012-01-19 12:22:02<p style="margin-bottom: 0cm; text-align: justify;"><img src="http://s1.e-monsite.com/2009/10/14/11/10502309savon-mango-jpg.jpg" border="0" alt="" title="savon mango.jpg" width="344" height="250" align="left" /><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">La mangue est l'un des fruits que je préfère, et AZ a un extrait aromatique de mangue qui me donne envie de vider la bouteille dans ma bouche à chaque fois, toujours en préparation du cadeau d'anniv à venir, voici une petite mangue fouettée, pas très lisse, mais qui sent cro cro bon! Les ingrédients</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Mangue: 65%</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Karité 19%</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HV de coco 16%</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Surgraissage à 10%</strong></span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Beurre de Mangue 50g</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">HV de Palme rouge 7g</span></span></p> <hr id="system-readmore" /> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><br /></span></span></p> <p style="margin-bottom: 0cm; text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Ajouts</strong></span></span></p> <p style="margin-bottom: 0cm; text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Purée de mangue fraiche Bio 5%</span></span></p> <p style="margin-bottom: 0cm; text-align: left;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">extrait aromatique de mangue 3%</span></span></p> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>coût 3.5€ pour 100g </strong></span></span></p> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Temps de réalisation env 45mn</span></span></p> <p style="margin-bottom: 0cm; text-align: center;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Mode opératoire:</strong></span></span></p> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a href="index.php?option=com_content&amp;view=article&amp;id=1955:shampooing-gloss&amp;catid=368&amp;Itemid=126">Le même qu'ici,</a> mais là il faut y aller plus vite, j'ai trainer du coup mes savons ont des bulles d'air mais je les trouve très réussis.</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong><span style="text-decoration: underline;">Analyse de mon Savon selon cette <a href="http://calc.mendrulandia.es/?lg=fr">calculatrice</a></span></strong></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>INS</strong> 158</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Dureté</strong> 61</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Persistance de la Mousse</strong> 71 (trop mousseux?)<br /></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Pouvoir nettoyant</strong> 48</span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Douceur </strong>50<strong> (valeur idéale)</strong></span></span></p> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Choix des ingredients:</strong></span></span></p> <p style="margin-bottom: 0cm; text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Beurre de Mangue:</strong> <span style="color: #000000;">nourrissante et adoucissante</span></span></span></p> <p><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;">Fin de cure le 13/11/09</span></span></p>Mangue de bain Miam Miam!!inheritopenopen285-revision2012-01-19 13:22:022012-01-19 12:22:02285http://www.alicepegie.com/wordpress/wordpress/?p=2860revision0
28812006-01-01 14:09:532006-01-01 13:09:53Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="http://www.alicepegie.com/wordpress/wordpress/?page_id=354">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!publishopenopenabonnez-vous http://www.alicepegie.com/wordpress/wordpress/?page_id=3542012-01-20 01:24:172012-01-20 00:24:170http://www.alicepegie.com/wordpress/wordpress/?p=2880post0
28912012-01-19 14:11:392012-01-19 13:11:39Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="index.php/2011-10-12-10-56-19/newsletter">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone size-full wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision2012-01-19 14:11:392012-01-19 13:11:39288http://www.alicepegie.com/wordpress/wordpress/?p=2890revision0
29012012-01-19 14:11:522012-01-19 13:11:52Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="index.php/2011-10-12-10-56-19/newsletter">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone size-full wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision-22012-01-19 14:11:522012-01-19 13:11:52288http://www.alicepegie.com/wordpress/wordpress/?p=2900revision0
29112012-01-19 14:32:282012-01-19 13:32:28<h2><strong>Abonnez-Vous!!!!</strong></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">    <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />           </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="48" height="48" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">               </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="48" height="48" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">        </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="48" height="48" /></a><strong></strong></h3> <h3><strong><span style="color: #000000;">Newsletter       <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>        <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;"> Flux RSS</span></a></span></strong></h3>inheritopenopen287-revision2012-01-19 14:32:282012-01-19 13:32:28287http://www.alicepegie.com/wordpress/wordpress/?p=2910revision0
29212012-01-19 14:32:552012-01-19 13:32:55<h2><strong>Abonnez-Vous!!!!</strong></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">    <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />           </a><a title="facebook" href="http://www.facebook.com/Alicepegie1" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="48" height="48" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">               </a><a title="TWITTER" href="https://twitter.com/#!/ALICEPEGIE" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="48" height="48" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">        </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="48" height="48" /></a><strong></strong></h3> <h3><strong><span style="color: #000000;">Newsletter       <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>        <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;"> Flux RSS</span></a></span></strong></h3>Abonnez-Vous!!!inheritopenopen287-revision-22012-01-19 14:32:552012-01-19 13:32:55287http://www.alicepegie.com/wordpress/wordpress/?p=2920revision0
29512012-01-19 14:35:002012-01-19 13:35:00<h2><strong>Abonnez-Vous!!!!</strong></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">  <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />       </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="48" height="48" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">    </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="48" height="48" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">       </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="48" height="48" /></a><strong></strong></h3> <h5><strong><span style="color: #000000;">Newsletter       <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>        <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;"> Flux RSS</span></a></span></strong></h5>Abonnez-Vous!!!inheritopenopen287-revision-42012-01-19 14:35:002012-01-19 13:35:00287http://www.alicepegie.com/wordpress/wordpress/?p=2950revision0
29312012-01-19 14:47:542012-01-19 13:47:54<h2><a title="Abonnez-Vous!!!" href="http://www.alicepegie.com/wordpress/wordpress/?page_id=287"><strong>Abonnez-Vous!!!!</strong></a></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">  <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />          </a><a title="facebook" href="http://www.facebook.com/Alicepegie1" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a title="TWITTER" href="https://twitter.com/#!/ALICEPEGIE" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong><strong></strong></h3> <h5><strong><span style="color: #000000;">Newsletter    <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>    <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;">RSS</span></a></span></strong></h5>Abonnez-Vous!!!inheritopenopen287-autosave2012-01-19 14:47:542012-01-19 13:47:54287http://www.alicepegie.com/wordpress/wordpress/?p=2930revision0
29412012-01-19 14:32:552012-01-19 13:32:55<h2><strong>Abonnez-Vous!!!!</strong></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">    <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />           </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="48" height="48" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">               </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="48" height="48" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">        </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="48" height="48" /></a><strong></strong></h3> <h3><strong><span style="color: #000000;">Newsletter       <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>        <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;"> Flux RSS</span></a></span></strong></h3>Abonnez-Vous!!!inheritopenopen287-revision-32012-01-19 14:32:552012-01-19 13:32:55287http://www.alicepegie.com/wordpress/wordpress/?p=2940revision0
29612012-01-19 14:35:002012-01-19 13:35:00<h2><strong>Abonnez-Vous!!!!</strong></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">  <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />       </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="48" height="48" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">    </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="48" height="48" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">       </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="48" height="48" /></a><strong></strong></h3> <h5><strong><span style="color: #000000;">Newsletter       <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>        <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;"> Flux RSS</span></a></span></strong></h5>Abonnez-Vous!!!inheritopenopen287-revision-52012-01-19 14:35:002012-01-19 13:35:00287http://www.alicepegie.com/wordpress/wordpress/?p=2960revision0
29712012-01-19 14:38:282012-01-19 13:38:28<h2><strong>Abonnez-Vous!!!!</strong></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">  <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />       </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">    </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">       </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong></h3> <strong><span style="color: #000000;">Newsletter       <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>        <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;"> Flux RSS</span></a></span></strong>Abonnez-Vous!!!inheritopenopen287-revision-62012-01-19 14:38:282012-01-19 13:38:28287http://www.alicepegie.com/wordpress/wordpress/?p=2970revision0
29812012-01-19 14:38:282012-01-19 13:38:28<h2><strong>Abonnez-Vous!!!!</strong></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">  <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />       </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">    </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">       </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong></h3> <strong><span style="color: #000000;">Newsletter       <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>        <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;"> Flux RSS</span></a></span></strong>Abonnez-Vous!!!inheritopenopen287-revision-72012-01-19 14:38:282012-01-19 13:38:28287http://www.alicepegie.com/wordpress/wordpress/?p=2980revision0
29912012-01-19 14:39:382012-01-19 13:39:38<h2><strong>Abonnez-Vous!!!!</strong></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">  <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />          </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong></h3> <strong><span style="color: #000000;">Newsletter       <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>        <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;"> Flux RSS</span></a></span></strong>Abonnez-Vous!!!inheritopenopen287-revision-82012-01-19 14:39:382012-01-19 13:39:38287http://www.alicepegie.com/wordpress/wordpress/?p=2990revision0
30012012-01-19 14:39:382012-01-19 13:39:38<h2><strong>Abonnez-Vous!!!!</strong></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">  <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />          </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong></h3> <strong><span style="color: #000000;">Newsletter       <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>        <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;"> Flux RSS</span></a></span></strong>Abonnez-Vous!!!inheritopenopen287-revision-92012-01-19 14:39:382012-01-19 13:39:38287http://www.alicepegie.com/wordpress/wordpress/?p=3000revision0
30112012-01-19 14:41:462012-01-19 13:41:46<h2><strong>Abonnez-Vous!!!!</strong></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">  <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />          </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong><strong></strong></h3> <h3><strong><span style="color: #000000;">Newsletter    <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>    <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;">RSS</span></a></span></strong></h3>Abonnez-Vous!!!inheritopenopen287-revision-102012-01-19 14:41:462012-01-19 13:41:46287http://www.alicepegie.com/wordpress/wordpress/?p=3010revision0
30212012-01-19 14:41:462012-01-19 13:41:46<h2><strong>Abonnez-Vous!!!!</strong></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">  <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />          </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong><strong></strong></h3> <h3><strong><span style="color: #000000;">Newsletter    <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>    <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;">RSS</span></a></span></strong></h3>Abonnez-Vous!!!inheritopenopen287-revision-112012-01-19 14:41:462012-01-19 13:41:46287http://www.alicepegie.com/wordpress/wordpress/?p=3020revision0
31412012-01-19 15:05:332012-01-19 14:05:33<h2><a title="Abonnez-Vous!!!" href="http://www.alicepegie.com/wordpress/wordpress/?p=288"><strong>Abonnez-Vous!!!!</strong></a></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"> <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /> </a><a title="facebook" href="http://www.facebook.com/Alicepegie1" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a title="TWITTER" href="https://twitter.com/#!/ALICEPEGIE" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong><strong></strong><strong><span style="color: #000000;">Newsletter <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a> <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a> <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;">RSS</span></a></span></strong></h3>Abonnez-Vous!!!inheritopenopen287-revision-142012-01-19 15:05:332012-01-19 14:05:33287http://www.alicepegie.com/wordpress/wordpress/?p=3140revision0
30312012-01-19 14:43:322012-01-19 13:43:32<h2><a title="Abonnez-Vous!!!" href="http://www.alicepegie.com/wordpress/wordpress/?page_id=287"><strong>Abonnez-Vous!!!!</strong></a></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">  <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />          </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong><strong></strong></h3> <h5><strong><span style="color: #000000;">Newsletter    <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>    <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;">RSS</span></a></span></strong></h5>Abonnez-Vous!!!inheritopenopen287-revision-122012-01-19 14:43:322012-01-19 13:43:32287http://www.alicepegie.com/wordpress/wordpress/?p=3030revision0
30412012-01-18 04:35:132012-01-18 03:35:13<div class="art-postcontent"> <div class="art-article"> <p style="text-align: justify;"><span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><a class="mb" title="NOIR.jpg" href="http://s1.e-monsite.com/2009/05/29/08/43117009noir-jpg.jpg"><img style="border: 0pt none; float: left;" title="NOIR.jpg" src="http://s1.e-monsite.com/2009/05/29/08/mini-43117009noir-jpg.jpg" alt="" border="0" /></a></span></span></p> Alicepégie est une fille née au Cameroun, aujourd’hui parisienne, je travaille dans le commerce international. Je suis maman, j’ai toujours aimé la cuisine et faire toute sorte de mélanges. C’est avec la naissance de ma fille que m’est venue l’envie de surveillez ce que je mange et donne à manger à ma peau. L’idée de ce blog est parti d’un constat que j’ai fait. A sa voir que la cuisine africaine est très peu ou mal connue. En effet elle est réputé grasse, peu appétissante et complexe. Alors j’ai eu envie de montrer qu’on peut manger africain, se régaler, faire attention à sa ligne et pour moi qui fonctionne au visuel, trouver ça beau. c’est donc tout naturellement que je commencerais par la cuisine camerounaise, avant de poursuivre à travers le reste de l’Afrique. Ce blog est orienté “Partage” et “Débats”. Je l’ouvre afin de partager mes expériences et projets avec vous. si vous avez des recettes, de idées pour mon blog ou un partenariat à me proposer,<strong> <a title="Contactez moi" href="/contactez-moi">Contactez moi.</a></strong> <strong> </strong> Voilà j’espère que vous viendrez de temps en temps jeter un œil à cette expérience et – pourquoi pas – prendrez vous un peu de plaisir à sa lecture et y participerez! </div> </div>Qui Suis-Jeinheritopenopen124-revision-22012-01-18 04:35:132012-01-18 03:35:13124http://www.alicepegie.com/wordpress/wordpress/?p=3040revision0
30512012-01-20 01:25:242012-01-20 00:25:24Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="http://www.alicepegie.com/wordpress/wordpress/?page_id=354">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-autosave2012-01-20 01:25:242012-01-20 00:25:24288http://www.alicepegie.com/wordpress/wordpress/?p=3050revision0
30612012-01-19 14:11:522012-01-19 13:11:52Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="index.php/2011-10-12-10-56-19/newsletter">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone size-full wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision-32012-01-19 14:11:522012-01-19 13:11:52288http://www.alicepegie.com/wordpress/wordpress/?p=3060revision0
30712012-01-19 14:54:232012-01-19 13:54:23Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="index.php/2011-10-12-10-56-19/newsletter">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a title="facebook" href="http://www.facebook.com/Alicepegie1" rel="attachment wp-att-220"><img class="alignnone size-full wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a title="TWITTER" href="https://twitter.com/#!/ALICEPEGIE" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/accueil1/a-la-une/?format=feed&amp;type=rss" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision-42012-01-19 14:54:232012-01-19 13:54:23288http://www.alicepegie.com/wordpress/wordpress/?p=3070revision0
31112012-01-19 14:58:502012-01-19 13:58:50Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="index.php/2011-10-12-10-56-19/newsletter">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a title="facebook" href="http://www.facebook.com/Alicepegie1" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a title="TWITTER" href="https://twitter.com/#!/ALICEPEGIE" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/accueil1/a-la-une/?format=feed&amp;type=rss" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision-82012-01-19 14:58:502012-01-19 13:58:50288http://www.alicepegie.com/wordpress/wordpress/?p=3110revision0
31012012-01-19 14:55:592012-01-19 13:55:59Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="index.php/2011-10-12-10-56-19/newsletter">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone size-full wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision-72012-01-19 14:55:592012-01-19 13:55:59288http://www.alicepegie.com/wordpress/wordpress/?p=3100revision0
30812012-01-19 14:54:232012-01-19 13:54:23Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="index.php/2011-10-12-10-56-19/newsletter">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone size-full wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision-52012-01-19 14:54:232012-01-19 13:54:23288http://www.alicepegie.com/wordpress/wordpress/?p=3080revision0
30912012-01-19 14:55:582012-01-19 13:55:58Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="index.php/2011-10-12-10-56-19/newsletter">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone size-full wp-image-220" title="facebook-icone-9714-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a title="TWITTER" href="https://twitter.com/#!/ALICEPEGIE" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/accueil1/a-la-une/?format=feed&amp;type=rss" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision-62012-01-19 14:55:582012-01-19 13:55:58288http://www.alicepegie.com/wordpress/wordpress/?p=3090revision0
31212012-01-19 14:59:400000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-19 14:59:400000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=3120post0
31312012-01-19 14:43:322012-01-19 13:43:32<h2><a title="Abonnez-Vous!!!" href="http://www.alicepegie.com/wordpress/wordpress/?page_id=287"><strong>Abonnez-Vous!!!!</strong></a></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">  <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" />          </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219">           </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong><strong></strong></h3> <h5><strong><span style="color: #000000;">Newsletter    <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a>     <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a>    <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;">RSS</span></a></span></strong></h5>Abonnez-Vous!!!inheritopenopen287-revision-132012-01-19 14:43:322012-01-19 13:43:32287http://www.alicepegie.com/wordpress/wordpress/?p=3130revision0
31512012-01-19 15:46:092012-01-19 14:46:09[wysija_page]Confirmé?publishopenopensubscriptions2012-01-19 15:46:092012-01-19 14:46:090http://www.alicepegie.com/wordpress/wordpress/?wysijap=subscriptions0wysijap0
31612012-01-18 11:25:112012-01-18 10:25:11<div class="art-postcontent"> <div class="art-article"> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/1.JPG" alt="buche ananas" width="600" height="273" />J’ai commencé à m’exercer à faire des buches maison l’année dernière. Le résultat était plutôt concluant alors j’ai décidé de réitérer cette année avec cette buche légère et fruitée. <!--more--></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Ingrédients pour 2 personne(s) </strong></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le biscuit</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">30g de Farine</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 œuf</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>La crème</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de sel</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">16g jus de mangue</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1/2cc de jus de citron</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">36g de beurre coupé en morceaux</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le sirop</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125 ml de jus d’ananas</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">40g de Sucre</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">125ml de Jus de mangu</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Le glaçage</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de chocolat blanc à pâtisser Nestlé</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de crème entière liquide</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">60g de sucre glace</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 pincée de colorant alimentaire en poudre orange (évitez les colorants liquides avec le chocolat)</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Préparation de la crème :</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Dans un saladier résistant à la chaleur, mettre les œufs, le sucre, et le sel.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ajoutez progressivement les jus. Poser ensuite le récipient dans un bain-marie et cuire lentement à feu doux jusqu'à épaississement env. 8mn.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/2.JPG" alt="2" width="600" height="450" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Retirez du feu et continuez de fouetter pour abaisser la température env 2-3mn.</span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Lorsqu'il est possible de toucher les bords du récipient sans se brûler, ajouter progressivement le beurre froid coupé en petits cubes. </span></li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/3.JPG" alt="3" width="600" height="450" /> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Une fois le beurre incorporé, couvrez le saladier et réservez au frais pendant au moins 1 h.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/4.JPG" alt="4" width="600" height="450" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <strong>Préparation du sirop :</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Mélangez les jus d’ananas et de mangue et le sucre, puis porter à ébullition et stopper le feu. Laissez ensuite refroidir à température ambiante.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/5.JPG" alt="5" width="600" height="450" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> <strong>Cuisson du biscuit :</strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Préparez tous les ingrédients. Mettez le sucre et les œufs dans la cuve de votre robot.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Fouettez l’ensemble pendant 10mn à vitesse maximale, la préparation doit doubler de volume.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Incorporer la farine préalablement tamisée délicatement à l'aide d'une maryse ou à l'écumoire en effectuant un mouvement de rotation.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="/images/stories/buche%20ananas/8.JPG" alt="8" width="350" height="263" /><img src="/images/stories/buche%20ananas/9.JPG" alt="9" width="350" height="263" /> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Versez sur une sur plaque recouverte de papier sulfurisé.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="/images/stories/buche%20ananas/11.JPG" alt="11" width="350" height="263" /><img src="/images/stories/buche%20ananas/12.JPG" alt="12" width="350" height="263" /> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Enfourner à four chaud, 180°C pour 8-10mn.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/13.JPG" alt="13" width="600" height="450" /> </span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation du glaçage</span></strong> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Faites fondre au bain-marie le chocolat, la crème et le sucre glace.</span></li> </ul> <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/6.JPG" alt="6" width="600" height="450" /></span><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mélangez bien la préparation de façon à avoir une préparation homogène</span> <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/7.JPG" alt="7" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le montage : </strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Décollez le biscuit du tapis et en couper les bords pour l'égaliser, puis le poser sur un papier sulfurisé. A l'aide d'un pinceau, imbiber généreusement le biscuit de sirop d'ananas. Étaler ensuite la crème au citron dessus puis rouler le tout en escargot.</span></li> </ul> <img src="/images/stories/buche%20ananas/SAM_1444.JPG" alt="SAM 1444" width="350" height="263" /><img src="/images/stories/buche%20ananas/14.JPG" alt="14" width="277" height="265" /> &nbsp; &nbsp; <ul> <li><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Glacez votre buche soit à l’aide d’une spatule soit à en versant directement le glacage diectement sur le biscuit </span></span></li> </ul> &nbsp; <span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/15.JPG" alt="15" width="600" height="283" /></span> <span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/16.JPG" alt="16" width="600" height="457" /></span> &nbsp; <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Laissez la bûche reposer au réfrigérateur pendant 4 h.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/17.JPG" alt="17" width="600" height="552" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">décorez avec des copeaux de chocolat blanc</span></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/18.JPG" alt="18" width="600" height="393" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">et de quelque sujets en chocolat au lait</span> </span> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/19.JPG" alt="19" width="600" height="450" /><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">sortez votre buche 15mn avant de servir </span> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/buche%20ananas/20.JPG" alt="20" width="600" height="532" /></span> </div> </div>Bûche de Noël à l'Ananasinheritopenopen24-revision-62012-01-18 11:25:112012-01-18 10:25:1124http://www.alicepegie.com/wordpress/wordpress/?p=3160revision0
31712012-01-18 12:19:302012-01-18 11:19:30<img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/1.JPG" alt="bierre au gingembre" width="600" height="741" />Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre.<!--more--> <div class="art-postcontent"> <div class="art-article"> <strong>Pour 2l de bière env.</strong> 1 citron jaune coupé en rondelles 1 citron vert coupé en rondelles<strong> </strong> <ul> <li>2l d'eau</li> <li>75g de gingembre frais, haché grossièrement</li> <li>300g de sucre</li> <li>1 cc de jus de citron</li> <li>15g de levure sèche de boulangerie (3 cuillères à café)</li> </ul> &nbsp; <strong>Préparation</strong> <ul> <li>Dans une grande casserole, versez les 2 litres d'eau, les rondelles de citron et le gingembre haché et portez le tout à ébullition et laissez mijoter 5mn puis coupez la source de chaleur et laissez infuser 30 mn.</li> </ul> <img src="/images/stories/BIERRE/2.JPG" alt="2" width="350" height="263" /><img src="/images/stories/BIERRE/4.JPG" alt="4" width="350" height="263" /> <ul> <li>Ajoutez le reste des ingrédients</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Laisser macérer 48 heures, à couvert dans un endroit chaud à l’abri des courant d’air</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/7.JPG" alt="7" width="600" height="450" />filtrez et versez la préparation dans une bouteille pouvant contenir 3l ou dans 3 bouteilles de 1l en laissant de l’espace. <img style="display: block; margin-left: auto; margin-right: auto;" src="/images/stories/BIERRE/8.JPG" alt="8" width="600" height="450" />Fermez la (les) bouteilles et laissez fermenter au frais pendant 24 heures <ul> <li>pour servir diluez avec un peu d’eau gazeuse !!</li> </ul> <img src="/images/stories/BIERRE/9.JPG" alt="bierre au gingembre" width="326" height="593" /><img src="/images/stories/BIERRE/10.JPG" alt="bierre au gingembre" width="362" height="594" /> C’est sur cette note épicée qu<strong><a href="http://www.alicepegie.com">’Une Graine de Maniguette </a>va faire une pause et vous donne de nouveau rendez vous à compter du 9 Janvier 2012 s’il plait à Dieu. Bonnes fêtes de fin d'année à tous!!</strong> <strong><img src="/images/stories/BIERRE/11.JPG" alt="bierre au gingembre" width="327" height="503" /><img src="/images/stories/BIERRE/12.JPG" alt="bierre au gingembre" width="361" height="505" /></strong> </div> </div>La Bière au Gingembre Maisoninheritopenopen17-revision-92012-01-18 12:19:302012-01-18 11:19:3017http://www.alicepegie.com/wordpress/wordpress/?p=3170revision0
31812011-12-21 19:25:522011-12-21 18:25:52<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poulet%20yassa/1.JPG" alt="POULET YASSA" width="600" height="450" /></span>Voici une recette pour ceux qui souhaite apporter une note d’Afrique à leur table de noël sans les épices. Il s’agit d’une recette Sénégalaise adaptable à toute sorte de volaille.<!--more--> <strong>Ingrédients (pour 6 personnes) :</strong> 1 poulet coupé en morceaux 5 gros oignons 1 gros citrons 2 citrons verts poivre, sel, huile <ul> <li style="list-style-type: none;"></li> </ul> <ul>Préparation :</ul> Faire mariner une heure minimum le poulet coupé dans le jus des citrons, les oignons hachés finement, une pincée de poivre, et du sel. <img src="images/stories/poulet%20yassa/2.JPG" alt="2" width="350" height="263" /><img src="images/stories/poulet%20yassa/3.JPG" alt="3" width="350" height="263" /> égoutter les morceaux de poulets et dorez-les au four fonction gril pendant 20min en les retournant de temps en temps puis remettez les dans la marinade. (vous pouvez aussi les saisir dans un poêle avec très peu d’huile). <img src="images/stories/poulet%20yassa/4.JPG" alt="4" width="350" height="263" /><img src="images/stories/poulet%20yassa/5.JPG" alt="5" width="350" height="263" /> Dans une cocotte, verser l'huile et faites Y revenir les oignons de la marinade sans leur laisser prendre couleur. <img src="images/stories/poulet%20yassa/5b.JPG" alt="5b" width="350" height="263" /><img src="images/stories/poulet%20yassa/6.JPG" alt="6" width="350" height="263" /> Ajouter le poulet et le jus de la marinade et Salez. ci bas 1 version au four et une autre à a poele (plus grillé) <img src="images/stories/poulet%20yassa/7.JPG" alt="7" width="365" height="256" /><img src="images/stories/poulet%20yassa/8.JPG" alt="8" width="340" height="256" /> <ul>Couvrir la cocotte et laisser cuire à feu très doux pendant une heure environ. les oignons vont confire, le jus que le poulet va rendre mélangé à la marinade constitueront la sauce. Servir chaud avec du riz vapeur.</ul> <img src="images/stories/poulet%20yassa/9.JPG" alt="9" width="350" height="263" /><img src="images/stories/poulet%20yassa/10.JPG" alt="10" width="350" height="263" />Poulet Yassapublishopenopenpoulet-yassa2012-01-19 19:28:122012-01-19 18:28:120http://www.alicepegie.com/wordpress/wordpress/?p=3180post0
31912012-01-19 19:28:002012-01-19 18:28:00<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poulet%20yassa/1.JPG" alt="POULET YASSA" width="600" height="450" /></span>Voici une recette pour ceux qui souhaite apporter une note d’Afrique à leur table de noël sans les épices. Il s’agit d’une recette Sénégalaise adaptable à toute sorte de volaille.<!--more--> <strong>Ingrédients (pour 6 personnes) :</strong> 1 poulet coupé en morceaux 5 gros oignons 1 gros citrons 2 citrons verts <ul>poivre, sel, huile <li style="list-style-type: none;"></li> </ul> <ul>Préparation :</ul> Faire mariner une heure minimum le poulet coupé dans le jus des citrons, les oignons hachés finement, une pincée de poivre, et du sel. <img src="images/stories/poulet%20yassa/2.JPG" alt="2" width="350" height="263" /><img src="images/stories/poulet%20yassa/3.JPG" alt="3" width="350" height="263" /> égoutter les morceaux de poulets et dorez-les au four fonction gril pendant 20min en les retournant de temps en temps puis remettez les dans la marinade. (vous pouvez aussi les saisir dans un poêle avec très peu d’huile). <img src="images/stories/poulet%20yassa/4.JPG" alt="4" width="350" height="263" /><img src="images/stories/poulet%20yassa/5.JPG" alt="5" width="350" height="263" /> Dans une cocotte, verser l'huile et faites Y revenir les oignons de la marinade sans leur laisser prendre couleur. <img src="images/stories/poulet%20yassa/5b.JPG" alt="5b" width="350" height="263" /><img src="images/stories/poulet%20yassa/6.JPG" alt="6" width="350" height="263" /> Ajouter le poulet et le jus de la marinade et Salez. ci bas 1 version au four et une autre à a poele (plus grillé) <img src="images/stories/poulet%20yassa/7.JPG" alt="7" width="365" height="256" /><img src="images/stories/poulet%20yassa/8.JPG" alt="8" width="340" height="256" /> <ul>Couvrir la cocotte et laisser cuire à feu très doux pendant une heure environ. les oignons vont confire, le jus que le poulet va rendre mélangé à la marinade constitueront la sauce. Servir chaud avec du riz vapeur.</ul> <img src="images/stories/poulet%20yassa/9.JPG" alt="9" width="350" height="263" /><img src="images/stories/poulet%20yassa/10.JPG" alt="10" width="350" height="263" />Poulet Yassainheritopenopen318-revision2012-01-19 19:28:002012-01-19 18:28:00318http://www.alicepegie.com/wordpress/wordpress/?p=3190revision0
32012011-12-20 19:28:182011-12-20 18:28:18<span style="font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20gambas%20ananas/1.JPG" alt="gambas sautées ananas" width="600" height="450" />Hier je vous ai présenté des bouchées de foie gras aux saveurs africaines que vous pouvez servir en apéritif pendant les fête. Aujourd’hui il s’agit d’une entrée chaude aux notes fruitées et un petit peu épicées. Il s’agit d’une recette que j’avais trouvé dans un magasine il y a 2-3 ans que j’aime beaucoup.<!--more--><strong><span style="font-family: 'Arial','sans-serif';">Ingrédients pour 2 personnes</span></strong></span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;"><span style="font-size: 10pt;">300g (env. 10 grosses) de gambas crues</span></span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt;"> 1 petit ananas</span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt;"> 1/2 poivron rouge</span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;"><span style="font-size: 10pt;">1/2 gros oignon</span></span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt;"> 1 petit morceau de gingembre</span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt;"> 4 c. à soupe d'huile de cuisson (pour moi arachide)</span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt;"> Sel, poivre</span></span></li> </ul> <span style="font-size: 10pt;"><strong><span style="font-family: 'Arial','sans-serif';">Préparation :</span></strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Epluchez l'ananas et coupez-le en petits dés.</span></li> </ul> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Pelez et émincez l'oignon, le poivron et le gingembre. </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">Décortiquez les gambas en leur laissant le petit bout de carapace de la queue.</span></span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20gambas%20ananas/7.JPG" alt="7" width="600" height="482" /></span></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Faites chauffer l'huile dans une grande sauteuse. Quand elle est chaude, jetez les l'oignon, le gingembre et le poivron et laissez cuire 10 minutes à feu moyen en remuant régulièrement.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/salade%20gambas%20ananas/8.JPG" alt="8" width="317" height="296" /><img src="images/stories/salade%20gambas%20ananas/9.JPG" alt="9" width="382" height="294" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Ajoutez les dés d'ananas et prolongez la cuisson 10 minutes. </span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/salade%20gambas%20ananas/10.JPG" alt="10" width="350" height="249" /><img src="images/stories/salade%20gambas%20ananas/11.JPG" alt="11" width="350" height="263" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Ajoutez enfin les gambas, remontez les feu et faites cuire tous les ingrédients 5 minutes supplémentaires.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/salade%20gambas%20ananas/12.JPG" alt="12" width="398" height="299" /><img src="images/stories/salade%20gambas%20ananas/14.JPG" alt="14" width="297" height="297" /></span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Servez aussitôt.</span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20gambas%20ananas/15.JPG" alt="gambas sautées ananas" width="600" height="518" /></span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20gambas%20ananas/16.JPG" alt="gambas sautées ananas" width="600" height="505" /></span>Gambas Sautées à l'Ananas & au Gingembrepublishopenopengambas-sautees-a-lananas-au-gingembre2012-01-19 19:30:132012-01-19 18:30:130http://www.alicepegie.com/wordpress/wordpress/?p=3200post0
32112012-01-19 19:29:002012-01-19 18:29:00<p><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="gambas sautées ananas" src="images/stories/salade%20gambas%20ananas/1.JPG" height="450" width="600" />Hier je vous ai présenté des bouchées de foie gras aux saveurs africaines que vous pouvez servir en apéritif pendant les fête. Aujourd’hui il s’agit d’une entrée chaude aux notes fruitées et un petit peu épicées. Il s’agit d’une recette que j’avais trouvé dans un magasine il y a 2-3 ans que j’aime beaucoup.<hr id="system-readmore" /></span></p> <p><span style="font-size: 10pt;"><b><span style="font-family: 'Arial','sans-serif';"> Ingrédients pour 2 personnes</span></b></span></p> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;"><span style="font-size: 10pt;">300g (env. 10 grosses) de gambas crues</span></span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt;"> 1 petit ananas</span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt;"> 1/2 poivron rouge</span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;"><span style="font-size: 10pt;">1/2 gros oignon</span></span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt;"> 1 petit morceau de gingembre</span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt;"> 4 c. à soupe d'huile de cuisson (pour moi arachide)</span></span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt;"> Sel, poivre</span></span></li> </ul> <p><span style="font-size: 10pt;"><b><span style="font-family: 'Arial','sans-serif';">Préparation :</span></b></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Epluchez l'ananas et coupez-le en petits dés.</span></li> </ul> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Pelez et émincez l'oignon, le poivron et le gingembre. </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">Décortiquez les gambas en leur laissant le petit bout de carapace de la queue.</span></span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="7" src="images/stories/salade%20gambas%20ananas/7.JPG" height="482" width="600" /></span></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Faites chauffer l'huile dans une grande sauteuse. Quand elle est chaude, jetez les l'oignon, le gingembre et le poivron et laissez cuire 10 minutes à feu moyen en remuant régulièrement.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="8" src="images/stories/salade%20gambas%20ananas/8.JPG" height="296" width="317" /><img alt="9" src="images/stories/salade%20gambas%20ananas/9.JPG" height="294" width="382" /></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Ajoutez les dés d'ananas et prolongez la cuisson 10 minutes. </span></li> </ul> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="10" src="images/stories/salade%20gambas%20ananas/10.JPG" height="249" width="350" /><img alt="11" src="images/stories/salade%20gambas%20ananas/11.JPG" height="263" width="350" /></span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Ajoutez enfin les gambas, remontez les feu et faites cuire tous les ingrédients 5 minutes supplémentaires.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="12" src="images/stories/salade%20gambas%20ananas/12.JPG" height="299" width="398" /><img alt="14" src="images/stories/salade%20gambas%20ananas/14.JPG" height="297" width="297" /></span></li> </ul> <p><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Servez aussitôt.</span></p> <p><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="gambas sautées ananas" src="images/stories/salade%20gambas%20ananas/15.JPG" height="518" width="600" /></span></p> <p><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="gambas sautées ananas" src="images/stories/salade%20gambas%20ananas/16.JPG" height="505" width="600" /></span></p>Gambas Sautées à l'Ananas & au Gingembreinheritopenopen320-revision2012-01-19 19:29:002012-01-19 18:29:00320http://www.alicepegie.com/wordpress/wordpress/?p=3210revision0
32212011-12-19 19:30:252011-12-19 18:30:25<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/bouch%C3%A9s%20foi%20gas/1.JPG" alt="1" width="600" height="488" />La semaine dernière je vous ai présente mon <strong><a href="index.php?option=com_content&amp;view=article&amp;id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&amp;catid=83:viande&amp;Itemid=475">foie gras maison au vin de palme et au poivre de Penja</a></strong>. Aujourd’hui je vous présente des bouchées appétitives mêlant notes sucrées et salées que vous pourrez sévir en entrée ou en apéros en plus c’est facile et rapide !<!--more--></span><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ingrédients pour 4 personnes:</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">160/180gr de <a href="index.php?option=com_content&amp;view=article&amp;id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&amp;catid=83:viande&amp;Itemid=475">foie gras maison au vin de palme et au poivre de Penja</a></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1 petite mangue pas trop mûre</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">2 bananes plantain mures mais ferme</span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation :</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Sortez le foie gras du réfrigérateur 20 minutes avant de le servir.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Coupez la tête et la queue des plantains et faites des trous puis griller les avec la peau pendant 20-30mn. </span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/bouch%C3%A9s%20foi%20gas/2.JPG" alt="2" width="600" height="563" /></span><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Epluchez la mangue, taillez-la en petit cercle. </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/3.JPG" alt="3" width="350" height="263" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/5.JPG" alt="5" width="350" height="263" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Taillez de même le foie gras.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/bouch%C3%A9s%20foi%20gas/4.JPG" alt="4" width="600" height="544" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Les plantains sont cuits laissez les refroidir puis découpez en rondelles avec la peau puis enlevez la peau.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/8.JPG" alt="8" width="351" height="263" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/9.JPG" alt="9" width="279" height="262" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Empoisonnez les tranches de foie gras entre celle de plantain et celle de mangue</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/10.JPG" alt="10" width="344" height="226" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/11.JPG" alt="11" width="356" height="226" /> </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Demain on poursuit le menu de Noël avec une salade de gambas sautées à l‘ananas</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/12.JPG" alt="12" width="402" height="270" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/13.JPG" alt="13" width="293" height="270" /></span>Bouchées de foie gras à la mangue & au plantain grillépublishopenopenbouchees-de-foie-gras-a-la-mangue-au-plantain-grille2012-01-19 22:55:402012-01-19 21:55:400http://www.alicepegie.com/wordpress/wordpress/?p=3220post0
32312012-01-19 19:32:272012-01-19 18:32:27<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/bouch%C3%A9s%20foi%20gas/1.JPG" alt="1" width="600" height="488" />La semaine dernière je vous ai présente mon <strong><a href="index.php?option=com_content&amp;view=article&amp;id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&amp;catid=83:viande&amp;Itemid=475">foie gras maison au vin de palme et au poivre de Penja</a></strong>. Aujourd’hui je vous présente des bouchées appétitives mêlant notes sucrées et salées que vous pourrez sévir en entrée ou en apéros en plus c’est facile et rapide ! </span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ingrédients pour 4 personnes:</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">160/180gr de <a href="index.php?option=com_content&amp;view=article&amp;id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&amp;catid=83:viande&amp;Itemid=475">foie gras maison au vin de palme et au poivre de Penja</a></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1 petite mangue pas trop mûre</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">2 bananes plantain mures mais ferme</span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation :</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Sortez le foie gras du réfrigérateur 20 minutes avant de le servir.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Coupez la tête et la queue des plantains et faites des trous puis griller les avec la peau pendant 20-30mn. </span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/bouch%C3%A9s%20foi%20gas/2.JPG" alt="2" width="600" height="563" /></span><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Epluchez la mangue, taillez-la en petit cercle. </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/3.JPG" alt="3" width="350" height="263" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/5.JPG" alt="5" width="350" height="263" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Taillez de même le foie gras.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/bouch%C3%A9s%20foi%20gas/4.JPG" alt="4" width="600" height="544" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Les plantains sont cuits laissez les refroidir puis découpez en rondelles avec la peau puis enlevez la peau.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/8.JPG" alt="8" width="351" height="263" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/9.JPG" alt="9" width="279" height="262" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Empoisonnez les tranches de foie gras entre celle de plantain et celle de mangue</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/10.JPG" alt="10" width="344" height="226" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/11.JPG" alt="11" width="356" height="226" /> </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Demain on poursuit le menu de Noël avec une salade de gambas sautées à l‘ananas</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/12.JPG" alt="12" width="402" height="270" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/13.JPG" alt="13" width="293" height="270" /></span>Bouchées de foie gras à la mangue & au plantain grilléinheritopenopen322-revision2012-01-19 19:32:272012-01-19 18:32:27322http://www.alicepegie.com/wordpress/wordpress/?p=3230revision0
32412011-12-16 19:33:172011-12-16 18:33:17<p style="line-height: normal;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/coq%20vin/1.JPG" alt="coq vin de palme" width="600" height="330" />Le coq au vin est une ancienne recette française consistant à faire mariner la chaire de coq dans du vin. Comme à mon habitude j’ai détourné la recette pour la faire avec du vin de chez nous, le vin de palme. Ca apporte un petit gout sucré à la préparation. Le vin de palme par contre ne se ressens pas vraiment, peut être faut-il zapper la marinade ? Je testerais la prochaine fois. Vous pouvez remplacer le vin de palme par du vin rouge (côtes du Rhône ou Cahors par exemple)<!--more--></span> <strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Proportions pour 4 personnes</span></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> : <strong>Pour la marinade :</strong></span></p> <ul> <li>1 litre de vin de palme  ou de vin rouge</li> <li>1 gros oignon émincé</li> <li>2 gousses d'ail (dégermées et écrasées)</li> <li>2 échalotes émincées</li> <li>de l’odjom (feuilles de gingembre ou de maniguette) sinon un bouquet garni (thym, laurier) fera l’affaire</li> <li>Sel et poivre blanc (de penja pour moi)</li> </ul> <strong>Pour le plat</strong> <ul> <li>½ coq</li> <li>100ml d’huile d’arachide</li> <li>2 grosses tomates</li> </ul> <p style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Préparation : </span></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">La veille :</span></strong></span></p> <p class="_mce_tagged_br"> Dans un grand récipient mettez tous les ingrédients de la marinade sur les morceaux de coq, couvrez et gardez au frais jusqu'au lendemain.</p> <p style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> <img src="images/stories/coq%20vin/2.JPG" alt="2" width="350" height="263" /><img src="images/stories/coq%20vin/3.JPG" alt="3" width="350" height="263" /></p> <p style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> Le lendemain :</span></strong></p>  <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/coq%20vin/4.JPG" alt="4" width="600" height="450" /> <ul> <li> Egouttez les morceaux de coq et réservez la garniture de la marinade.</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/coq%20vin/6.JPG" alt="6" width="600" height="451" /> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Dans une grande cocotte mettez votre l'huile sur un feu vif et faites y revenir vos morceaux de coq jusqu'à ce qu'ils soient bien rôtis sur chaque face.</span></li> </ul> <p style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/coq%20vin/7.JPG" alt="7" width="350" height="263" /><img src="images/stories/coq%20vin/8.JPG" alt="8" width="350" height="263" /></span></p> <p style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Ajoute</span>z alors la marinade, couvrez et laissez étuver 5 minutes.</p> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Rajoutez la tomate et laissez cuire encore 5 minutes à couvert. Remuez et lorsque l'ébullition aura repris testez l'assaisonnement et mettez au four couvert pour 2 heures</span>. <p style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/coq%20vin/9.JPG" alt="9" width="600" height="450" />Servez !!!</span></p>  <img src="images/stories/coq%20vin/10.JPG" alt="coq vin de palme" width="315" height="289" /><img src="images/stories/coq%20vin/12.JPG" alt="coq vin de palme" width="380" height="286" /> <img src="images/stories/coq%20vin/13.JPG" alt="coq vin de palme" width="350" height="263" /><img src="images/stories/coq%20vin/14.JPG" alt="coq vin de palme" width="350" height="263" />Coq au vin de palmepublishopenopencoq-au-vin-de-palme2012-01-19 19:35:502012-01-19 18:35:500http://www.alicepegie.com/wordpress/wordpress/?p=3240post0
32512012-01-19 19:35:202012-01-19 18:35:20<p style="line-height: normal;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/coq%20vin/1.JPG" alt="coq vin de palme" width="600" height="330" />Le coq au vin est une ancienne recette française consistant à faire mariner la chaire de coq dans du vin. Comme à mon habitude j’ai détourné la recette pour la faire avec du vin de chez nous, le vin de palme. Ca apporte un petit gout sucré à la préparation. Le vin de palme par contre ne se ressens pas vraiment, peut être faut-il zapper la marinade ? Je testerais la prochaine fois. Vous pouvez remplacer le vin de palme par du vin rouge (côtes du Rhône ou Cahors par exemple)<!--more--></span> <strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Proportions pour 4 personnes</span></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> : <strong>Pour la marinade :</strong></span></p> <ul> <li>1 litre de vin de palme  ou de vin rouge</li> <li>1 gros oignon émincé</li> <li>2 gousses d'ail (dégermées et écrasées)</li> <li>2 échalotes émincées</li> <li>de l’odjom (feuilles de gingembre ou de maniguette) sinon un bouquet garni (thym, laurier) fera l’affaire</li> <li>Sel et poivre blanc (de penja pour moi)</li> </ul> <strong>Pour le plat</strong> <ul> <li>½ coq</li> <li>100ml d’huile d’arachide</li> <li>2 grosses tomates</li> </ul> <p style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Préparation : </span></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">La veille :</span></strong></span></p> <p class="_mce_tagged_br"> Dans un grand récipient mettez tous les ingrédients de la marinade sur les morceaux de coq, couvrez et gardez au frais jusqu'au lendemain.</p> <p style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> <img src="images/stories/coq%20vin/2.JPG" alt="2" width="350" height="263" /><img src="images/stories/coq%20vin/3.JPG" alt="3" width="350" height="263" /></p> <p style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> Le lendemain :</span></strong></p>  <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/coq%20vin/4.JPG" alt="4" width="600" height="450" /> <ul> <li> Egouttez les morceaux de coq et réservez la garniture de la marinade.</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/coq%20vin/6.JPG" alt="6" width="600" height="451" /> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Dans une grande cocotte mettez votre l'huile sur un feu vif et faites y revenir vos morceaux de coq jusqu'à ce qu'ils soient bien rôtis sur chaque face.</span></li> </ul> <p style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/coq%20vin/7.JPG" alt="7" width="350" height="263" /><img src="images/stories/coq%20vin/8.JPG" alt="8" width="350" height="263" /></span></p> <p style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Ajoute</span>z alors la marinade, couvrez et laissez étuver 5 minutes.</p> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Rajoutez la tomate et laissez cuire encore 5 minutes à couvert. Remuez et lorsque l'ébullition aura repris testez l'assaisonnement et mettez au four couvert pour 2 heures</span>. <p style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/coq%20vin/9.JPG" alt="9" width="600" height="450" />Servez !!!</span></p>  <img src="images/stories/coq%20vin/10.JPG" alt="coq vin de palme" width="315" height="289" /><img src="images/stories/coq%20vin/12.JPG" alt="coq vin de palme" width="380" height="286" /> <img src="images/stories/coq%20vin/13.JPG" alt="coq vin de palme" width="350" height="263" /><img src="images/stories/coq%20vin/14.JPG" alt="coq vin de palme" width="350" height="263" />Coq au vin de palmeinheritopenopen324-revision2012-01-19 19:35:202012-01-19 18:35:20324http://www.alicepegie.com/wordpress/wordpress/?p=3250revision0
32612011-12-15 19:36:062011-12-15 18:36:06<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/1.JPG" alt="gateau princesse" width="600" height="963" />Et voici le gâteau d’anniversaire de ma dodou1, à l’occasion de ses 5 ans samedi dernier. Il s’agit d’un <a href="index.php?option=com_content&amp;view=article&amp;id=3051:brownies1&amp;catid=111:gateaux&amp;Itemid=489">brownie au chocolat</a> (son préféré) recouvert de <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492">crème au beurre à la meringue suisse</a>.<!--more--><strong>Pour 10 personnes env.</strong> <strong>Le gâteau <a href="index.php?option=com_content&amp;view=article&amp;id=3051:brownies1&amp;catid=111:gateaux&amp;Itemid=489">brownie</a></strong> <ul> <li>370g de beurre</li> <li>370g de chocolat noir</li> <li>170g de farine</li> <li>80g cacao en poudre</li> <li>6 œufs</li> <li>300g de sucre (pour moi vergeoise blonde)</li> </ul> <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492"><strong>La crème au beurre</strong></a> <ul> <li>150 g de blanc d'œufs (5 oeufs)</li> <li>130 g de sucre en poudre</li> <li>430 g de beurre à température ambiante,</li> <li>2 càc d'arôme naturel de fraise</li> <li>du colorant rouge</li> <li>1 pincée de sel</li> </ul> <strong>Préparation</strong> <a href="ma-cuisine/desserts/111-gateaux/3051-brownies1"><strong>Le gâteau</strong></a><a href="ma-cuisine/desserts/111-gateaux/3051-brownies1">Le gâteau la recette en détail ici</a> Mettez le chocolat et le beurre dans un bol et faites fonder le tout au bain marie ou au micro-onde. Laissez refroidir. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/2.JPG" alt="2" width="600" height="451" /> Préchauffez le four à 160°. Pendant ce temps, fouettez vigoureusement les oeufs et le sucre pendant environ 5mn, jusqu’à ce que le tout double volume. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/1B.JPG" alt="1B" width="600" height="450" /> <ul> <li>Rajoutez le mélange chocolaté dans les œufs et mélangez délicatement avec une Maryse ou une spatule en soulevant la pate.</li> <li>Faites le jusqu’a ce que la préparation ait une couleur homogène.</li> </ul> <ul> <li>Mélangez la farine et la poudre de cacao et tamisez le mélange sur la pate au chocolat.</li> </ul> <img src="images/stories/GATEAU%20CECILE/3.JPG" alt="3" width="307" height="291" /><img src="images/stories/GATEAU%20CECILE/4.JPG" alt="4" width="384" height="289" /> <ul> <li>Mélangez à nouveau en soulevant la pâte à la Maryse de manière à garder l’air emprisonné dans la pate.</li> <li>Versez la pâte dans un grand cylindrique</li> </ul> <img src="images/stories/GATEAU%20CECILE/5.JPG" alt="5" width="360" height="270" /><img src="images/stories/GATEAU%20CECILE/6.JPG" alt="6" width="327" height="271" /> <ul> <li>et laissez cuire 1h-1h30mn</li> </ul> posez sur grill et laissez complètement refroidir. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/7.JPG" alt="7" width="600" height="677" /> <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492"><strong>Le glaçage</strong></a> <ul> <li>Dans un récipient résistant à la chaleur mélangez les blancs d'œufs, le sucre et le sel. Placez au dessus d'un bain-marie (le saladier ne dois pas toucher l'eau) et fouettez sans vous arrêtez jusqu'à ce que le sucre soit dissout et que la préparation soit chaude au toucher (70°C au thermomètre électronique, ça prend environ 5 minutes).</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/3.JPG" alt="3" width="600" height="450" /></li> </ul> <ul> <li>Versez la préparation dans le bol de votre robot et battez la préparation à grande vitesse avec le fouet jusqu'à ce que la préparation refroidisse, il faut que la texture soit aérienne et la crème bien brillante (ce qui prend environ 10 minutes).</li> </ul> <ul> <li>incorporez le beurre à vitesse moyenne, un morceau à la fois. Une fois qu'il est bien incorporé, ajoutez éventuellement arômes et colorants, augmentez un peu la vitesse et continuez à fouetter pour environ 3 minutes. Raclez les bords du bol et fouettez 2 minutes à basse vitesse pour éliminer les bulles d'air.</li> <li>Rajoutez le colorant rouge</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/1.JPG" alt="crème au beurre" width="600" height="450" /> <strong>Le montage.</strong> <ul> <li>Posez votre gâteau complètement refroidi sur le plat de présentation. Coupez quelques lamelles de papier sulfurisé que vous enfilez sous le gâteau de manière à protéger le plat.</li> <li>Recouvrez votre gâteau de crème au beurre soit avec une spatule soit avec une poche à douille munie d’une douille large.</li> <li><img src="images/stories/GATEAU%20CECILE/8.JPG" alt="8" width="373" height="280" /><img src="images/stories/GATEAU%20CECILE/9.JPG" alt="9" width="333" height="279" /></li> <li>Pour lisser le glaçage, j’utilise ma feuille de cuisson en silicone et je racle la crème de bas en haut. Si vous n’avez pas de papier cuisson en silicone, utilisez une chemise cartonnée.</li> <li>Une fois le glaçage étalée mettez le tout au frais pour 30mn.</li> <li>Au bout de 30mn ressortez le gâteau et là lissez à nouveau s’il y a des irrégularités. Décorez ensuite à votre guise, moi j’ai opté pour des fleurs roses et blanches.</li> </ul> <img src="images/stories/GATEAU%20CECILE/10.JPG" alt="10" width="337" height="370" /><img src="images/stories/GATEAU%20CECILE/11.JPG" alt="11" width="369" height="368" /> <ul> <li>Positionnez ensuite la tête de la poupée sur le gâteau habillez son buste de crème et remettez le tout au frais jusqu’au moment de servir.</li> </ul> <img src="images/stories/GATEAU%20CECILE/12.JPG" alt="12" width="420" height="428" /><img src="images/stories/GATEAU%20CECILE/13.JPG" alt="13" width="281" height="428" /> Ma doudou était super contente et ses copines super impressionnées, ca méritait bien tout ce temps de préparation. <img src="images/stories/GATEAU%20CECILE/14.JPG" alt="14" width="350" height="510" /><img src="images/stories/GATEAU%20CECILE/15.JPG" alt="15" width="342" height="510" /> <img src="images/stories/GATEAU%20CECILE/16.JPG" alt="gateau princesse" width="273" height="365" /><img src="images/stories/GATEAU%20CECILE/17.JPG" alt="17" width="421" height="363" /> &nbsp;Un Gâteau de princesse pour ma princesse!publishopenopenun-gateau-de-princesse-pour-ma-princesse2012-01-19 20:42:182012-01-19 19:42:180http://www.alicepegie.com/wordpress/wordpress/?p=3260post0
32712012-01-19 19:47:092012-01-19 18:47:09<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/1.JPG" alt="gateau princesse" width="600" height="963" />Et voici le gâteau d’anniversaire de ma dodou1, à l’occasion de ses 5 ans samedi dernier. Il s’agit d’un <a href="index.php?option=com_content&amp;view=article&amp;id=3051:brownies1&amp;catid=111:gateaux&amp;Itemid=489">brownie au chocolat</a> (son préféré) recouvert de <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492">crème au beurre à la meringue suisse</a>.<!--more--><strong>Pour 10 personnes env.</strong> <strong>Le gâteau <a href="index.php?option=com_content&amp;view=article&amp;id=3051:brownies1&amp;catid=111:gateaux&amp;Itemid=489">brownie</a></strong> <ul> <li>370g de beurre</li> <li>370g de chocolat noir</li> <li>170g de farine</li> <li>80g cacao en poudre</li> <li>6 œufs</li> <li>300g de sucre (pour moi vergeoise blonde)</li> </ul> <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492"><strong>La crème au beurre</strong></a> <ul> <li>150 g de blanc d'œufs (5 oeufs)</li> <li>130 g de sucre en poudre</li> <li>430 g de beurre à température ambiante,</li> <li>2 càc d'arôme naturel de fraise</li> <li>du colorant rouge</li> <li>1 pincée de sel</li> </ul> <strong>Préparation</strong> <a href="ma-cuisine/desserts/111-gateaux/3051-brownies1"><strong>Le gâteau</strong></a><a href="ma-cuisine/desserts/111-gateaux/3051-brownies1">Le gâteau la recette en détail ici</a> Mettez le chocolat et le beurre dans un bol et faites fonder le tout au bain marie ou au micro-onde. Laissez refroidir. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/2.JPG" alt="2" width="600" height="451" /> Préchauffez le four à 160°. Pendant ce temps, fouettez vigoureusement les oeufs et le sucre pendant environ 5mn, jusqu’à ce que le tout double volume. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/1B.JPG" alt="1B" width="600" height="450" /> <ul> <li>Rajoutez le mélange chocolaté dans les œufs et mélangez délicatement avec une Maryse ou une spatule en soulevant la pate.</li> <li>Faites le jusqu’a ce que la préparation ait une couleur homogène.</li> </ul> <ul> <li>Mélangez la farine et la poudre de cacao et tamisez le mélange sur la pate au chocolat.</li> </ul> <img src="images/stories/GATEAU%20CECILE/3.JPG" alt="3" width="307" height="291" /><img src="images/stories/GATEAU%20CECILE/4.JPG" alt="4" width="384" height="289" /> <ul> <li>Mélangez à nouveau en soulevant la pate à la Maryse de manière à garder l’air emprisonné dans la pate.</li> <li>Versez la pate dans un grand cylindrique</li> </ul> <img src="images/stories/GATEAU%20CECILE/5.JPG" alt="5" width="360" height="270" /><img src="images/stories/GATEAU%20CECILE/6.JPG" alt="6" width="327" height="271" /> <ul> <li>et laissez cuire 1h-1h30mn</li> </ul> posez sur grill et laissez complètement refroidir. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/7.JPG" alt="7" width="600" height="677" /> <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492"><strong>Le glaçage</strong></a> <ul> <li>Dans un récipient résistant à la chaleur mélangez les blancs d'œufs, le sucre et le sel. Placez au dessus d'un bain-marie (le saladier ne dois pas toucher l'eau) et fouettez sans vous arrêtez jusqu'à ce que le sucre soit dissout et que la préparation soit chaude au toucher (70°C au thermomètre électronique, ça prend environ 5 minutes).</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/3.JPG" alt="3" width="600" height="450" /></li> </ul> <ul> <li>Versez la préparation dans le bol de votre robot et battez la préparation à grande vitesse avec le fouet jusqu'à ce que la préparation refroidisse, il faut que la texture soit aérienne et la crème bien brillante (ce qui prend environ 10 minutes).</li> </ul> <ul> <li>incorporez le beurre à vitesse moyenne, un morceau à la fois. Une fois qu'il est bien incorporé, ajoutez éventuellement arômes et colorants, augmentez un peu la vitesse et continuez à fouetter pour environ 3 minutes. Raclez les bords du bol et fouettez 2 minutes à basse vitesse pour éliminer les bulles d'air.</li> <li>Rajoutez le colorant rouge</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/1.JPG" alt="crème au beurre" width="600" height="450" /> <strong>Le montage.</strong> <ul> <li>Posez votre gâteau complètement refroidi sur le plat de présentation. Coupez quelques lamelles de papier sulfurisé que vous enfilez sous le gâteau de manière à protéger le plat.</li> <li>Recouvrez votre gâteau de crème au beurre soit avec une spatule soit avec une poche à douille munie d’une douille large.</li> <li><img src="images/stories/GATEAU%20CECILE/8.JPG" alt="8" width="373" height="280" /><img src="images/stories/GATEAU%20CECILE/9.JPG" alt="9" width="333" height="279" /></li> <li>Pour lisser le glaçage, j’utilise ma feuille de cuisson en silicone et je racle la crème de bas en haut. Si vous n’avez pas de papier cuisson en silicone, utilisez une chemise cartonnée.</li> <li>Une fois le glaçage étalée mettez le tout au frais pour 30mn.</li> <li>Au bout de 30mn ressortez le gâteau et là lissez à nouveau s’il y a des irrégularités. Décorez ensuite à votre guise, moi j’ai opté pour des fleurs roses et blanches.</li> </ul> <img src="images/stories/GATEAU%20CECILE/10.JPG" alt="10" width="337" height="370" /><img src="images/stories/GATEAU%20CECILE/11.JPG" alt="11" width="369" height="368" /> <ul> <li>Positionnez ensuite la tête de la poupée sur le gâteau habillez son buste de crème et remettez le tout au frais jusqu’au moment de servir.</li> </ul> <img src="images/stories/GATEAU%20CECILE/12.JPG" alt="12" width="420" height="428" /><img src="images/stories/GATEAU%20CECILE/13.JPG" alt="13" width="281" height="428" /> Ma doudou était super contente et ses copines super impressionnées, ca méritait bien tout ce temps de préparation. <img src="images/stories/GATEAU%20CECILE/14.JPG" alt="14" width="350" height="510" /><img src="images/stories/GATEAU%20CECILE/15.JPG" alt="15" width="342" height="510" /> <img src="images/stories/GATEAU%20CECILE/16.JPG" alt="gateau princesse" width="273" height="365" /><img src="images/stories/GATEAU%20CECILE/17.JPG" alt="17" width="421" height="363" /> &nbsp;Un Gâteau de princesse pour ma princesse!inheritopenopen326-revision2012-01-19 19:47:092012-01-19 18:47:09326http://www.alicepegie.com/wordpress/wordpress/?p=3270revision0
32812012-01-19 20:42:132012-01-19 19:42:13<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/1.JPG" alt="gateau princesse" width="600" height="963" />Et voici le gâteau d’anniversaire de ma dodou1, à l’occasion de ses 5 ans samedi dernier. Il s’agit d’un <a href="index.php?option=com_content&amp;view=article&amp;id=3051:brownies1&amp;catid=111:gateaux&amp;Itemid=489">brownie au chocolat</a> (son préféré) recouvert de <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492">crème au beurre à la meringue suisse</a>.<!--more--><strong>Pour 10 personnes env.</strong> <strong>Le gâteau <a href="index.php?option=com_content&amp;view=article&amp;id=3051:brownies1&amp;catid=111:gateaux&amp;Itemid=489">brownie</a></strong> <ul> <li>370g de beurre</li> <li>370g de chocolat noir</li> <li>170g de farine</li> <li>80g cacao en poudre</li> <li>6 œufs</li> <li>300g de sucre (pour moi vergeoise blonde)</li> </ul> <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492"><strong>La crème au beurre</strong></a> <ul> <li>150 g de blanc d'œufs (5 oeufs)</li> <li>130 g de sucre en poudre</li> <li>430 g de beurre à température ambiante,</li> <li>2 càc d'arôme naturel de fraise</li> <li>du colorant rouge</li> <li>1 pincée de sel</li> </ul> <strong>Préparation</strong> <a href="ma-cuisine/desserts/111-gateaux/3051-brownies1"><strong>Le gâteau</strong></a><a href="ma-cuisine/desserts/111-gateaux/3051-brownies1">Le gâteau la recette en détail ici</a> Mettez le chocolat et le beurre dans un bol et faites fonder le tout au bain marie ou au micro-onde. Laissez refroidir. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/2.JPG" alt="2" width="600" height="451" /> Préchauffez le four à 160°. Pendant ce temps, fouettez vigoureusement les oeufs et le sucre pendant environ 5mn, jusqu’à ce que le tout double volume. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/1B.JPG" alt="1B" width="600" height="450" /> <ul> <li>Rajoutez le mélange chocolaté dans les œufs et mélangez délicatement avec une Maryse ou une spatule en soulevant la pate.</li> <li>Faites le jusqu’a ce que la préparation ait une couleur homogène.</li> </ul> <ul> <li>Mélangez la farine et la poudre de cacao et tamisez le mélange sur la pate au chocolat.</li> </ul> <img src="images/stories/GATEAU%20CECILE/3.JPG" alt="3" width="307" height="291" /><img src="images/stories/GATEAU%20CECILE/4.JPG" alt="4" width="384" height="289" /> <ul> <li>Mélangez à nouveau en soulevant la pâte à la Maryse de manière à garder l’air emprisonné dans la pate.</li> <li>Versez la pâte dans un grand cylindrique</li> </ul> <img src="images/stories/GATEAU%20CECILE/5.JPG" alt="5" width="360" height="270" /><img src="images/stories/GATEAU%20CECILE/6.JPG" alt="6" width="327" height="271" /> <ul> <li>et laissez cuire 1h-1h30mn</li> </ul> posez sur grill et laissez complètement refroidir. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/7.JPG" alt="7" width="600" height="677" /> <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492"><strong>Le glaçage</strong></a> <ul> <li>Dans un récipient résistant à la chaleur mélangez les blancs d'œufs, le sucre et le sel. Placez au dessus d'un bain-marie (le saladier ne dois pas toucher l'eau) et fouettez sans vous arrêtez jusqu'à ce que le sucre soit dissout et que la préparation soit chaude au toucher (70°C au thermomètre électronique, ça prend environ 5 minutes).</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/3.JPG" alt="3" width="600" height="450" /></li> </ul> <ul> <li>Versez la préparation dans le bol de votre robot et battez la préparation à grande vitesse avec le fouet jusqu'à ce que la préparation refroidisse, il faut que la texture soit aérienne et la crème bien brillante (ce qui prend environ 10 minutes).</li> </ul> <ul> <li>incorporez le beurre à vitesse moyenne, un morceau à la fois. Une fois qu'il est bien incorporé, ajoutez éventuellement arômes et colorants, augmentez un peu la vitesse et continuez à fouetter pour environ 3 minutes. Raclez les bords du bol et fouettez 2 minutes à basse vitesse pour éliminer les bulles d'air.</li> <li>Rajoutez le colorant rouge</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/1.JPG" alt="crème au beurre" width="600" height="450" /> <strong>Le montage.</strong> <ul> <li>Posez votre gâteau complètement refroidi sur le plat de présentation. Coupez quelques lamelles de papier sulfurisé que vous enfilez sous le gâteau de manière à protéger le plat.</li> <li>Recouvrez votre gâteau de crème au beurre soit avec une spatule soit avec une poche à douille munie d’une douille large.</li> <li><img src="images/stories/GATEAU%20CECILE/8.JPG" alt="8" width="373" height="280" /><img src="images/stories/GATEAU%20CECILE/9.JPG" alt="9" width="333" height="279" /></li> <li>Pour lisser le glaçage, j’utilise ma feuille de cuisson en silicone et je racle la crème de bas en haut. Si vous n’avez pas de papier cuisson en silicone, utilisez une chemise cartonnée.</li> <li>Une fois le glaçage étalée mettez le tout au frais pour 30mn.</li> <li>Au bout de 30mn ressortez le gâteau et là lissez à nouveau s’il y a des irrégularités. Décorez ensuite à votre guise, moi j’ai opté pour des fleurs roses et blanches.</li> </ul> <img src="images/stories/GATEAU%20CECILE/10.JPG" alt="10" width="337" height="370" /><img src="images/stories/GATEAU%20CECILE/11.JPG" alt="11" width="369" height="368" /> <ul> <li>Positionnez ensuite la tête de la poupée sur le gâteau habillez son buste de crème et remettez le tout au frais jusqu’au moment de servir.</li> </ul> <img src="images/stories/GATEAU%20CECILE/12.JPG" alt="12" width="420" height="428" /><img src="images/stories/GATEAU%20CECILE/13.JPG" alt="13" width="281" height="428" /> Ma doudou était super contente et ses copines super impressionnées, ca méritait bien tout ce temps de préparation. <img src="images/stories/GATEAU%20CECILE/14.JPG" alt="14" width="350" height="510" /><img src="images/stories/GATEAU%20CECILE/15.JPG" alt="15" width="342" height="510" /> <img src="images/stories/GATEAU%20CECILE/16.JPG" alt="gateau princesse" width="273" height="365" /><img src="images/stories/GATEAU%20CECILE/17.JPG" alt="17" width="421" height="363" /> &nbsp;Un Gâteau de princesse pour ma princesse!inheritopenopen326-autosave2012-01-19 20:42:132012-01-19 19:42:13326http://www.alicepegie.com/wordpress/wordpress/?p=3280revision0
32912012-01-19 20:41:092012-01-19 19:41:09<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/1.JPG" alt="gateau princesse" width="600" height="963" />Et voici le gâteau d’anniversaire de ma dodou1, à l’occasion de ses 5 ans samedi dernier. Il s’agit d’un <a href="index.php?option=com_content&amp;view=article&amp;id=3051:brownies1&amp;catid=111:gateaux&amp;Itemid=489">brownie au chocolat</a> (son préféré) recouvert de <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492">crème au beurre à la meringue suisse</a>.<!--more--><strong>Pour 10 personnes env.</strong> <strong>Le gâteau <a href="index.php?option=com_content&amp;view=article&amp;id=3051:brownies1&amp;catid=111:gateaux&amp;Itemid=489">brownie</a></strong> <ul> <li>370g de beurre</li> <li>370g de chocolat noir</li> <li>170g de farine</li> <li>80g cacao en poudre</li> <li>6 œufs</li> <li>300g de sucre (pour moi vergeoise blonde)</li> </ul> <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492"><strong>La crème au beurre</strong></a> <ul> <li>150 g de blanc d'œufs (5 oeufs)</li> <li>130 g de sucre en poudre</li> <li>430 g de beurre à température ambiante,</li> <li>2 càc d'arôme naturel de fraise</li> <li>du colorant rouge</li> <li>1 pincée de sel</li> </ul> <strong>Préparation</strong> <a href="ma-cuisine/desserts/111-gateaux/3051-brownies1"><strong>Le gâteau</strong></a><a href="ma-cuisine/desserts/111-gateaux/3051-brownies1">Le gâteau la recette en détail ici</a> Mettez le chocolat et le beurre dans un bol et faites fonder le tout au bain marie ou au micro-onde. Laissez refroidir. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/2.JPG" alt="2" width="600" height="451" /> Préchauffez le four à 160°. Pendant ce temps, fouettez vigoureusement les oeufs et le sucre pendant environ 5mn, jusqu’à ce que le tout double volume. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/1B.JPG" alt="1B" width="600" height="450" /> <ul> <li>Rajoutez le mélange chocolaté dans les œufs et mélangez délicatement avec une Maryse ou une spatule en soulevant la pate.</li> <li>Faites le jusqu’a ce que la préparation ait une couleur homogène.</li> </ul> <ul> <li>Mélangez la farine et la poudre de cacao et tamisez le mélange sur la pate au chocolat.</li> </ul> <img src="images/stories/GATEAU%20CECILE/3.JPG" alt="3" width="307" height="291" /><img src="images/stories/GATEAU%20CECILE/4.JPG" alt="4" width="384" height="289" /> <ul> <li>Mélangez à nouveau en soulevant la pâte à la Maryse de manière à garder l’air emprisonné dans la pate.</li> <li>Versez la pâte dans un grand cylindrique</li> </ul> <img src="images/stories/GATEAU%20CECILE/5.JPG" alt="5" width="360" height="270" /><img src="images/stories/GATEAU%20CECILE/6.JPG" alt="6" width="327" height="271" /> <ul> <li>et laissez cuire 1h-1h30mn</li> </ul> posez sur grill et laissez complètement refroidir. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/GATEAU%20CECILE/7.JPG" alt="7" width="600" height="677" /> <a href="index.php?option=com_content&amp;view=article&amp;id=3055:creme-au-beurre-maison&amp;catid=118:ingredientsbases&amp;Itemid=492"><strong>Le glaçage</strong></a> <ul> <li>Dans un récipient résistant à la chaleur mélangez les blancs d'œufs, le sucre et le sel. Placez au dessus d'un bain-marie (le saladier ne dois pas toucher l'eau) et fouettez sans vous arrêtez jusqu'à ce que le sucre soit dissout et que la préparation soit chaude au toucher (70°C au thermomètre électronique, ça prend environ 5 minutes).</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/3.JPG" alt="3" width="600" height="450" /></li> </ul> <ul> <li>Versez la préparation dans le bol de votre robot et battez la préparation à grande vitesse avec le fouet jusqu'à ce que la préparation refroidisse, il faut que la texture soit aérienne et la crème bien brillante (ce qui prend environ 10 minutes).</li> </ul> <ul> <li>incorporez le beurre à vitesse moyenne, un morceau à la fois. Une fois qu'il est bien incorporé, ajoutez éventuellement arômes et colorants, augmentez un peu la vitesse et continuez à fouetter pour environ 3 minutes. Raclez les bords du bol et fouettez 2 minutes à basse vitesse pour éliminer les bulles d'air.</li> <li>Rajoutez le colorant rouge</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/1.JPG" alt="crème au beurre" width="600" height="450" /> <strong>Le montage.</strong> <ul> <li>Posez votre gâteau complètement refroidi sur le plat de présentation. Coupez quelques lamelles de papier sulfurisé que vous enfilez sous le gâteau de manière à protéger le plat.</li> <li>Recouvrez votre gâteau de crème au beurre soit avec une spatule soit avec une poche à douille munie d’une douille large.</li> <li><img src="images/stories/GATEAU%20CECILE/8.JPG" alt="8" width="373" height="280" /><img src="images/stories/GATEAU%20CECILE/9.JPG" alt="9" width="333" height="279" /></li> <li>Pour lisser le glaçage, j’utilise ma feuille de cuisson en silicone et je racle la crème de bas en haut. Si vous n’avez pas de papier cuisson en silicone, utilisez une chemise cartonnée.</li> <li>Une fois le glaçage étalée mettez le tout au frais pour 30mn.</li> <li>Au bout de 30mn ressortez le gâteau et là lissez à nouveau s’il y a des irrégularités. Décorez ensuite à votre guise, moi j’ai opté pour des fleurs roses et blanches.</li> </ul> <img src="images/stories/GATEAU%20CECILE/10.JPG" alt="10" width="337" height="370" /><img src="images/stories/GATEAU%20CECILE/11.JPG" alt="11" width="369" height="368" /> <ul> <li>Positionnez ensuite la tête de la poupée sur le gâteau habillez son buste de crème et remettez le tout au frais jusqu’au moment de servir.</li> </ul> <img src="images/stories/GATEAU%20CECILE/12.JPG" alt="12" width="420" height="428" /><img src="images/stories/GATEAU%20CECILE/13.JPG" alt="13" width="281" height="428" /> Ma doudou était super contente et ses copines super impressionnées, ca méritait bien tout ce temps de préparation. <img src="images/stories/GATEAU%20CECILE/14.JPG" alt="14" width="350" height="510" /><img src="images/stories/GATEAU%20CECILE/15.JPG" alt="15" width="342" height="510" /> <img src="images/stories/GATEAU%20CECILE/16.JPG" alt="gateau princesse" width="273" height="365" /><img src="images/stories/GATEAU%20CECILE/17.JPG" alt="17" width="421" height="363" /> &nbsp;Un Gâteau de princesse pour ma princesse!inheritopenopen326-revision-22012-01-19 20:41:092012-01-19 19:41:09326http://www.alicepegie.com/wordpress/wordpress/?p=3290revision0
33012011-12-14 20:42:392011-12-14 19:42:39<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Caramel%20choco/1.JPG" alt="Caramel au Chocolat blanc" width="600" height="331" />Voici une recette de chocolat gourmant qui régalera les petits et les grands enfants! Simples et rapides à confectionner, ils sont également économiques et par dessus tout, délicieux!<!--more--><strong>pour 30 petits caramels env. </strong> <ul> <li>100g de chocolat blanc</li> <li>125g de sucre</li> <li>165ml de crème liquide</li> <li>125g de glucose liquide</li> <li>½ cc de vanille en poudre</li> </ul> <strong>Préparation</strong> <ul> <li>Concassez le chocolat</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Caramel%20choco/6.JPG" alt="6" width="600" height="450" /> <ul> <li>Mettez le sucre, la crème, le glucose et la vanille dans une casserole et portez le tout à ébullition.</li> </ul> <img src="images/stories/Caramel%20choco/2.JPG" alt="2" width="350" height="263" /><img src="images/stories/Caramel%20choco/3.JPG" alt="3" width="350" height="263" /> <ul> <li>Le mélange va épaissir. C’est prêt lorsqu’une goutte de la préparation jetée dans un verre d’eau froide se fige.</li> </ul> <img src="images/stories/Caramel%20choco/4.JPG" alt="4" width="350" height="263" /><img src="images/stories/Caramel%20choco/5.JPG" alt="5" width="350" height="263" /> <ul> <li>Retirez la casserole du feu et ajoutez le chocolat et le beurre, mélangez jusqu’à l’obtention d’une préparation lisse.</li> </ul> <img src="images/stories/Caramel%20choco/7.JPG" alt="7" width="350" height="263" /><img src="images/stories/Caramel%20choco/8.JPG" alt="8" width="350" height="263" /> <img src="images/stories/Caramel%20choco/9.JPG" alt="9" width="292" height="218" /><img src="images/stories/Caramel%20choco/10.JPG" alt="Caramel au Chocolat blanc" width="405" height="218" /> <ul> <li>Versez dans des moulez et laissez refroidir. Un vrai régal.</li> </ul> <img src="images/stories/Caramel%20choco/11.JPG" alt="Caramel au Chocolat blanc" width="376" height="224" /><img src="images/stories/Caramel%20choco/12.JPG" alt="Caramel au Chocolat blanc" width="320" height="224" /> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Caramel%20choco/13.JPG" alt="Caramel au Chocolat blanc" width="600" height="700" />Caramel au Chocolat blancpublishopenopencaramel-au-chocolat-blanc2012-01-19 20:54:042012-01-19 19:54:040http://www.alicepegie.com/wordpress/wordpress/?p=3300post0
33112012-01-19 20:43:422012-01-19 19:43:42<p><img style="display: block; margin-left: auto; margin-right: auto;" alt="Caramel au Chocolat blanc" src="images/stories/Caramel%20choco/1.JPG" height="331" width="600" />Voici une recette de chocolat gourmant qui régalera les petits et les grands enfants! Simples et rapides à confectionner, ils sont également économiques et par dessus tout, délicieux!<hr id="system-readmore" /></p> <p><strong>pour 30 petits caramels env.<br /></strong></p> <ul> <li>100g de chocolat blanc</li> <li>125g de sucre</li> <li>165ml de crème liquide</li> <li>125g de glucose liquide</li> <li>½ cc de vanille en poudre</li> </ul> <p><strong>Préparation</strong></p> <ul> <li>Concassez le chocolat</li> </ul> <p><img style="display: block; margin-left: auto; margin-right: auto;" alt="6" src="images/stories/Caramel%20choco/6.JPG" height="450" width="600" /></p> <ul> <li>Mettez le sucre, la crème, le glucose et la vanille dans une casserole et portez le tout à ébullition.&nbsp;</li> </ul> <p><img alt="2" src="images/stories/Caramel%20choco/2.JPG" height="263" width="350" /><img alt="3" src="images/stories/Caramel%20choco/3.JPG" height="263" width="350" /></p> <ul> <li>Le mélange va épaissir. C’est prêt lorsqu’une goutte de la préparation jetée dans un verre d’eau froide se fige.</li> </ul> <p><img alt="4" src="images/stories/Caramel%20choco/4.JPG" height="263" width="350" /><img alt="5" src="images/stories/Caramel%20choco/5.JPG" height="263" width="350" /></p> <ul> <li>Retirez la casserole du feu et ajoutez le chocolat et le beurre, mélangez jusqu’à l’obtention d’une préparation lisse.</li> </ul> <p><img alt="7" src="images/stories/Caramel%20choco/7.JPG" height="263" width="350" /><img alt="8" src="images/stories/Caramel%20choco/8.JPG" height="263" width="350" /></p> <p><img alt="9" src="images/stories/Caramel%20choco/9.JPG" height="218" width="292" /><img alt="Caramel au Chocolat blanc" src="images/stories/Caramel%20choco/10.JPG" height="218" width="405" /></p> <ul> <li>Versez dans des moulez et laissez refroidir. Un vrai régal.</li> </ul> <p><img alt="Caramel au Chocolat blanc" src="images/stories/Caramel%20choco/11.JPG" height="224" width="376" /><img alt="Caramel au Chocolat blanc" src="images/stories/Caramel%20choco/12.JPG" height="224" width="320" /></p> <p><img style="display: block; margin-left: auto; margin-right: auto;" alt="Caramel au Chocolat blanc" src="images/stories/Caramel%20choco/13.JPG" height="700" width="600" /></p>Caramel au Chocolat blancinheritopenopen330-revision2012-01-19 20:43:422012-01-19 19:43:42330http://www.alicepegie.com/wordpress/wordpress/?p=3310revision0
33312011-12-13 22:51:462011-12-13 21:51:46<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/19.JPG" alt="foie gras vin de palme" width="702" height="273" />Cette année, je me suis lancée dans la confection de foie gras maison. J’ai opté pour la cuisson vapeur que je trouve très simple, pas besoin de bocaux pour le conserver. J’ai testé le foie gras cru de canard du Sud-Ouest de Picard, vendu déveiné et un autre non déveiné Montfort qu’on m’avait offert. Les 2 sont très bon mais je me cantonnerais désormais à du déveiné car même si ce n’est pas difficile à déveiner, je n’aime pas le faire. J’ai suivi la recette donnée sure l’emballage du foie gras picard<!--more--><strong><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Pour un foie de 400g env :</span></strong> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">1  foie gras cru de canard de 400g environ déveiné ou non </span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">1cc bombée de sel fin</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">1/2cc de poivre blanc de penja fraichement moulu (ou un poivre de votre choix)</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">1 cs de vin de palme (le mien est pasteurisé) ou du porto</span></li> </ul> <strong><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Préparation:</span></strong> <strong><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">si votre foie n'est pas déveiné</span>, il vous faudra un petit couteau pointu </strong> <ul> <li style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Détaillez votre fois gras délicatement en plusieurs morceaux. Si certains morceaux sont retenus par une veine, ne les coupez pas.</span></li> </ul> <p style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/foie%20gras1/1.JPG" alt="1" width="303" height="288" /><img src="images/stories/foie%20gras1/2.JPG" alt="2" width="383" height="288" /> </span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Pour chaque morceau obtenu, repérez les nerfs en ouvrant légèrement le foie et les enlever en tirant dessus. Ça part assez facilement. Soulevez les nerfs et/ou veines en suivant leur chemin tout en évitant de tout réduire en purée. Grattez les traces de sang restées après les veines/nerfs</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/3.JPG" alt="3" width="600" height="450" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Votre foie est prêt à être cuisiné.</span> &nbsp; <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Cuisine</strong> </span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Prenez le foie entre vos mains et tirez pour le couper en morceaux. Déposez-les dans un plat.</span></li> </ul> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Mélangez le sel, le poivre à e et le vin de palme ensemble. </span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/foie%20gras1/5.JPG" alt="5" width="350" height="263" /><img src="images/stories/foie%20gras1/6.JPG" alt="6" width="350" height="263" /></span> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/foie%20gras1/7.JPG" alt="7" width="237" height="348" /><img src="images/stories/foie%20gras1/8.JPG" alt="8" width="462" height="348" /></span> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Arrosez-en le foie.</span>Filmez et réservez pour au 8 à 12h réfrigérateur.</span> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/9.JPG" alt="9" width="600" height="450" /></span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">au bout de ce temps, sortez le foie 15 min à l’avance pour qu’il soit plus facile à manier.</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">emballez les morceaux de foie gras dans du film alimentaire supportant la cuisson et réalisez un cylindre.</span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/foie%20gras1/10.JPG" alt="10" width="333" height="251" /><img src="images/stories/foie%20gras1/13.JPG" alt="13" width="392" height="250" /> </span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Enroulez le cylindre obtenu dans un autre film alimentaire. Serrez bien et enroulez les extrémités.</span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/12.JPG" alt="12" width="600" height="490" /></span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">modelez-le ensuite pour lui donner une forme régulière. Dès que le boudin est régulier, enroulez-le de nouveau 3 ou 4 fois dans du film alimentaire en serrant bien.</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Terminez par deux couches de papier aluminium et remettez au frais pour 30mn env.</span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/14.JPG" alt="14" width="600" height="450" /> </span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Faites bouillir de l’eau et posez un panier dessus pour une cuisson à la vapeur. L’eau ne doit pas dépasser du panier</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Mettez le foie gras dans le panier et déposez-le dans la casserole d’eau bouillant. Couvrez et faites cuire 15 min à feu moyen.</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Laissez refroidir dans la casserole découverte.</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Lorsque le foie est refroidi mettez-le à reposer 24 heures min au réfrigérateur.</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Déballez-le et retirez l’excédent de gras.</span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/15.JPG" alt="15" width="600" height="416" /> </span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Réservez-le au réfrigérateur dans du film plastique. Il se conserve ainsi 4 jours au réfrigérateur et plusieurs mois au congélateur.</span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/foie%20gras1/17.JPG" alt="foie gras vin de palme" width="350" height="240" /><img src="images/stories/foie%20gras1/18.JPG" alt="foie gras vin de palme" width="350" height="263" /></span> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Moi je fais de petits cylindres pour les conserver au congélateur, je ne décongèle ainsi que la quantité désirée. Si vous avez un grand cylindre découpez le en pavés avant les congeler.</span> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/foie%20gras1/20.JPG" alt="foie gras vin de palme" width="373" height="345" /><img src="images/stories/foie%20gras1/21.JPG" alt="foie gras vin de palme" width="280" height="347" /></span> &nbsp;Foie Gras Maison au Poivre de Penja et Vin de Palmepublishopenopenfoie-gras-maison-au-poivre-de-penja-et-vin-de-palme2012-01-19 22:54:552012-01-19 21:54:550http://www.alicepegie.com/wordpress/wordpress/?p=3330post0
33212012-01-19 20:45:102012-01-19 19:45:10<p><img style="display: block; margin-left: auto; margin-right: auto;" alt="Caramel au Chocolat blanc" src="images/stories/Caramel%20choco/1.JPG" height="331" width="600" />Voici une recette de chocolat gourmant qui régalera les petits et les grands enfants! Simples et rapides à confectionner, ils sont également économiques et par dessus tout, délicieux!<hr id="system-readmore" /></p> <p><strong>pour 30 petits caramels env.<br /></strong></p> <ul> <li>100g de chocolat blanc</li> <li>125g de sucre</li> <li>165ml de crème liquide</li> <li>125g de glucose liquide</li> <li>½ cc de vanille en poudre</li> </ul> <p><strong>Préparation</strong></p> <ul> <li>Concassez le chocolat</li> </ul> <p><img style="display: block; margin-left: auto; margin-right: auto;" alt="6" src="images/stories/Caramel%20choco/6.JPG" height="450" width="600" /></p> <ul> <li>Mettez le sucre, la crème, le glucose et la vanille dans une casserole et portez le tout à ébullition.&nbsp;</li> </ul> <p><img alt="2" src="images/stories/Caramel%20choco/2.JPG" height="263" width="350" /><img alt="3" src="images/stories/Caramel%20choco/3.JPG" height="263" width="350" /></p> <ul> <li>Le mélange va épaissir. C’est prêt lorsqu’une goutte de la préparation jetée dans un verre d’eau froide se fige.</li> </ul> <p><img alt="4" src="images/stories/Caramel%20choco/4.JPG" height="263" width="350" /><img alt="5" src="images/stories/Caramel%20choco/5.JPG" height="263" width="350" /></p> <ul> <li>Retirez la casserole du feu et ajoutez le chocolat et le beurre, mélangez jusqu’à l’obtention d’une préparation lisse.</li> </ul> <p><img alt="7" src="images/stories/Caramel%20choco/7.JPG" height="263" width="350" /><img alt="8" src="images/stories/Caramel%20choco/8.JPG" height="263" width="350" /></p> <p><img alt="9" src="images/stories/Caramel%20choco/9.JPG" height="218" width="292" /><img alt="Caramel au Chocolat blanc" src="images/stories/Caramel%20choco/10.JPG" height="218" width="405" /></p> <ul> <li>Versez dans des moulez et laissez refroidir. Un vrai régal.</li> </ul> <p><img alt="Caramel au Chocolat blanc" src="images/stories/Caramel%20choco/11.JPG" height="224" width="376" /><img alt="Caramel au Chocolat blanc" src="images/stories/Caramel%20choco/12.JPG" height="224" width="320" /></p> <p><img style="display: block; margin-left: auto; margin-right: auto;" alt="Caramel au Chocolat blanc" src="images/stories/Caramel%20choco/13.JPG" height="700" width="600" /></p>Caramel au Chocolat blancinheritopenopen330-revision-22012-01-19 20:45:102012-01-19 19:45:10330http://www.alicepegie.com/wordpress/wordpress/?p=3320revision0
33412012-01-19 22:52:462012-01-19 21:52:46<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/19.JPG" alt="foie gras vin de palme" width="702" height="273" />Cette année, je me suis lancée dans la confection de foie gras maison. J’ai opté pour la cuisson vapeur que je trouve très simple, pas besoin de bocaux pour le conserver. J’ai testé le foie gras cru de canard du Sud-Ouest de Picard, vendu déveiné et un autre non déveiné Montfort qu’on m’avait offert. Les 2 sont très bon mais je me cantonnerais désormais à du déveiné car même si ce n’est pas difficile à déveiner, je n’aime pas le faire. J’ai suivi la recette donnée sure l’emballage du foie gras picard<!--more--><strong><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Pour un foie de 400g env :</span></strong> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">1  foie gras cru de canard de 400g environ déveiné ou non </span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">1cc bombée de sel fin</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">1/2cc de poivre blanc de penja fraichement moulu (ou un poivre de votre choix)</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">1 cs de vin de palme (le mien est pasteurisé) ou du porto</span></li> </ul> <strong><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Préparation:</span></strong> <strong><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">si votre foie n'est pas déveiné</span>, il vous faudra un petit couteau pointu </strong> <ul> <li style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Détaillez votre fois gras délicatement en plusieurs morceaux. Si certains morceaux sont retenus par une veine, ne les coupez pas.</span></li> </ul> <p style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/foie%20gras1/1.JPG" alt="1" width="303" height="288" /><img src="images/stories/foie%20gras1/2.JPG" alt="2" width="383" height="288" /> </span></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Pour chaque morceau obtenu, repérez les nerfs en ouvrant légèrement le foie et les enlever en tirant dessus. Ça part assez facilement. Soulevez les nerfs et/ou veines en suivant leur chemin tout en évitant de tout réduire en purée. Grattez les traces de sang restées après les veines/nerfs</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/3.JPG" alt="3" width="600" height="450" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Votre foie est prêt à être cuisiné.</span> &nbsp; <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Cuisine</strong> </span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Prenez le foie entre vos mains et tirez pour le couper en morceaux. Déposez-les dans un plat.</span></li> </ul> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Mélangez le sel, le poivre à e et le vin de palme ensemble. </span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/foie%20gras1/5.JPG" alt="5" width="350" height="263" /><img src="images/stories/foie%20gras1/6.JPG" alt="6" width="350" height="263" /></span> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/foie%20gras1/7.JPG" alt="7" width="237" height="348" /><img src="images/stories/foie%20gras1/8.JPG" alt="8" width="462" height="348" /></span> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Arrosez-en le foie.</span>Filmez et réservez pour au 8 à 12h réfrigérateur.</span> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/9.JPG" alt="9" width="600" height="450" /></span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">au bout de ce temps, sortez le foie 15 min à l’avance pour qu’il soit plus facile à manier.</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">emballez les morceaux de foie gras dans du film alimentaire supportant la cuisson et réalisez un cylindre.</span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/foie%20gras1/10.JPG" alt="10" width="333" height="251" /><img src="images/stories/foie%20gras1/13.JPG" alt="13" width="392" height="250" /> </span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Enroulez le cylindre obtenu dans un autre film alimentaire. Serrez bien et enroulez les extrémités.</span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/12.JPG" alt="12" width="600" height="490" /></span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">modelez-le ensuite pour lui donner une forme régulière. Dès que le boudin est régulier, enroulez-le de nouveau 3 ou 4 fois dans du film alimentaire en serrant bien.</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Terminez par deux couches de papier aluminium et remettez au frais pour 30mn env.</span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/14.JPG" alt="14" width="600" height="450" /> </span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Faites bouillir de l’eau et posez un panier dessus pour une cuisson à la vapeur. L’eau ne doit pas dépasser du panier</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Mettez le foie gras dans le panier et déposez-le dans la casserole d’eau bouillant. Couvrez et faites cuire 15 min à feu moyen.</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Laissez refroidir dans la casserole découverte.</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Lorsque le foie est refroidi mettez-le à reposer 24 heures min au réfrigérateur.</span></li> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Déballez-le et retirez l’excédent de gras.</span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/foie%20gras1/15.JPG" alt="15" width="600" height="416" /> </span> <ul> <li><span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Réservez-le au réfrigérateur dans du film plastique. Il se conserve ainsi 4 jours au réfrigérateur et plusieurs mois au congélateur.</span></li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/foie%20gras1/17.JPG" alt="foie gras vin de palme" width="350" height="240" /><img src="images/stories/foie%20gras1/18.JPG" alt="foie gras vin de palme" width="350" height="263" /></span> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;">Moi je fais de petits cylindres pour les conserver au congélateur, je ne décongèle ainsi que la quantité désirée. Si vous avez un grand cylindre découpez le en pavés avant les congeler.</span> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><img src="images/stories/foie%20gras1/20.JPG" alt="foie gras vin de palme" width="373" height="345" /><img src="images/stories/foie%20gras1/21.JPG" alt="foie gras vin de palme" width="280" height="347" /></span> &nbsp;Foie Gras Maison au Poivre de Penja et Vin de Palmeinheritopenopen333-revision2012-01-19 22:52:462012-01-19 21:52:46333http://www.alicepegie.com/wordpress/wordpress/?p=3340revision0
33512012-01-19 19:32:552012-01-19 18:32:55<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/bouch%C3%A9s%20foi%20gas/1.JPG" alt="1" width="600" height="488" />La semaine dernière je vous ai présente mon <strong><a href="index.php?option=com_content&amp;view=article&amp;id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&amp;catid=83:viande&amp;Itemid=475">foie gras maison au vin de palme et au poivre de Penja</a></strong>. Aujourd’hui je vous présente des bouchées appétitives mêlant notes sucrées et salées que vous pourrez sévir en entrée ou en apéros en plus c’est facile et rapide !<!--more--></span><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ingrédients pour 4 personnes:</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">160/180gr de <a href="index.php?option=com_content&amp;view=article&amp;id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&amp;catid=83:viande&amp;Itemid=475">foie gras maison au vin de palme et au poivre de Penja</a></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1 petite mangue pas trop mûre</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">2 bananes plantain mures mais ferme</span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation :</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Sortez le foie gras du réfrigérateur 20 minutes avant de le servir.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Coupez la tête et la queue des plantains et faites des trous puis griller les avec la peau pendant 20-30mn. </span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/bouch%C3%A9s%20foi%20gas/2.JPG" alt="2" width="600" height="563" /></span><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Epluchez la mangue, taillez-la en petit cercle. </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/3.JPG" alt="3" width="350" height="263" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/5.JPG" alt="5" width="350" height="263" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Taillez de même le foie gras.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/bouch%C3%A9s%20foi%20gas/4.JPG" alt="4" width="600" height="544" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Les plantains sont cuits laissez les refroidir puis découpez en rondelles avec la peau puis enlevez la peau.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/8.JPG" alt="8" width="351" height="263" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/9.JPG" alt="9" width="279" height="262" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Empoisonnez les tranches de foie gras entre celle de plantain et celle de mangue</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/10.JPG" alt="10" width="344" height="226" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/11.JPG" alt="11" width="356" height="226" /> </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Demain on poursuit le menu de Noël avec une salade de gambas sautées à l‘ananas</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/bouch%C3%A9s%20foi%20gas/12.JPG" alt="12" width="402" height="270" /><img src="images/stories/bouch%C3%A9s%20foi%20gas/13.JPG" alt="13" width="293" height="270" /></span>Bouchées de foie gras à la mangue & au plantain grilléinheritopenopen322-revision-22012-01-19 19:32:552012-01-19 18:32:55322http://www.alicepegie.com/wordpress/wordpress/?p=3350revision0
33612011-12-12 22:56:152011-12-12 21:56:15<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/1.JPG" alt="creme au beurre" width="600" height="450" />Samedi C’était l’anniversaire de ma doudou1.elle a eu 5ans et voulais un anniversaire de princesse alors j’ai décidé de lui faire un gâteau de princesse. Je n’avais pas envie de travailler la pate à sucre alors j’ai décidé de recouvrir mon gateau de crème au beurre. J’ai opté pour celle à la meringue suisse trouvée chez <a href="http://nothingbutmaybe.canalblog.com/archives/2011/04/15/20483448.html"><span style="color: #000000;">Nothingbutmaybe<!--more--></span></a><strong><em>Crème au beurre maison</em></strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">150 g de blanc d'oeufs (5 oeufs)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 130 g de sucre en poudre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 430 g de beurre à température ambiante, </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 2 càc d'arôme naturel de fraise</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> du colorant rouge</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 1 pincée de sel</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><strong><em>Le glaçage</em></strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">Dans un récipient résistant à la chaleur mélangez les blancs d'œufs, le sucre et le sel. Placez au dessus d'un bain-marie (le saladier ne dois pas toucher l'eau) et fouettez sans vous arrêtez jusqu'à ce que le sucre soit dissout et que la préparation soit chaude au toucher (70°C au thermomètre électronique, ça prend environ 5 minutes).</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/2.JPG" alt="2" width="600" height="451" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">Versez la préparation dans le bol de votre robot et battez la préparation à grande vitesse avec le fouet jusqu'à ce que la préparation refroidisse, il faut que la texture soit aérienne et la crème bien brillante (ce qui prend environ 10 minutes).</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/3.JPG" alt="3" width="600" height="450" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">incorporez le beurre à vitesse moyenne, un morceau à la fois. Une fois qu'il est bien incorporé, ajoutez éventuellement arômes et colorants, augmentez un peu la vitesse et continuez à fouetter pour environ 3 minutes. Raclez les bords du bol et fouettez 2 minutes à basse vitesse pour éliminer les bulles d'air.</span></li> </ul> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img src="images/stories/creme%20beurre/4.JPG" alt="4" width="350" height="263" /><img src="images/stories/creme%20beurre/5.JPG" alt="5" width="350" height="263" /></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">rajoutez le colorant besoin</span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img src="images/stories/creme%20beurre/6.JPG" alt="6" width="350" height="263" /><img src="images/stories/creme%20beurre/7.JPG" alt="7" width="350" height="263" /></span></p> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">La crème sert pour glacer gateaux et buches et se conserve de 6 à 8 semaines au congélateur ou une semaine au frigo dans une boite hermétique. Il suffira de la remmener à température ambiante et de la refouetter 5 minutes avant de l'utiliser.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img src="images/stories/creme%20beurre/8.JPG" alt="creme au beurre" width="363" height="485" /><img src="images/stories/creme%20beurre/9.JPG" alt="creme au beurre" width="322" height="484" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> </span>crème au beurre maisonpublishopenopencreme-au-beurre-maison2012-01-19 22:57:532012-01-19 21:57:530http://www.alicepegie.com/wordpress/wordpress/?p=3360post0
33712012-01-19 22:57:172012-01-19 21:57:17<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/1.JPG" alt="creme au beurre" width="600" height="450" />Samedi C’était l’anniversaire de ma doudou1.elle a eu 5ans et voulais un anniversaire de princesse alors j’ai décidé de lui faire un gâteau de princesse. Je n’avais pas envie de travailler la pate à sucre alors j’ai décidé de recouvrir mon gateau de crème au beurre. J’ai opté pour celle à la meringue suisse trouvée chez <a href="http://nothingbutmaybe.canalblog.com/archives/2011/04/15/20483448.html"><span style="color: #000000;">Nothingbutmaybe<!--more--></span></a><strong><em>Crème au beurre maison</em></strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">150 g de blanc d'oeufs (5 oeufs)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 130 g de sucre en poudre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 430 g de beurre à température ambiante, </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 2 càc d'arôme naturel de fraise</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> du colorant rouge</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 1 pincée de sel</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><strong><em>Le glaçage</em></strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">Dans un récipient résistant à la chaleur mélangez les blancs d'œufs, le sucre et le sel. Placez au dessus d'un bain-marie (le saladier ne dois pas toucher l'eau) et fouettez sans vous arrêtez jusqu'à ce que le sucre soit dissout et que la préparation soit chaude au toucher (70°C au thermomètre électronique, ça prend environ 5 minutes).</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/2.JPG" alt="2" width="600" height="451" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">Versez la préparation dans le bol de votre robot et battez la préparation à grande vitesse avec le fouet jusqu'à ce que la préparation refroidisse, il faut que la texture soit aérienne et la crème bien brillante (ce qui prend environ 10 minutes).</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/3.JPG" alt="3" width="600" height="450" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">incorporez le beurre à vitesse moyenne, un morceau à la fois. Une fois qu'il est bien incorporé, ajoutez éventuellement arômes et colorants, augmentez un peu la vitesse et continuez à fouetter pour environ 3 minutes. Raclez les bords du bol et fouettez 2 minutes à basse vitesse pour éliminer les bulles d'air.</span></li> </ul> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img src="images/stories/creme%20beurre/4.JPG" alt="4" width="350" height="263" /><img src="images/stories/creme%20beurre/5.JPG" alt="5" width="350" height="263" /></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">rajoutez le colorant besoin</span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img src="images/stories/creme%20beurre/6.JPG" alt="6" width="350" height="263" /><img src="images/stories/creme%20beurre/7.JPG" alt="7" width="350" height="263" /></span></p> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">La crème sert pour glacer gateaux et buches et se conserve de 6 à 8 semaines au congélateur ou une semaine au frigo dans une boite hermétique. Il suffira de la remmener à température ambiante et de la refouetter 5 minutes avant de l'utiliser.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img src="images/stories/creme%20beurre/8.JPG" alt="creme au beurre" width="363" height="485" /><img src="images/stories/creme%20beurre/9.JPG" alt="creme au beurre" width="322" height="484" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> </span>inheritopenopen336-revision2012-01-19 22:57:172012-01-19 21:57:17336http://www.alicepegie.com/wordpress/wordpress/?p=3370revision0
33812012-01-19 22:58:042012-01-19 21:58:04<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/1.JPG" alt="creme au beurre" width="600" height="450" />Samedi C’était l’anniversaire de ma doudou1.elle a eu 5ans et voulais un anniversaire de princesse alors j’ai décidé de lui faire un gâteau de princesse. Je n’avais pas envie de travailler la pate à sucre alors j’ai décidé de recouvrir mon gateau de crème au beurre. J’ai opté pour celle à la meringue suisse trouvée chez <a href="http://nothingbutmaybe.canalblog.com/archives/2011/04/15/20483448.html"><span style="color: #000000;">Nothingbutmaybe<!--more--></span></a><strong><em>Crème au beurre maison</em></strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">150 g de blanc d'oeufs (5 oeufs)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 130 g de sucre en poudre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 430 g de beurre à température ambiante, </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 2 càc d'arôme naturel de fraise</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> du colorant rouge</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> 1 pincée de sel</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><strong><em>Le glaçage</em></strong></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">Dans un récipient résistant à la chaleur mélangez les blancs d'œufs, le sucre et le sel. Placez au dessus d'un bain-marie (le saladier ne dois pas toucher l'eau) et fouettez sans vous arrêtez jusqu'à ce que le sucre soit dissout et que la préparation soit chaude au toucher (70°C au thermomètre électronique, ça prend environ 5 minutes).</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/2.JPG" alt="2" width="600" height="451" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">Versez la préparation dans le bol de votre robot et battez la préparation à grande vitesse avec le fouet jusqu'à ce que la préparation refroidisse, il faut que la texture soit aérienne et la crème bien brillante (ce qui prend environ 10 minutes).</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20beurre/3.JPG" alt="3" width="600" height="450" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">incorporez le beurre à vitesse moyenne, un morceau à la fois. Une fois qu'il est bien incorporé, ajoutez éventuellement arômes et colorants, augmentez un peu la vitesse et continuez à fouetter pour environ 3 minutes. Raclez les bords du bol et fouettez 2 minutes à basse vitesse pour éliminer les bulles d'air.</span></li> </ul> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img src="images/stories/creme%20beurre/4.JPG" alt="4" width="350" height="263" /><img src="images/stories/creme%20beurre/5.JPG" alt="5" width="350" height="263" /></span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">rajoutez le colorant besoin</span></p> <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img src="images/stories/creme%20beurre/6.JPG" alt="6" width="350" height="263" /><img src="images/stories/creme%20beurre/7.JPG" alt="7" width="350" height="263" /></span></p> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;">La crème sert pour glacer gateaux et buches et se conserve de 6 à 8 semaines au congélateur ou une semaine au frigo dans une boite hermétique. Il suffira de la remmener à température ambiante et de la refouetter 5 minutes avant de l'utiliser.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"><img src="images/stories/creme%20beurre/8.JPG" alt="creme au beurre" width="363" height="485" /><img src="images/stories/creme%20beurre/9.JPG" alt="creme au beurre" width="322" height="484" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> </span>crème au beurre maisoninheritopenopen336-autosave2012-01-19 22:58:042012-01-19 21:58:04336http://www.alicepegie.com/wordpress/wordpress/?p=3380revision0
33912011-12-07 22:58:232011-12-07 21:58:23<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brookies/SAM_0837.JPG" alt="brookies" width="600" height="356" /> <span style="font-family: 'Arial','sans-serif';">Les brookies, C'est une contraction de 2 mots : brownie qui en est la base et le cookie qui recouvre le brownie. Ca donne un gâteau très gourmand!<!--more--></span>Pour chacune des parties, j’ai utilisé ma recette habituelle. Celle-ci pour le brownie et celle-ci pour le cookie. Pour la cuisson, j’ai pris le temps de cuisson du brownie ce qui donne un cookie très croustillant. Voici la recette de mes brownies préférés. Une pâte au chocolat, délicieuse et moelleuse à souhait. <strong><span style="font-family: 'Arial','sans-serif';">Pour une douzaine de brookies env. </span></strong> <strong><span style="font-family: 'Arial','sans-serif';">La partie brownie <a href="ma-cuisine/desserts/111-gateaux/3051-brownies1">en détail et en image ici</a></span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">185g de beurre</span></li> <li><span style="font-family: 'Arial','sans-serif';">185g de chocolat noir</span></li> <li><span style="font-family: 'Arial','sans-serif';">85g de farine</span></li> <li><span style="font-family: 'Arial','sans-serif';">40g cacao en poudre</span></li> <li><span style="font-family: 'Arial','sans-serif';">3 œufs</span></li> <li><span style="font-family: 'Arial','sans-serif';">150g de sucre (pour moi vergeoise blonde)</span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Préparation</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Mettez le chocolat et le beurre dans un bol et faites fonder le tout au bain marie ou au micro-onde. Laissez refroidir.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Pendant ce temps, fouettez vigoureusement les œufs et le sucre pendant environ 5mn, jusqu’à ce que le tout double volume.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0767.JPG" alt="SAM 0767" width="NaN" height="263--" /><img src="images/stories/brookies/SAM_0768.JPG" alt="SAM 0768" width="350" height="263" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Rajoutez le mélange chocolaté dans les œufs et mélangez délicatement avec une Maryse ou une spatule en soulevant la pate.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Faites le jusqu’a ce que la préparation ait une couleur homogène.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Mélangez la farine et la poudre de cacao et tamisez le mélange sur la pate au chocolat.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0778.JPG" alt="SAM 0778" width="350" height="263" /><img src="images/stories/brookies/SAM_0780.JPG" alt="SAM 0780" width="350" height="263" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Mélangez à nouveau en soulevant la pate à la Maryse de manière à garder l’air emprisonné dans la pate.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Versez la pate des les moules ou dans un grand moules</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brookies/SAM_0790.JPG" alt="SAM 0790" width="600" height="451" /> </span> <strong><span style="font-family: 'Arial','sans-serif';">Pour les cookies <a href="index.php?option=com_content&amp;view=article&amp;id=2732:cookies-au-sucres-colores-et-vanille&amp;catid=111:gateaux&amp;Itemid=489">en détail et en image ici</a></span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">146g de farine</span></li> <li><span style="font-family: 'Arial','sans-serif';">1 pincée de levure chimique</span></li> <li><span style="font-family: 'Arial','sans-serif';">57g de beurre pommade</span></li> <li><span style="font-family: 'Arial','sans-serif';">100g sucre</span></li> <li><span style="font-family: 'Arial','sans-serif';">1/2cc sel</span></li> <li><span style="font-family: 'Arial','sans-serif';">1cc extrait de vanille</span></li> <li><span style="font-family: 'Arial','sans-serif';">1 œuf</span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Préparation</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Dans un bol mélangez la farine et la levure </span></li> <li><span style="font-family: 'Arial','sans-serif';">Mélangez ensuite le beurre et le sucre</span></li> <li><span style="font-family: 'Arial','sans-serif';">Rajoutez le sel, la vanille et l’œuf mélangez jusqu’à l’obtention d’une pate homogène.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0784.JPG" alt="SAM 0784" width="350" height="263" /><img src="images/stories/brookies/SAM_0785.JPG" alt="SAM 0785" width="350" height="263" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Rajoutez la farine et mélangez.</span></li> <li><span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0787.JPG" alt="SAM 0787" width="350" height="263" /><img src="images/stories/brookies/SAM_0789.JPG" alt="SAM 0789" width="350" height="263" /></span></li> <li><span style="font-family: 'Arial','sans-serif';">Couvrez la pate à brownie avec la pate à cookie.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0791.JPG" alt="SAM 0791" width="333" height="242" /><img src="images/stories/brookies/SAM_0792.JPG" alt="SAM 0792" width="368" height="243" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Préchauffez le four à 160°et faites cuire les gâteaux 25mn. laissez refroidir sur grill avant de déguster.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0830.JPG" alt="brookies" width="437" height="276" /><img src="images/stories/brookies/SAM_0832.JPG" alt="brookies" width="303" height="275" /></span> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brookies/SAM_0834.JPG" alt="brookies" width="600" height="319" /></span> &nbsp;Les brookiespublishopenopenles-brookies2012-01-19 22:59:532012-01-19 21:59:530http://www.alicepegie.com/wordpress/wordpress/?p=3390post0
34012012-01-19 22:59:012012-01-19 21:59:01<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brookies/SAM_0837.JPG" alt="brookies" width="600" height="356" /> <span style="font-family: 'Arial','sans-serif';">Les brookies, C'est une contraction de 2 mots : brownie qui en est la base et le cookie qui recouvre le brownie. Ca donne un gâteau très gourmand!<!--more--></span>Pour chacune des parties, j’ai utilisé ma recette habituelle. Celle-ci pour le brownie et celle-ci pour le cookie. Pour la cuisson, j’ai pris le temps de cuisson du brownie ce qui donne un cookie très croustillant. Voici la recette de mes brownies préférés. Une pâte au chocolat, délicieuse et moelleuse à souhait. <strong><span style="font-family: 'Arial','sans-serif';">Pour une douzaine de brookies env. </span></strong> <strong><span style="font-family: 'Arial','sans-serif';">La partie brownie <a href="ma-cuisine/desserts/111-gateaux/3051-brownies1">en détail et en image ici</a></span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">185g de beurre</span></li> <li><span style="font-family: 'Arial','sans-serif';">185g de chocolat noir</span></li> <li><span style="font-family: 'Arial','sans-serif';">85g de farine</span></li> <li><span style="font-family: 'Arial','sans-serif';">40g cacao en poudre</span></li> <li><span style="font-family: 'Arial','sans-serif';">3 œufs</span></li> <li><span style="font-family: 'Arial','sans-serif';">150g de sucre (pour moi vergeoise blonde)</span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Préparation</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Mettez le chocolat et le beurre dans un bol et faites fonder le tout au bain marie ou au micro-onde. Laissez refroidir.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Pendant ce temps, fouettez vigoureusement les œufs et le sucre pendant environ 5mn, jusqu’à ce que le tout double volume.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0767.JPG" alt="SAM 0767" width="NaN" height="263--" /><img src="images/stories/brookies/SAM_0768.JPG" alt="SAM 0768" width="350" height="263" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Rajoutez le mélange chocolaté dans les œufs et mélangez délicatement avec une Maryse ou une spatule en soulevant la pate.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Faites le jusqu’a ce que la préparation ait une couleur homogène.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Mélangez la farine et la poudre de cacao et tamisez le mélange sur la pate au chocolat.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0778.JPG" alt="SAM 0778" width="350" height="263" /><img src="images/stories/brookies/SAM_0780.JPG" alt="SAM 0780" width="350" height="263" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Mélangez à nouveau en soulevant la pate à la Maryse de manière à garder l’air emprisonné dans la pate.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Versez la pate des les moules ou dans un grand moules</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brookies/SAM_0790.JPG" alt="SAM 0790" width="600" height="451" /> </span> <strong><span style="font-family: 'Arial','sans-serif';">Pour les cookies <a href="index.php?option=com_content&amp;view=article&amp;id=2732:cookies-au-sucres-colores-et-vanille&amp;catid=111:gateaux&amp;Itemid=489">en détail et en image ici</a></span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">146g de farine</span></li> <li><span style="font-family: 'Arial','sans-serif';">1 pincée de levure chimique</span></li> <li><span style="font-family: 'Arial','sans-serif';">57g de beurre pommade</span></li> <li><span style="font-family: 'Arial','sans-serif';">100g sucre</span></li> <li><span style="font-family: 'Arial','sans-serif';">1/2cc sel</span></li> <li><span style="font-family: 'Arial','sans-serif';">1cc extrait de vanille</span></li> <li><span style="font-family: 'Arial','sans-serif';">1 œuf</span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Préparation</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Dans un bol mélangez la farine et la levure </span></li> <li><span style="font-family: 'Arial','sans-serif';">Mélangez ensuite le beurre et le sucre</span></li> <li><span style="font-family: 'Arial','sans-serif';">Rajoutez le sel, la vanille et l’œuf mélangez jusqu’à l’obtention d’une pate homogène.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0784.JPG" alt="SAM 0784" width="350" height="263" /><img src="images/stories/brookies/SAM_0785.JPG" alt="SAM 0785" width="350" height="263" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Rajoutez la farine et mélangez.</span></li> <li><span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0787.JPG" alt="SAM 0787" width="350" height="263" /><img src="images/stories/brookies/SAM_0789.JPG" alt="SAM 0789" width="350" height="263" /></span></li> <li><span style="font-family: 'Arial','sans-serif';">Couvrez la pate à brownie avec la pate à cookie.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0791.JPG" alt="SAM 0791" width="333" height="242" /><img src="images/stories/brookies/SAM_0792.JPG" alt="SAM 0792" width="368" height="243" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Préchauffez le four à 160°et faites cuire les gâteaux 25mn. laissez refroidir sur grill avant de déguster.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/brookies/SAM_0830.JPG" alt="brookies" width="437" height="276" /><img src="images/stories/brookies/SAM_0832.JPG" alt="brookies" width="303" height="275" /></span> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brookies/SAM_0834.JPG" alt="brookies" width="600" height="319" /></span> &nbsp;Les brookiesinheritopenopen339-revision2012-01-19 22:59:012012-01-19 21:59:01339http://www.alicepegie.com/wordpress/wordpress/?p=3400revision0
34112011-12-06 23:00:472011-12-06 22:00:47<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0845.JPG" alt="savon cuir" width="600" height="525" />Ce baume convient parfaitement Pour l'entretien et le nettoyage des cuirs sales et encrassés. Quand on a des enfants et des fauteuils en cuir blanc c'est pas évident tous les jours. J'ai souvent acheté des produits du commerce plutôt chers bien qu'éfficaces. et au fur et à mesure j'ai paufiner une petite recette pour un soin maison. Mon baume  Enlève lbien les taches  grasses tout en nourissant la peau.<!--more--></span><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingredients pour 500g env:</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de cire d’abeille </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">50g d'essence de terebenthine pure gemme</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">50g de vinaigre blanc</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">50g de savon de marseille ou de <a href="index.php?option=com_content&amp;view=article&amp;catid=132&amp;id=2682">Savon à lessive</a></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 50g d’huile végétale (arachide, tournesol.....)</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation:</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">mettez tous les ingredients sauf le vianaigre dans un bol et faites fondre le tout au bain marie</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0795.JPG" alt="SAM 0795" width="600" height="450" /> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">lorsque tout le préparation est liquide, sortez le bol du bain marie et mixez bien</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0797.JPG" alt="SAM 0797" width="600" height="450" /> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">mettez le bol dans un fond d'eau froide pour accelerer le refroidissement et mixez.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0798.JPG" alt="SAM 0798" width="600" height="450" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">dès que vous avez une texture crème épaisse,</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0799.JPG" alt="SAM 0799" width="600" height="450" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">rajoutez le vinaigre blanc et mélangez . la préparation se liquéfie laissez reposer 1h environ le temps qu'elle redevienne plus compacte.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0800.JPG" alt="SAM 0800" width="600" height="450" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">mixez de nouxeau pour avoir quelque chose d'homogène.mettez en pot. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0801.JPG" alt="SAM 0801" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Mode d'emploi</strong> : mouillez l’éponge puis la passer sur le Savon. Frottez uniformément la partie à nettoyer. Avec un chiffon qui ne peluche pas, ôtez le superflu. Lorsque le cuir est sec, polir avec un chiffon propre. Ensuite pour nourrir et raviver votre cuir, appliquez soit le <a href="index.php?option=com_content&amp;view=article&amp;catid=130&amp;id=2021">Baume Cuir</a>, soit avec le lait nourissant pour le cuir.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0839.JPG" alt="SAVON CUIR" width="600" height="659" /></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingredients</span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>La Cire d'abeille:</strong> Epaississant et agent de texture , il sert ici de durcisseur et d'agent filmogène.</span> <div> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>L'essence de térébenthine "pure gemme":</strong> est un solvant naturel produit exclusivement par distillation de la sève (gemme) du Pin des Landes. Elle est donc 100% naturelle. Elle permet  l'élimination des taches de graisse, cire, huile, alcool, cambouis ou goudron. et de nourrir  le cuir.</span> </div> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le vinaigre blanc:</strong> détache les cuirs</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>L'huile de tournesol</strong> est une huile dite "sèche", elle pénètre rapidement l'épiderme et ne laisse pas de sensation de gras après application. Très riche en vitamine E et en oméga-6, elle est adoucissante, antidéshydratante, nourrissante. Elle convient à tous les types de peau, et notamment aux peaux sèches et très sèches.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>L'huile d'arachide:</strong> Elle adoucit et nourrit les zones de la peau très sèches et elle soulage les brûlures superficielles de la peau. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0847.JPG" alt="savon cuir" width="600" height="554" /></strong></span> <strong> </strong>Baume Nettoyant & Détachant pour cuirpublishopenopenbaume-nettoyant-detachant-pour-cuir2012-01-19 23:02:062012-01-19 22:02:060http://www.alicepegie.com/wordpress/wordpress/?p=3410post0
34212012-01-19 23:01:242012-01-19 22:01:24<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0845.JPG" alt="savon cuir" width="600" height="525" />Ce baume convient parfaitement Pour l'entretien et le nettoyage des cuirs sales et encrassés. Quand on a des enfants et des fauteuils en cuir blanc c'est pas évident tous les jours. J'ai souvent acheté des produits du commerce plutôt chers bien qu'éfficaces. et au fur et à mesure j'ai paufiner une petite recette pour un soin maison. Mon baume  Enlève lbien les taches  grasses tout en nourissant la peau.<!--more--></span><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingredients pour 500g env:</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de cire d’abeille </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">50g d'essence de terebenthine pure gemme</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">50g de vinaigre blanc</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">50g de savon de marseille ou de <a href="index.php?option=com_content&amp;view=article&amp;catid=132&amp;id=2682">Savon à lessive</a></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 50g d’huile végétale (arachide, tournesol.....)</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation:</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">mettez tous les ingredients sauf le vianaigre dans un bol et faites fondre le tout au bain marie</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0795.JPG" alt="SAM 0795" width="600" height="450" /> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">lorsque tout le préparation est liquide, sortez le bol du bain marie et mixez bien</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0797.JPG" alt="SAM 0797" width="600" height="450" /> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">mettez le bol dans un fond d'eau froide pour accelerer le refroidissement et mixez.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0798.JPG" alt="SAM 0798" width="600" height="450" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">dès que vous avez une texture crème épaisse,</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0799.JPG" alt="SAM 0799" width="600" height="450" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">rajoutez le vinaigre blanc et mélangez . la préparation se liquéfie laissez reposer 1h environ le temps qu'elle redevienne plus compacte.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0800.JPG" alt="SAM 0800" width="600" height="450" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">mixez de nouxeau pour avoir quelque chose d'homogène.mettez en pot. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0801.JPG" alt="SAM 0801" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Mode d'emploi</strong> : mouillez l’éponge puis la passer sur le Savon. Frottez uniformément la partie à nettoyer. Avec un chiffon qui ne peluche pas, ôtez le superflu. Lorsque le cuir est sec, polir avec un chiffon propre. Ensuite pour nourrir et raviver votre cuir, appliquez soit le <a href="index.php?option=com_content&amp;view=article&amp;catid=130&amp;id=2021">Baume Cuir</a>, soit avec le lait nourissant pour le cuir.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0839.JPG" alt="SAVON CUIR" width="600" height="659" /></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingredients</span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>La Cire d'abeille:</strong> Epaississant et agent de texture , il sert ici de durcisseur et d'agent filmogène.</span> <div> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>L'essence de térébenthine "pure gemme":</strong> est un solvant naturel produit exclusivement par distillation de la sève (gemme) du Pin des Landes. Elle est donc 100% naturelle. Elle permet  l'élimination des taches de graisse, cire, huile, alcool, cambouis ou goudron. et de nourrir  le cuir.</span> </div> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le vinaigre blanc:</strong> détache les cuirs</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>L'huile de tournesol</strong> est une huile dite "sèche", elle pénètre rapidement l'épiderme et ne laisse pas de sensation de gras après application. Très riche en vitamine E et en oméga-6, elle est adoucissante, antidéshydratante, nourrissante. Elle convient à tous les types de peau, et notamment aux peaux sèches et très sèches.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>L'huile d'arachide:</strong> Elle adoucit et nourrit les zones de la peau très sèches et elle soulage les brûlures superficielles de la peau. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20cuir/SAM_0847.JPG" alt="savon cuir" width="600" height="554" /></strong></span> <strong> </strong>Baume Nettoyant & Détachant pour cuirinheritopenopen341-revision2012-01-19 23:01:242012-01-19 22:01:24341http://www.alicepegie.com/wordpress/wordpress/?p=3420revision0
34312011-12-05 23:02:472011-12-05 22:02:47<img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/1.JPG" alt="brownie AU CHOCOLAT" width="600" height="390" />Voici la recette de mes brownies préférés. Une pâte au chocolat, délicieuse et moelleuse à souhait. Pour une douzaine de brownies env. <ul> <li><!--more-->185g de beurre</li> </ul> <ul> <li>185g de chocolat noir</li> <li>85g de farine</li> <li>40g cacao en poudre</li> <li>3 œufs</li> <li>150g de sucre (pour moi vergeoise blonde)</li> </ul> <strong>Préparation</strong> <ul> <li>Mettez le chocolat et le beurre dans un bol et faites fonder le tout au bain marie ou au micro-onde. Laissez refroidir.</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/2.JPG" alt="BROWNIE1" width="600" height="450" />Préchauffez le four à 160°. Pendant ce temps, fouettez vigoureusement les oeufs et le sucre pendant environ 5mn, jusqu’à ce que le tout double volume. <img src="images/BROWNIE/3.JPG" alt="BROWNIE4" width="350" height="263" /><img src="images/BROWNIE/4.JPG" alt="brownie5" width="350" height="262" /> <ul> <li>Rajoutez le mélange chocolaté dans les œufs et mélangez délicatement avec une Maryse ou une spatule en soulevant la pate.</li> <li>Faites le jusqu’a ce que la préparation ait une couleur homogène.</li> </ul> <img src="images/BROWNIE/5.JPG" alt="5" width="351" height="263" /><img src="images/BROWNIE/6.JPG" alt="6" width="344" height="263" /> <ul> <li>Mélangez la farine et la poudre de cacao et tamisez le mélange sur la pate au chocolat.</li> </ul> <img src="images/BROWNIE/8.JPG" alt="8" width="351" height="263" /><img src="images/BROWNIE/10.JPG" alt="10" width="351" height="263" /> <ul> <li>Mélangez à nouveau en soulevant la pate à la Maryse de manière à garder l’ai emprisonné dans la pate.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/11.JPG" alt="11" width="570" height="427" />Versez la pate des les moules ou dans un grand moules</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/12.JPG" alt="brownies" width="600" height="358" /> <ul> <li>et laissez cuire 25-30mn</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/13.JPG" alt="brownies" width="600" height="402" /> <ul> <li>Dégustez !!</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/14.JPG" alt="brownie" width="600" height="335" /><img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/15.JPG" alt="brownie" width="600" height="476" />Brownies au chocolatpublishopenopenbrownies-au-chocolat2012-01-19 23:05:122012-01-19 22:05:120http://www.alicepegie.com/wordpress/wordpress/?p=3430post0
34412012-01-19 23:04:502012-01-19 22:04:50<img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/1.JPG" alt="brownie AU CHOCOLAT" width="600" height="390" />Voici la recette de mes brownies préférés. Une pâte au chocolat, délicieuse et moelleuse à souhait. Pour une douzaine de brownies env.<!--more-->185g de beurre <ul> <li>185g de chocolat noir</li> <li>85g de farine</li> <li>40g cacao en poudre</li> <li>3 œufs</li> <li>150g de sucre (pour moi vergeoise blonde)</li> </ul> <strong>Préparation</strong> <ul> <li>Mettez le chocolat et le beurre dans un bol et faites fonder le tout au bain marie ou au micro-onde. Laissez refroidir.</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/2.JPG" alt="BROWNIE1" width="600" height="450" />Préchauffez le four à 160°. Pendant ce temps, fouettez vigoureusement les oeufs et le sucre pendant environ 5mn, jusqu’à ce que le tout double volume. <img src="images/BROWNIE/3.JPG" alt="BROWNIE4" width="350" height="263" /><img src="images/BROWNIE/4.JPG" alt="brownie5" width="350" height="262" /> <ul> <li>Rajoutez le mélange chocolaté dans les œufs et mélangez délicatement avec une Maryse ou une spatule en soulevant la pate.</li> <li>Faites le jusqu’a ce que la préparation ait une couleur homogène.</li> </ul> <img src="images/BROWNIE/5.JPG" alt="5" width="351" height="263" /><img src="images/BROWNIE/6.JPG" alt="6" width="344" height="263" /> <ul> <li>Mélangez la farine et la poudre de cacao et tamisez le mélange sur la pate au chocolat.</li> </ul> <img src="images/BROWNIE/8.JPG" alt="8" width="351" height="263" /><img src="images/BROWNIE/10.JPG" alt="10" width="351" height="263" /> <ul> <li>Mélangez à nouveau en soulevant la pate à la Maryse de manière à garder l’ai emprisonné dans la pate.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/11.JPG" alt="11" width="570" height="427" />Versez la pate des les moules ou dans un grand moules</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/12.JPG" alt="brownies" width="600" height="358" /> <ul> <li>et laissez cuire 25-30mn</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/13.JPG" alt="brownies" width="600" height="402" /> <ul> <li>Dégustez !!</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/14.JPG" alt="brownie" width="600" height="335" /><img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/15.JPG" alt="brownie" width="600" height="476" />Brownies au chocolatinheritopenopen343-revision2012-01-19 23:04:502012-01-19 22:04:50343http://www.alicepegie.com/wordpress/wordpress/?p=3440revision0
34512012-01-19 23:07:592012-01-19 22:07:59<img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/1.JPG" alt="brownie AU CHOCOLAT" width="600" height="390" />Voici la recette de mes brownies préférés. Une pâte au chocolat, délicieuse et moelleuse à souhait. Pour une douzaine de brownies env. <ul> <li><!--more-->185g de beurre</li> </ul> <ul> <li>185g de chocolat noir</li> <li>85g de farine</li> <li>40g cacao en poudre</li> <li>3 œufs</li> <li>150g de sucre (pour moi vergeoise blonde)</li> </ul> <strong>Préparation</strong> <ul> <li>Mettez le chocolat et le beurre dans un bol et faites fonder le tout au bain marie ou au micro-onde. Laissez refroidir.</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/2.JPG" alt="BROWNIE1" width="600" height="450" />Préchauffez le four à 160°. Pendant ce temps, fouettez vigoureusement les oeufs et le sucre pendant environ 5mn, jusqu’à ce que le tout double volume. <img src="images/BROWNIE/3.JPG" alt="BROWNIE4" width="350" height="263" /><img src="images/BROWNIE/4.JPG" alt="brownie5" width="350" height="262" /> <ul> <li>Rajoutez le mélange chocolaté dans les œufs et mélangez délicatement avec une Maryse ou une spatule en soulevant la pate.</li> <li>Faites le jusqu’a ce que la préparation ait une couleur homogène.</li> </ul> <img src="images/BROWNIE/5.JPG" alt="5" width="351" height="263" /><img src="images/BROWNIE/6.JPG" alt="6" width="344" height="263" /> <ul> <li>Mélangez la farine et la poudre de cacao et tamisez le mélange sur la pate au chocolat.</li> </ul> <img src="images/BROWNIE/8.JPG" alt="8" width="351" height="263" /><img src="images/BROWNIE/10.JPG" alt="10" width="351" height="263" /> <ul> <li>Mélangez à nouveau en soulevant la pate à la Maryse de manière à garder l’ai emprisonné dans la pate.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/11.JPG" alt="11" width="570" height="427" />Versez la pate des les moules ou dans un grand moules</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/12.JPG" alt="brownies" width="600" height="358" /> <ul> <li>et laissez cuire 25-30mn</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/13.JPG" alt="brownies" width="600" height="402" /> <ul> <li>Dégustez !!</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/14.JPG" alt="brownie" width="600" height="335" /><img style="display: block; margin-left: auto; margin-right: auto;" src="images/BROWNIE/15.JPG" alt="brownie" width="600" height="476" />Brownies au chocolatinheritopenopen343-autosave2012-01-19 23:07:592012-01-19 22:07:59343http://www.alicepegie.com/wordpress/wordpress/?p=3450revision0
34612011-12-01 23:08:282011-12-01 22:08:28<p><strong><img style="display: block; margin-left: auto; margin-right: auto;" src="images/sida3.jpg" alt="sida3" width="600" height="400" /></strong></p> <p><strong>Aujourd’hui pas de recette. Nous sommes le 1<sup>er</sup> décembre 2011 et c’est la journée mondiale contre le sida.</strong></p> <p>Cette journée donne l’occasion à des personnes d’horizons divers de se rassembler pour mieux faire connaître le VIH/sida et pour montrer leur solidarité face à la pandémie.</p> <p><img style="float: left;" src="images/sida2.jpg" alt="sida2" width="192" height="263" />Cette journée permet à plusieurs partenaires publics et privés de donner des informations sur la situation concernant<img style="float: right;" src="images/sida1.jpeg" alt="sida1" width="200" height="200" /> la pandémie et de promouvoir la prévention, le traitement et la prise en charge du VIH/sida, dans les pays à forte prévalence mais aussi ailleurs.</p> <p>Entre 2011 et 2015, la Journée mondiale de lutte contre le sida aura pour thème «Objectif zéro: zéro nouvelle infection à VIH, zéro discrimination, zéro décès lié au sida».</p> <p>La campagne mondiale de lutte contre le sida, axée sur «zéro décès lié au sida», est à la fois une initiative pour un meilleur accès de tous au traitement, un appel lancé aux pouvoirs publics pour qu'ils agissent immédiatement et tiennent leurs engagements, par exemple ceux pris en vertu de la Déclaration d'Abuja, et un appel aux gouvernements africains afin qu’ils atteignent au moins les objectifs convenus en matière de dépenses nationales en faveur de la santé et contre le VIH, pour garantir le droit fondamental de tout être humain au meilleur niveau de soins de santé possible.</p> <p style="text-align: center;"><strong><span style="font-size: 12pt; color: #ff0000;">ALORS SORTEZ COUVERTS, IL RODE TOUJOURS!!</span></strong></p> Journée mondiale contre le SIDApublishopenopenjournee-mondiale-contre-le-sida2012-01-20 13:47:032012-01-20 12:47:030http://www.alicepegie.com/wordpress/wordpress/?p=3460post0
34712012-01-19 23:09:292012-01-19 22:09:29<strong><img style="display: block; margin-left: auto; margin-right: auto;" src="images/sida3.jpg" alt="sida3" width="600" height="400" /></strong> <strong>Aujourd’hui pas de recette. Nous sommes le 1<sup>er</sup> décembre 2011 et c’est la journée mondiale contre le sida.</strong> Cette journée donne l’occasion à des personnes d’horizons divers de se rassembler pour mieux faire connaître le VIH/sida et pour montrer leur solidarité face à la pandémie. <img style="float: left;" src="images/sida2.jpg" alt="sida2" width="192" height="263" />Cette journée permet à plusieurs partenaires publics et privés de donner des informations sur la situation concernant<img style="float: right;" src="images/sida1.jpeg" alt="sida1" width="200" height="200" /> la pandémie et de promouvoir la prévention, le traitement et la prise en charge du VIH/sida, dans les pays à forte prévalence mais aussi ailleurs. Entre 2011 et 2015, la Journée mondiale de lutte contre le sida aura pour thème «Objectif zéro: zéro nouvelle infection à VIH, zéro discrimination, zéro décès lié au sida». La campagne mondiale de lutte contre le sida, axée sur «zéro décès lié au sida», est à la fois une initiative pour un meilleur accès de tous au traitement, un appel lancé aux pouvoirs publics pour qu'ils agissent immédiatement et tiennent leurs engagements, par exemple ceux pris en vertu de la Déclaration d'Abuja, et un appel aux gouvernements africains afin qu’ils atteignent au moins les objectifs convenus en matière de dépenses nationales en faveur de la santé et contre le VIH, pour garantir le droit fondamental de tout être humain au meilleur niveau de soins de santé possible. <p style="text-align: center;"><strong><span style="font-size: 12pt; color: #ff0000;">ALORS SORTEZ COUVERTS, IL RODE TOUJOURS!!</span></strong></p>Journée mondiale contre le SIDAinheritopenopen346-revision2012-01-19 23:09:292012-01-19 22:09:29346http://www.alicepegie.com/wordpress/wordpress/?p=3470revision0
34812012-01-18 14:29:102012-01-18 13:29:10<div><img src="images/manulo.jpg" style="display: block; margin-left: auto; margin-right: auto;" border="0" height="603" width="600" /></div> <div> <p><em><strong><b></b><b><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Manulo|1||a{/nmap}</span></span></b></strong></em></p> </div>Manuloinheritopenopen187-revision-22012-01-18 14:29:102012-01-18 13:29:10187http://www.alicepegie.com/wordpress/wordpress/?p=3480revision0
34912012-01-19 23:13:362012-01-19 22:13:36<div><img style="display: block; margin-left: auto; margin-right: auto;" src="images/manulo.jpg" alt="" width="600" height="603" border="0" /></div> <div> <em><strong></strong><strong></strong><strong><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Manulo|1||a{/nmap}</span></span></strong></em> </div>Manuloinheritopenopen187-autosave2012-01-19 23:13:362012-01-19 22:13:36187http://www.alicepegie.com/wordpress/wordpress/?p=3490revision0
35012012-01-19 23:12:332012-01-19 22:12:33<div><img style="display: block; margin-left: auto; margin-right: auto;" src="images/manulo.jpg" alt="" width="600" height="603" border="0" /></div> <div> <em><strong></strong><strong></strong><strong><span style="font-size: 10pt;"><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|500|images/stories/audio/Manulo|1||a{/nmap}</span></span></strong></em> </div>Manuloinheritopenopen187-revision-32012-01-19 23:12:332012-01-19 22:12:33187http://www.alicepegie.com/wordpress/wordpress/?p=3500revision0
35112012-01-20 00:09:260000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-20 00:09:260000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=3510post0
35212012-01-20 00:20:042012-01-19 23:20:04 publishopenopen3522012-01-20 00:20:042012-01-19 23:20:040http://www.alicepegie.com/wordpress/wordpress/?p=3521nav_menu_item0
35312012-01-19 15:05:342012-01-19 14:05:34<h2><a title="Abonnez-Vous!!!" href="http://www.alicepegie.com/wordpress/wordpress/?p=288"><strong>Abonnez-Vous!!!!</strong></a></h2> <h3><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"> <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /> </a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /></a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /></a><strong></strong><strong></strong><strong><span style="color: #000000;">Newsletter <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a> <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a> <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;">RSS</span></a></span></strong></h3>Abonnez-Vous!!!inheritopenopen287-revision-152012-01-19 15:05:342012-01-19 14:05:34287http://www.alicepegie.com/wordpress/wordpress/?p=3530revision0
35412012-01-20 00:26:022012-01-19 23:26:02Mes recettes et mes articles vous plaisent ? Alors n’hésitez pas à vous abonner à ma newsletter afin de recevoir chaque semaine <strong>directement dans votre boite e-mail</strong>, la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! </strong>Il suffit pour cela de<strong> rentrer votre Adresse e-mail </strong>ci-dessous.<strong> </strong> <div class="wysija-register">YTo0OntzOjk6IndpZGdldF9pZCI7czoyMDoid3lzaWphLW5sLTEzMjcwMTY2NDkiO3M6NToibGlzdHMiO2E6MTp7aTowO3M6MToiMSI7fXM6Njoic3VibWl0IjtzOjExOiJKZSBtJ2Fib25uZSI7czo3OiJzdWNjZXNzIjtzOjIyOiJWb3VzIMOqdGVzIGFib25uw6koZSkhIjt9</div>Newsletterpublishopenopenrecherche2012-01-20 00:47:492012-01-19 23:47:490http://www.alicepegie.com/wordpress/wordpress/?page_id=3541page0
35512012-01-20 00:25:492012-01-19 23:25:49Rechercheinheritopenopen354-revision2012-01-20 00:25:492012-01-19 23:25:49354http://www.alicepegie.com/wordpress/wordpress/?p=3550revision0
35612012-01-20 00:47:102012-01-19 23:47:10Mes recettes et mes articles vous plaisent ? Alors n’hésitez pas à vous abonner à ma newsletter afin de recevoir chaque semaine <strong>directement dans votre boite e-mail</strong>, la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Il suffit pour cela de rentrer votre Adresse e-mal c </strong> <div class="wysija-register">YTo0OntzOjk6IndpZGdldF9pZCI7czoyMDoid3lzaWphLW5sLTEzMjcwMTY2NDkiO3M6NToibGlzdHMiO2E6MTp7aTowO3M6MToiMSI7fXM6Njoic3VibWl0IjtzOjExOiJKZSBtJ2Fib25uZSI7czo3OiJzdWNjZXNzIjtzOjIyOiJWb3VzIMOqdGVzIGFib25uw6koZSkhIjt9</div>Newsletterinheritopenopen354-autosave2012-01-20 00:47:102012-01-19 23:47:10354http://www.alicepegie.com/wordpress/wordpress/?p=3560revision0
36212012-01-20 00:46:072012-01-19 23:46:07Mes recettes et mes articles vous plaisent ? Alors n’hésitez pas à vous abonner à ma newsletter afin de recevoir chaque semaine <strong>directement dans votre boite e-mail</strong>, la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! </strong> <div class="wysija-register">YTo0OntzOjk6IndpZGdldF9pZCI7czoyMDoid3lzaWphLW5sLTEzMjcwMTY2NDkiO3M6NToibGlzdHMiO2E6MTp7aTowO3M6MToiMSI7fXM6Njoic3VibWl0IjtzOjExOiJKZSBtJ2Fib25uZSI7czo3OiJzdWNjZXNzIjtzOjIyOiJWb3VzIMOqdGVzIGFib25uw6koZSkhIjt9</div>Newsletterinheritopenopen354-revision-62012-01-20 00:46:072012-01-19 23:46:07354http://www.alicepegie.com/wordpress/wordpress/?p=3620revision0
36112012-01-20 00:37:362012-01-19 23:37:36<div id="wysija-2" class="art-box art-block widget widget_wysija"> <div class="art-box-body art-block-body"> <div class="art-bar art-blockheader"> Recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. <div class="wysija-register">YTo0OntzOjk6IndpZGdldF9pZCI7czoyMDoid3lzaWphLW5sLTEzMjcwMTU3MTkiO3M6NToibGlzdHMiO2E6MTp7aTowO3M6MToiMSI7fXM6Njoic3VibWl0IjtzOjI0OiJKZSBtJ2Fib25uZSBHcmF0dWl0ZW1lbnQiO3M6Nzoic3VjY2VzcyI7czoyMjoiVm91cyDDqnRlcyBhYm9ubsOpKGUpISI7fQ==</div> &nbsp; </div> <div class="art-box art-blockcontent"> <div class="art-box-body art-blockcontent-body"><script type="text/javascript" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/js/validate/languages/jquery.validationEngine-fr.js?ver=1">// < ![CDATA[ // < ![CDATA[ // < ![CDATA[ <script src="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/js/validate/jquery.validationEngine.js?ver=1" type="text/javascript"/> <link media="all" type="text/css" href="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/css/validationEngine.jquery.css?ver=3.3.1" id="validate-engine-css-css" rel="stylesheet"/> // ]]></script><script type="text/javascript">// < ![CDATA[ // < ![CDATA[ /* &lt;![CDATA[ */ var wysijaAJAX = {"action":"wysija_ajax","controller":"subscribers","ajaxurl":"http:\/\/www.alicepegie.com\/wordpress\/wordpress\/wp-admin\/admin-ajax.php","loadingTrans":"Loading...","wysilog":"1"}; /* ]]&gt; */ // ]]></script> <script type="text/javascript" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/js/front-subscribers.js?ver=1">// < ![CDATA[ // < ![CDATA[ // < ![CDATA[ <div class="wysija-msg ajax" id="msg-form-wysija-2"/> <form class="form-valid-sub" action="" method="post" id="form-wysija-2"> Recevez nos derniers articles directement par Mail. <input type="text" name="wysija[user][email]" class="validate[required,custom[email]]" id="form-wysija-2wysija-email"/> <input type="submit" value="Je m'abonne Gratuitement" name="submit" class="wysija-submit-field"/> <input type="hidden" value="form-wysija-2" name="formid"/> <input type="hidden" value="save" name="action"/> <input type="hidden" value="1" name="wysija[user_list][list_ids]"/> <input type="hidden" value="Vous êtes abonné(e)!" name="message_success"/> <input type="hidden" value="subscribers" name="controller"/> <input type="hidden" value="6b94fbbe5a" name="_wpnonce" id="_wpnonce"/> <input type="hidden" value="/wordpress/wordpress/?s=poi" name="_wp_http_referer"/> <input type="hidden" name="wysija-page" value="1"/> <input type="hidden" id="wysijax" value="e0e325ddba"/></form> <div class="cleared"/> // ]]></script></div> </div> <div class="cleared"></div> </div> </div> <div class="cleared"></div> // ]]&gt;Newsletterinheritopenopen354-revision-52012-01-20 00:37:362012-01-19 23:37:36354http://www.alicepegie.com/wordpress/wordpress/?p=3610revision0
35712012-01-20 00:26:022012-01-19 23:26:02<div class="art-box-body art-block-body"> <div class="art-box art-blockcontent"> <div class="art-box-body art-blockcontent-body"><form class="art-search" action="http://www.alicepegie.com/wordpress/wordpress/" method="get" name="searchform"> <div><input class="art-search-text" type="text" name="s" value="" /></div> <input class="art-search-button" type="submit" value="" /> </form> <div class="cleared"></div> </div> </div> <div class="cleared"></div> </div>Rechercheinheritopenopen354-revision-22012-01-20 00:26:022012-01-19 23:26:02354http://www.alicepegie.com/wordpress/wordpress/?p=3570revision0
36312012-01-20 00:50:520000-00-00 00:00:00<h1><a title="Abonnez-Vous!" href="http://www.alicepegie.com/wordpress/wordpress/?p=288"><strong>Abonnez-Vous!</strong></a></h1> <a href="http://www.alicepegie.com/wordpress/wordpress/?page_id=354"> <img class="alignnone size-full wp-image-219" title="newsletter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /> </a> <a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="40" height="40" /></a> <a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone wp-image-221" title="twitter" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="40" height="40" /> </a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone wp-image-222" title="rss" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="40" height="40" /> </a><strong><a title="Newsletter" href="http://www.alicepegie.com/wordpress/wordpress/?page_id=354"><span style="color: #000000;">Newsletter</span></a> <a title="Une Graine de Maniguette sur facebook" href="http://www.facebook.com/Alicepegie1"><span style="color: #000000;">Facebook</span></a> <a title="AlicePégie sur Twitter" href="https://twitter.com/#!/ALICEPEGIE"><span style="color: #000000;">Twitter</span></a> <a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?feed=rss2"><span style="color: #000000;">RSS</span></a></strong>draftopenopen2012-01-20 00:50:522012-01-19 23:50:520http://www.alicepegie.com/wordpress/wordpress/?page_id=3630page0
35812012-01-20 00:33:512012-01-19 23:33:51<div id="wysija-2" class="art-box art-block widget widget_wysija"> <div class="art-box-body art-block-body"> <div class="art-bar art-blockheader"> Recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. <div class="wysija-register">YTo0OntzOjk6IndpZGdldF9pZCI7czoyMDoid3lzaWphLW5sLTEzMjcwMTU3MTkiO3M6NToibGlzdHMiO2E6MTp7aTowO3M6MToiMSI7fXM6Njoic3VibWl0IjtzOjI0OiJKZSBtJ2Fib25uZSBHcmF0dWl0ZW1lbnQiO3M6Nzoic3VjY2VzcyI7czoyMjoiVm91cyDDqnRlcyBhYm9ubsOpKGUpISI7fQ==</div> &nbsp; </div> <div class="art-box art-blockcontent"> <div class="art-box-body art-blockcontent-body"><script type="text/javascript" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/js/validate/languages/jquery.validationEngine-fr.js?ver=1">// < ![CDATA[ <script src="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/js/validate/jquery.validationEngine.js?ver=1" type="text/javascript"/> <link media="all" type="text/css" href="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/css/validationEngine.jquery.css?ver=3.3.1" id="validate-engine-css-css" rel="stylesheet"/> </script><script type="text/javascript"> /* &lt;![CDATA[ */ var wysijaAJAX = {"action":"wysija_ajax","controller":"subscribers","ajaxurl":"http:\/\/www.alicepegie.com\/wordpress\/wordpress\/wp-admin\/admin-ajax.php","loadingTrans":"Loading...","wysilog":"1"}; /* ]]&gt; */ // ]]></script> <script type="text/javascript" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/js/front-subscribers.js?ver=1">// < ![CDATA[ <div class="wysija-msg ajax" id="msg-form-wysija-2"/> <form class="form-valid-sub" action="" method="post" id="form-wysija-2"> Recevez nos derniers articles directement par Mail. <input type="text" name="wysija[user][email]" class="validate[required,custom[email]]" id="form-wysija-2wysija-email"/> <input type="submit" value="Je m'abonne Gratuitement" name="submit" class="wysija-submit-field"/> <input type="hidden" value="form-wysija-2" name="formid"/> <input type="hidden" value="save" name="action"/> <input type="hidden" value="1" name="wysija[user_list][list_ids]"/> <input type="hidden" value="Vous êtes abonné(e)!" name="message_success"/> <input type="hidden" value="subscribers" name="controller"/><input type="hidden" value="6b94fbbe5a" name="_wpnonce" id="_wpnonce"/><input type="hidden" value="/wordpress/wordpress/?s=poi" name="_wp_http_referer"/><input type="hidden" name="wysija-page" value="1"/><input type="hidden" id="wysijax" value="e0e325ddba"/></form> <div class="cleared"/></script></div> </div> <div class="cleared"/></div> </div> <div class="cleared"/> // ]]> Newsletterinheritopenopen354-revision-32012-01-20 00:33:512012-01-19 23:33:51354http://www.alicepegie.com/wordpress/wordpress/?p=3580revision0
35912012-01-20 00:37:082012-01-19 23:37:08<div id="wysija-2" class="art-box art-block widget widget_wysija"> <div class="art-box-body art-block-body"> <div class="art-bar art-blockheader"> Recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. <div class="wysija-register">YTo0OntzOjk6IndpZGdldF9pZCI7czoyMDoid3lzaWphLW5sLTEzMjcwMTU3MTkiO3M6NToibGlzdHMiO2E6MTp7aTowO3M6MToiMSI7fXM6Njoic3VibWl0IjtzOjI0OiJKZSBtJ2Fib25uZSBHcmF0dWl0ZW1lbnQiO3M6Nzoic3VjY2VzcyI7czoyMjoiVm91cyDDqnRlcyBhYm9ubsOpKGUpISI7fQ==</div> &nbsp; </div> <div class="art-box art-blockcontent"> <div class="art-box-body art-blockcontent-body"><script type="text/javascript" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/js/validate/languages/jquery.validationEngine-fr.js?ver=1">// < ![CDATA[ // < ![CDATA[ <script src="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/js/validate/jquery.validationEngine.js?ver=1" type="text/javascript"/> <link media="all" type="text/css" href="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/css/validationEngine.jquery.css?ver=3.3.1" id="validate-engine-css-css" rel="stylesheet"/> // ]]></script><script type="text/javascript">// < ![CDATA[ /* &lt;![CDATA[ */ var wysijaAJAX = {"action":"wysija_ajax","controller":"subscribers","ajaxurl":"http:\/\/www.alicepegie.com\/wordpress\/wordpress\/wp-admin\/admin-ajax.php","loadingTrans":"Loading...","wysilog":"1"}; /* ]]&gt; */ // ]]></script> <script type="text/javascript" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/js/front-subscribers.js?ver=1">// < ![CDATA[ // < ![CDATA[ <div class="wysija-msg ajax" id="msg-form-wysija-2"/> <form class="form-valid-sub" action="" method="post" id="form-wysija-2"> Recevez nos derniers articles directement par Mail. <input type="text" name="wysija[user][email]" class="validate[required,custom[email]]" id="form-wysija-2wysija-email"/> <input type="submit" value="Je m'abonne Gratuitement" name="submit" class="wysija-submit-field"/> <input type="hidden" value="form-wysija-2" name="formid"/> <input type="hidden" value="save" name="action"/> <input type="hidden" value="1" name="wysija[user_list][list_ids]"/> <input type="hidden" value="Vous êtes abonné(e)!" name="message_success"/> <input type="hidden" value="subscribers" name="controller"/> <input type="hidden" value="6b94fbbe5a" name="_wpnonce" id="_wpnonce"/> <input type="hidden" value="/wordpress/wordpress/?s=poi" name="_wp_http_referer"/> <input type="hidden" name="wysija-page" value="1"/> <input type="hidden" id="wysijax" value="e0e325ddba"/></form> <div class="cleared"/> // ]]></script></div> </div> <div class="cleared"></div> </div> </div> <div class="cleared"></div> // ]]&gt;Newsletterinheritopenopen354-revision-42012-01-20 00:37:082012-01-19 23:37:08354http://www.alicepegie.com/wordpress/wordpress/?p=3590revision0
36012012-01-20 00:41:030000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-20 00:41:030000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?page_id=3600page0
36412012-01-20 00:52:510000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-20 00:52:510000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?page_id=3640page0
36512012-01-18 11:25:462012-01-18 10:25:46<span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><img style="float: left;" title="abakuya,268073.jpg" src="images/stories/abakuya.jpg" alt="abakuya" width="193" height="293" border="0" /></span></span></span> <span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';"> </span> <span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/centre_sud/abakuya|1||a{/nmap}</span> <!--more--> <strong></strong><strong>Un voyage rythmique redoutable. </strong> &nbsp; <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><span style="font-size: small;">Ab</span></span>akuya, la nouvelle mouvance tradi-urbaine venue du Cameroun... Les compositions d’Abakuya vont du conte, des musiques traditionnelles et des compositions puisés dans un folklore Fang, Beti, Bulu, Ntumu Mbidambani... Cette fusion parfois mi transe mi rock amène l’auditeur dans un voyage à travers le monde. Ce son si enchantant est issu d’une fusion d’instruments traditionnels, modernes, et improvisés ou acoustiques ; la basse, le violon, la voix, parfois une batterie, des percussions, le mvet, le ngomo, et d’autres encore… </span></span> &nbsp; <p style="text-align: justify;">La musique du groupe Abakuya est le résultat de recherches pour la réhabilitation des musiques traditionnelles polyphoniques d'Afrique centrale, en particulier l'Ekang et le Bal (à prononcer BÖL).</p> <p style="text-align: justify;">L'Ekang: Ce son sacré et enchanté est caractérisé par la diversité de ses mélodies, de ses harmonies et de ses rythmes complexes. Jouée par le Mvet, chanté par un (Mbom mvet), c'est une musique de transe qui emmène l'auditeur en voyage à travers le passé et le futur, en lui montrant toute la beauté du monde dans lequel nous vivons.</p> Le Bal (BÖL): Musique née vers le xve siècle. Un mélange d'accordéon (l'accordéon est un instrument venu par la mer; des Portugais et des Espagnols, premiers explorateurs... En ce temps là, les colons espagnols organisaient des bals dansants, auxquels les musiciens indigènes étaient invités. Curieux et déterminés, certains indigènes, après des échanges, réussirent à obtenir un accordéon. À leur tour, ils essayeront de faire plaisir aux colons en leur jouant leur répertoire. C'est là alors que l'histoire commence. &nbsp; <p style="text-align: justify;">Les africains organisent donc des bals dansants et invitent leurs amis européens. Et quand les Blancs arrivent dans ces bals organisés par des Africains, ils sont morts...</p> Morts parce que: Ils écoutent une musique surprenante, entraînante et emvoutante. Un mélange de langues (espagnole, portugaise, africaine) et de style... Le malentendu: Le Bal se dansait le samedi soir, et dimanche il y avait la messe. À un moment, les prêtres ont constaté que les églises étaient vides les dimanches, et même, que certains dimanches, à l’heure de midi, le tambour du BÖL résonnait encore. C'est pour cela que le BöL devint petit à petit l’ennemi de Dieu, de l’Église et ils commencèrent à condamner le BÖL. Des histoires racontent que le BÖL était si entraînant que certains prêtres le condamnaient le jour, mais assistaient à des BÖL entiers la nuit, en se déguisant. Le BÖL est une fête où se mêle bal masqué, bal royal... Donc le déguisement était autorisé... L'histoire raconte que les prêtres colons ont fini par maudir le BÖL... Les instruments et l’orchestre du BÖL: - le chanteur - l'orateur (animateur) - l'accordéon - le tambour - les maracasses Le groupe Abakuya joue le BÖL avec: - l'accordéon: François Marnier - le tambour, orateur, chanteur: François Essindi - le contre bassiste: Jimi Sofo - le violon: Melissa Cox La danse Böl: Orateur: Hi mobilimencement, animez les cinq coups! l'Assistance: Nous sommes ici pour animer la danse... Orateur: Kob étan! Les Eboxé: -Eboxé Mandjounga... -Eboxé bizimba bi maria... -Eboxé Kpwam-kpwam deux fois... Et d'autres encore... Abakuya est à la recherche d'une musique qui emporte l'auditeur dans un voyage à travers le passé et le futur, en lui montrant toute la beauté du monde dans lequel nous vivons. <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.concerts.fr/Biographie/abakuya">Source</a></span></p>Abakuyainheritopenopen70-revision-32012-01-18 11:25:462012-01-18 10:25:4670http://www.alicepegie.com/wordpress/wordpress/?p=3650revision0
36712012-01-20 01:23:352012-01-20 00:23:35Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="http://www.alicepegie.com/wordpress/wordpress/?page_id=354">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?page_id=354" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision-102012-01-20 01:23:352012-01-20 00:23:35288http://www.alicepegie.com/wordpress/wordpress/?p=3670revision0
36812012-01-20 01:23:352012-01-20 00:23:35Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="http://www.alicepegie.com/wordpress/wordpress/?page_id=354">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=219" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision-112012-01-20 01:23:352012-01-20 00:23:35288http://www.alicepegie.com/wordpress/wordpress/?p=3680revision0
36912012-01-20 01:24:172012-01-20 00:24:17Mes recettes et mes articles vous plaisent ? Alors n'hésitez pas à vous abonner afin de recevoir chaque semaine la liste des mes derniers articles! <strong>c’est gratuit</strong> et <strong>vous pouvez vous désabonner quand vous voulez ! Vous avez le choix entre:</strong> <a title="Newsletter" href="http://www.alicepegie.com/wordpress/wordpress/?page_id=354">La Newsletter</a><a href="http://www.alicepegie.com/wordpress/wordpress/?page_id=354" rel="attachment wp-att-219"><img class="alignnone size-full wp-image-219" title="news2" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg" alt="" width="48" height="37" /></a> Vous recevrez chaque semaine un résumé de mes articles et recettes directement dans votre boite e-mail. Pour vous abonner c'est <a href="index.php/2011-10-12-10-56-19/newsletter">ICI!</a> <a title="Facebook" href="http://www.facebook.com/Alicepegie1">Devenez fan de ma page Facebook</a><a title="facebook" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=220" rel="attachment wp-att-220"><img class="alignnone wp-image-220" title="facebook" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png" alt="" width="32" height="32" /></a> Vous aurez ainsi tous mes nouveaux articles sur votre mur Facebook. Vous pourrez ainsi les partager avec vos amis!!! Pour devenir fan,<a title="Facebook" href="http://www.facebook.com/Alicepegie1"> cliquez-ici</a> ! <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">Suivez-moi sur Twitter</a><a title="TWITTER" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=221" rel="attachment wp-att-221"><img class="alignnone size-full wp-image-221" title="twitter-icone-8387-321" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png" alt="" width="32" height="32" /></a> Vous serez informés à chaque fois que je publierais un nouvel article que vous pourrez partager ceux que vous préférés avec vos amis ! Pour me suivre <a title="twitter" href="http://twitter.com/#!/ALICEPEGIE">ICI!!</a> <a title="Flux Rss" href="index.php/accueil1/a-la-une?format=feed&amp;type=rss">Abonnement au flux RSS</a><a title="FLUX RSS ALICEPEGIE" href="http://www.alicepegie.com/wordpress/wordpress/?attachment_id=222" rel="attachment wp-att-222"><img class="alignnone size-full wp-image-222" title="rss-picto-flux-format-18-icone-6712-32" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png" alt="" width="32" height="32" /></a> Qui vous permettra de suivre en temps réel l’actualité de mon blog.Abonnez-Vous!!!inheritopenopen288-revision-122012-01-20 01:24:172012-01-20 00:24:17288http://www.alicepegie.com/wordpress/wordpress/?p=3690revision0
37012012-01-20 13:44:520000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-20 13:44:520000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=3700post0
37112012-01-19 23:10:072012-01-19 22:10:07<strong><img style="display: block; margin-left: auto; margin-right: auto;" src="images/sida3.jpg" alt="sida3" width="600" height="400" /></strong> <strong>Aujourd’hui pas de recette. Nous sommes le 1<sup>er</sup> décembre 2011 et c’est la journée mondiale contre le sida.</strong> Cette journée donne l’occasion à des personnes d’horizons divers de se rassembler pour mieux faire connaître le VIH/sida et pour montrer leur solidarité face à la pandémie. <img style="float: left;" src="images/sida2.jpg" alt="sida2" width="192" height="263" />Cette journée permet à plusieurs partenaires publics et privés de donner des informations sur la situation concernant<img style="float: right;" src="images/sida1.jpeg" alt="sida1" width="200" height="200" /> la pandémie et de promouvoir la prévention, le traitement et la prise en charge du VIH/sida, dans les pays à forte prévalence mais aussi ailleurs. Entre 2011 et 2015, la Journée mondiale de lutte contre le sida aura pour thème «Objectif zéro: zéro nouvelle infection à VIH, zéro discrimination, zéro décès lié au sida». La campagne mondiale de lutte contre le sida, axée sur «zéro décès lié au sida», est à la fois une initiative pour un meilleur accès de tous au traitement, un appel lancé aux pouvoirs publics pour qu'ils agissent immédiatement et tiennent leurs engagements, par exemple ceux pris en vertu de la Déclaration d'Abuja, et un appel aux gouvernements africains afin qu’ils atteignent au moins les objectifs convenus en matière de dépenses nationales en faveur de la santé et contre le VIH, pour garantir le droit fondamental de tout être humain au meilleur niveau de soins de santé possible. <p style="text-align: center;"><strong><span style="font-size: 12pt; color: #ff0000;">ALORS SORTEZ COUVERTS, IL RODE TOUJOURS!!</span></strong></p>Journée mondiale contre le SIDAinheritopenopen346-revision-22012-01-19 23:10:072012-01-19 22:10:07346http://www.alicepegie.com/wordpress/wordpress/?p=3710revision0
37212012-01-20 01:20:422012-01-20 00:20:42<span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><img style="float: left;" title="abakuya,268073.jpg" src="images/stories/abakuya.jpg" alt="abakuya" width="193" height="293" border="0" /></span></span></span> <span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';"> </span> <span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/centre_sud/abakuya|1||a{/nmap}</span> <!--more--> <strong></strong><strong>Un voyage rythmique redoutable. </strong> &nbsp; <span style="font-size: small;"><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><span style="font-size: small;">Ab</span></span>akuya, la nouvelle mouvance tradi-urbaine venue du Cameroun... Les compositions d’Abakuya vont du conte, des musiques traditionnelles et des compositions puisés dans un folklore Fang, Beti, Bulu, Ntumu Mbidambani... Cette fusion parfois mi transe mi rock amène l’auditeur dans un voyage à travers le monde. Ce son si enchantant est issu d’une fusion d’instruments traditionnels, modernes, et improvisés ou acoustiques ; la basse, le violon, la voix, parfois une batterie, des percussions, le mvet, le ngomo, et d’autres encore… </span></span> &nbsp; <p style="text-align: justify;">La musique du groupe Abakuya est le résultat de recherches pour la réhabilitation des musiques traditionnelles polyphoniques d'Afrique centrale, en particulier l'Ekang et le Bal (à prononcer BÖL).</p> <p style="text-align: justify;">L'Ekang: Ce son sacré et enchanté est caractérisé par la diversité de ses mélodies, de ses harmonies et de ses rythmes complexes. Jouée par le Mvet, chanté par un (Mbom mvet), c'est une musique de transe qui emmène l'auditeur en voyage à travers le passé et le futur, en lui montrant toute la beauté du monde dans lequel nous vivons.</p> Le Bal (BÖL): Musique née vers le xve siècle. Un mélange d'accordéon (l'accordéon est un instrument venu par la mer; des Portugais et des Espagnols, premiers explorateurs... En ce temps là, les colons espagnols organisaient des bals dansants, auxquels les musiciens indigènes étaient invités. Curieux et déterminés, certains indigènes, après des échanges, réussirent à obtenir un accordéon. À leur tour, ils essayeront de faire plaisir aux colons en leur jouant leur répertoire. C'est là alors que l'histoire commence. &nbsp; <p style="text-align: justify;">Les africains organisent donc des bals dansants et invitent leurs amis européens. Et quand les Blancs arrivent dans ces bals organisés par des Africains, ils sont morts...</p> Morts parce que: Ils écoutent une musique surprenante, entraînante et emvoutante. Un mélange de langues (espagnole, portugaise, africaine) et de style... Le malentendu: Le Bal se dansait le samedi soir, et dimanche il y avait la messe. À un moment, les prêtres ont constaté que les églises étaient vides les dimanches, et même, que certains dimanches, à l’heure de midi, le tambour du BÖL résonnait encore. C'est pour cela que le BöL devint petit à petit l’ennemi de Dieu, de l’Église et ils commencèrent à condamner le BÖL. Des histoires racontent que le BÖL était si entraînant que certains prêtres le condamnaient le jour, mais assistaient à des BÖL entiers la nuit, en se déguisant. Le BÖL est une fête où se mêle bal masqué, bal royal... Donc le déguisement était autorisé... L'histoire raconte que les prêtres colons ont fini par maudir le BÖL... Les instruments et l’orchestre du BÖL: - le chanteur - l'orateur (animateur) - l'accordéon - le tambour - les maracasses Le groupe Abakuya joue le BÖL avec: - l'accordéon: François Marnier - le tambour, orateur, chanteur: François Essindi - le contre bassiste: Jimi Sofo - le violon: Melissa Cox La danse Böl: Orateur: Hi mobilimencement, animez les cinq coups! l'Assistance: Nous sommes ici pour animer la danse... Orateur: Kob étan! Les Eboxé: -Eboxé Mandjounga... -Eboxé bizimba bi maria... -Eboxé Kpwam-kpwam deux fois... Et d'autres encore... Abakuya est à la recherche d'une musique qui emporte l'auditeur dans un voyage à travers le passé et le futur, en lui montrant toute la beauté du monde dans lequel nous vivons. <p style="text-align: justify;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.concerts.fr/Biographie/abakuya">Source</a></span></p>Abakuyainheritopenopen70-revision-42012-01-20 01:20:422012-01-20 00:20:4270http://www.alicepegie.com/wordpress/wordpress/?p=3720revision0
37312011-11-30 13:49:152011-11-30 12:49:15&nbsp; <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/1.JPG" alt="pate sablée" width="600" height="450" />Croustillante et bien sucrée, c'est la base des tartes des tartes sans cuisson type tarte aux fraises. Un peu comme  <a href="index.php?option=com_content&amp;view=article&amp;catid=118&amp;id=2796">La pâte Brisée </a>elle est simple et facile à réaliser. Vous pouvez même vous en servir pour faire des petits gâteaux aux enfants.<!--more--><strong>La recette</strong></span> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          250 g de farine</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          125 g de beurre mou en dés</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          1 œuf</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          110 g de sucre</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          1 pincée de sel</span></span></p> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Préparation :</strong></span> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          Mélangez, puis tamisez la farine, le sucre et le sel.</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/2.JPG" alt="2" width="600" height="531" /></span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          Ajoutez le beurre et sablez sans trop mélanger.</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/3.JPG" alt="3" width="600" height="450" /></span></span></p> <ul> <li style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-</span>    <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ajoutez l’œuf et mélangez à la main rapidement pour former une belle boule.</span></li> </ul> <img src="images/pate%20sab%C3%A9e/4.JPG" alt="4" width="403" height="303" /><img src="images/pate%20sab%C3%A9e/6.JPG" alt="6" width="312" height="305" /> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Emballez votre pate dans du film alimentaire et réserver 20 min au frais.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/7.JPG" alt="7" width="350" height="314" /> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Au bout de 30mn sortez la pate du frais et laissez là 10mn à température ambiante pour qu’elle se ramollisse un peu.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/7bis.JPG" alt="7bis" width="600" height="450" /></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Etalez là au rouleau et garnissez en vos moules. Pour une cuisson à blanc, laissez cuire 20 minutes à 180°C et garnir une fois refroidie.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/pate%20sab%C3%A9e/8.JPG" alt="pate sablée" width="380" height="280" /><img src="images/stories/pate%20brisee/brisee5.JPG" alt="sablée" width="336" height="281" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Vous pouvez aussi faire de petits biscuits à l’aide d’emporte pièces. Cuisson 10 à 15mn à 180°</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/pate%20sab%C3%A9e/10.JPG" alt="pate sablée" width="350" height="263" /><img src="images/pate%20sab%C3%A9e/12.JPG" alt="pate sablée" width="350" height="263" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Elle se conserve 48 h au frais ou bien surgelée (en bloc ou étalée puis enroulée).</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/15.JPG" alt="tarte aux fraise sablé" width="600" height="450" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Variez les plaisirs à l’aromatisant avec : du cacao; vanille, épices, café, rhum…..</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/14.JPG" alt="tarte aux fraise sablé" width="600" height="373" /> </span>La Pâte Sabléepublishopenopenla-pate-sablee2012-01-20 13:50:342012-01-20 12:50:340http://www.alicepegie.com/wordpress/wordpress/?p=3730post0
37412012-01-20 13:50:192012-01-20 12:50:19&nbsp; <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/1.JPG" alt="pate sablée" width="600" height="450" />Croustillante et bien sucrée, c'est la base des tartes des tartes sans cuisson type tarte aux fraises. Un peu comme  <a href="index.php?option=com_content&amp;view=article&amp;catid=118&amp;id=2796">La pâte Brisée </a>elle est simple et facile à réaliser. Vous pouvez même vous en servir pour faire des petits gâteaux aux enfants.<!--more--><strong>La recette</strong></span> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          250 g de farine</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          125 g de beurre mou en dés</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          1 œuf</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          110 g de sucre</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          1 pincée de sel</span></span></p> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Préparation :</strong></span> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          Mélangez, puis tamisez la farine, le sucre et le sel.</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/2.JPG" alt="2" width="600" height="531" /></span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-<span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;">          Ajoutez le beurre et sablez sans trop mélanger.</span></span></p> <p style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -moz-font-feature-settings: normal; -moz-font-language-override: normal;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/3.JPG" alt="3" width="600" height="450" /></span></span></p> <ul> <li style="text-indent: -18pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">-</span>    <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ajoutez l’œuf et mélangez à la main rapidement pour former une belle boule.</span></li> </ul> <img src="images/pate%20sab%C3%A9e/4.JPG" alt="4" width="403" height="303" /><img src="images/pate%20sab%C3%A9e/6.JPG" alt="6" width="312" height="305" /> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Emballez votre pate dans du film alimentaire et réserver 20 min au frais.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/7.JPG" alt="7" width="350" height="314" /> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Au bout de 30mn sortez la pate du frais et laissez là 10mn à température ambiante pour qu’elle se ramollisse un peu.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/7bis.JPG" alt="7bis" width="600" height="450" /></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Etalez là au rouleau et garnissez en vos moules. Pour une cuisson à blanc, laissez cuire 20 minutes à 180°C et garnir une fois refroidie.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/pate%20sab%C3%A9e/8.JPG" alt="pate sablée" width="380" height="280" /><img src="images/stories/pate%20brisee/brisee5.JPG" alt="sablée" width="336" height="281" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Vous pouvez aussi faire de petits biscuits à l’aide d’emporte pièces. Cuisson 10 à 15mn à 180°</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/pate%20sab%C3%A9e/10.JPG" alt="pate sablée" width="350" height="263" /><img src="images/pate%20sab%C3%A9e/12.JPG" alt="pate sablée" width="350" height="263" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Elle se conserve 48 h au frais ou bien surgelée (en bloc ou étalée puis enroulée).</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/15.JPG" alt="tarte aux fraise sablé" width="600" height="450" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Variez les plaisirs à l’aromatisant avec : du cacao; vanille, épices, café, rhum…..</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/pate%20sab%C3%A9e/14.JPG" alt="tarte aux fraise sablé" width="600" height="373" /> </span>inheritopenopen373-revision2012-01-20 13:50:192012-01-20 12:50:19373http://www.alicepegie.com/wordpress/wordpress/?p=3740revision0
37512011-11-29 13:50:482011-11-29 12:50:48<img style="display: block; margin-left: auto; margin-right: auto;" src="images/alepcoco/SAM_0690.JPG" alt="alep maison" width="356" height="400" />Et pour finir avec la gamme coco, un savon au macérât de feuilles de laurier dans de l’huile d’olive j’ai rajouté du lait de coco en poudre pour une douceur extrême.J'ai coloré une petite partie de la pate en vert.<!--more--><strong>Pour 6 savons de 80g env. :</strong> <ul> <li>80g d’huile végétale de coco</li> <li>300g de macérât de feuilles de laurier dans olive</li> <li>50g de lait de coco en poudre</li> <li>Soude et eau calculés pour un surgraissage à 8%</li> </ul> <strong>Préparation :</strong> <ul> <li>Pesez et mélangez vos huiles.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/alepcoco/SAM_0580.JPG" alt="SAM 0580" width="472" height="400" /></li> <li>Préparez votre lessive de soude à mélangeant eau et soude jusqu’à ce que tous les cristaux de soude soient dissous.</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/alepcoco/SAM_0581.JPG" alt="SAM 0581" width="533" height="400" /> <ul> <li>Versez la lessive de soude dans les huiles et mélangez jusqu’à ce que toutes les huiles soient liquides.</li> </ul> <img src="images/alepcoco/SAM_0583.JPG" alt="SAM 0583" width="350" height="263" /><img src="images/alepcoco/SAM_0584.JPG" alt="SAM 0584" width="350" height="263" /> <ul> <li>Rajoutez la poudre de lait de coco Mixez jusqu’à obtention d’une timide trace (c’est long j’en ai eu pour 6mn env.)</li> </ul> <img src="images/alepcoco/SAM_0586.JPG" alt="SAM 0586" width="350" height="263" /><img src="images/alepcoco/SAM_0588.JPG" alt="SAM 0588" width="350" height="263" /> <img src="images/alepcoco/SAM_0589.JPG" alt="SAM 0589" width="350" height="263" /><img src="images/alepcoco/SAM_0590.JPG" alt="SAM 0590" width="350" height="263" /> <ul> <li>Versez dans les moules, laissez durcir et attendre 3 semaines pour utilisation.</li> </ul> <img src="images/alepcoco/SAM_0594.JPG" alt="SAM 0594" width="366" height="210" /><img src="images/alepcoco/SAM_0671.JPG" alt="SAM 0671" width="328" height="209" /> <img src="images/alepcoco/SAM_0678.JPG" alt="SAM 0678" width="419" height="304" /><img src="images/alepcoco/SAM_0679.JPG" alt="SAM 0679" width="277" height="305" />Savon Alep-Cocopublishopenopensavon-alep-coco2012-01-20 13:53:002012-01-20 12:53:000http://www.alicepegie.com/wordpress/wordpress/?p=3750post0
37612012-01-20 13:50:552012-01-20 12:50:55Savon Alep-Cocoinheritopenopen375-revision2012-01-20 13:50:552012-01-20 12:50:55375http://www.alicepegie.com/wordpress/wordpress/?p=3760revision0
37712012-01-20 13:52:522012-01-20 12:52:52<img style="display: block; margin-left: auto; margin-right: auto;" src="images/alepcoco/SAM_0690.JPG" alt="alep maison" width="356" height="400" />Et pour finir avec la gamme coco, un savon au macérât de feuilles de laurier dans de l’huile d’olive j’ai rajouté du lait de coco en poudre pour une douceur extrême.J'ai coloré une petite partie de la pate en vert.<!--more--><strong>Pour 6 savons de 80g env. :</strong> <ul> <li>80g d’huile végétale de coco</li> <li>300g de macérât de feuilles de laurier dans olive</li> <li>50g de lait de coco en poudre</li> <li>Soude et eau calculés pour un surgraissage à 8%</li> </ul> <strong>Préparation :</strong> <ul> <li>Pesez et mélangez vos huiles.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/alepcoco/SAM_0580.JPG" alt="SAM 0580" width="472" height="400" /></li> <li>Préparez votre lessive de soude à mélangeant eau et soude jusqu’à ce que tous les cristaux de soude soient dissous.</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/alepcoco/SAM_0581.JPG" alt="SAM 0581" width="533" height="400" /> <ul> <li>Versez la lessive de soude dans les huiles et mélangez jusqu’à ce que toutes les huiles soient liquides.</li> </ul> <img src="images/alepcoco/SAM_0583.JPG" alt="SAM 0583" width="350" height="263" /><img src="images/alepcoco/SAM_0584.JPG" alt="SAM 0584" width="350" height="263" /> <ul> <li>Rajoutez la poudre de lait de coco Mixez jusqu’à obtention d’une timide trace (c’est long j’en ai eu pour 6mn env.)</li> </ul> <img src="images/alepcoco/SAM_0586.JPG" alt="SAM 0586" width="350" height="263" /><img src="images/alepcoco/SAM_0588.JPG" alt="SAM 0588" width="350" height="263" /> <img src="images/alepcoco/SAM_0589.JPG" alt="SAM 0589" width="350" height="263" /><img src="images/alepcoco/SAM_0590.JPG" alt="SAM 0590" width="350" height="263" /> <ul> <li>Versez dans les moules, laissez durcir et attendre 3 semaines pour utilisation.</li> </ul> <img src="images/alepcoco/SAM_0594.JPG" alt="SAM 0594" width="366" height="210" /><img src="images/alepcoco/SAM_0671.JPG" alt="SAM 0671" width="328" height="209" /> <img src="images/alepcoco/SAM_0678.JPG" alt="SAM 0678" width="419" height="304" /><img src="images/alepcoco/SAM_0679.JPG" alt="SAM 0679" width="277" height="305" />Savon Alep-Cocoinheritopenopen375-autosave2012-01-20 13:52:522012-01-20 12:52:52375http://www.alicepegie.com/wordpress/wordpress/?p=3770revision0
37812012-01-20 13:51:482012-01-20 12:51:48<img style="display: block; margin-left: auto; margin-right: auto;" src="images/alepcoco/SAM_0690.JPG" alt="alep maison" width="356" height="400" />Et pour finir avec la gamme coco, un savon au macérât de feuilles de laurier dans de l’huile d’olive j’ai rajouté du lait de coco en poudre pour une douceur extrême.J'ai coloré une petite partie de la pate en vert.<!--more--><strong>Pour 6 savons de 80g env. :</strong> <ul> <li>80g d’huile végétale de coco</li> <li>300g de macérât de feuilles de laurier dans olive</li> <li>50g de lait de coco en poudre</li> <li>Soude et eau calculés pour un surgraissage à 8%</li> </ul> <strong>Préparation :</strong> <ul> <li>Pesez et mélangez vos huiles.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/alepcoco/SAM_0580.JPG" alt="SAM 0580" width="472" height="400" /></li> <li>Préparez votre lessive de soude à mélangeant eau et soude jusqu’à ce que tous les cristaux de soude soient dissous.</li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/alepcoco/SAM_0581.JPG" alt="SAM 0581" width="533" height="400" /> <ul> <li>Versez la lessive de soude dans les huiles et mélangez jusqu’à ce que toutes les huiles soient liquides.</li> </ul> <img src="images/alepcoco/SAM_0583.JPG" alt="SAM 0583" width="350" height="263" /><img src="images/alepcoco/SAM_0584.JPG" alt="SAM 0584" width="350" height="263" /> <ul> <li>Rajoutez la poudre de lait de coco Mixez jusqu’à obtention d’une timide trace (c’est long j’en ai eu pour 6mn env.)</li> </ul> <img src="images/alepcoco/SAM_0586.JPG" alt="SAM 0586" width="350" height="263" /><img src="images/alepcoco/SAM_0588.JPG" alt="SAM 0588" width="350" height="263" /> <img src="images/alepcoco/SAM_0589.JPG" alt="SAM 0589" width="350" height="263" /><img src="images/alepcoco/SAM_0590.JPG" alt="SAM 0590" width="350" height="263" /> <ul> <li>Versez dans les moules, laissez durcir et attendre 3 semaines pour utilisation.</li> </ul> <img src="images/alepcoco/SAM_0594.JPG" alt="SAM 0594" width="366" height="210" /><img src="images/alepcoco/SAM_0671.JPG" alt="SAM 0671" width="328" height="209" /> <img src="images/alepcoco/SAM_0678.JPG" alt="SAM 0678" width="419" height="304" /><img src="images/alepcoco/SAM_0679.JPG" alt="SAM 0679" width="277" height="305" />Savon Alep-Cocoinheritopenopen375-revision-22012-01-20 13:51:482012-01-20 12:51:48375http://www.alicepegie.com/wordpress/wordpress/?p=3780revision0
37912011-10-28 13:53:052011-10-28 12:53:05<span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/confiture%20figues/1.JPG" alt="confitue figues" width="600" height="573" />La figue de Barbarie j’en ai souvent vu au marché, je connais l’huile végétale mais le fruit ne m’avait jamais inspiré. Jusqu’à ce qu’une copine marocaine me fasse goutter sa confiture de figue. Ca change de la confiture de fraise, et j’ai une fois encore choisi de l’aromatiser au gingembre :<!--more--></span><strong><span style="font-family: 'Arial','sans-serif';">Ingrédients pour 200g env.:</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">4 figues de barbarie soit 180g de coulis</span></li> <li><span style="font-family: 'Arial','sans-serif';">Le même volume de sucre que le coulis de fruit en sucre (soit 180g)</span></li> <li><span style="font-family: 'Arial','sans-serif';">1cc de gingembre en poudre </span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Préparation:</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Lavez et épluchez les figues, puis coupez-les en morceaux.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/2.JPG" alt="2" width="397" height="278" /><img src="images/confiture%20figues/3.JPG" alt="3" width="270" height="278" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Mixez et filtrez le tout pour en extraire le coulis.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/4.JPG" alt="4" width="350" height="263" /><img src="images/confiture%20figues/5.JPG" alt="5" width="325" height="260" /></span> <span style="font-family: 'Arial','sans-serif';">Versez le coulis et le sucre dans une terrine, rajoutez le gingembre en poudre. </span> <ul> <li><span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/6.JPG" alt="6" width="337" height="253" /><img src="images/confiture%20figues/7.JPG" alt="7" width="338" height="254" /></span></li> <li><span style="font-family: 'Arial','sans-serif';">Laissez macérer l'ensemble à température ambiante jusqu’à ce que le sucre soit complètement dissous. </span></li> <li><span style="font-family: 'Arial','sans-serif';">Versez le mélange dans une casserole et, portez le tout à ébullition et laissez cuire sur feu vif pendant 10 minutes, en mélangeant fréquemment et délicatement afin que ca n'attache pas au fond de la casserole. </span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/8.JPG" alt="8" width="325" height="246" /><img src="images/confiture%20figues/9.JPG" alt="9" width="379" height="247" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Vérifiez la cuisson : un peu de confiture déposée sur une assiette froide doit se figer rapidement. Retirez alors la casserole. </span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/10.JPG" alt="confiture de figues" width="285" height="247" /><img src="images/confiture%20figues/11.JPG" alt="confiture de figues" width="421" height="247" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Mettez alors en pots.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/confiture%20figues/12.JPG" alt="confiture figues" width="600" height="412" /> </span>Confiture de Figues de Barbarie au Gingembrepublishopenopenconfiture-de-figues-de-barbarie-au-gingembre2012-01-20 13:54:212012-01-20 12:54:210http://www.alicepegie.com/wordpress/wordpress/?p=3790post0
38012012-01-20 13:54:082012-01-20 12:54:08<span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/confiture%20figues/1.JPG" alt="confitue figues" width="600" height="573" />La figue de Barbarie j’en ai souvent vu au marché, je connais l’huile végétale mais le fruit ne m’avait jamais inspiré. Jusqu’à ce qu’une copine marocaine me fasse goutter sa confiture de figue. Ca change de la confiture de fraise, et j’ai une fois encore choisi de l’aromatiser au gingembre :<!--more--></span><strong><span style="font-family: 'Arial','sans-serif';">Ingrédients pour 200g env.:</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">4 figues de barbarie soit 180g de coulis</span></li> <li><span style="font-family: 'Arial','sans-serif';">Le même volume de sucre que le coulis de fruit en sucre (soit 180g)</span></li> <li><span style="font-family: 'Arial','sans-serif';">1cc de gingembre en poudre </span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Préparation:</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Lavez et épluchez les figues, puis coupez-les en morceaux.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/2.JPG" alt="2" width="397" height="278" /><img src="images/confiture%20figues/3.JPG" alt="3" width="270" height="278" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Mixez et filtrez le tout pour en extraire le coulis.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/4.JPG" alt="4" width="350" height="263" /><img src="images/confiture%20figues/5.JPG" alt="5" width="325" height="260" /></span> <span style="font-family: 'Arial','sans-serif';">Versez le coulis et le sucre dans une terrine, rajoutez le gingembre en poudre. </span> <ul> <li><span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/6.JPG" alt="6" width="337" height="253" /><img src="images/confiture%20figues/7.JPG" alt="7" width="338" height="254" /></span></li> <li><span style="font-family: 'Arial','sans-serif';">Laissez macérer l'ensemble à température ambiante jusqu’à ce que le sucre soit complètement dissous. </span></li> <li><span style="font-family: 'Arial','sans-serif';">Versez le mélange dans une casserole et, portez le tout à ébullition et laissez cuire sur feu vif pendant 10 minutes, en mélangeant fréquemment et délicatement afin que ca n'attache pas au fond de la casserole. </span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/8.JPG" alt="8" width="325" height="246" /><img src="images/confiture%20figues/9.JPG" alt="9" width="379" height="247" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Vérifiez la cuisson : un peu de confiture déposée sur une assiette froide doit se figer rapidement. Retirez alors la casserole. </span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/10.JPG" alt="confiture de figues" width="285" height="247" /><img src="images/confiture%20figues/11.JPG" alt="confiture de figues" width="421" height="247" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Mettez alors en pots.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/confiture%20figues/12.JPG" alt="confiture figues" width="600" height="412" /> </span>Confiture de Figues de Barbarie au Gingembreinheritopenopen379-revision2012-01-20 13:54:082012-01-20 12:54:08379http://www.alicepegie.com/wordpress/wordpress/?p=3800revision0
38112012-01-20 13:55:402012-01-20 12:55:40<span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/confiture%20figues/1.JPG" alt="confitue figues" width="600" height="573" />La figue de Barbarie j’en ai souvent vu au marché, je connais l’huile végétale mais le fruit ne m’avait jamais inspiré. Jusqu’à ce qu’une copine marocaine me fasse goutter sa confiture de figue. Ca change de la confiture de fraise, et j’ai une fois encore choisi de l’aromatiser au gingembre :<!--more--></span><strong><span style="font-family: 'Arial','sans-serif';">Ingrédients pour 200g env.:</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">4 figues de barbarie soit 180g de coulis</span></li> <li><span style="font-family: 'Arial','sans-serif';">Le même volume de sucre que le coulis de fruit en sucre (soit 180g)</span></li> <li><span style="font-family: 'Arial','sans-serif';">1cc de gingembre en poudre </span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Préparation:</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Lavez et épluchez les figues, puis coupez-les en morceaux.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/2.JPG" alt="2" width="397" height="278" /><img src="images/confiture%20figues/3.JPG" alt="3" width="270" height="278" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Mixez et filtrez le tout pour en extraire le coulis.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/4.JPG" alt="4" width="350" height="263" /><img src="images/confiture%20figues/5.JPG" alt="5" width="325" height="260" /></span> <span style="font-family: 'Arial','sans-serif';">Versez le coulis et le sucre dans une terrine, rajoutez le gingembre en poudre. </span> <ul> <li><span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/6.JPG" alt="6" width="337" height="253" /><img src="images/confiture%20figues/7.JPG" alt="7" width="338" height="254" /></span></li> <li><span style="font-family: 'Arial','sans-serif';">Laissez macérer l'ensemble à température ambiante jusqu’à ce que le sucre soit complètement dissous. </span></li> <li><span style="font-family: 'Arial','sans-serif';">Versez le mélange dans une casserole et, portez le tout à ébullition et laissez cuire sur feu vif pendant 10 minutes, en mélangeant fréquemment et délicatement afin que ca n'attache pas au fond de la casserole. </span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/8.JPG" alt="8" width="325" height="246" /><img src="images/confiture%20figues/9.JPG" alt="9" width="379" height="247" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Vérifiez la cuisson : un peu de confiture déposée sur une assiette froide doit se figer rapidement. Retirez alors la casserole. </span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/confiture%20figues/10.JPG" alt="confiture de figues" width="285" height="247" /><img src="images/confiture%20figues/11.JPG" alt="confiture de figues" width="421" height="247" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Mettez alors en pots.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/confiture%20figues/12.JPG" alt="confiture figues" width="600" height="412" /> </span>Confiture de Figues de Barbarie au Gingembreinheritopenopen379-autosave2012-01-20 13:55:402012-01-20 12:55:40379http://www.alicepegie.com/wordpress/wordpress/?p=3810revision0
38212007-01-27 13:55:502007-01-27 12:55:50<p style="line-height: normal;"><strong></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Le site internet <strong>Une Graine de Maniguette</strong> est un blog personnel, régie par les conditions suivantes.</span></p> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Propriété intellectuelle</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">L'ensemble du contenu publié par alicepegie.com, les images diffusées, logos et textes contenus sur le site ne peuvent être reproduits sans mon autorisation écrite.</span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Je reste la <strong>seule détentrice </strong>des droits d'auteurs sur le contenu et les photos que je publie, par l'intermédiaire de cet espace. <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Tout autre contenu ne m’appartenant pas : photos, textes, images, logos, noms de produits ou marques citées…, sera explicitement désigné et reste la propriété de leurs détenteurs.</span></span></p> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">La modération des commentaires du blog</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Les commentaires et trackbacks/pingback de ce blog sont modérés à priori. Tout commentaire ou trackback/pingback correspondants à au moins l’un des critères ci-dessous ne seront pas publiés:</span></p> <ul> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">diffamatoires, racistes, pornographiques, pédophiles, incitant à délit, crimes ou suicides,…</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">reproduisant une correspondance privée sans l’accord des personnes concernées,</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Commentaires visant uniquement à mettre en ligne un lien vers un site extérieur (spam de commentaires ou de trackback/pingback).</span></li> </ul> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Responsabilité</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Toutes les recettes de cuisine ou de cosmétiques que je publie, les avis, les dossiers et autre conseils, ne peuvent se substitués à l’avis d’un professionnel. Je ne pourrais être tenue pour responsable ni être accusée d’une quelconque responsabilité par rapport à l’usage, l’application ou l’utilisation d’aucun produit, d’une recette, d’un conseil, avis, donné sur ce site.</span></p>Conditions Générales d'Utilisation publishopenopenconditions-generales-dutilisation2012-01-20 13:57:102012-01-20 12:57:100http://www.alicepegie.com/wordpress/wordpress/?p=3820post0
38312012-01-20 13:56:292012-01-20 12:56:29<p style="line-height: normal;"><strong></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Le site internet <strong>Une Graine de Maniguette</strong> est un blog personnel, régie par les conditions suivantes.</span></p> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Propriété intellectuelle</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">L'ensemble du contenu publié par alicepegie.com, les images diffusées, logos et textes contenus sur le site ne peuvent être reproduits sans mon autorisation écrite.</span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Je reste la <strong>seule détentrice </strong>des droits d'auteurs sur le contenu et les photos que je publie, par l'intermédiaire de cet espace. <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Tout autre contenu ne m’appartenant pas : photos, textes, images, logos, noms de produits ou marques citées…, sera explicitement désigné et reste la propriété de leurs détenteurs.</span></span></p> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">La modération des commentaires du blog</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Les commentaires et trackbacks/pingback de ce blog sont modérés à priori. Tout commentaire ou trackback/pingback correspondants à au moins l’un des critères ci-dessous ne seront pas publiés:</span></p> <ul> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">diffamatoires, racistes, pornographiques, pédophiles, incitant à délit, crimes ou suicides,…</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">reproduisant une correspondance privée sans l’accord des personnes concernées,</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Commentaires visant uniquement à mettre en ligne un lien vers un site extérieur (spam de commentaires ou de trackback/pingback).</span></li> </ul> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Responsabilité</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Toutes les recettes de cuisine ou de cosmétiques que je publie, les avis, les dossiers et autre conseils, ne peuvent se substitués à l’avis d’un professionnel. Je ne pourrais être tenue pour responsable ni être accusée d’une quelconque responsabilité par rapport à l’usage, l’application ou l’utilisation d’aucun produit, d’une recette, d’un conseil, avis, donné sur ce site.</span></p>Conditions Générales d'Utilisation inheritopenopen382-revision2012-01-20 13:56:292012-01-20 12:56:29382http://www.alicepegie.com/wordpress/wordpress/?p=3830revision0
38412012-01-20 13:57:160000-00-00 00:00:00Brouillon autoauto-draftopenopen2012-01-20 13:57:160000-00-00 00:00:000http://www.alicepegie.com/wordpress/wordpress/?p=3840post0
38512012-01-18 21:10:152012-01-18 20:10:15Le site internet <strong>Une Graine de Maniguette</strong> est un blog personnel, régie par les conditions suivantes. <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Propriété intellectuelle</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">L'ensemble du contenu publié par alicepegie.com, les images diffusées, logos et textes contenus sur le site ne peuvent être reproduits sans mon autorisation écrite.</span></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Je reste la <strong>seule détentrice </strong>des droits d'auteurs sur le contenu et les photos que je publie, par l'intermédiaire de cet espace. <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Tout autre contenu ne m’appartenant pas : photos, textes, images, logos, noms de produits ou marques citées…, sera explicitement désigné et reste la propriété de leurs détenteurs.</span></span></p> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">La modération des commentaires du blog</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Les commentaires et trackbacks/pingback de ce blog sont modérés en amont. Tout commentaire ou trackback/pingback correspondants à au moins l’un des critères ci-dessous ne seront pas publiés:</span></p> <ul> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">diffamatoires, racistes, pornographiques, pédophiles, incitant au délit, crimes ou suicides,…</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">reproduisant une correspondance privée sans l’accord des personnes concernées,</span></li> <li style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Commentaires visant uniquement à mettre en ligne un lien vers un site extérieur (spam de commentaires ou de trackback/pingback).</span></li> </ul> <p style="text-align: center; line-height: normal;" align="center"><strong><span style="font-size: 12pt; font-family: 'Arial','sans-serif';">Responsabilité</span></strong></p> <p style="text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Toutes les recettes de cuisine ou de cosmétiques que je publie, les avis, les dossiers et autre conseils, ne peuvent se substitués à l’avis d’un professionnel. Je ne pourrais être tenue pour responsable ni être accusée d’une quelconque responsabilité par rapport à l’usage, l’application ou l’utilisation d’un produit, d’une recette, d’un conseil, avis, donné sur ce site.</span></p> <p style="text-align: justify; line-height: normal;">J'espère que cet espace vous plaira. N'hésitez pas à me faire part de vos suggestions, idées, remarques....</p>Conditions Générales d'Utilisation inheritopenopen259-revision-32012-01-18 21:10:152012-01-18 20:10:15259http://www.alicepegie.com/wordpress/wordpress/?p=3850revision0
38612011-11-26 13:58:312011-11-26 12:58:31<img style="float: left;" src="images/pasto.jpg" alt="pasto" width="198" height="259" />Cette semaine je vos invite à danser un peu de "bol" Bon WE à tous! &nbsp; <strong></strong><strong></strong><strong><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Pasto|1||a{/nmap}</span></strong>Pasto "Cécile"publishopenopenpasto-cecile2012-01-21 07:53:002012-01-21 06:53:000http://www.alicepegie.com/wordpress/wordpress/?p=3860post0
38712012-01-20 13:59:242012-01-20 12:59:24<img style="float: left;" src="images/pasto.jpg" alt="pasto" width="198" height="259" />Cette semaine je vos invite à danser un peu de "bol" Bon WE à tous! &nbsp; <strong></strong><strong></strong><strong><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Pasto|1||a{/nmap}</span></strong>Pasto "Cécile"inheritopenopen386-revision2012-01-20 13:59:242012-01-20 12:59:24386http://www.alicepegie.com/wordpress/wordpress/?p=3870revision0
38812011-11-25 14:00:282011-11-25 13:00:28<img style="display: block; margin-left: auto; margin-right: auto;" src="images/pizza%20crevettes/SAM_9894.JPG" alt="pizza crevettes" width="600" height="339" />Cette pizza est un délice pour les inconditionnelles de la crevette (fraiches et séchée), cette fois j’ai opté pour de la mozzarella comme fromage. Le résultat était à la hauteur des mes espérances.<!--more--><strong>Pour la pâte (4 petites pizza) <a href="index.php?option=com_content&amp;view=article&amp;id=2399:pizza-maison&amp;catid=118:ingredientsbases&amp;Itemid=492">recette en images ici</a></strong> <ul> <li>210ml d'eau ou de lait pour une pate + moelleuse</li> <li>350g de farine t65</li> <li>2cc de levain</li> <li>1cc de sel</li> <li>1cc de sucre</li> <li>2cs d'huile d'olive</li> </ul> <strong>Mode opératoire</strong> <strong>Si vous avez une machine à pain:</strong> <ul> <li>Mettez tous les ingrédients dans l'ordre dans la machine et lancez le programme pate.</li> <li>À la fin du programme divisez la pate en 4 formez des boules et laissez encore lever 1h à l'abri des courants d'airs.</li> </ul> <strong>Si vous n'avez pas de machine à pain:</strong> <ul> <li>Dans un saladier, mettre la farine + le levain+ le sel + l’huile d’olive, remuer (avec un batteur électrique c’est moins fatigant).</li> <li>Dès que la pâte est homogène, verser lentement l'eau petit à petit jusqu'à l'obtention d'une pate homogène.</li> <li>Faites une boule, couvrez-là avec un linge. Laissez reposer une heure.</li> <li>Divisez-la à 4 ou en 2 faites des boules et laissez à nouveau reposer 1h</li> <li>La pâte a bien gonflé, étalez-là en cercle ou en carré avec un rouleau à pâtisserie ou une bouteille.</li> </ul> <p style="margin-left: 18pt;"><strong>La garniture</strong></p> <ul> <li>comptez 10 crevettes par personne</li> <li>1 CS d’huile d’olive</li> <li>2 cc de crevettes séchées (facultatif)</li> <li>2 grosses tomates</li> <li>½ poireau</li> <li>1 oignon</li> <li>1 gousse d’ail</li> <li>De la mozzarella râpée</li> <li><strong>Préparation:</strong></li> </ul> Écrasez finement tous les ingrédients sauf les crevettes bien sur. <p style="text-align: justify;"><img src="images/pizza%20crevettes/SAM_6926.JPG" alt="SAM 6926" width="325" height="291" /><img src="images/pizza%20crevettes/SAM_6927.JPG" alt="SAM 6927" width="368" height="289" /></p> Dans un poêle, faites chauffer l’huile d’olive et faites y revenir le mélange à la tomate. Laissez cuire 10mn environ et coupez la source de chaleur. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/pizza%20crevettes/SAM_6933.JPG" alt="SAM 6933" width="600" height="629" /> <strong>Montage :</strong> <ul> <li>Moi j’ai incrusté le fromage dans la pate à l’aide d’un rouleau parfois je l’épice aussi</li> </ul> <img src="images/pizza%20crevettes/SAM_9874.JPG" alt="SAM 9874" width="350" height="263" /><img src="images/pizza%20crevettes/SAM_9875.JPG" alt="SAM 9875" width="350" height="263" /> <ul> <li>J’ai utilisez de petits moules à tarte démontable.</li> <li>Une fois la pate étalez, garnissez là de tomate, puis de crevettes et recouvrez le tout de fromage râpé.</li> </ul> <img src="images/pizza%20crevettes/SAM_6935.JPG" alt="SAM 6935" width="350" height="263" /><img src="images/pizza%20crevettes/SAM_6938.JPG" alt="SAM 6938" width="350" height="263" /> <img src="images/pizza%20crevettes/SAM_9884.JPG" alt="SAM 9884" width="350" height="263" /><img src="images/pizza%20crevettes/SAM_9886.JPG" alt="SAM 9886" width="350" height="263" /> Faites cuire 15 à 20mn à 230° <img src="images/pizza%20crevettes/SAM_9893.JPG" alt="pizza crevettes" width="409" height="224" /><img src="images/pizza%20crevettes/SAM_9921.JPG" alt="pizza crevettes" width="284" height="225" /> Bon appétit!! <img src="images/pizza%20crevettes/SAM_9917.JPG" alt="pizza crevettes" width="329" height="256" /><img src="images/pizza%20crevettes/SAM_9932.JPG" alt="pizza crevettes" width="362" height="259" />Pizza aux Crevettespublishopenopenpizza-aux-crevettes2012-01-21 07:53:182012-01-21 06:53:180http://www.alicepegie.com/wordpress/wordpress/?p=3880post0
38912012-01-20 14:01:142012-01-20 13:01:14<img style="display: block; margin-left: auto; margin-right: auto;" src="images/pizza%20crevettes/SAM_9894.JPG" alt="pizza crevettes" width="600" height="339" />Cette pizza est un délice pour les inconditionnelles de la crevette (fraiches et séchée), cette fois j’ai opté pour de la mozzarella comme fromage. Le résultat était à la hauteur des mes espérances.<!--more--><strong>Pour la pâte (4 petites pizza) <a href="index.php?option=com_content&amp;view=article&amp;id=2399:pizza-maison&amp;catid=118:ingredientsbases&amp;Itemid=492">recette en images ici</a></strong> <ul> <li>210ml d'eau ou de lait pour une pate + moelleuse</li> <li>350g de farine t65</li> <li>2cc de levain</li> <li>1cc de sel</li> <li>1cc de sucre</li> <li>2cs d'huile d'olive</li> </ul> <strong>Mode opératoire</strong> <strong>Si vous avez une machine à pain:</strong> <ul> <li>Mettez tous les ingrédients dans l'ordre dans la machine et lancez le programme pate.</li> <li>À la fin du programme divisez la pate en 4 formez des boules et laissez encore lever 1h à l'abri des courants d'airs.</li> </ul> <strong>Si vous n'avez pas de machine à pain:</strong> <ul> <li>Dans un saladier, mettre la farine + le levain+ le sel + l’huile d’olive, remuer (avec un batteur électrique c’est moins fatigant).</li> <li>Dès que la pâte est homogène, verser lentement l'eau petit à petit jusqu'à l'obtention d'une pate homogène.</li> <li>Faites une boule, couvrez-là avec un linge. Laissez reposer une heure.</li> <li>Divisez-la à 4 ou en 2 faites des boules et laissez à nouveau reposer 1h</li> <li>La pâte a bien gonflé, étalez-là en cercle ou en carré avec un rouleau à pâtisserie ou une bouteille.</li> </ul> <p style="margin-left: 18pt;"><strong>La garniture</strong></p> <ul> <li>comptez 10 crevettes par personne</li> <li>1 CS d’huile d’olive</li> <li>2 cc de crevettes séchées (facultatif)</li> <li>2 grosses tomates</li> <li>½ poireau</li> <li>1 oignon</li> <li>1 gousse d’ail</li> <li>De la mozzarella râpée</li> <li><strong>Préparation:</strong></li> </ul> Écrasez finement tous les ingrédients sauf les crevettes bien sur. <p style="text-align: justify;"><img src="images/pizza%20crevettes/SAM_6926.JPG" alt="SAM 6926" width="325" height="291" /><img src="images/pizza%20crevettes/SAM_6927.JPG" alt="SAM 6927" width="368" height="289" /></p> Dans un poêle, faites chauffer l’huile d’olive et faites y revenir le mélange à la tomate. Laissez cuire 10mn environ et coupez la source de chaleur. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/pizza%20crevettes/SAM_6933.JPG" alt="SAM 6933" width="600" height="629" /> <strong>Montage :</strong> <ul> <li>Moi j’ai incrusté le fromage dans la pate à l’aide d’un rouleau parfois je l’épice aussi</li> </ul> <img src="images/pizza%20crevettes/SAM_9874.JPG" alt="SAM 9874" width="350" height="263" /><img src="images/pizza%20crevettes/SAM_9875.JPG" alt="SAM 9875" width="350" height="263" /> <ul> <li>J’ai utilisez de petits moules à tarte démontable.</li> <li>Une fois la pate étalez, garnissez là de tomate, puis de crevettes et recouvrez le tout de fromage râpé.</li> </ul> <img src="images/pizza%20crevettes/SAM_6935.JPG" alt="SAM 6935" width="350" height="263" /><img src="images/pizza%20crevettes/SAM_6938.JPG" alt="SAM 6938" width="350" height="263" /> <img src="images/pizza%20crevettes/SAM_9884.JPG" alt="SAM 9884" width="350" height="263" /><img src="images/pizza%20crevettes/SAM_9886.JPG" alt="SAM 9886" width="350" height="263" /> Faites cuire 15 à 20mn à 230° <img src="images/pizza%20crevettes/SAM_9893.JPG" alt="pizza crevettes" width="409" height="224" /><img src="images/pizza%20crevettes/SAM_9921.JPG" alt="pizza crevettes" width="284" height="225" /> Bon appétit!! <img src="images/pizza%20crevettes/SAM_9917.JPG" alt="pizza crevettes" width="329" height="256" /><img src="images/pizza%20crevettes/SAM_9932.JPG" alt="pizza crevettes" width="362" height="259" />Pizza aux Crevettesinheritopenopen388-revision2012-01-20 14:01:142012-01-20 13:01:14388http://www.alicepegie.com/wordpress/wordpress/?p=3890revision0
39012011-11-24 14:02:512011-11-24 13:02:51<span style="font-size: 10pt;"><img style="vertical-align: middle; display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0158.JPG" alt="CREME MAIN COCO" width="600" height="513" />Ca fait longtemps que je ne me suis pas préparée de crème spéciale pour les mains. Toujours dans mes soins coco, voici une crème beauté des mains qui les nourrira et vous apportera un petit peu sous le soleil ! La formule reste minimaliste<!--more--><strong><span style="font-family: 'Arial','sans-serif';">Pour 30g env. :</span></strong></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Huile végétale de coco : 3g</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Lait de coco liquide : 23g</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Émulsifiant olivem : 1.5g</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Conservateur : 6 gouttes</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">vitamine E liquide :5 gouttes</span></li> </ul> <span style="font-size: 10pt;"><strong><span style="font-family: 'Arial','sans-serif';">Préparation</span></strong></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Toujours le procéder one pot dont je suis devenue fan :</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">On met tous les ingrédients sauf le conservateur et la vitamine E dans un bol,</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">On fait tout chauffer au bain marie jusqu’à complète liquéfaction de l’émulsifiant</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0071.JPG" alt="SAM 0071" width="600" height="450" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Ensuite on mélange énergiquement, on rajoute le conservateur et la vitamine E</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0074.JPG" alt="SAM 0074" width="600" height="433" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Puis on met dans un fond d’eau froide et continue à mélanger jusqu’à la prise de l’émulsion.</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0076.JPG" alt="SAM 0076" width="600" height="450" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Mettez dans le contenant choisi et appréciez !!</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img src="images/stories/creme%20main%20coco/SAM_0150.JPG" alt="creme main coco" width="288" height="323" /><img src="images/stories/creme%20main%20coco/SAM_0154.JPG" alt="creme main coco" width="387" height="321" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">tous les ingredients sont disponibles chez AZ</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0156.JPG" alt="creme main coco" width="500" height="795" /></span>Crème beauté des mains fou de cocopublishopenopencreme-beaute-des-mains-fou-de-coco2012-01-21 07:53:322012-01-21 06:53:320http://www.alicepegie.com/wordpress/wordpress/?p=3900post0
39112012-01-20 14:03:542012-01-20 13:03:54<span style="font-size: 10pt;"><img style="vertical-align: middle; display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0158.JPG" alt="CREME MAIN COCO" width="600" height="513" />Ca fait longtemps que je ne me suis pas préparée de crème spéciale pour les mains. Toujours dans mes soins coco, voici une crème beauté des mains qui les nourrira et vous apportera un petit peu sous le soleil ! La formule reste minimaliste<!--more--><strong><span style="font-family: 'Arial','sans-serif';">Pour 30g env. :</span></strong></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Huile végétale de coco : 3g</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Lait de coco liquide : 23g</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Émulsifiant olivem : 1.5g</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Conservateur : 6 gouttes</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">vitamine E liquide :5 gouttes</span></li> </ul> <span style="font-size: 10pt;"><strong><span style="font-family: 'Arial','sans-serif';">Préparation</span></strong></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Toujours le procéder one pot dont je suis devenue fan :</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">On met tous les ingrédients sauf le conservateur et la vitamine E dans un bol,</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">On fait tout chauffer au bain marie jusqu’à complète liquéfaction de l’émulsifiant</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0071.JPG" alt="SAM 0071" width="600" height="450" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Ensuite on mélange énergiquement, on rajoute le conservateur et la vitamine E</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0074.JPG" alt="SAM 0074" width="600" height="433" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Puis on met dans un fond d’eau froide et continue à mélanger jusqu’à la prise de l’émulsion.</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0076.JPG" alt="SAM 0076" width="600" height="450" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Mettez dans le contenant choisi et appréciez !!</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img src="images/stories/creme%20main%20coco/SAM_0150.JPG" alt="creme main coco" width="288" height="323" /><img src="images/stories/creme%20main%20coco/SAM_0154.JPG" alt="creme main coco" width="387" height="321" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">tous les ingredients sont disponibles chez AZ</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0156.JPG" alt="creme main coco" width="500" height="795" /></span>Crème beauté des mains fou de cocoinheritopenopen390-revision2012-01-20 14:03:542012-01-20 13:03:54390http://www.alicepegie.com/wordpress/wordpress/?p=3910revision0
39212011-11-23 14:04:262011-11-23 13:04:26<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0053.JPG" alt="tarte au citron meringuée" width="600" height="381" /></span>Le citron est l’un de mes parfums préférés. J’aime son parfum et son gout qui réveille mes papilles. C’est donc logiquement que la tarte au citron se fait volontiers consommer par moi. Ma tarte est composée d’une pâte brisée aromatisée au citron, d’une crème de citron (lemon curd) et d’une meringue. <strong>Pour 1 tarte de 4 pers<!--more--></strong><strong><a href="index.php?option=com_content&amp;view=article&amp;catid=118&amp;id=2796">La pâte Brisée</a></strong> <ul> <li>250g de farine</li> <li>1 pincée de sel</li> <li>125g de beurre mou en dés</li> <li>1 jaune d’œuf</li> <li>30ml de jus de citron (soit celui de 2 petits citrons ou 1 gros) ou de l'eau</li> <li style="text-align: center;"><strong>La crème au citron</strong></li> <li>54 g de jus de citron (2 gros ou 3 petits)</li> <li>le zeste d’un citron</li> <li>2 œufs</li> <li>37g de beurre mou</li> <li>100g de sucre glace</li> <li style="text-align: center;"><strong>La meringue</strong></li> <li>1 blanc d’œuf</li> <li>le double du poids du blanc en sucre</li> </ul> <p style="text-align: center;"><strong>Préparation</strong></p> <strong>La crème au citron :</strong> <ul> <li>1- Faites fondre le beurre au bain-marie.</li> <li>2- Toujours au bain-marie, ajoutez le sucre glace et le jus de citron, mélangez puis ajoutez l’œuf.</li> <li>3- Fouettez le tout jusqu’à ce que le mélange épaississe.</li> <li>Filtrez si nécessaire</li> <li>4-Laissez reposer 1 heure au réfrigérateur.</li> </ul> <p style="text-align: center;"><strong>La pâte Brisée <a href="index.php?option=com_content&amp;view=article&amp;id=2796:la-pate-brisee&amp;catid=118:ingredientsbases&amp;Itemid=492"> recette détaillée en images ici</a></strong></p> <ul> <li>Sortez l’œuf et le beurre du frais 15mn à l’avance pour qu’il soit à température ambiante.</li> <li>Mettez la farine et le sel dans un saladier et faites un puits.</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9839.JPG" alt="SAM 9839" width="350" height="263" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9840.JPG" alt="SAM 9840" width="350" height="263" /> Ajoutez le beurre puis le jaune d’œuf et mélangez rapidement. Rajoutez ensuite le jus de citron ou de l'eau. Mélangez sans trop travailler la pate. <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9841.JPG" alt="SAM 9841" width="600" height="450" /> Formez une boule avec la pate et enveloppez-la d’un film alimentaire. Laissez reposer le tout 1h au frais. Au bout d’une heure préchauffer le four à 180°, sortez votre pate du frais et étalez-la à l’aide d’un rouleau à pâtisserie <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9999.JPG" alt="SAM 9999" width="600" height="450" /> <ul> <li>Beurrez et farinez le moule, garnissez le moule de pate mettez le tout au frais pendant que vous préparez votre garniture.</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0003.JPG" alt="SAM 0003" width="600" height="471" /> <ul> <li>Enfournez dans un four préchauffé à 180°C durant 15 min.</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0005.JPG" alt="SAM 0005" width="600" height="450" /> <ul> <li>Laissez refroidir à température ambiante.</li> <li style="text-align: center;"><strong>La meringue</strong></li> <li>Commencez à battre votre blanc d’œuf énergiquement, lorsqu’il devient mousseux, ajoutez le sucre en 3 ou 4 fois en continuant de battre entre chaque ajout.</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0018.JPG" alt="SAM 0018" width="350" height="263" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0019.JPG" alt="SAM 0019" width="350" height="263" /> <ul> <li>Arrêtez lorsque vous obtenez un bec d’oiseau</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0021.JPG" alt="SAM 0021" width="350" height="263" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0024.JPG" alt="SAM 0024" width="350" height="263" /> <ul> <li>Versez cette préparation dans une poche à douille.</li> <li style="text-align: center;"><strong>Le montage</strong></li> <li>Versez dans le fond de pâte la crème de citron, égalisez à la spatule. Faites cuite la pate contenant la crème 12mn à 130°</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0020.JPG" alt="SAM 0020" width="600" height="451" /> <ul> <li>Après 12mn, sortez la tarte du four et déposez de la meringue sur toute la tarte.</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0026.JPG" alt="SAM 0026" width="600" height="451" /> <ul> <li>Remettez pour 10mn toujours à 130°.</li> <li>Au bout de 10mn, éteignez le four et laissez refroidir la tarte dans le four, vous obtiendrez ainsi une meringue plus croquante.</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0029.JPG" alt="tarte au citron meringuée" width="387" height="281" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0043.JPG" alt="tarte au citron meringuée" width="277" height="281" /> <ul> <li>Bon Appétit !</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0036.JPG" alt="tarte au citron meringuée" width="318" height="308" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0045.JPG" alt="tarte au citron meringuée" width="369" height="309" />Tarte au Citron Meringuéepublishopenopentarte-au-citron-meringuee2012-01-21 07:53:462012-01-21 06:53:460http://www.alicepegie.com/wordpress/wordpress/?p=3920post0
39312012-01-20 14:05:292012-01-20 13:05:29<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0053.JPG" alt="tarte au citron meringuée" width="600" height="381" /></span>Le citron est l’un de mes parfums préférés. J’aime son parfum et son gout qui réveille mes papilles. C’est donc logiquement que la tarte au citron se fait volontiers consommer par moi. Ma tarte est composée d’une pâte brisée aromatisée au citron, d’une crème de citron (lemon curd) et d’une meringue. <strong>Pour 1 tarte de 4 pers<!--more--></strong><strong><a href="index.php?option=com_content&amp;view=article&amp;catid=118&amp;id=2796">La pâte Brisée</a></strong> <ul> <li>250g de farine</li> <li>1 pincée de sel</li> <li>125g de beurre mou en dés</li> <li>1 jaune d’œuf</li> <li>30ml de jus de citron (soit celui de 2 petits citrons ou 1 gros) ou de l'eau</li> <li style="text-align: center;"><strong>La crème au citron</strong></li> <li>54 g de jus de citron (2 gros ou 3 petits)</li> <li>le zeste d’un citron</li> <li>2 œufs</li> <li>37g de beurre mou</li> <li>100g de sucre glace</li> <li style="text-align: center;"><strong>La meringue</strong></li> <li>1 blanc d’œuf</li> <li>le double du poids du blanc en sucre</li> </ul> <p style="text-align: center;"><strong>Préparation</strong></p> <strong>La crème au citron :</strong> <ul> <li>1- Faites fondre le beurre au bain-marie.</li> <li>2- Toujours au bain-marie, ajoutez le sucre glace et le jus de citron, mélangez puis ajoutez l’œuf.</li> <li>3- Fouettez le tout jusqu’à ce que le mélange épaississe.</li> <li>Filtrez si nécessaire</li> <li>4-Laissez reposer 1 heure au réfrigérateur.</li> </ul> <p style="text-align: center;"><strong>La pâte Brisée <a href="index.php?option=com_content&amp;view=article&amp;id=2796:la-pate-brisee&amp;catid=118:ingredientsbases&amp;Itemid=492"> recette détaillée en images ici</a></strong></p> <ul> <li>Sortez l’œuf et le beurre du frais 15mn à l’avance pour qu’il soit à température ambiante.</li> <li>Mettez la farine et le sel dans un saladier et faites un puits.</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9839.JPG" alt="SAM 9839" width="350" height="263" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9840.JPG" alt="SAM 9840" width="350" height="263" /> Ajoutez le beurre puis le jaune d’œuf et mélangez rapidement. Rajoutez ensuite le jus de citron ou de l'eau. Mélangez sans trop travailler la pate. <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9841.JPG" alt="SAM 9841" width="600" height="450" /> Formez une boule avec la pate et enveloppez-la d’un film alimentaire. Laissez reposer le tout 1h au frais. Au bout d’une heure préchauffer le four à 180°, sortez votre pate du frais et étalez-la à l’aide d’un rouleau à pâtisserie <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9999.JPG" alt="SAM 9999" width="600" height="450" /> <ul> <li>Beurrez et farinez le moule, garnissez le moule de pate mettez le tout au frais pendant que vous préparez votre garniture.</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0003.JPG" alt="SAM 0003" width="600" height="471" /> <ul> <li>Enfournez dans un four préchauffé à 180°C durant 15 min.</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0005.JPG" alt="SAM 0005" width="600" height="450" /> <ul> <li>Laissez refroidir à température ambiante.</li> <li style="text-align: center;"><strong>La meringue</strong></li> <li>Commencez à battre votre blanc d’œuf énergiquement, lorsqu’il devient mousseux, ajoutez le sucre en 3 ou 4 fois en continuant de battre entre chaque ajout.</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0018.JPG" alt="SAM 0018" width="350" height="263" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0019.JPG" alt="SAM 0019" width="350" height="263" /> <ul> <li>Arrêtez lorsque vous obtenez un bec d’oiseau</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0021.JPG" alt="SAM 0021" width="350" height="263" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0024.JPG" alt="SAM 0024" width="350" height="263" /> <ul> <li>Versez cette préparation dans une poche à douille.</li> <li style="text-align: center;"><strong>Le montage</strong></li> <li>Versez dans le fond de pâte la crème de citron, égalisez à la spatule. Faites cuite la pate contenant la crème 12mn à 130°</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0020.JPG" alt="SAM 0020" width="600" height="451" /> <ul> <li>Après 12mn, sortez la tarte du four et déposez de la meringue sur toute la tarte.</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0026.JPG" alt="SAM 0026" width="600" height="451" /> <ul> <li>Remettez pour 10mn toujours à 130°.</li> <li>Au bout de 10mn, éteignez le four et laissez refroidir la tarte dans le four, vous obtiendrez ainsi une meringue plus croquante.</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0029.JPG" alt="tarte au citron meringuée" width="387" height="281" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0043.JPG" alt="tarte au citron meringuée" width="277" height="281" /> <ul> <li>Bon Appétit !</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0036.JPG" alt="tarte au citron meringuée" width="318" height="308" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0045.JPG" alt="tarte au citron meringuée" width="369" height="309" />Tarte au Citron Meringuéeinheritopenopen392-revision2012-01-20 14:05:292012-01-20 13:05:29392http://www.alicepegie.com/wordpress/wordpress/?p=3930revision0
39412011-11-22 14:06:252011-11-22 13:06:25<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0172.JPG" alt="crème corps coco" width="600" height="449" />De texture douce et légère, cette crème pour le apporte un confort immédiat aux peaux sèches. Sa formule, enrichie en huile et lait de, vous offre une peau nourrie et parfumée. Sa texture légère pénètre rapidement et laisse un parfum sensuel et velouté de coco sur votre peau.<!--more--></span><strong>Ingrédients pour 200g</strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Huile Végétale de coco : 52g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Cire N°3 de chez AZ : 14g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Lait de coco liquide : 127g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Conservateur : 1g</span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation :</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mettez tout les ingrédients dans un bol</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0054.JPG" alt="SAM 0054" width="600" height="450" /> </span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Faites chauffer le tout au bain marie jusqu’à ce que la cire soit liquide.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0063.JPG" alt="SAM 0063" width="600" height="450" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Lorsque le tout est liquide mélangez et mettez dans un fon d’eau froide pour accélérer la prise de l’émulsion.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/creme%20corps%20coco/SAM_0064.JPG" alt="SAM 0064" width="350" height="263" /><img src="images/stories/creme%20corps%20coco/SAM_0065.JPG" alt="SAM 0065" width="350" height="263" /> </span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ajoutez le conservateur et transvasez dans votre flacon.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0074.JPG" alt="SAM 0074" width="600" height="422" /></span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Utilisation</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> : s’applique sur la peau propre et sèche par légers massages.</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/creme%20corps%20coco/SAM_0142.JPG" alt="creme corps coco" width="336" height="353" /><img src="images/stories/creme%20corps%20coco/SAM_0147.JPG" alt="SAM 0147" width="367" height="351" /></span> <p style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Choix des ingrédients:</span></strong></p> <ul> <li style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">HV de coco</span></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">: Nourrit et lisse la fibre capillaire, rend les cheveux brillants et vigoureux, Parfume agréablement les cheveux.</span></li> <li style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Lait de coco :</span></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> À la fois hydratant et nourrissant, il protège et renforce le film hydrolipidique de la peau</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0169.JPG" alt="crème corps coco" width="600" height="585" /></span></li> </ul>Crème corporelle fou de cocopublishopenopencreme-corporelle-fou-de-coco2012-01-20 14:08:302012-01-20 13:08:300http://www.alicepegie.com/wordpress/wordpress/?p=3940post0
39512012-01-20 14:07:272012-01-20 13:07:27&nbsp; <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0172.JPG" alt="crème corps coco" width="600" height="449" />De texture douce et légère, cette crème pour le apporte un confort immédiat aux peaux sèches. Sa formule, enrichie en huile et lait de, vous offre une peau nourrie et parfumée. Sa texture légère pénètre rapidement et laisse un parfum sensuel et velouté de coco sur votre peau.<!--more--> </span> <strong>Ingrédients pour 200g</strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Huile Végétale de coco : 52g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Cire N°3 de chez AZ : 14g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Lait de coco liquide : 127g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Conservateur : 1g</span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation :</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mettez tout les ingrédients dans un bol</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0054.JPG" alt="SAM 0054" width="600" height="450" /> </span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Faites chauffer le tout au bain marie jusqu’à ce que la cire soit liquide.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0063.JPG" alt="SAM 0063" width="600" height="450" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Lorsque le tout est liquide mélangez et mettez dans un fon d’eau froide pour accélérer la prise de l’émulsion.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/creme%20corps%20coco/SAM_0064.JPG" alt="SAM 0064" width="350" height="263" /><img src="images/stories/creme%20corps%20coco/SAM_0065.JPG" alt="SAM 0065" width="350" height="263" /> </span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ajoutez le conservateur et transvasez dans votre flacon.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0074.JPG" alt="SAM 0074" width="600" height="422" /></span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Utilisation</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> : s’applique sur la peau propre et sèche par légers massages.</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/creme%20corps%20coco/SAM_0142.JPG" alt="creme corps coco" width="336" height="353" /><img src="images/stories/creme%20corps%20coco/SAM_0147.JPG" alt="SAM 0147" width="367" height="351" /></span> <p style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Choix des ingrédients:</span></strong></p> <ul> <li style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">HV de coco</span></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">: Nourrit et lisse la fibre capillaire, rend les cheveux brillants et vigoureux, Parfume agréablement les cheveux.</span></li> <li style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Lait de coco :</span></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> À la fois hydratant et nourrissant, il protège et renforce le film hydrolipidique de la peau</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0169.JPG" alt="crème corps coco" width="600" height="585" /></span></li> </ul>Crème corporelle fou de cocoinheritopenopen394-revision2012-01-20 14:07:272012-01-20 13:07:27394http://www.alicepegie.com/wordpress/wordpress/?p=3950revision0
39612012-01-20 14:08:172012-01-20 13:08:17<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0172.JPG" alt="crème corps coco" width="600" height="449" />De texture douce et légère, cette crème pour le apporte un confort immédiat aux peaux sèches. Sa formule, enrichie en huile et lait de, vous offre une peau nourrie et parfumée. Sa texture légère pénètre rapidement et laisse un parfum sensuel et velouté de coco sur votre peau.<!--more--> </span> <strong>Ingrédients pour 200g</strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Huile Végétale de coco : 52g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Cire N°3 de chez AZ : 14g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Lait de coco liquide : 127g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Conservateur : 1g</span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation :</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mettez tout les ingrédients dans un bol</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0054.JPG" alt="SAM 0054" width="600" height="450" /> </span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Faites chauffer le tout au bain marie jusqu’à ce que la cire soit liquide.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0063.JPG" alt="SAM 0063" width="600" height="450" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Lorsque le tout est liquide mélangez et mettez dans un fon d’eau froide pour accélérer la prise de l’émulsion.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/creme%20corps%20coco/SAM_0064.JPG" alt="SAM 0064" width="350" height="263" /><img src="images/stories/creme%20corps%20coco/SAM_0065.JPG" alt="SAM 0065" width="350" height="263" /> </span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ajoutez le conservateur et transvasez dans votre flacon.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0074.JPG" alt="SAM 0074" width="600" height="422" /></span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Utilisation</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> : s’applique sur la peau propre et sèche par légers massages.</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/creme%20corps%20coco/SAM_0142.JPG" alt="creme corps coco" width="336" height="353" /><img src="images/stories/creme%20corps%20coco/SAM_0147.JPG" alt="SAM 0147" width="367" height="351" /></span> <p style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Choix des ingrédients:</span></strong></p> <ul> <li style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">HV de coco</span></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">: Nourrit et lisse la fibre capillaire, rend les cheveux brillants et vigoureux, Parfume agréablement les cheveux.</span></li> <li style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Lait de coco :</span></strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> À la fois hydratant et nourrissant, il protège et renforce le film hydrolipidique de la peau</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20corps%20coco/SAM_0169.JPG" alt="crème corps coco" width="600" height="585" /></span></li> </ul>Crème corporelle fou de cocoinheritopenopen394-revision-22012-01-20 14:08:172012-01-20 13:08:17394http://www.alicepegie.com/wordpress/wordpress/?p=3960revision0
39712011-11-21 14:08:582011-11-21 13:08:58<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/beignets%20speculoos/beignets%20sp%C3%A9culoos1.JPG" alt="beignets spéculoos1" width="600" height="450" /><span style="font-family: 'Arial','sans-serif';">Je vous ai présenté dernièrement <a href="ma-cuisine/desserts/109-confitures-sauces/2787-pate-de-speculoos-maison">ma pate de spéculoos maison</a>, depuis que je la fais maison, j’ose tester différentes recettes, oui le prix de la pate commercial me freinait un peu. Du coup j’ai eu envie de tester mes beignets camerounais à la pate de spéculoos. J’ai remplacé l’eau par du lait mais vous pouvez garder l’eau.<!--more--></span><strong><span style="font-family: 'Arial','sans-serif';">Ingrédients</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">500g de farine de blé</span></li> <li><span style="font-family: 'Arial','sans-serif';">1 sachet de levure boulangère</span></li> <li><span style="font-family: 'Arial','sans-serif';">Une pincée de sel</span></li> <li><span style="font-family: 'Arial','sans-serif';">De l'huile de friture</span></li> <li><span style="font-family: 'Arial','sans-serif';">250g de pate de spéculoos</span></li> <li><span style="font-family: 'Arial','sans-serif';">+- 450ml de lait ou d’eau</span></li> <li><span style="font-family: 'Arial','sans-serif';">Du sucre en poudre</span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Mode opératoire:</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Tamisez votre farine et versez là dans une terrine</span></li> <li><span style="font-family: 'Arial','sans-serif';">Faites un puits dans la farine, ajoutez  la levure et versez y la pate de spéculoos, puis le lait petit à petit </span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/1.JPG" alt="1" width="350" height="263" /><img src="images/stories/beignets%20speculoos/2.JPG" alt="2" width="350" height="263" /></span> <p style="text-align: justify;"><span style="font-family: 'Arial','sans-serif';">et mélangez doucement à la main. (vous n’êtes pas obligé de mettre tout le lait arrêtez d’en mettre dès que la pate est élastique.</span></p> <p style="text-align: justify;"><span style="font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/3.JPG" alt="3" width="350" height="263" /><img src="images/stories/beignets%20speculoos/4.JPG" alt="4" width="350" height="263" /></span></p> <ul> <li><span style="font-family: 'Arial','sans-serif';">Dès que la pâte est bien homogène et élastique, battez là énergiquement et mettez la dans un récipient assez grand. </span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/beignets%20speculoos/5.JPG" alt="5" width="600" height="451" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Couvrez et laissez reposer 2 à 3 heures.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Une fois la pâte levée,  mettez votre huile à chauffer, l'huile doit être bien chaude pour que la friture se fasse sans que les beignets ne s'imprègnent de trop d'huile.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/6.JPG" alt="6" width="350" height="263" /><img src="images/stories/beignets%20speculoos/7.JPG" alt="7" width="301" height="261" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';"> versez la pate à l'aide de votre main en la faisant passer entre votre pousse et votre index. laissez couler la pate et une fois que la quantité désirée est passée, serrez vos doigts pour couper.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/8.JPG" alt="8" width="350" height="263" /><img src="images/stories/beignets%20speculoos/8.JPG" alt="8" width="350" height="263" /> </span> <strong><span style="font-family: 'Arial','sans-serif';">Astuces:</span></strong> <span style="font-family: 'Arial','sans-serif';">Variez la quantité de lait et de sucre selon votre gout. si vous les aimez croustillants, la quantité d'eau ci dessus ou un peu moins suffira. si vous les aimez plus moelleux comme moi, rajoutez y un peu plus d'eau.</span> <span style="font-family: 'Arial','sans-serif';"><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/beignets%20sp%C3%A9culoos2.JPG" alt="beignets spéculoos2" width="350" height="263" /><img src="images/stories/beignets%20speculoos/beignets%20sp%C3%A9culoos3.JPG" alt="beignets spéculoos3" width="350" height="263" /></span></span> <span style="font-family: 'Arial','sans-serif';"><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/beignets%20sp%C3%A9culoos4.JPG" alt="beignets spéculoos4" width="350" height="263" /><img src="images/stories/beignets%20speculoos/beignets%20sp%C3%A9culoos5.JPG" alt="beignets spéculoos5" width="350" height="263" /></span></span> &nbsp;Beignets à la Pâte de Spéculoospublishopenopenbeignets-a-la-pate-de-speculoos2012-01-20 14:10:082012-01-20 13:10:080http://www.alicepegie.com/wordpress/wordpress/?p=3970post0
39812012-01-20 14:09:322012-01-20 13:09:32<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/beignets%20speculoos/beignets%20sp%C3%A9culoos1.JPG" alt="beignets spéculoos1" width="600" height="450" /><span style="font-family: 'Arial','sans-serif';">Je vous ai présenté dernièrement <a href="ma-cuisine/desserts/109-confitures-sauces/2787-pate-de-speculoos-maison">ma pate de spéculoos maison</a>, depuis que je la fais maison, j’ose tester différentes recettes, oui le prix de la pate commercial me freinait un peu. Du coup j’ai eu envie de tester mes beignets camerounais à la pate de spéculoos. J’ai remplacé l’eau par du lait mais vous pouvez garder l’eau.<!--more--></span><strong><span style="font-family: 'Arial','sans-serif';">Ingrédients</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">500g de farine de blé</span></li> <li><span style="font-family: 'Arial','sans-serif';">1 sachet de levure boulangère</span></li> <li><span style="font-family: 'Arial','sans-serif';">Une pincée de sel</span></li> <li><span style="font-family: 'Arial','sans-serif';">De l'huile de friture</span></li> <li><span style="font-family: 'Arial','sans-serif';">250g de pate de spéculoos</span></li> <li><span style="font-family: 'Arial','sans-serif';">+- 450ml de lait ou d’eau</span></li> <li><span style="font-family: 'Arial','sans-serif';">Du sucre en poudre</span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Mode opératoire:</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Tamisez votre farine et versez là dans une terrine</span></li> <li><span style="font-family: 'Arial','sans-serif';">Faites un puits dans la farine, ajoutez  la levure et versez y la pate de spéculoos, puis le lait petit à petit </span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/1.JPG" alt="1" width="350" height="263" /><img src="images/stories/beignets%20speculoos/2.JPG" alt="2" width="350" height="263" /></span> <p style="text-align: justify;"><span style="font-family: 'Arial','sans-serif';">et mélangez doucement à la main. (vous n’êtes pas obligé de mettre tout le lait arrêtez d’en mettre dès que la pate est élastique.</span></p> <p style="text-align: justify;"><span style="font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/3.JPG" alt="3" width="350" height="263" /><img src="images/stories/beignets%20speculoos/4.JPG" alt="4" width="350" height="263" /></span></p> <ul> <li><span style="font-family: 'Arial','sans-serif';">Dès que la pâte est bien homogène et élastique, battez là énergiquement et mettez la dans un récipient assez grand. </span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/beignets%20speculoos/5.JPG" alt="5" width="600" height="451" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';">Couvrez et laissez reposer 2 à 3 heures.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Une fois la pâte levée,  mettez votre huile à chauffer, l'huile doit être bien chaude pour que la friture se fasse sans que les beignets ne s'imprègnent de trop d'huile.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/6.JPG" alt="6" width="350" height="263" /><img src="images/stories/beignets%20speculoos/7.JPG" alt="7" width="301" height="261" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif';"> versez la pate à l'aide de votre main en la faisant passer entre votre pousse et votre index. laissez couler la pate et une fois que la quantité désirée est passée, serrez vos doigts pour couper.</span></li> </ul> <span style="font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/8.JPG" alt="8" width="350" height="263" /><img src="images/stories/beignets%20speculoos/8.JPG" alt="8" width="350" height="263" /> </span> <strong><span style="font-family: 'Arial','sans-serif';">Astuces:</span></strong> <span style="font-family: 'Arial','sans-serif';">Variez la quantité de lait et de sucre selon votre gout. si vous les aimez croustillants, la quantité d'eau ci dessus ou un peu moins suffira. si vous les aimez plus moelleux comme moi, rajoutez y un peu plus d'eau.</span> <span style="font-family: 'Arial','sans-serif';"><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/beignets%20sp%C3%A9culoos2.JPG" alt="beignets spéculoos2" width="350" height="263" /><img src="images/stories/beignets%20speculoos/beignets%20sp%C3%A9culoos3.JPG" alt="beignets spéculoos3" width="350" height="263" /></span></span> <span style="font-family: 'Arial','sans-serif';"><span style="font-size: 12pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/beignets%20speculoos/beignets%20sp%C3%A9culoos4.JPG" alt="beignets spéculoos4" width="350" height="263" /><img src="images/stories/beignets%20speculoos/beignets%20sp%C3%A9culoos5.JPG" alt="beignets spéculoos5" width="350" height="263" /></span></span> &nbsp;Beignets à la Pâte de Spéculoosinheritopenopen397-revision2012-01-20 14:09:322012-01-20 13:09:32397http://www.alicepegie.com/wordpress/wordpress/?p=3980revision0
39912011-11-20 14:10:262011-11-20 13:10:26<img style="float: left;" src="images/stories/kankan.jpg" alt="kankan" width="320" height="238" />et voici une autre vidéo de notre regreté Jean Miché Kankan {flv}kankanpermis{/flv}Jean Miche Kankan Le Permis de Conduirepublishopenopenjean-miche-kankan-le-permis-de-conduire2012-01-20 14:12:032012-01-20 13:12:030http://www.alicepegie.com/wordpress/wordpress/?p=3990post0
40012012-01-20 14:10:572012-01-20 13:10:57<p><img style="float: left;" alt="kankan" src="images/stories/kankan.jpg" height="238" width="320" />et voici une autre vidéo de notre regreté Jean Miché Kankan</p> <p>{flv}kankanpermis{/flv}</p>Jean Miche Kankan Le Permis de Conduireinheritopenopen399-revision2012-01-20 14:10:572012-01-20 13:10:57399http://www.alicepegie.com/wordpress/wordpress/?p=4000revision0
40112011-11-19 14:12:222011-11-19 13:12:22<p style="text-align: center;"><img src="images/stories/poulet%20mbongo/SAM_9705.JPG" alt="poulet mbongo1" width="600" height="450" /></p> <p style="text-align: justify;"><span style="font-family: 'Arial','sans-serif';">La poule au pot est un plat qui consiste à faire mijoter une poule avec des légumes à la manière d'un pot-au-feu. Vu que le temps s’est beaucoup rafraichi chez moi ces temps ci j’ai eu envie un soir en rentrant du boulot d’un bon bouillon de poule au pot. Quand j’ouvre mon frigo, pas de poule mais un poulet fumé alors ma poule au pot s’est transformée en poulet fumé au pot aromatisé de <a href="index.php?option=com_content&amp;view=article&amp;catid=118&amp;id=2789">Maniguette </a> !!! Un délice !<!--more--></span></p> <strong>Ingrédients pour env. 6 personnes:</strong> <ul> <li>1 poulet fumé ou 1 poule</li> <li>800 g de carottes</li> <li>300 g de navets</li> <li>4 poireaux</li> <li>1 oignon piqué de 2 clous de girofle</li> <li>Du sel</li> <li>Une gousse de <a href="index.php?option=com_content&amp;view=article&amp;id=2789:la-mniguette-le-bongogo&amp;catid=118:ingredientsbases&amp;Itemid=492">maniguette </a>(ou du poivre)</li> <li>1 petit bouquet garni</li> </ul> <strong>Préparation : </strong> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Nettoyer tous les légumes, les éplucher. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poulet%20mbongo/SAM_9782.JPG" alt="SAM 9782" width="600" height="450" />Coupez le poulet et mettre les morceaux davec les ans une grande marmite puis couvrir d'eau. Porter à ébullition et écumer.</span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poulet%20mbongo/SAM_9790.JPG" alt="SAM 9790" width="600" height="450" /></span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Ecrasez les grains de <a href="index.php?option=com_content&amp;view=article&amp;id=2789:la-mniguette-le-bongogo&amp;catid=118:ingredientsbases&amp;Itemid=492">maniguette</a> <img src="images/stories/poulet%20mbongo/SAM_9787.JPG" alt="SAM 9787" width="274" height="302" /><img src="images/stories/poulet%20mbongo/SAM_9789.JPG" alt="SAM 9789" width="399" height="301" /> Ajoutez l'oignon piqué, le bouquet garni, la poudre de maniguette et salez.</span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img src="images/stories/poulet%20mbongo/SAM_9783.JPG" alt="SAM 9783" width="274" height="299" /><img src="images/stories/poulet%20mbongo/SAM_9794.JPG" alt="SAM 9794" width="398" height="298" /> Couvrir d'eau et laisser cuire 1 h ou 2h pour une poule. La chair du poulet doit se détacher.</span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poulet%20mbongo/SAM_9796.JPG" alt="SAM 9796" width="600" height="450" />Servir chaud de préférence. Moi j’aime bien le bouillon avec du riz.</span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img src="images/stories/poulet%20mbongo/SAM_9702.JPG" alt="poulet mbongo" width="350" height="263" /><img src="images/stories/poulet%20mbongo/SAM_9703.JPG" alt="poulet mbongo" width="350" height="263" /></span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poulet%20mbongo/SAM_9711.JPG" alt="poulet mbongo" width="600" height="359" /></span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"> </span>Bouillon de poulet fumé à la maniguettepublishopenopenbouillon-de-poulet-fume-a-la-maniguette2012-01-20 14:13:562012-01-20 13:13:560http://www.alicepegie.com/wordpress/wordpress/?p=4010post0
40212012-01-20 14:13:262012-01-20 13:13:26<p style="text-align: center;"><img src="images/stories/poulet%20mbongo/SAM_9705.JPG" alt="poulet mbongo1" width="600" height="450" /></p> <p style="text-align: justify;"><span style="font-family: 'Arial','sans-serif';">La poule au pot est un plat qui consiste à faire mijoter une poule avec des légumes à la manière d'un pot-au-feu. Vu que le temps s’est beaucoup rafraichi chez moi ces temps ci j’ai eu envie un soir en rentrant du boulot d’un bon bouillon de poule au pot. Quand j’ouvre mon frigo, pas de poule mais un poulet fumé alors ma poule au pot s’est transformée en poulet fumé au pot aromatisé de <a href="index.php?option=com_content&amp;view=article&amp;catid=118&amp;id=2789">Maniguette </a> !!! Un délice !<!--more--></span></p> <strong>Ingrédients pour env. 6 personnes:</strong> <ul> <li>1 poulet fumé ou 1 poule</li> <li>800 g de carottes</li> <li>300 g de navets</li> <li>4 poireaux</li> <li>1 oignon piqué de 2 clous de girofle</li> <li>Du sel</li> <li>Une gousse de <a href="index.php?option=com_content&amp;view=article&amp;id=2789:la-mniguette-le-bongogo&amp;catid=118:ingredientsbases&amp;Itemid=492">maniguette </a>(ou du poivre)</li> <li>1 petit bouquet garni</li> </ul> <strong>Préparation : </strong> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Nettoyer tous les légumes, les éplucher. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poulet%20mbongo/SAM_9782.JPG" alt="SAM 9782" width="600" height="450" />Coupez le poulet et mettre les morceaux davec les ans une grande marmite puis couvrir d'eau. Porter à ébullition et écumer.</span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poulet%20mbongo/SAM_9790.JPG" alt="SAM 9790" width="600" height="450" /></span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Ecrasez les grains de <a href="index.php?option=com_content&amp;view=article&amp;id=2789:la-mniguette-le-bongogo&amp;catid=118:ingredientsbases&amp;Itemid=492">maniguette</a> <img src="images/stories/poulet%20mbongo/SAM_9787.JPG" alt="SAM 9787" width="274" height="302" /><img src="images/stories/poulet%20mbongo/SAM_9789.JPG" alt="SAM 9789" width="399" height="301" /> Ajoutez l'oignon piqué, le bouquet garni, la poudre de maniguette et salez.</span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img src="images/stories/poulet%20mbongo/SAM_9783.JPG" alt="SAM 9783" width="274" height="299" /><img src="images/stories/poulet%20mbongo/SAM_9794.JPG" alt="SAM 9794" width="398" height="298" /> Couvrir d'eau et laisser cuire 1 h ou 2h pour une poule. La chair du poulet doit se détacher.</span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poulet%20mbongo/SAM_9796.JPG" alt="SAM 9796" width="600" height="450" />Servir chaud de préférence. Moi j’aime bien le bouillon avec du riz.</span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img src="images/stories/poulet%20mbongo/SAM_9702.JPG" alt="poulet mbongo" width="350" height="263" /><img src="images/stories/poulet%20mbongo/SAM_9703.JPG" alt="poulet mbongo" width="350" height="263" /></span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poulet%20mbongo/SAM_9711.JPG" alt="poulet mbongo" width="600" height="359" /></span> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"> </span>Bouillon de poulet fumé à la maniguetteinheritopenopen401-revision2012-01-20 14:13:262012-01-20 13:13:26401http://www.alicepegie.com/wordpress/wordpress/?p=4020revision0
40312011-11-17 14:14:212011-11-17 13:14:21<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/1.JPG" alt="creme capillaire coup de pousse1" width="600" height="643" />Je vous ai présenté dernièrement un <a href="index.php?option=com_content&amp;view=article&amp;catid=77&amp;id=2795">Masque capillaire coup de pousse</a> avant shampooing pour les cheuveux cassant, aujourdh'ui je vous présente un soin après shampoing sans rincage ayant le meme objectif. il s'agit d'une crème de soin pour les cheveux aux multiples usages, riche en huile de coco, qui prend soin de la chevelure, qui va réduite la chute de cheveux, et l'embellir au maximum, sans les alourdirs.<!--more--></span><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 100g env.</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 80g d'huile végétale  de coco</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">10g d'huile végétale de sapote</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Facultatif:</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2g HE de gingembre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2g HE de géranium rosat</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2g HE de romarin à cinéole.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Préparation:</strong> </span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Au bain-marie, faites liquéfier de l'huile de coco.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/2.JPG" alt="2" width="600" height="450" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Hors du feu, bien fouetter laissez refroidir au congélateur pendant 5mn env.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/3.JPG" alt="3" width="360" height="271" /><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/4.JPG" alt="4" width="345" height="272" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Puis intégrer, un à un, les autres ingredients en prenant soin de bien mélanger entre chaque ajout.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/5.JPG" alt="5" width="335" height="252" /><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/6.JPG" alt="6" width="345" height="252" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/7.JPG" alt="7" width="350" height="246" /><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/8.JPG" alt="8" width="328" height="246" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Utilisation:</strong> Vous pouvez utiliser cette crème en soin avant-shampooing mais surtout en après-shampooing  pour nourrir intensément vos cheveux et les réparer. On peut également utiliser une noisette de cette crème sur cheveux humides ou secs pour nourrir les cheveux secs, très secs, frisés et/ou crépus.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/9.JPG" alt="crème coup de pousse" width="330" height="274" /><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/10.JPG" alt="crème coup de pousse" width="361" height="272" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/11.JPG" alt="crème coup de pousse" width="332" height="332" /><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/12.JPG" alt="crème coup de pousse" width="360" height="331" /></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingredients:</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HV de coco</strong>: Nourrit et lisse la fibre capillaire, rend les cheveux brillants et vigoureux, Parfume agréablement les cheveux.</span></li> <li style="line-height: normal;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HV Sapote</strong>: Connue pour stimuler la pousse des cheveux, réputée pour ralentir la chute des cheveux Apaisante du cuir chevelu, </span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">nourrit et démêle les cheveux frisés, Apporte brillance et toucher doux aux cheveux</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HE Gingembre:</strong> connue pour ralentir la chute de cheveux</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HE Romarin à cinéole:</strong> <span>Revitalisant cutané et capillaire</span>, elle est recommandée pour les <span>Cheveux fatigués, pellicules, perte de cheveux</span>.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HE Géranium rosat:</strong> Elle est tonique , astringente et elle équilibre la sécrétion de sebum, la substance grasse émise par les glandes sébacées qui préserve l'élasticité de l'épiderme: on l'utilisera aussi bien pour une peau grasse que pour une peau sèche, ridée ou acnéique ou contre la chute des cheveux.</span></li> </ul>Crème capillaire répartrice coup de poussepublishopenopencreme-capillaire-repartrice-coup-de-pousse2012-01-20 14:15:382012-01-20 13:15:380http://www.alicepegie.com/wordpress/wordpress/?p=4030post0
40412012-01-20 14:15:202012-01-20 13:15:20<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/1.JPG" alt="creme capillaire coup de pousse1" width="600" height="643" />Je vous ai présenté dernièrement un <a href="index.php?option=com_content&amp;view=article&amp;catid=77&amp;id=2795">Masque capillaire coup de pousse</a> avant shampooing pour les cheuveux cassant, aujourdh'ui je vous présente un soin après shampoing sans rincage ayant le meme objectif. il s'agit d'une crème de soin pour les cheveux aux multiples usages, riche en huile de coco, qui prend soin de la chevelure, qui va réduite la chute de cheveux, et l'embellir au maximum, sans les alourdirs.<!--more--></span><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 100g env.</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 80g d'huile végétale  de coco</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">10g d'huile végétale de sapote</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Facultatif:</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2g HE de gingembre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2g HE de géranium rosat</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2g HE de romarin à cinéole.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Préparation:</strong> </span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Au bain-marie, faites liquéfier de l'huile de coco.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/2.JPG" alt="2" width="600" height="450" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Hors du feu, bien fouetter laissez refroidir au congélateur pendant 5mn env.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/3.JPG" alt="3" width="360" height="271" /><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/4.JPG" alt="4" width="345" height="272" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Puis intégrer, un à un, les autres ingredients en prenant soin de bien mélanger entre chaque ajout.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/5.JPG" alt="5" width="335" height="252" /><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/6.JPG" alt="6" width="345" height="252" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/7.JPG" alt="7" width="350" height="246" /><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/8.JPG" alt="8" width="328" height="246" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Utilisation:</strong> Vous pouvez utiliser cette crème en soin avant-shampooing mais surtout en après-shampooing  pour nourrir intensément vos cheveux et les réparer. On peut également utiliser une noisette de cette crème sur cheveux humides ou secs pour nourrir les cheveux secs, très secs, frisés et/ou crépus.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/9.JPG" alt="crème coup de pousse" width="330" height="274" /><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/10.JPG" alt="crème coup de pousse" width="361" height="272" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/11.JPG" alt="crème coup de pousse" width="332" height="332" /><img src="images/stories/baume%20coup%20de%20pousse/baume%20coup%20de%20pousse/12.JPG" alt="crème coup de pousse" width="360" height="331" /></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingredients:</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HV de coco</strong>: Nourrit et lisse la fibre capillaire, rend les cheveux brillants et vigoureux, Parfume agréablement les cheveux.</span></li> <li style="line-height: normal;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HV Sapote</strong>: Connue pour stimuler la pousse des cheveux, réputée pour ralentir la chute des cheveux Apaisante du cuir chevelu, </span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">nourrit et démêle les cheveux frisés, Apporte brillance et toucher doux aux cheveux</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HE Gingembre:</strong> connue pour ralentir la chute de cheveux</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HE Romarin à cinéole:</strong> <span>Revitalisant cutané et capillaire</span>, elle est recommandée pour les <span>Cheveux fatigués, pellicules, perte de cheveux</span>.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HE Géranium rosat:</strong> Elle est tonique , astringente et elle équilibre la sécrétion de sebum, la substance grasse émise par les glandes sébacées qui préserve l'élasticité de l'épiderme: on l'utilisera aussi bien pour une peau grasse que pour une peau sèche, ridée ou acnéique ou contre la chute des cheveux.</span></li> </ul>Crème capillaire répartrice coup de pousseinheritopenopen403-revision2012-01-20 14:15:202012-01-20 13:15:20403http://www.alicepegie.com/wordpress/wordpress/?p=4040revision0
40512011-11-16 14:16:022011-11-16 13:16:02<p style="text-align: justify;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/brisee1.JPG" alt="pate brisee1" width="600" height="450" />La pâte brisée est une pâte qui sert de réceptacle à une garniture humide. C’est une base incontournable de la pâtisserie et de la cuisine. On s’en sert pour les tartes surtout aux fruits, quiche ou autres préparations du même type. Son nom viendrait de du geste qui consiste à briser la pâte contre le plan de travail.<!--more--></span><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ingrédients pour une tarte de 4 à 6 personnes :</span></strong></p> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">250g de farine</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1 pincée de sel</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">125g de beurre mou découpés en dés (pas fondu !!)</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1 œuf entier ou 1 jaune d’œuf + 30ml d’eau (le tout à température ambiante.)</span></li> </ul> <p style="text-align: justify;"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation</span></strong></p> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Sortez l’œuf et le beurre du frais 15mn à l’avance pour qu’il soit à température ambiante.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/2.JPG" alt="2" width="600" height="487" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mettez la farine et le sel dans un saladier et faites un puits.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/1.JPG" alt="1" width="600" height="449" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ajoutez le beurre puis le jaune d’œuf et mélangez rapidement.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/3.JPG" alt="3" width="350" height="263" /><img src="images/stories/pate%20brisee/4.JPG" alt="4" width="350" height="263" /></span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/6.JPG" alt="6" width="600" height="451" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Rajoutez ensuite l’eau (ici moi à la place de l’eau je mets le blanc d’œuf qui en général fait entre 30 et 36 g ma pate est ainsi plus gouteuse). Mélangez sans trop travailler la pate.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/5.JPG" alt="5" width="600" height="450" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Formez une boule avec la pate et enveloppez-la d’un film alimentaire. Laissez reposer le tout 1h au frais.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/8.JPG" alt="8" width="356" height="224" /><img src="images/stories/pate%20brisee/7.JPG" alt="7" width="345" height="225" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Au bout d’une heure préchauffer le four à 180°, sortez votre pate du frais et étalez la à l’aide d’un rouleau à pâtisserie</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/9.JPG" alt="pate brisée 9" width="388" height="312" /><img src="images/stories/pate%20brisee/10.JPG" alt="10" width="302" height="311" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Beurrez et farinez le moule, garnissez le moule de pate mettez le tout au frais pendant que vous préparez votre garniture.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/11.JPG" alt="11" width="325" height="273" /><img src="images/stories/pate%20brisee/brisee4.JPG" alt="pate brisee4" width="364" height="273" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Si votre recette nécessite une pré-cuisson, piquez la pate (sans la percer) avec une fourchette.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/brisee5.JPG" alt="pate brisee5" width="328" height="273" /><img src="images/stories/pate%20brisee/brisee%20banane2.JPG" alt="brisee banane2" width="364" height="273" /></span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/pommes.JPG" alt="tarte aux pommes " width="264" height="282" /><img src="images/stories/pate%20brisee/tatin1.JPG" alt="tarte tatin1" width="429" height="281" /></span> <p style="text-align: justify;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> </span></p>La pâte Briséepublishopenopenla-pate-brisee2012-01-21 07:53:562012-01-21 06:53:560http://www.alicepegie.com/wordpress/wordpress/?p=4050post0
40612012-01-20 14:17:052012-01-20 13:17:05<p style="text-align: justify;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/brisee1.JPG" alt="pate brisee1" width="600" height="450" />La pâte brisée est une pâte qui sert de réceptacle à une garniture humide. C’est une base incontournable de la pâtisserie et de la cuisine. On s’en sert pour les tartes surtout aux fruits, quiche ou autres préparations du même type. Son nom viendrait de du geste qui consiste à briser la pâte contre le plan de travail.<!--more--></span><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ingrédients pour une tarte de 4 à 6 personnes :</span></strong></p> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">250g de farine</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1 pincée de sel</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">125g de beurre mou découpés en dés (pas fondu !!)</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1 œuf entier ou 1 jaune d’œuf + 30ml d’eau (le tout à température ambiante.)</span></li> </ul> <p style="text-align: justify;"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation</span></strong></p> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Sortez l’œuf et le beurre du frais 15mn à l’avance pour qu’il soit à température ambiante.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/2.JPG" alt="2" width="600" height="487" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mettez la farine et le sel dans un saladier et faites un puits.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/1.JPG" alt="1" width="600" height="449" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ajoutez le beurre puis le jaune d’œuf et mélangez rapidement.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/3.JPG" alt="3" width="350" height="263" /><img src="images/stories/pate%20brisee/4.JPG" alt="4" width="350" height="263" /></span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/6.JPG" alt="6" width="600" height="451" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Rajoutez ensuite l’eau (ici moi à la place de l’eau je mets le blanc d’œuf qui en général fait entre 30 et 36 g ma pate est ainsi plus gouteuse). Mélangez sans trop travailler la pate.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/5.JPG" alt="5" width="600" height="450" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Formez une boule avec la pate et enveloppez-la d’un film alimentaire. Laissez reposer le tout 1h au frais.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/8.JPG" alt="8" width="356" height="224" /><img src="images/stories/pate%20brisee/7.JPG" alt="7" width="345" height="225" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Au bout d’une heure préchauffer le four à 180°, sortez votre pate du frais et étalez la à l’aide d’un rouleau à pâtisserie</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/9.JPG" alt="pate brisée 9" width="388" height="312" /><img src="images/stories/pate%20brisee/10.JPG" alt="10" width="302" height="311" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Beurrez et farinez le moule, garnissez le moule de pate mettez le tout au frais pendant que vous préparez votre garniture.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/11.JPG" alt="11" width="325" height="273" /><img src="images/stories/pate%20brisee/brisee4.JPG" alt="pate brisee4" width="364" height="273" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Si votre recette nécessite une pré-cuisson, piquez la pate (sans la percer) avec une fourchette.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/brisee5.JPG" alt="pate brisee5" width="328" height="273" /><img src="images/stories/pate%20brisee/brisee%20banane2.JPG" alt="brisee banane2" width="364" height="273" /></span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/pommes.JPG" alt="tarte aux pommes " width="264" height="282" /><img src="images/stories/pate%20brisee/tatin1.JPG" alt="tarte tatin1" width="429" height="281" /></span> <p style="text-align: justify;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> </span></p>La pâte Briséeinheritopenopen405-revision2012-01-20 14:17:052012-01-20 13:17:05405http://www.alicepegie.com/wordpress/wordpress/?p=4060revision0
40712011-11-15 14:17:362011-11-15 13:17:36<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/masque%20capillaire%20coco/masque%20coco1.JPG" alt="masque coco1" width="600" height="508" />Je vous ai proposé la semaine dernière, 2 soins à base de noix de coco, huile et lait. J’ai commencé par des <a href="index.php?option=com_content&amp;view=article&amp;catid=131&amp;id=2788">Sels de bain apaisants fou de Coco</a> avec le lait et l’huile puis la <a href="index.php?option=com_content&amp;view=article&amp;catid=125&amp;id=2791">Crème purifiante &amp; apaisante coco &amp; riz</a> pour nourrir et hydrater la peau. Cette semaine on s’occupe des cheveux : on commence donc par un soin avant shampooing, à laisser poser. Ce soin va nourrir, fortifier et faire briller et favoriser la pousse des cheveux. Le lait de coco est un soin incontournable pour les cheveux.<!--more--></span><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 100g env. :</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">80g de lait de coco liquide (attention vérifier ce qui est marqué sur la boite !!)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">10g d’huile de coco</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">5g de cire de ricin (ou d’abeille)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2 g de protéine de riz</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">20 gouttes de conservateur </span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation :</span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez le lait, l’huile et la cire de ricin dans un bol et faites chauffer l’ensemble au bain marie jusqu’à ce que la cire soit complètement liquide.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/masque%20capillaire%20coco/SAM_9759.JPG" alt="SAM 9759" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Lorsque la cire est liquide, mélangez énergiquement pendant env. 3mn.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez votre bol dans un fon d’eau froide, et mélangez à nouveau jusqu’à la prise de l’émulsion.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Rajoutez le reste des ingrédients un à un en mélangeant entre chaque ajout en terminant par le </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">conservateur.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/masque%20capillaire%20coco/SAM_9764.JPG" alt="SAM 9764" width="288" height="286" /><img src="images/stories/masque%20capillaire%20coco/SAM_9766.JPG" alt="SAM 9766" width="380" height="286" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Mettez en pot</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/masque%20capillaire%20coco/masque%20coco2.JPG" alt="masque coco2" width="414" height="400" /><img src="images/stories/masque%20capillaire%20coco/masque%20coco3.JPG" alt="masque coco3" width="200" height="401" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Utilisation :</strong> Ce masque avant shampooing s’applique tous les 2 jours (pour une cure intensive) ou une fois par semaine pour un simple entretien, sur les racines en priorité, mais aussi sur les longueurs et les pointes afin de les nourrir. Laissez poser 2 heures minimum. Procédez ensuite au shampooing.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/masque%20capillaire%20coco/masque%20coco4.JPG" alt="masque coco4" width="329" height="269" /><img src="images/stories/masque%20capillaire%20coco/masque%20coco5.JPG" alt="masque coco5" width="355" height="267" /></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingrédients : disponibles chez AZ </span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le lait de coco :</strong> Il sublime les cheveux, en leur donnant volume, force, brillance, et accélère la pousse quand il est utilisé en cure.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>L’huile de coco :</strong> fortifie les cheveux, leur rendant brillance et tonicité. On doit cependant l'appliquer en petites doses. Le massage du cuir chevelu avec l'huile de coco contribue à épaissir et à protéger tous les types de cheveux.</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">La cire de ricin (disponible ches macosmeto perso):</span></strong>Outre sa fonction nourrissante et revitalisante, la cire de ricin favorise aussi la repousse des cheveux et leurs apporte également du volume. <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">La protéine de riz: </span></strong>Améliore et maintient l'hydratation des cheveux,apporte force et volume aux cheveux,Gaine la fibre capillaire : facilite le coiffage<strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">NOTE: </span></strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">vous pouvez supprimer le conservateur si vous ne faite pas une grande quantité . Vous pourrez ainsi conserver votre préparation 1 semaine au frais</span><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong>Masque capillaire coup de poussepublishopenopenmasque-capillaire-coup-de-pousse2012-01-21 07:54:082012-01-21 06:54:080http://www.alicepegie.com/wordpress/wordpress/?p=4070post0
40812012-01-20 14:17:532012-01-20 13:17:53<p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="masque coco1" src="images/stories/masque%20capillaire%20coco/masque%20coco1.JPG" height="508" width="600" />Je vous ai proposé la semaine dernière, 2 soins à base de noix de coco, huile et lait. J’ai commencé par des&nbsp;<a href="index.php?option=com_content&amp;view=article&amp;catid=131&amp;id=2788">Sels de bain apaisants fou de Coco</a> avec le lait et l’huile puis la <a href="index.php?option=com_content&amp;view=article&amp;catid=125&amp;id=2791">Crème purifiante &amp; apaisante coco &amp; riz</a> pour nourrir et hydrater la peau. Cette semaine on s’occupe des cheveux&nbsp;: on commence donc par un soin avant shampooing, à laisser poser. Ce soin va nourrir, fortifier et faire briller et favoriser la pousse des cheveux. Le lait de coco est un soin incontournable pour les cheveux.<hr id="system-readmore" /></span></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 100g env.&nbsp;:</span></strong></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">80g de lait de coco liquide (attention vérifier ce qui est marqué sur la boite&nbsp;!!)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">10g d’huile de coco</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">5g de cire de ricin (ou d’abeille)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2 g de protéine de riz</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">20 gouttes de conservateur&nbsp;</span></li> </ul> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation&nbsp;:</span></strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez le lait, l’huile et la cire de ricin dans un bol et faites chauffer l’ensemble au bain marie jusqu’à ce que la cire soit complètement liquide.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="SAM 9759" src="images/stories/masque%20capillaire%20coco/SAM_9759.JPG" height="450" width="600" /></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Lorsque la cire est liquide, mélangez énergiquement pendant env. 3mn.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez votre bol dans un fon d’eau froide, et mélangez à nouveau jusqu’à la prise de l’émulsion.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Rajoutez le reste des ingrédients un à un en mélangeant entre chaque ajout en terminant par le </span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">conservateur.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="SAM 9764" src="images/stories/masque%20capillaire%20coco/SAM_9764.JPG" height="286" width="288" /><img alt="SAM 9766" src="images/stories/masque%20capillaire%20coco/SAM_9766.JPG" height="286" width="380" /></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">&nbsp;Mettez en pot</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="masque coco2" src="images/stories/masque%20capillaire%20coco/masque%20coco2.JPG" height="400" width="414" /><img alt="masque coco3" src="images/stories/masque%20capillaire%20coco/masque%20coco3.JPG" height="401" width="200" /></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Utilisation&nbsp;:</strong> Ce masque avant shampooing s’applique tous les 2 jours (pour une cure intensive) ou une fois par semaine pour un simple entretien, sur les racines en priorité, mais aussi sur les longueurs et les pointes afin de les nourrir. Laissez poser 2 heures minimum. Procédez ensuite au shampooing.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="masque coco4" src="images/stories/masque%20capillaire%20coco/masque%20coco4.JPG" height="269" width="329" /><img alt="masque coco5" src="images/stories/masque%20capillaire%20coco/masque%20coco5.JPG" height="267" width="355" /></span></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingrédients&nbsp;: disponibles chez AZ<br /></span></strong></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le lait de coco&nbsp;:</strong> Il sublime les cheveux, en leur donnant volume, force, brillance, et accélère la pousse quand il est utilisé en cure.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>L’huile de coco&nbsp;:</strong> fortifie les cheveux, leur rendant brillance et tonicité. On doit cependant l'appliquer en petites doses. Le massage du cuir chevelu avec l'huile de coco contribue à épaissir et à protéger tous les types de cheveux.</span></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">La cire de ricin (disponible ches macosmeto perso):</span></strong>Outre sa fonction nourrissante et revitalisante, la cire de ricin favorise aussi la repousse des cheveux et leurs apporte également du volume.</p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">La protéine de riz: </span></strong>Améliore et maintient l'hydratation des cheveux,apporte force et volume aux cheveux,Gaine la fibre capillaire : facilite le coiffage<strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><br /></span></strong></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">NOTE: </span></strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">vous pouvez supprimer le conservateur si vous ne faite pas une grande quantité . Vous pourrez ainsi conserver votre préparation 1 semaine au frais</span><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><br /></span></strong></p>Masque capillaire coup de pousseinheritopenopen407-revision2012-01-20 14:17:532012-01-20 13:17:53407http://www.alicepegie.com/wordpress/wordpress/?p=4080revision0
41012011-11-14 14:19:022011-11-14 13:19:02<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/eclairs%20gressins%20chocolat/SAM_9746.JPG" alt="eclairs gessins" width="600" height="481" />Il ya quelques semaines je vous ai présenté la recette de <a href="index.php?option=com_content&amp;view=article&amp;catid=118&amp;id=2761">La Pâte à Choux</a> qui set à faire chouquettes et éclairs. Aujourd’hui je vous présente des gressins à base de pâte à choux une alternative aux éclairs. Ces bâtonnets croustillants, fins comme des crayons, sont faciles à faire et plus faciles que des éclairs. Il est difficile de s'arrêter quand on a commencé à en croquer.<!--more--> </span> <strong>Pour 1 gressins env.:</strong> 30g de beurre 125ml d’eau ou de lait (ou un peu de chaque) 63g de farine 2 œufs 2 cuillères à soupe de pépites de chocolat <strong>Préparation:</strong> 1- Portez à ébullition le lait et le beurre jusqu’à ce que le beurre soit dissout. <img src="images/stories/eclairs%20gressins%20chocolat/SAM_9720.JPG" alt="SAM 9720" width="346" height="261" /><img src="images/stories/eclairs%20gressins%20chocolat/SAM_9721.JPG" alt="SAM 9721" width="347" height="260" /> 2- Retirez la casserole du feu et ajoutez la farine d’un seul coup. Remuez à l’aide d’une cuillère en bois jusqu’à ce que l’eau soit absorbée et remettez sur feu doux. Remuez sans cesse jusqu’à ce que la pâte soit desséchée et se décolle de la paroi de la casserole. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/eclairs%20gressins%20chocolat/SAM_9722.JPG" alt="SAM 9722" width="471" height="480" /> 3- Otez la pâte du feu. Ajoutez alors les œufs un à un en mélangeant bien entre chaque ajout. Puis rajoutez les pépites de chocolat et mélangez <img src="images/stories/eclairs%20gressins%20chocolat/SAM_9724.JPG" alt="SAM 9724" width="351" height="265" /><img src="images/stories/eclairs%20gressins%20chocolat/SAM_9726.JPG" alt="SAM 9726" width="352" height="265" /> <img style="float: left;" src="images/stories/eclairs%20gressins%20chocolat/SAM_9727.JPG" alt="SAM 9727" width="348" height="261" /> <img src="images/stories/eclairs%20gressins%20chocolat/SAM_9728.JPG" alt="SAM 9728" width="355" height="266" />4- A l’aide d’une poche à douille, dressez votre pâte en espaçant les tas pour éviter qu’ils ne collent. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/eclairs%20gressins%20chocolat/SAM_9730.JPG" alt="SAM 9730" width="600" height="450" /> 5- Faites cuire à 180° pendant 25 min. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/eclairs%20gressins%20chocolat/SAM_9739.JPG" alt="SAM 9739" width="350" height="547" /> <img src="images/stories/eclairs%20gressins%20chocolat/SAM_9740.JPG" alt="SAM 9740" width="361" height="241" /><img src="images/stories/eclairs%20gressins%20chocolat/SAM_9742.JPG" alt="eclairs gressins" width="335" height="240" />Eclairs Gressins au chocolatpublishopenopeneclairs-gressins-au-chocolat2012-01-20 14:20:262012-01-20 13:20:260http://www.alicepegie.com/wordpress/wordpress/?p=4100post0
40912012-01-20 14:18:262012-01-20 13:18:26<p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="masque coco1" src="images/stories/masque%20capillaire%20coco/masque%20coco1.JPG" height="508" width="600" />Je vous ai proposé la semaine dernière, 2 soins à base de noix de coco, huile et lait. J’ai commencé par des&nbsp;<a href="index.php?option=com_content&amp;view=article&amp;catid=131&amp;id=2788">Sels de bain apaisants fou de Coco</a> avec le lait et l’huile puis la <a href="index.php?option=com_content&amp;view=article&amp;catid=125&amp;id=2791">Crème purifiante &amp; apaisante coco &amp; riz</a> pour nourrir et hydrater la peau. Cette semaine on s’occupe des cheveux&nbsp;: on commence donc par un soin avant shampooing, à laisser poser. Ce soin va nourrir, fortifier et faire briller et favoriser la pousse des cheveux. Le lait de coco est un soin incontournable pour les cheveux.<hr id="system-readmore" /></span></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 100g env.&nbsp;:</span></strong></p> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">80g de lait de coco liquide (attention vérifier ce qui est marqué sur la boite&nbsp;!!)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">10g d’huile de coco</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">5g de cire de ricin (ou d’abeille)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2 g de protéine de riz</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">20 gouttes de conservateur&nbsp;</span></li> </ul> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation&nbsp;:</span></strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez le lait, l’huile et la cire de ricin dans un bol et faites chauffer l’ensemble au bain marie jusqu’à ce que la cire soit complètement liquide.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" alt="SAM 9759" src="images/stories/masque%20capillaire%20coco/SAM_9759.JPG" height="450" width="600" /></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Lorsque la cire est liquide, mélangez énergiquement pendant env. 3mn.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez votre bol dans un fon d’eau froide, et mélangez à nouveau jusqu’à la prise de l’émulsion.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Rajoutez le reste des ingrédients un à un en mélangeant entre chaque ajout en terminant par le </span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">conservateur.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="SAM 9764" src="images/stories/masque%20capillaire%20coco/SAM_9764.JPG" height="286" width="288" /><img alt="SAM 9766" src="images/stories/masque%20capillaire%20coco/SAM_9766.JPG" height="286" width="380" /></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">&nbsp;Mettez en pot</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="masque coco2" src="images/stories/masque%20capillaire%20coco/masque%20coco2.JPG" height="400" width="414" /><img alt="masque coco3" src="images/stories/masque%20capillaire%20coco/masque%20coco3.JPG" height="401" width="200" /></span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Utilisation&nbsp;:</strong> Ce masque avant shampooing s’applique tous les 2 jours (pour une cure intensive) ou une fois par semaine pour un simple entretien, sur les racines en priorité, mais aussi sur les longueurs et les pointes afin de les nourrir. Laissez poser 2 heures minimum. Procédez ensuite au shampooing.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img alt="masque coco4" src="images/stories/masque%20capillaire%20coco/masque%20coco4.JPG" height="269" width="329" /><img alt="masque coco5" src="images/stories/masque%20capillaire%20coco/masque%20coco5.JPG" height="267" width="355" /></span></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingrédients&nbsp;: disponibles chez AZ<br /></span></strong></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le lait de coco&nbsp;:</strong> Il sublime les cheveux, en leur donnant volume, force, brillance, et accélère la pousse quand il est utilisé en cure.</span></p> <p><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>L’huile de coco&nbsp;:</strong> fortifie les cheveux, leur rendant brillance et tonicité. On doit cependant l'appliquer en petites doses. Le massage du cuir chevelu avec l'huile de coco contribue à épaissir et à protéger tous les types de cheveux.</span></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">La cire de ricin (disponible ches macosmeto perso):</span></strong>Outre sa fonction nourrissante et revitalisante, la cire de ricin favorise aussi la repousse des cheveux et leurs apporte également du volume.</p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">La protéine de riz: </span></strong>Améliore et maintient l'hydratation des cheveux,apporte force et volume aux cheveux,Gaine la fibre capillaire : facilite le coiffage<strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><br /></span></strong></p> <p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">NOTE: </span></strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">vous pouvez supprimer le conservateur si vous ne faite pas une grande quantité . Vous pourrez ainsi conserver votre préparation 1 semaine au frais</span><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><br /></span></strong></p>Masque capillaire coup de pousseinheritopenopen407-revision-22012-01-20 14:18:262012-01-20 13:18:26407http://www.alicepegie.com/wordpress/wordpress/?p=4090revision0
41112012-01-20 14:19:442012-01-20 13:19:44<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/eclairs%20gressins%20chocolat/SAM_9746.JPG" alt="eclairs gessins" width="600" height="481" />Il ya quelques semaines je vous ai présenté la recette de <a href="index.php?option=com_content&amp;view=article&amp;catid=118&amp;id=2761">La Pâte à Choux</a> qui set à faire chouquettes et éclairs. Aujourd’hui je vous présente des gressins à base de pate à choux une alternative aux éclairs. Ces bâtonnets croustillants, fins comme des crayons, sont faciles à faire et plus faciles que des éclairs. Il est difficile de s'arrêter quand on a commencé à en croquer.<!--more--> </span> <strong>Pour 1 gressins env.:</strong> 30g de beurre 125ml d’eau ou de lait (ou un peu de chaque) 63g de farine 2 œufs 2 cuillères à soupe de pépites de chocolat <strong>Préparation:</strong> 1- Portez à ébullition le lait et le beurre jusqu’à ce que le beurre soit dissout. <img src="images/stories/eclairs%20gressins%20chocolat/SAM_9720.JPG" alt="SAM 9720" width="346" height="261" /><img src="images/stories/eclairs%20gressins%20chocolat/SAM_9721.JPG" alt="SAM 9721" width="347" height="260" /> 2- Retirez la casserole du feu et ajoutez la farine d’un seul coup. Remuez à l’aide d’une cuillère en bois jusqu’à ce que l’eau soit absorbée et remettez sur feu doux. Remuez sans cesse jusqu’à ce que la pâte soit desséchée et se décolle de la paroi de la casserole. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/eclairs%20gressins%20chocolat/SAM_9722.JPG" alt="SAM 9722" width="471" height="480" /> 3- Otez la pâte du feu. Ajoutez alors les œufs un à un en mélangeant bien entre chaque ajout. Puis rajoutez les pépites de chocolat et mélangez <img src="images/stories/eclairs%20gressins%20chocolat/SAM_9724.JPG" alt="SAM 9724" width="351" height="265" /><img src="images/stories/eclairs%20gressins%20chocolat/SAM_9726.JPG" alt="SAM 9726" width="352" height="265" /> <img style="float: left;" src="images/stories/eclairs%20gressins%20chocolat/SAM_9727.JPG" alt="SAM 9727" width="348" height="261" /> <img src="images/stories/eclairs%20gressins%20chocolat/SAM_9728.JPG" alt="SAM 9728" width="355" height="266" />4- A l’aide d’une poche à douille, dressez votre pâte en espaçant les tas pour éviter qu’ils ne collent. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/eclairs%20gressins%20chocolat/SAM_9730.JPG" alt="SAM 9730" width="600" height="450" /> 5- Faites cuire à 180° pendant 25 min. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/eclairs%20gressins%20chocolat/SAM_9739.JPG" alt="SAM 9739" width="350" height="547" /> <img src="images/stories/eclairs%20gressins%20chocolat/SAM_9740.JPG" alt="SAM 9740" width="361" height="241" /><img src="images/stories/eclairs%20gressins%20chocolat/SAM_9742.JPG" alt="eclairs gressins" width="335" height="240" />Eclairs Gressins au chocolatinheritopenopen410-revision2012-01-20 14:19:442012-01-20 13:19:44410http://www.alicepegie.com/wordpress/wordpress/?p=4110revision0
41212011-11-13 14:20:462011-11-13 13:20:46<span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/audio/mbilia%20tabu.jpg" alt="mbilia tabu" width="400" height="278" />Aujourd’hui je vous présente l’un es duo africains qui a marque leur temps et que j’aime beaucoup. Il s’agit de Tabu Ley et Mbilia Bel.</span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">TABU LEY ROCHEREAU :</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> Né Pascal Emmanuel Sinamoyi Tabu, il commence par chanter à l'église et dans les chorales des établissements scolaires qu'il fréquente avant de rejoindre, en 1959, l'Education nationale du Congo.<!--more-->Il commence à composer dans les années 1950. En 1956, il participe à une séance d'enregistrement avec le musicien Grand Kalle (Joseph Kabasele). C'est le début de sa carrière : Tabu propose ses chansons à l'African Jazz, qui l'engage. Il prend alors son nom de scène de Rochereau, en hommage au gouverneur de Belfort, Pierre Philippe Denfert-Rochereau. Ses premiers titres, comme Kelya, Adios Tété et Bonbon sucré le font connaître du public. Il est alors proche du Mouvement national congolais de <strong>Patrice Lumumba</strong>.</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Il quitte l'African Jazz et rejoint l'orchestre Jazz Africain en novembre 1960, puis créé la formation African Fiesta Flash en 1965. Il y composera, entre 1964 à 1968, près de 200 chansons. L'orchestre se rend à Brazzaville puis à Montréal à l'occasion de l'exposition universelle de 1967.</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Comme l'avait fait Kallé son mentor, Rochereau a apporté avec son orchestre l'African fiesta National, pas mal d'innovations dans la rumba congolaise. En adoptant tout d'abord la batterie, à l'image de ce que l'on trouvait dans les groupes de Pop ou de Rythm'n blues.</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">En 46 ans de carrière, Tabu Ley a composé plus de 3 000 chansons et vendu plusieurs milliers de disques.</span> &nbsp; <span style="font-size: 10pt;"><strong><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Tabu Ley|1||a{/nmap}</span></strong></span> &nbsp; <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">MBILIA BEL</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> (née en 1959), de son vrai nom Marie-Claire Mboyo Moseka, est une chanteuse congolaise (RDC) célèbre. Elle débute sa carrière à 17 ans, et quelques années plus tard devient célèbre en se joignant au groupe Africa International. Dans les années 1980, elle épouse <strong>Tabu Ley Rochereau, p</strong>our qui elle chante pendant quelques années. </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> </span>Tabu Ley & Mbilia Belpublishopenopentabu-ley-mbilia-bel2012-01-20 14:21:462012-01-20 13:21:460http://www.alicepegie.com/wordpress/wordpress/?p=4120post0
41412011-11-11 14:22:012011-11-11 13:22:01<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mecombo/mecombo.jpg" alt="mecombo" width="600" height="450" /> <span style="font-family: 'Arial','sans-serif';">Voici une façon simple de recycler des restes de manioc bouilli. Dans les villages du sud du Cameroun, les restes de manioc cuit à l’eau, coupés en dés, sont enfermés dans un sac perméable mais solide et déposé en aval d’une source d’eau « potable » de façon à ce que le sac reste toujours dans une eau fraiche et renouvelée. En ville on n’a pas de source alors on procède comme ceci :<!--more--></span><strong><span style="font-family: 'Arial','sans-serif';">Il faut donc :</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Du manioc cuit à l’eau</span></li> <li><span style="font-family: 'Arial','sans-serif';">De l’eau fraiche </span></li> <li><span style="font-family: 'Arial','sans-serif';">Un grand saladier</span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Méthode </span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Coupez vos maniocs en dés et rincez-les à l’eau claire.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Déposez les dés de manioc dans le saladier et couvrez-les largement d’eau fraiche.</span></li> <li><span style="font-family: 'Arial','sans-serif';"><img src="images/stories/mecombo/SAM_4617.JPG" alt="SAM 4617" width="350" height="268" /><img src="images/stories/mecombo/SAM_5119.JPG" alt="SAM 5119" width="313" height="267" /></span></li> <li><span style="font-family: 'Arial','sans-serif';">Laissez tremper au minimum 24h en changeant l’eau chaque jour. Les dés de manioc vont se gorger d’eau.</span></li> <li style="text-align: center;"><span style="font-family: 'Arial','sans-serif';"><img src="images/stories/mecombo/SAM_5121.JPG" alt="manioc trempé" width="600" height="450" /></span></li> </ul> <span style="font-family: 'Arial','sans-serif';">Si vous ne consommez pas la totalité tout de suite, n’égouttez que la quantité désirée et laissez l’autre dans l’eau jusqu’à consommation.</span> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mecombo/SAM_5123.JPG" alt="mecombo, manioc" width="600" height="450" /></span> <span style="font-family: 'Arial','sans-serif';">Vous pouvez les servir en apéritif dans ce cas égouttez les et mettez dans des bols</span> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mecombo/SAM_5125.JPG" alt="manioc, mecombo" width="600" height="450" /></span> <span style="font-family: 'Arial','sans-serif';">Ils peuvent aussi servir d’accompagnement pour un plat.</span>Dés de Manioc cuit trempéspublishopenopendes-de-manioc-cuit-trempes2012-01-21 07:54:192012-01-21 06:54:190http://www.alicepegie.com/wordpress/wordpress/?p=4140post0
41312012-01-20 14:21:022012-01-20 13:21:02<span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/audio/mbilia%20tabu.jpg" alt="mbilia tabu" width="400" height="278" />Aujourd’hui je vous présente l’un es duo africains qui a marque leur temps et que j’aime beaucoup. Il s’agit de Tabu Ley et Mbilia Bel.</span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">TABU LEY ROCHEREAU :</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> Né Pascal Emmanuel Sinamoyi Tabu, il commence par chanter à l'église et dans les chorales des établissements scolaires qu'il fréquente avant de rejoindre, en 1959, l'Education nationale du Congo. </span> <hr id="system-readmore" /> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Il commence à composer dans les années 1950. En 1956, il participe à une séance d'enregistrement avec le musicien Grand Kalle (Joseph Kabasele). C'est le début de sa carrière : Tabu propose ses chansons à l'African Jazz, qui l'engage. Il prend alors son nom de scène de Rochereau, en hommage au gouverneur de Belfort, Pierre Philippe Denfert-Rochereau. Ses premiers titres, comme Kelya, Adios Tété et Bonbon sucré le font connaître du public. Il est alors proche du Mouvement national congolais de <strong>Patrice Lumumba</strong>.</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Il quitte l'African Jazz et rejoint l'orchestre Jazz Africain en novembre 1960, puis créé la formation African Fiesta Flash en 1965. Il y composera, entre 1964 à 1968, près de 200 chansons. L'orchestre se rend à Brazzaville puis à Montréal à l'occasion de l'exposition universelle de 1967.</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Comme l'avait fait Kallé son mentor, Rochereau a apporté avec son orchestre l'African fiesta National, pas mal d'innovations dans la rumba congolaise. En adoptant tout d'abord la batterie, à l'image de ce que l'on trouvait dans les groupes de Pop ou de Rythm'n blues.</span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">En 46 ans de carrière, Tabu Ley a composé plus de 3 000 chansons et vendu plusieurs milliers de disques.</span> &nbsp; <span style="font-size: 10pt;"><strong><span style="line-height: 115%; font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Tabu Ley|1||a{/nmap}</span></strong></span> &nbsp; <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">MBILIA BEL</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> (née en 1959), de son vrai nom Marie-Claire Mboyo Moseka, est une chanteuse congolaise (RDC) célèbre. Elle débute sa carrière à 17 ans, et quelques années plus tard devient célèbre en se joignant au groupe Africa International. Dans les années 1980, elle épouse <strong>Tabu Ley Rochereau, p</strong>our qui elle chante pendant quelques années. </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> </span>Tabu Ley & Mbilia Belinheritopenopen412-revision2012-01-20 14:21:022012-01-20 13:21:02412http://www.alicepegie.com/wordpress/wordpress/?p=4130revision0
41512012-01-20 14:23:032012-01-20 13:23:03<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mecombo/mecombo.jpg" alt="mecombo" width="600" height="450" /> <span style="font-family: 'Arial','sans-serif';">Voici une façon simple de recycler des restes de manioc bouilli. Dans les villages du sud du Cameroun, les restes de manioc cuit à l’eau, coupés en dés, sont enfermés dans un sac perméable mais solide et déposé en aval d’une source d’eau « potable » de façon à ce que le sac reste toujours dans une eau fraiche et renouvelée. En ville on n’a pas de source alors on procède comme ceci :<!--more--> </span> <strong><span style="font-family: 'Arial','sans-serif';">Il faut donc :</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Du manioc cuit à l’eau</span></li> <li><span style="font-family: 'Arial','sans-serif';">De l’eau fraiche </span></li> <li><span style="font-family: 'Arial','sans-serif';">Un grand saladier</span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Méthode </span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Coupez vos maniocs en dés et rincez-les à l’eau claire.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Déposez les dés de manioc dans le saladier et couvrez-les largement d’eau fraiche.</span></li> <li><span style="font-family: 'Arial','sans-serif';"><img src="images/stories/mecombo/SAM_4617.JPG" alt="SAM 4617" width="350" height="268" /><img src="images/stories/mecombo/SAM_5119.JPG" alt="SAM 5119" width="313" height="267" /></span></li> <li><span style="font-family: 'Arial','sans-serif';">Laissez tremper au minimum 24h en changeant l’eau chaque jour. Les dés de manioc vont se gorger d’eau.</span></li> <li style="text-align: center;"><span style="font-family: 'Arial','sans-serif';"><img src="images/stories/mecombo/SAM_5121.JPG" alt="manioc trempé" width="600" height="450" /></span></li> </ul> <span style="font-family: 'Arial','sans-serif';">Si vous ne consommez pas la totalité tout de suite, n’égouttez que la quantité désirée et laissez l’autre dans l’eau jusqu’à consommation.</span> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mecombo/SAM_5123.JPG" alt="mecombo, manioc" width="600" height="450" /></span> <span style="font-family: 'Arial','sans-serif';">Vous pouvez les servir en apéritif dans ce cas égouttez les et mettez dans des bols</span> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mecombo/SAM_5125.JPG" alt="manioc, mecombo" width="600" height="450" /></span> <span style="font-family: 'Arial','sans-serif';">Ils peuvent aussi servir d’accompagnement pour un plat.</span>Dés de Manioc cuit trempésinheritopenopen414-revision2012-01-20 14:23:032012-01-20 13:23:03414http://www.alicepegie.com/wordpress/wordpress/?p=4150revision0
41612011-11-10 14:23:452011-11-10 13:23:45<span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20coco/SAM_9551.JPG" alt="creme coco" width="600" height="552" />Ce mois c'est le mois de la noix de coco chez moi, je ne vous proposerais que des recettes à base des dérivés de cette plante. Je vous ai déjà proposé les <a href="index.php?option=com_content&amp;view=article&amp;id=2788:sels-de-bain-apaisants-fou-de-coco&amp;catid=131:pour-le-bain&amp;Itemid=505">Sels de bain apaisants fou de Coco</a> aujourd'hui on s'hydrate après le bain avec cette crème.<!--more--></span><strong>Ingrédients Pour 100ml env.</strong> <ul> <li>• Huile végétale de coco : 60g</li> <li>• Cire de riz : 8g</li> <li>• Glycérine végétale : 8g</li> <li>• Huile essentielle de Bois de rose : 10 gouttes</li> <li>• Huile essentielle de Palmarosa : 10 gouttes</li> <li>• Conservateur Cosgard : 10 gouttes</li> </ul> <strong>Mode opératoire :</strong> <ul> <li>• Transférez l'huile de coco et la cire de riz dans un récipient et faites les fondre au bain marie jusqu'à complète liquéfaction de la cire.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20coco/SAM_9416.JPG" alt="SAM 9416" width="600" height="637" /></li> <li>• Lorsque la cire de riz est complètement liquide, versez lentement la glycérine végétale dans l'huile fondue et mélangez vigoureusement environ 3 minutes.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20coco/SAM_9417.JPG" alt="SAM 9417" width="600" height="450" /></li> <li>• Sans cesser d'agiter, mettez le récipient dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</li> </ul> <img src="images/stories/creme%20coco/SAM_9438.JPG" alt="SAM 9438" width="341" height="258" /><img src="images/stories/creme%20coco/SAM_9440.JPG" alt="SAM 9440" width="347" height="260" /> <ul> <li>• Ajoutez progressivement les huiles essentielles, une à une en mélangeant entre chaque ajout et terminez par le conservateur.</li> </ul> <img src="images/stories/creme%20coco/SAM_9441.JPG" alt="SAM 9441" width="341" height="337" /><img src="images/stories/creme%20coco/SAM_9550.JPG" alt="CREME COCO" width="324" height="338" /> <ul> <li>• Transférez la préparation dans votre pot.</li> <li><span style="color: #ff0000;">Avertissement : Avant toute utilisation de votre produit, faites un test d'application de votre préparation dans le pli du coude et attendez 24h.</span></li> <li><span style="color: #ff0000;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20coco/SAM_9574.JPG" alt="creme coco" width="600" height="547" /></span></li> <li><strong>Utilisation</strong> : Cette crème apaisante pour peaux sensibles et abimées s'applique sur le visage et le corps en massages jusqu'à pénétration complète du produit. Stockez votre flacon à l'abri de la lumière et de la chaleur et utilisez la crème dans le mois.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20coco/SAM_9576.JPG" alt="creme coco" width="600" height="477" /></li> </ul> <strong>NOTE :</strong> vous pouvez remplacer la cire de riz par de la cire d'abeille, ou carrément la supprimer la glycérine ayant un faible pouvoir émulsifiant, et la formule ne contenant pas de phase aqueuse, vous obtiendrez une crème un peu plus fluide. <strong>Choix des ingrédients</strong> <ul> <li>• <strong>Huile végétale de coco:</strong> hydratante, adoucissante et émolliente sur la peau</li> <li>•<strong> Cire de riz:</strong> Idéale pour stabiliser tous types d'émulsions, elle apporte onctuosité, toucher très doux et pouvoir protecteur aux crèmes et baumes. Elle est notamment très intéressante pour stabiliser les cérats et émulsions « eau dans huile ».</li> <li>• <strong>Glycérine végétale :</strong> protège la peau et les cheveux de la déshydratation, assouplit et lisse peau et cheveux par son action émolliente.</li> <li>•<strong> Huile essentielle de Bois de rose</strong> : Son parfum doux, légèrement boisé avec une touche camphrée calmera vos nerfs et votre anxiété. Cette huile est également reconnue pour son effet rajeunissant et régénérant sur la peau. Elle s'emploie ainsi largement pour estomper les rides et régénérer les peaux fatiguées.</li> <li>•<strong> Huile essentielle de Palmarosa :</strong> tonifiant des systèmes nerveux et hormonal et comme stimulateur des défenses naturelles.</li> </ul>Crème purifiante & apaisante coco & rizpublishopenopencreme-purifiante-apaisante-coco-riz2012-01-20 14:25:332012-01-20 13:25:330http://www.alicepegie.com/wordpress/wordpress/?p=4160post0
41712012-01-20 14:24:482012-01-20 13:24:48<span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20coco/SAM_9551.JPG" alt="creme coco" width="600" height="552" />Ce mois c'est le mois de la noix de coco chez moi, je ne vous proposerais que des recettes à base des dérivés de cette plante. Je vous ai déjà proposé les <a href="index.php?option=com_content&amp;view=article&amp;id=2788:sels-de-bain-apaisants-fou-de-coco&amp;catid=131:pour-le-bain&amp;Itemid=505">Sels de bain apaisants fou de Coco</a> aujourd'hui on s'hydrate après le bain avec cette crème.<!--more--></span><strong>Ingrédients Pour 100ml env.</strong> <ul> <li>• Huile végétale de coco : 60g</li> <li>• Cire de riz : 8g</li> <li>• Glycérine végétale : 8g</li> <li>• Huile essentielle de Bois de rose : 10 gouttes</li> <li>• Huile essentielle de Palmarosa : 10 gouttes</li> <li>• Conservateur Cosgard : 10 gouttes</li> </ul> <strong>Mode opératoire :</strong> <ul> <li>• Transférez l'huile de coco et la cire de riz dans un récipient et faites les fondre au bain marie jusqu'à complète liquéfaction de la cire.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20coco/SAM_9416.JPG" alt="SAM 9416" width="600" height="637" /></li> <li>• Lorsque la cire de riz est complètement liquide, versez lentement la glycérine végétale dans l'huile fondue et mélangez vigoureusement environ 3 minutes.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20coco/SAM_9417.JPG" alt="SAM 9417" width="600" height="450" /></li> <li>• Sans cesser d'agiter, mettez le récipient dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</li> </ul> <img src="images/stories/creme%20coco/SAM_9438.JPG" alt="SAM 9438" width="341" height="258" /><img src="images/stories/creme%20coco/SAM_9440.JPG" alt="SAM 9440" width="347" height="260" /> <ul> <li>• Ajoutez progressivement les huiles essentielles, une à une en mélangeant entre chaque ajout et terminez par le conservateur.</li> </ul> <img src="images/stories/creme%20coco/SAM_9441.JPG" alt="SAM 9441" width="341" height="337" /><img src="images/stories/creme%20coco/SAM_9550.JPG" alt="CREME COCO" width="324" height="338" /> <ul> <li>• Transférez la préparation dans votre pot.</li> <li><span style="color: #ff0000;">Avertissement : Avant toute utilisation de votre produit, faites un test d'application de votre préparation dans le pli du coude et attendez 24h.</span></li> <li><span style="color: #ff0000;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20coco/SAM_9574.JPG" alt="creme coco" width="600" height="547" /></span></li> <li><strong>Utilisation</strong> : Cette crème apaisante pour peaux sensibles et abimées s'applique sur le visage et le corps en massages jusqu'à pénétration complète du produit. Stockez votre flacon à l'abri de la lumière et de la chaleur et utilisez la crème dans le mois.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20coco/SAM_9576.JPG" alt="creme coco" width="600" height="477" /></li> </ul> <strong>NOTE :</strong> vous pouvez remplacer la cire de riz par de la cire d'abeille, ou carrément la supprimer la glycérine ayant un faible pouvoir émulsifiant, et la formule ne contenant pas de phase aqueuse, vous obtiendrez une crème un peu plus fluide. <strong>Choix des ingrédients</strong> <ul> <li>• <strong>Huile végétale de coco:</strong> hydratante, adoucissante et émolliente sur la peau</li> <li>•<strong> Cire de riz:</strong> Idéale pour stabiliser tous types d'émulsions, elle apporte onctuosité, toucher très doux et pouvoir protecteur aux crèmes et baumes. Elle est notamment très intéressante pour stabiliser les cérats et émulsions « eau dans huile ».</li> <li>• <strong>Glycérine végétale :</strong> protège la peau et les cheveux de la déshydratation, assouplit et lisse peau et cheveux par son action émolliente.</li> <li>•<strong> Huile essentielle de Bois de rose</strong> : Son parfum doux, légèrement boisé avec une touche camphrée calmera vos nerfs et votre anxiété. Cette huile est également reconnue pour son effet rajeunissant et régénérant sur la peau. Elle s'emploie ainsi largement pour estomper les rides et régénérer les peaux fatiguées.</li> <li>•<strong> Huile essentielle de Palmarosa :</strong> tonifiant des systèmes nerveux et hormonal et comme stimulateur des défenses naturelles.</li> </ul>Crème purifiante & apaisante coco & rizinheritopenopen416-revision2012-01-20 14:24:482012-01-20 13:24:48416http://www.alicepegie.com/wordpress/wordpress/?p=4170revision0
41812011-11-09 14:25:522011-11-09 13:25:52<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MANIGUETTE/maniguette1.jpg" alt="maniguette1" width="600" height="426" /> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">J’ai souvent reçu des messages de personnes me demandant le nom français ou en leur langue de certaines épices que je cite dans mes recettes. Et je suis souvent bien embêtée car je ne les connais souvent que par leurs noms populaires ou en ma langue maternelle. Alors j’ai eu l’idée de publier des articles sur les épices les plus utilisées avec images à l’appui ainsi vous pourrez les vous même les traduire. La 1ere épice est la Maniguette (ahan ! vous comprenez mieux pourquoi « une graine de maniguette »)<!--more--> </span> <p style="text-align: center;" align="center"><strong><span style="font-size: 16pt; line-height: 115%; font-family: 'Arial','sans-serif';">MANIGUETTE - GRAINE DE PARADIS</span></strong></p> <p style="text-align: center;" align="center"><strong><span style="font-size: 14pt; line-height: 115%; font-family: 'Arial','sans-serif';">Bongo (Sawa) Bongolo (Beti)</span></strong></p> <p style="text-align: justify;"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Nom scientifique :</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Aframomum melegueta (K. Schumann). Famille: Zingiberacées. </span></p> <p style="text-align: justify;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Cette plante originaire d'Afrique au feuillage odorant, et ses graines aromatisée tel du poivre.</span></p> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MANIGUETTE/maniguette3.jpg" alt="maniguette3" width="400" height="277" /> <strong>Ses feuilles sont longues</strong>, vertes, persistantes et très odorantes. <strong>Le fruit de la maniguette</strong> est une gousse brune en forme d'échalote sortant du pied de la plante et contenant de nombreuses petites graines marron. </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MANIGUETTE/maniguette2.jpg" alt="maniguette2" width="400" height="523" /></span> <p style="text-align: justify;"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">En Cuisine:</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> les graines de la maniguette sont utilisées moulues comme le poivre mais moins piquantes et avec un parfum différent.  Très appréciée dans le poisson d'eau douce et le gibier, on lui attribue des vertus aphrodisiaques.</span></p> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MANIGUETTE/MANIGUETTE.jpg" alt="MANIGUETTE, bongo" width="400" height="414" /></span> <p style="text-align: justify;"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Les vertus thérapeutiques : </span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">La maniguette est riche en tanins, en sels minéraux, en protéines et en phényléthylalkycétones. En Afrique, cette plante est utilisée pour soigner les morsures de serpents, les vers intestinaux, la lèpre et la rougeole. Ces graines sont utilisées pour soigner les règles douloureuses ou la lactation trop abondante. Cuite dans de l’eau bouillante, la racine permet de traiter la stérilité. Dans les pays occidentaux, la maniguette sert d’épice pour remplacer le poivre, de stimulant et d’ingrédient pour la fabrication des alcools. Les graines possèdent des propriétés anti-inflammatoires. Elles sont à consommer avec modération, car elles ont un effet très diurétique.</span></p> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="float: left;" src="images/stories/MANIGUETTE/maniguette-entiere.jpg" alt="maniguette-entiere" width="400" height="400" /><img src="images/stories/MANIGUETTE/he_maniguette.jpg" alt="he maniguette" width="210" height="399" /></span><strong></strong> <p style="text-align: justify;"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">L’huile essentielle de maniguette : </span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">est obtenue à partir de la distillation à la vapeur d’eau des feuilles. Elle est relaxante et apaisante. Dans l’eau du bain, elle diffuse une senteur sucrée et fruitée et procure une sensation de bien-être. En massage, elle peut être utilisée pure ou diluée avec des huiles végétales. Elle est employée en synergie avec l’huile essentielle de saro ou de gingembre papillon. Pour favoriser le sommeil, elle s’utilise en diffusion ou en quelques gouttes directement sur l’oreiller. L’huile essentielle de maniguette est aussi recherchée dans le domaine cosmétique pour améliorer l’aspect de la peau et en parfumerie pour créer une fragrance rare et précieuse.</span></p>La Maniguette (le Bongo)publishopenopenla-maniguette-le-bongo2012-01-20 14:27:112012-01-20 13:27:110http://www.alicepegie.com/wordpress/wordpress/?p=4180post0
41912012-01-20 14:26:542012-01-20 13:26:54<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MANIGUETTE/maniguette1.jpg" alt="maniguette1" width="600" height="426" /> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">J’ai souvent reçu des messages de personnes me demandant le nom français ou en leur langue de certaines épices que je cite dans mes recettes. Et je suis souvent bien embêtée car je ne les connais souvent que par leurs noms populaires ou en ma langue maternelle. Alors j’ai eu l’idée de publier des articles sur les épices les plus utilisées avec images à l’appui ainsi vous pourrez les vous même les traduire. La 1ere épice est la Maniguette (ahan ! vous comprenez mieux pourquoi « une graine de maniguette »)<!--more--> </span> <p style="text-align: center;" align="center"><strong><span style="font-size: 16pt; line-height: 115%; font-family: 'Arial','sans-serif';">MANIGUETTE - GRAINE DE PARADIS</span></strong></p> <p style="text-align: center;" align="center"><strong><span style="font-size: 14pt; line-height: 115%; font-family: 'Arial','sans-serif';">Bongo (Sawa) Bongolo (Beti)</span></strong></p> <p style="text-align: justify;"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Nom scientifique :</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Aframomum melegueta (K. Schumann). Famille: Zingiberacées. </span></p> <p style="text-align: justify;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Cette plante originaire d'Afrique au feuillage odorant, et ses graines aromatisée tel du poivre.</span></p> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MANIGUETTE/maniguette3.jpg" alt="maniguette3" width="400" height="277" /> <strong>Ses feuilles sont longues</strong>, vertes, persistantes et très odorantes. <strong>Le fruit de la maniguette</strong> est une gousse brune en forme d'échalote sortant du pied de la plante et contenant de nombreuses petites graines marron. </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MANIGUETTE/maniguette2.jpg" alt="maniguette2" width="400" height="523" /></span> <p style="text-align: justify;"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">En Cuisine:</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> les graines de la maniguette sont utilisées moulues comme le poivre mais moins piquantes et avec un parfum différent.  Très appréciée dans le poisson d'eau douce et le gibier, on lui attribue des vertus aphrodisiaques.</span></p> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MANIGUETTE/MANIGUETTE.jpg" alt="MANIGUETTE, bongo" width="400" height="414" /></span> <p style="text-align: justify;"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Les vertus thérapeutiques : </span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">La maniguette est riche en tanins, en sels minéraux, en protéines et en phényléthylalkycétones. En Afrique, cette plante est utilisée pour soigner les morsures de serpents, les vers intestinaux, la lèpre et la rougeole. Ces graines sont utilisées pour soigner les règles douloureuses ou la lactation trop abondante. Cuite dans de l’eau bouillante, la racine permet de traiter la stérilité. Dans les pays occidentaux, la maniguette sert d’épice pour remplacer le poivre, de stimulant et d’ingrédient pour la fabrication des alcools. Les graines possèdent des propriétés anti-inflammatoires. Elles sont à consommer avec modération, car elles ont un effet très diurétique.</span></p> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="float: left;" src="images/stories/MANIGUETTE/maniguette-entiere.jpg" alt="maniguette-entiere" width="400" height="400" /><img src="images/stories/MANIGUETTE/he_maniguette.jpg" alt="he maniguette" width="210" height="399" /></span><strong></strong> <p style="text-align: justify;"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">L’huile essentielle de maniguette : </span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">est obtenue à partir de la distillation à la vapeur d’eau des feuilles. Elle est relaxante et apaisante. Dans l’eau du bain, elle diffuse une senteur sucrée et fruitée et procure une sensation de bien-être. En massage, elle peut être utilisée pure ou diluée avec des huiles végétales. Elle est employée en synergie avec l’huile essentielle de saro ou de gingembre papillon. Pour favoriser le sommeil, elle s’utilise en diffusion ou en quelques gouttes directement sur l’oreiller. L’huile essentielle de maniguette est aussi recherchée dans le domaine cosmétique pour améliorer l’aspect de la peau et en parfumerie pour créer une fragrance rare et précieuse.</span></p>inheritopenopen418-revision2012-01-20 14:26:542012-01-20 13:26:54418http://www.alicepegie.com/wordpress/wordpress/?p=4190revision0
42012011-11-08 14:27:482011-11-08 13:27:48<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sels%20de%20bain/SAM_9432.JPG" alt="sels de bain apaisant coco" width="600" height="450" /> En ce moment j’ai besoin de me détendre et le meilleur moyen c’est celui du bain. Ces Sels de bain riche en éléments minéraux et huiles essentielles de Géranium et Bois de rose au parfum subtil qui vous procurera un agréable moment de détente et d'apaisement.<!--more-->Après quelques minutes dans votre bain, vous êtes apaisée et ressourcée sous l'action bénéfique des éléments marins et des effluves aromatiques. <strong>Ingrédients :</strong> <ul> <li>Sel de la mer morte : 167g</li> <li>Huile végétale de coco : 10g</li> <li>He géranium rosat : 2g</li> <li>He bois de rose: 2g</li> <li>Vit E: 15 gouttes</li> <li>Lait de coco en poudre: 27g</li> </ul> <strong>Mode opératoire :</strong> 1/ Dans un grand récipient, l'huile de coco liquéfier et les huiles essentielles puis mélangez l'ensemble. <img src="images/stories/sels%20de%20bain/SAM_9408.JPG" alt="SAM 9408" width="248" height="196" /><img src="images/stories/sels%20de%20bain/SAM_9410.JPG" alt="SAM 9410" width="299" height="197" /> 2/ Ajoutez les sels de la mer morte et le lait de coco puis mélangez bien. <img src="images/stories/sels%20de%20bain/SAM_9413.JPG" alt="SAM 9413" width="333" height="251" /><img src="images/stories/sels%20de%20bain/SAM_9415.JPG" alt="SAM 9415" width="334" height="250" /> 4/ Transférez la préparation dans votre flacon. <img src="images/stories/sels%20de%20bain/SAM_9418.JPG" alt="sels de bain apaisants" width="290" height="274" /><img src="images/stories/sels%20de%20bain/SAM_9433.JPG" alt="sels de bain apaisants" width="364" height="273" /> <strong>Utilisation :</strong> <strong><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sels%20de%20bain/SAM_9431.JPG" alt="sels de bain apaisants" width="600" height="486" /></strong> Ajoutez 1 à 2 poignées dans l'eau de votre bain. 15 à 30 minutes de bain sont suffisantes pour profiter des effets bénéfiques de ce sel pour apaiser les peaux délicates voire irritées. Stockez votre flacon à l'abri de la lumière et de la chaleur. Vous pourrez ainsi le conserver 3 mois env. <strong>Choix des ingrédients tous disponibles chez AZ</strong> <ul> <li><strong>Sel de la mer morte :</strong> riche en Potassium, Magnésium, Calcium et de Brome. Il est apaisant, il calme les peaux enflammées et irritées, améliore l'état de la peau notamment dans le cas de peaux atopiques, favorise l’hydratation de la peau et le bon fonctionnement de ses cellules, Tonifie le tissu cutané, purifiant et assainissant cutané, c'est un excellent agent de lutte contre les infections diverses</li> <li><strong>Huile de coco :</strong> très nourrissante, l'huile de coco réduit considérablement la déshydratation de la peau. Apaisante et douce, elle calme les rougeurs et les sensations d'échauffements dues au soleil.</li> <li><strong>He géranium :</strong> connue pour ses propriétés anti-infectieuses et antiseptiques. Idéale pour les soins de la peau, cette huile illumine le teint et est reconnue pour lutter contre l'eczéma et la cellulite.</li> <li><strong>He bois de rose:</strong> son parfum doux, légèrement boisé avec une touche camphrée calmera vos nerfs et votre anxiété. Cette huile est également reconnue pour son effet rajeunissant et régénérant sur la peau.</li> <li><strong>Lait de coco en poudre :</strong> apporte une douceur exceptionnelle à la peau, Il est adapté à tous les types de peau<strong>. (Disponible en grande surface)</strong></li> </ul>Sels de bain apaisants fou de Cocopublishopenopensels-de-bain-apaisants-fou-de-coco2012-01-21 07:54:292012-01-21 06:54:290http://www.alicepegie.com/wordpress/wordpress/?p=4200post0
42112012-01-20 14:28:512012-01-20 13:28:51<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sels%20de%20bain/SAM_9432.JPG" alt="sels de bain apaisant coco" width="600" height="450" /> En ce moment j’ai besoin de me détendre et le meilleur moyen c’est celui du bain. Ces Sels de bain riche en éléments minéraux et huiles essentielles de Géranium et Bois de rose au parfum subtil qui vous procurera un agréable moment de détente et d'apaisement.<!--more--> Après quelques minutes dans votre bain, vous êtes apaisée et ressourcée sous l'action bénéfique des éléments marins et des effluves aromatiques. <strong>Ingrédients :</strong> <ul> <li>Sel de la mer morte : 167g</li> <li>Huile végétale de coco : 10g</li> <li>He géranium rosat : 2g</li> <li>He bois de rose: 2g</li> <li>Vit E: 15 gouttes</li> <li>Lait de coco en poudre: 27g</li> </ul> <strong>Mode opératoire :</strong> 1/ Dans un grand récipient, l'huile de coco liquéfier et les huiles essentielles puis mélangez l'ensemble. <img src="images/stories/sels%20de%20bain/SAM_9408.JPG" alt="SAM 9408" width="248" height="196" /><img src="images/stories/sels%20de%20bain/SAM_9410.JPG" alt="SAM 9410" width="299" height="197" /> 2/ Ajoutez les sels de la mer morte et le lait de coco puis mélangez bien. <img src="images/stories/sels%20de%20bain/SAM_9413.JPG" alt="SAM 9413" width="333" height="251" /><img src="images/stories/sels%20de%20bain/SAM_9415.JPG" alt="SAM 9415" width="334" height="250" /> 4/ Transférez la préparation dans votre flacon. <img src="images/stories/sels%20de%20bain/SAM_9418.JPG" alt="sels de bain apaisants" width="290" height="274" /><img src="images/stories/sels%20de%20bain/SAM_9433.JPG" alt="sels de bain apaisants" width="364" height="273" /> <strong>Utilisation :</strong> <strong><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sels%20de%20bain/SAM_9431.JPG" alt="sels de bain apaisants" width="600" height="486" /></strong> Ajoutez 1 à 2 poignées dans l'eau de votre bain. 15 à 30 minutes de bain sont suffisantes pour profiter des effets bénéfiques de ce sel pour apaiser les peaux délicates voire irritées. Stockez votre flacon à l'abri de la lumière et de la chaleur. Vous pourrez ainsi le conserver 3 mois env. <strong>Choix des ingrédients tous disponibles chez AZ</strong> <ul> <li><strong>Sel de la mer morte :</strong> riche en Potassium, Magnésium, Calcium et de Brome. Il est apaisant, il calme les peaux enflammées et irritées, améliore l'état de la peau notamment dans le cas de peaux atopiques, favorise l’hydratation de la peau et le bon fonctionnement de ses cellules, Tonifie le tissu cutané, purifiant et assainissant cutané, c'est un excellent agent de lutte contre les infections diverses</li> <li><strong>Huile de coco :</strong> très nourrissante, l'huile de coco réduit considérablement la déshydratation de la peau. Apaisante et douce, elle calme les rougeurs et les sensations d'échauffements dues au soleil.</li> <li><strong>He géranium :</strong> connue pour ses propriétés anti-infectieuses et antiseptiques. Idéale pour les soins de la peau, cette huile illumine le teint et est reconnue pour lutter contre l'eczéma et la cellulite.</li> <li><strong>He bois de rose:</strong> son parfum doux, légèrement boisé avec une touche camphrée calmera vos nerfs et votre anxiété. Cette huile est également reconnue pour son effet rajeunissant et régénérant sur la peau.</li> <li><strong>Lait de coco en poudre :</strong> apporte une douceur exceptionnelle à la peau, Il est adapté à tous les types de peau<strong>. (Disponible en grande surface)</strong></li> </ul>Sels de bain apaisants fou de Cocoinheritopenopen420-revision2012-01-20 14:28:512012-01-20 13:28:51420http://www.alicepegie.com/wordpress/wordpress/?p=4210revision0
42212011-11-07 14:29:332011-11-07 13:29:33<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Pate%20de%20speculoos/SAM_8818.JPG" alt="pate de speculoos maison" width="600" height="646" /> Voici l'une de mes dernière drogue la pâte de spéculoos ! j'en achetais souvent toute prête, jusqu'à ce qu'en visite au rauyon cuisine de ma librairie je tombe sur une petit livre de 30 recettes de spéculoos. Une fois rentrée, j'ai d'abord réalisé la recette sans la modifier avec des spéculoos de la marque citée. résultat concluant mais je trouvais la pate trop compacte, pas top pour étaler. Alors je l'ai refaite sans la modifier mais avec <a href="index.php?option=com_content&amp;view=article&amp;id=1906:mes-speculoos&amp;catid=107:biscuits&amp;Itemid=489">mes speculoos maison</a> et j'ai obtenu la texture désirée ente pate à tartiner et confiture.<!--more--><strong>ingredients:</strong> 200g de speculoos <a href="index.php?option=com_content&amp;view=article&amp;id=1906:mes-speculoos&amp;catid=107:biscuits&amp;Itemid=489">maison</a> 300ml de lait concentré non sucré 1 cuillère a soupe bombée de miel solide (pour moi miel d'oranger liquide) 1/2 cuillère à café de cannelle en poudre <strong>Préparation:</strong> 1/ Placer les speculoos  dans le bol d'un robot et mixer pour les réduire en poudre. <img src="images/stories/Pate%20de%20speculoos/SAM_7583.JPG" alt="SAM 7583" width="326" height="244" /><img src="images/stories/Pate%20de%20speculoos/SAM_6883.JPG" alt="SAM 6883" width="323" height="242" /> 2/ Ajouter le lait concentré, le miel et la cannelle puis mixer de nouveau jusqu'à obtenir une pâte lisse <img src="images/stories/Pate%20de%20speculoos/SAM_6884.JPG" alt="SAM 6884" width="323" height="242" /><img src="images/stories/Pate%20de%20speculoos/SAM_6885.JPG" alt="SAM 6885" width="323" height="242" /> <img src="images/stories/Pate%20de%20speculoos/SAM_7591.JPG" alt="SAM 7591" width="322" height="242" /><img src="images/stories/Pate%20de%20speculoos/SAM_7596.JPG" alt="SAM 7596" width="320" height="241" /> 3/ Verser dans un pot avec couvercle et réserver au frais 4 heures <img src="images/stories/Pate%20de%20speculoos/SAM_7609.JPG" alt="SAM 7609" width="252" height="382" /><img src="images/stories/Pate%20de%20speculoos/SAM_8855.JPG" alt="pate de speculoos maison" width="240" height="381" /> Servez vous en tartine, patisserie, crèpes, gauffres..... <img src="images/stories/Pate%20de%20speculoos/SAM_8823.JPG" alt="pate de speculoos maison" width="307" height="274" /><img src="images/stories/Pate%20de%20speculoos/SAM_8831.JPG" alt="pate de speculoos maison" width="297" height="273" /> Bon appétit!! <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Pate%20de%20speculoos/SAM_8822.JPG" alt="pate de speculoos maison" width="600" height="469" />Pate de Spéculoos maisonpublishopenopenpate-de-speculoos-maison2012-01-21 07:54:392012-01-21 06:54:390http://www.alicepegie.com/wordpress/wordpress/?p=4220post0
42312012-01-20 14:30:102012-01-20 13:30:10<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Pate%20de%20speculoos/SAM_8818.JPG" alt="pate de speculoos maison" width="600" height="646" /> Voici l'une de mes dernière drogue la pâte de spéculoos ! j'en achetais souvent toute prête, jusqu'à ce qu'en visite au rauyon cuisine de ma librairie je tombe sur une petit livre de 30 recettes de spéculoos. Une fois rentrée, j'ai d'abord réalisé la recette sans la modifier avec des spéculoos de la marque citée. résultat concluant mais je trouvais la pate trop compacte, pas top pour étaler. Alors je l'ai refaite sans la modifier mais avec <a href="index.php?option=com_content&amp;view=article&amp;id=1906:mes-speculoos&amp;catid=107:biscuits&amp;Itemid=489">mes speculoos maison</a> et j'ai obtenu la texture désirée ente pate à tartiner et confiture.<!--more--><strong>ingredients:</strong> 200g de speculoos <a href="index.php?option=com_content&amp;view=article&amp;id=1906:mes-speculoos&amp;catid=107:biscuits&amp;Itemid=489">maison</a> 300ml de lait concentré non sucré 1 cuillère a soupe bombée de miel solide (pour moi miel d'oranger liquide) 1/2 cuillère à café de cannelle en poudre <strong>Préparation:</strong> 1/ Placer les speculoos  dans le bol d'un robot et mixer pour les réduire en poudre. <img src="images/stories/Pate%20de%20speculoos/SAM_7583.JPG" alt="SAM 7583" width="326" height="244" /><img src="images/stories/Pate%20de%20speculoos/SAM_6883.JPG" alt="SAM 6883" width="323" height="242" /> 2/ Ajouter le lait concentré, le miel et la cannelle puis mixer de nouveau jusqu'à obtenir une pâte lisse <img src="images/stories/Pate%20de%20speculoos/SAM_6884.JPG" alt="SAM 6884" width="323" height="242" /><img src="images/stories/Pate%20de%20speculoos/SAM_6885.JPG" alt="SAM 6885" width="323" height="242" /> <img src="images/stories/Pate%20de%20speculoos/SAM_7591.JPG" alt="SAM 7591" width="322" height="242" /><img src="images/stories/Pate%20de%20speculoos/SAM_7596.JPG" alt="SAM 7596" width="320" height="241" /> 3/ Verser dans un pot avec couvercle et réserver au frais 4 heures <img src="images/stories/Pate%20de%20speculoos/SAM_7609.JPG" alt="SAM 7609" width="252" height="382" /><img src="images/stories/Pate%20de%20speculoos/SAM_8855.JPG" alt="pate de speculoos maison" width="240" height="381" /> Servez vous en tartine, patisserie, crèpes, gauffres..... <img src="images/stories/Pate%20de%20speculoos/SAM_8823.JPG" alt="pate de speculoos maison" width="307" height="274" /><img src="images/stories/Pate%20de%20speculoos/SAM_8831.JPG" alt="pate de speculoos maison" width="297" height="273" /> Bon appétit!! <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Pate%20de%20speculoos/SAM_8822.JPG" alt="pate de speculoos maison" width="600" height="469" />Pate de Spéculoos maisoninheritopenopen422-revision2012-01-20 14:30:102012-01-20 13:30:10422http://www.alicepegie.com/wordpress/wordpress/?p=4230revision0
42412011-11-03 14:31:092011-11-03 13:31:09<span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/blog/blog6.jpg" alt="blog6" width="609" height="254" /></span> <span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Après quelques semaines de silence total, je reviens pour <strong>donner vie à la nouvelle version de mon blog</strong>.</span> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Comme vous avez pu vous en apercevoir, j’ai changé de thème et de design. Sur vos conseils ainsi que ceux de quelques proches, j’ai opté pour un design simple, moins chargé et moins coloré. J’espère que cette remise à neuf vous plaira.</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">J'ai essayé de le rendre plus fonctionnel et plus pratique. J’ai supprimé les multiples blocs de menus que j’ai remplacé par une seul nommé « <strong>Catégories</strong> ».</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Très important!!!: <strong>les abonnements!</strong> Vous avez en haut à droite, les icones qui vont vous permettre de rester facilement en contact avec moi et avec ce blog.</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/blog/blog2.jpg" alt="blog2" width="266" height="132" /></span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Vous avez ainsi le choix de me suivre en vous abonnant à mon <a href="index.php?format=feed&amp;type=rss"><strong>flux RSS</strong></a> via votre lecteur préféré, à ma <a href="index.php/2011-10-13-18-59-58/newsletter1"><strong>Newsletter</strong></a>, en me suivant sur <a href="http://twitter.com/#!/ALICEPEGIE"><strong>Twitter</strong> </a>ou sur <a href="http://www.facebook.com/Alicepegie1"><strong>facebook</strong></a>! Ainsi vous ne raterez rien!</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> </span></p> <p style="line-height: normal;"><strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Ce qui a changé :</span></strong></p> <p style="line-height: normal;"><strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Le Module Recherche par mots clés</span></strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> : Vous permet de trouver l’article qui vous intéresse en tapant juste un mot<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/blog/blog3.jpg" alt="blog3" width="212" height="140" /></span></p> <ul> <li style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> </span></span> <p style="line-height: normal;"><strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Qui Suis-Je</span></strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> : vous permet de découvrir qui se cache derrière le blog</span></p> <ul> <li style="line-height: normal;"><strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Contact :</span></strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> formulaire de contact habituel.</span></li> </ul> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/blog/blog4.jpg" alt="blog4" width="358" height="167" /></span></p> </li> </ul> <ul> <li style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Tous les menus sont regroupés dans le menu vertical nommé <strong>Catégories</strong>, cliquez sur les petits<span style="font-size: 24pt; font-family: 'Times New Roman','serif';"> <strong>+</strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> pour agrandir :</span></span></span></li> </ul> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><span style="font-size: 24pt; font-family: 'Times New Roman','serif';"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/blog/blog5.jpg" alt="blog5" width="266" height="299" /></span></span></span></p> <ul> <li style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">La Rubrique « Black is Beautifull » est intégrée dans le Menu <strong style="font-size: 12pt; font-family: 'Times New Roman','serif';">Mes Cosmétiques</strong>.</span></li> <li style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Les Rubriques<strong> Ma Musique, Ma Cuisine </strong>et<strong> Mes Cosmétiques</strong> comportent désormais chacun leur <strong>« Index »</strong> vous pourrez ainsi voir en un clin d’œil la liste des articles qui les composent </span></li> </ul> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">J’ai testé le site sur Firefox, Safari et Internet Explorer, mais si votre navigateur rencontre des bugs. <strong>Je compte sur vous pour venir me les rapporter</strong>.</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">En tout cas, j’espère que ces changements vous plairont !</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Bonne journée !</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Alicepégie</span></p>« Cameroun Equitable » est mort, vive « Une Graine de Maniguette »! publishopenopencameroun-equitable-est-mort-vive-une-graine-de-maniguette2012-01-20 14:32:172012-01-20 13:32:170http://www.alicepegie.com/wordpress/wordpress/?p=4240post0
42512012-01-20 14:31:532012-01-20 13:31:53<span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/blog/blog6.jpg" alt="blog6" width="609" height="254" /></span> <span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Après quelques semaines de silence total, je reviens pour <strong>donner vie à la nouvelle version de mon blog</strong>.</span> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Comme vous avez pu vous en apercevoir, j’ai changé de thème et de design. Sur vos conseils ainsi que ceux de quelques proches, j’ai opté pour un design simple, moins chargé et moins coloré. J’espère que cette remise à neuf vous plaira.</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">J'ai essayé de le rendre plus fonctionnel et plus pratique. J’ai supprimé les multiples blocs de menus que j’ai remplacé par une seul nommé « <strong>Catégories</strong> ».</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Très important!!!: <strong>les abonnements!</strong> Vous avez en haut à droite, les icones qui vont vous permettre de rester facilement en contact avec moi et avec ce blog.</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/blog/blog2.jpg" alt="blog2" width="266" height="132" /></span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Vous avez ainsi le choix de me suivre en vous abonnant à mon <a href="index.php?format=feed&amp;type=rss"><strong>flux RSS</strong></a> via votre lecteur préféré, à ma <a href="index.php/2011-10-13-18-59-58/newsletter1"><strong>Newsletter</strong></a>, en me suivant sur <a href="http://twitter.com/#!/ALICEPEGIE"><strong>Twitter</strong> </a>ou sur <a href="http://www.facebook.com/Alicepegie1"><strong>facebook</strong></a>! Ainsi vous ne raterez rien!</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> </span></p> <p style="line-height: normal;"><strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Ce qui a changé :</span></strong></p> <p style="line-height: normal;"><strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Le Module Recherche par mots clés</span></strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> : Vous permet de trouver l’article qui vous intéresse en tapant juste un mot<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/blog/blog3.jpg" alt="blog3" width="212" height="140" /></span></p> <ul> <li style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> </span></span> <p style="line-height: normal;"><strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Qui Suis-Je</span></strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> : vous permet de découvrir qui se cache derrière le blog</span></p> <ul> <li style="line-height: normal;"><strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Contact :</span></strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> formulaire de contact habituel.</span></li> </ul> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/blog/blog4.jpg" alt="blog4" width="358" height="167" /></span></p> </li> </ul> <ul> <li style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Tous les menus sont regroupés dans le menu vertical nommé <strong>Catégories</strong>, cliquez sur les petits<span style="font-size: 24pt; font-family: 'Times New Roman','serif';"> <strong>+</strong><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"> pour agrandir :</span></span></span></li> </ul> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><span style="font-size: 24pt; font-family: 'Times New Roman','serif';"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/blog/blog5.jpg" alt="blog5" width="266" height="299" /></span></span></span></p> <ul> <li style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">La Rubrique « Black is Beautifull » est intégrée dans le Menu <strong style="font-size: 12pt; font-family: 'Times New Roman','serif';">Mes Cosmétiques</strong>.</span></li> <li style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Les Rubriques<strong> Ma Musique, Ma Cuisine </strong>et<strong> Mes Cosmétiques</strong> comportent désormais chacun leur <strong>« Index »</strong> vous pourrez ainsi voir en un clin d’œil la liste des articles qui les composent </span></li> </ul> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">J’ai testé le site sur Firefox, Safari et Internet Explorer, mais si votre navigateur rencontre des bugs. <strong>Je compte sur vous pour venir me les rapporter</strong>.</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">En tout cas, j’espère que ces changements vous plairont !</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Bonne journée !</span></p> <p style="line-height: normal;"><span style="font-size: 12pt; font-family: 'Times New Roman','serif';">Alicepégie</span></p>« Cameroun Equitable » est mort, vive « Une Graine de Maniguette »! inheritopenopen424-revision2012-01-20 14:31:532012-01-20 13:31:53424http://www.alicepegie.com/wordpress/wordpress/?p=4250revision0
42612011-10-05 14:32:532011-10-05 13:32:53<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MIEL%20DE%20THUM/SAM_7476.JPG" alt="miel de thym maison" width="600" height="664" />Je vous ai déjà présenté ma recette de<a href="index.php?option=com_content&amp;view=article&amp;id=2629:sirop-contre-la-toux&amp;catid=61:remedes&amp;Itemid=84"> sirop contre la toux</a> fait maison, cette fois je vous présente un « miel de thym » qui est plus un sirop concentré qu’un véritable miel (pour ca faudrait que je devienne un abeille!!). Je me suis basée sur la recette du miel de pissenlit pour le réaliser. Il peut servir pour sucrer vos boissons chaudes, ou comme antitussif dilué dans du jus de citron par exemple. C’est un remède idéal à fabriquer avec un goût très agréable. Et pourquoi pas en tartine (dans ce cas changer la plante!!) </span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients : pour 250ml env.</span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 dose d’infusion de thym corsée ( 50g de thym séché pour 200ml d’eau)</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2 doses de sucre</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1cc de jus de citron bio.<!--more--></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation :</span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1. Dans une grande casserole mettez 200ml d'eau, ajoutez le thym.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MIEL%20DE%20THUM/SAM_7128.JPG" alt="SAM_7128" width="364" height="273" border="0" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2. Portez le mélange à ébullition arrêtez la source de chaleur et laissez refroidir et macérer pendant 24h.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">3. le lendemain, filtrez le mélange.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">4. Mettez le mélange filtré pour moi env. 134g dans la casserole puis ajoutez les le double du poids de l’infusion en sucre soit 268g de sucre pour moi.</span> <img src="images/stories/MIEL%20DE%20THUM/SAM_7130.JPG" alt="SAM_7130" width="313" height="235" border="0" /><img src="images/stories/MIEL%20DE%20THUM/SAM_7131.JPG" alt="SAM_7131" width="314" height="236" border="0" /> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">5. Cuisez ensuite à petit feu le mélange jusqu’à e que le sucre se dissolve complètement. Rajoutez le jus de citron et comptez 10mn de cuisson à partir de la dissolution complète du sucre </span> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MIEL%20DE%20THUM/SAM_6739.JPG" alt="SAM_6739" width="500" height="375" border="0" /> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">6. Mettez ce mélange dans un bocal propre et sec.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MIEL%20DE%20THUM/SAM_6789.JPG" alt="SAM_6789" width="500" height="667" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Conservation: à l'ombre et au sec</span> <img src="images/stories/MIEL%20DE%20THUM/SAM_7471.JPG" alt="SAM_7471" width="318" height="286" border="0" /><img src="images/stories/MIEL%20DE%20THUM/SAM_7473.JPG" alt="SAM_7473" width="286" height="286" border="0" /> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">A consommer autant que vous voulez, par exemple sur une tartine au petit-déjeuner !</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MIEL%20DE%20THUM/SAM_7477.JPG" alt="SAM_7477" width="500" height="651" border="0" /> </span>"Miel " de Thym Maisonpublishopenopenmiel-de-thym-maison2012-01-20 14:34:302012-01-20 13:34:300http://www.alicepegie.com/wordpress/wordpress/?p=4260post0
42712012-01-20 14:33:562012-01-20 13:33:56<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MIEL%20DE%20THUM/SAM_7476.JPG" alt="miel de thym maison" width="600" height="664" />Je vous ai déjà présenté ma recette de<a href="index.php?option=com_content&amp;view=article&amp;id=2629:sirop-contre-la-toux&amp;catid=61:remedes&amp;Itemid=84"> sirop contre la toux</a> fait maison, cette fois je vous présente un « miel de thym » qui est plus un sirop concentré qu’un véritable miel (pour ca faudrait que je devienne un abeille!!). Je me suis basée sur la recette du miel de pissenlit pour le réaliser. Il peut servir pour sucrer vos boissons chaudes, ou comme antitussif dilué dans du jus de citron par exemple. C’est un remède idéal à fabriquer avec un goût très agréable. Et pourquoi pas en tartine (dans ce cas changer la plante!!) </span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients : pour 250ml env.</span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 dose d’infusion de thym corsée ( 50g de thym séché pour 200ml d’eau)</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2 doses de sucre</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1cc de jus de citron bio.<!--more--></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation :</span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1. Dans une grande casserole mettez 200ml d'eau, ajoutez le thym.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MIEL%20DE%20THUM/SAM_7128.JPG" alt="SAM_7128" width="364" height="273" border="0" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2. Portez le mélange à ébullition arrêtez la source de chaleur et laissez refroidir et macérer pendant 24h.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">3. le lendemain, filtrez le mélange.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">4. Mettez le mélange filtré pour moi env. 134g dans la casserole puis ajoutez les le double du poids de l’infusion en sucre soit 268g de sucre pour moi.</span> <img src="images/stories/MIEL%20DE%20THUM/SAM_7130.JPG" alt="SAM_7130" width="313" height="235" border="0" /><img src="images/stories/MIEL%20DE%20THUM/SAM_7131.JPG" alt="SAM_7131" width="314" height="236" border="0" /> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">5. Cuisez ensuite à petit feu le mélange jusqu’à e que le sucre se dissolve complètement. Rajoutez le jus de citron et comptez 10mn de cuisson à partir de la dissolution complète du sucre </span> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MIEL%20DE%20THUM/SAM_6739.JPG" alt="SAM_6739" width="500" height="375" border="0" /> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">6. Mettez ce mélange dans un bocal propre et sec.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MIEL%20DE%20THUM/SAM_6789.JPG" alt="SAM_6789" width="500" height="667" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Conservation: à l'ombre et au sec</span> <img src="images/stories/MIEL%20DE%20THUM/SAM_7471.JPG" alt="SAM_7471" width="318" height="286" border="0" /><img src="images/stories/MIEL%20DE%20THUM/SAM_7473.JPG" alt="SAM_7473" width="286" height="286" border="0" /> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">A consommer autant que vous voulez, par exemple sur une tartine au petit-déjeuner !</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/MIEL%20DE%20THUM/SAM_7477.JPG" alt="SAM_7477" width="500" height="651" border="0" /> </span>"Miel " de Thym Maisoninheritopenopen426-revision2012-01-20 14:33:562012-01-20 13:33:56426http://www.alicepegie.com/wordpress/wordpress/?p=4270revision0
42812011-10-05 14:34:492011-10-05 13:34:49<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/liquide%20vaisselle/SAM_7412.JPG" alt="liquide vaisselle maison" width="600" height="392" />Depuis que je me suis lancée dans le home made, j’ai souvent testé des recettes aussi bien élaborées que simple et celle est une recette facile, simple et rapide. En 10mn on a un liquide vaisselle efficace et pas cher.</span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ingrédients pour 500ml:</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">2 cuillères à soupe de bicarbonate</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">350ml de savon noir liquide (pour moi base lavante de chez AZ )</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">50ml de vinaigre blanc (pour moi macérât vinaigré d’orange)</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">100 ml d’eau</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1g HE de tea tree pour ses vertus bactéricides</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1g HE orange pour le parfum<!--more--></span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> Préparation :</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mélangez le vinaigre et le bicarbonate, puis laissez passer l’effervescence.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/liquide%20vaisselle/SAM_7389.JPG" alt="SAM_7389" width="333" height="250" /><img src="images/stories/liquide%20vaisselle/SAM_7391.JPG" alt="SAM_7391" width="334" height="251" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> </span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Rajoutez le reste des ingrédients et mélangez sans fouetter.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/liquide%20vaisselle/SAM_7393.JPG" alt="SAM_7393" width="333" height="249" /><img src="images/stories/liquide%20vaisselle/SAM_7394.JPG" alt="SAM_7394" width="333" height="250" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Versez le mélange dans un flacon.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/liquide%20vaisselle/SAM_7395.JPG" alt="SAM_7395" width="364" height="273" border="0" /><img src="images/stories/liquide%20vaisselle/SAM_7396.JPG" alt="SAM_7396" width="293" height="273" border="0" /> </span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">C’est prêt !</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/liquide%20vaisselle/SAM_7399.JPG" alt="SAM_7399" width="339" height="494" border="0" /><img src="images/stories/liquide%20vaisselle/SAM_7402.JPG" alt="SAM_7402" width="325" height="494" border="0" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/liquide%20vaisselle/SAM_7406.JPG" alt="SAM_7406" width="331" height="248" border="0" /><img src="images/stories/liquide%20vaisselle/SAM_7407.JPG" alt="SAM_7407" width="332" height="248" /></span></li> </ul>Liquide vaisselle Maisonpublishopenopenliquide-vaisselle-maison2012-01-20 14:35:582012-01-20 13:35:580http://www.alicepegie.com/wordpress/wordpress/?p=4280post0
42912012-01-20 14:35:172012-01-20 13:35:17<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/liquide%20vaisselle/SAM_7412.JPG" alt="liquide vaisselle maison" width="600" height="392" />Depuis que je me suis lancée dans le home made, j’ai souvent testé des recettes aussi bien élaborées que simple et celle est une recette facile, simple et rapide. En 10mn on a un liquide vaisselle efficace et pas cher.</span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ingrédients pour 500ml:</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">2 cuillères à soupe de bicarbonate</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">350ml de savon noir liquide (pour moi base lavante de chez AZ )</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">50ml de vinaigre blanc (pour moi macérât vinaigré d’orange)</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">100 ml d’eau</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1g HE de tea tree pour ses vertus bactéricides</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1g HE orange pour le parfum<!--more--></span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> Préparation :</span></strong> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mélangez le vinaigre et le bicarbonate, puis laissez passer l’effervescence.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/liquide%20vaisselle/SAM_7389.JPG" alt="SAM_7389" width="333" height="250" /><img src="images/stories/liquide%20vaisselle/SAM_7391.JPG" alt="SAM_7391" width="334" height="251" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> </span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Rajoutez le reste des ingrédients et mélangez sans fouetter.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/liquide%20vaisselle/SAM_7393.JPG" alt="SAM_7393" width="333" height="249" /><img src="images/stories/liquide%20vaisselle/SAM_7394.JPG" alt="SAM_7394" width="333" height="250" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Versez le mélange dans un flacon.</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/liquide%20vaisselle/SAM_7395.JPG" alt="SAM_7395" width="364" height="273" border="0" /><img src="images/stories/liquide%20vaisselle/SAM_7396.JPG" alt="SAM_7396" width="293" height="273" border="0" /> </span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">C’est prêt !</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/liquide%20vaisselle/SAM_7399.JPG" alt="SAM_7399" width="339" height="494" border="0" /><img src="images/stories/liquide%20vaisselle/SAM_7402.JPG" alt="SAM_7402" width="325" height="494" border="0" /></span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/liquide%20vaisselle/SAM_7406.JPG" alt="SAM_7406" width="331" height="248" border="0" /><img src="images/stories/liquide%20vaisselle/SAM_7407.JPG" alt="SAM_7407" width="332" height="248" /></span></li> </ul>Liquide vaisselle Maisoninheritopenopen428-revision2012-01-20 14:35:172012-01-20 13:35:17428http://www.alicepegie.com/wordpress/wordpress/?p=4290revision0
43012011-10-03 14:36:192011-10-03 13:36:19<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5074.JPG" alt="SAM_5074" width="500" height="281" />Ces baguettes briochées sont un vrai délice au petit-déjeuner, accompagnées d’une confiture maison. Elles sont faciles et rapides à faire en machine à pain.</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingredients :</span></strong> <ul> </ul><ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">325 g de lait</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1cc de sel</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">20g de sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">500g de farine</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">40g de beurre 1/2 sel </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 sachet de levure boulangère</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation<!--more--> </span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez dans l’ordre tous les ingrédients dans la machine à pain. Lancez le programme “pâte” (env. 1h30).</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_4987.JPG" alt="SAM_4987" width="500" height="375" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Lorsque le programme est fini, façonnez vos baguettes.</span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5021.JPG" alt="SAM_5021" width="364" height="273" /><img src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5036.JPG" alt="SAM_5036" width="364" height="273" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">saupoudrez de sucre en morceau.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">laissez à nouveau lever, couverts d’un linge propre, pendant 1 heure.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Faites préchauffer votre four à 200°C et enfournez pour 20min.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Laissez refroidir sur une grille.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5061.JPG" alt="SAM_5061" width="500" height="409" />Dégustez</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5066.JPG" alt="SAM_5066" width="289" height="262" /><img src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5071.JPG" alt="SAM_5071" width="430" height="262" /></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5072.JPG" alt="SAM_5072" width="584" height="312" /></span></li> </ul>Baguette Briochéepublishopenopenbaguette-briochee2012-01-20 14:38:172012-01-20 13:38:170http://www.alicepegie.com/wordpress/wordpress/?p=4300post0
43112012-01-20 14:37:222012-01-20 13:37:22<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5074.JPG" alt="SAM_5074" width="500" height="281" />Ces baguettes briochées sont un vrai délice au petit-déjeuner, accompagnées d’une confiture maison. Elles sont faciles et rapides à faire en machine à pain.</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingredients :</span></strong> <ul> </ul><ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">325 g de lait</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1cc de sel</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">20g de sucre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">500g de farine</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">40g de beurre 1/2 sel </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 sachet de levure boulangère</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation<!--more--> </span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez dans l’ordre tous les ingrédients dans la machine à pain. Lancez le programme “pâte” (env. 1h30).</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_4987.JPG" alt="SAM_4987" width="500" height="375" /> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Lorsque le programme est fini, façonnez vos baguettes.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5021.JPG" alt="SAM_5021" width="364" height="273" /><img src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5036.JPG" alt="SAM_5036" width="364" height="273" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">saupoudrez de sucre en morceau.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">laissez à nouveau lever, couverts d’un linge propre, pendant 1 heure.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Faites préchauffer votre four à 200°C et enfournez pour 20min.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Laissez refroidir sur une grille.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5061.JPG" alt="SAM_5061" width="500" height="409" />Dégustez</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5066.JPG" alt="SAM_5066" width="289" height="262" /><img src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5071.JPG" alt="SAM_5071" width="430" height="262" /></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baguette%20brioch%C3%A9e%20au%20sucre/SAM_5072.JPG" alt="SAM_5072" width="584" height="312" /></span></li> </ul>Baguette Briochéeinheritopenopen430-revision2012-01-20 14:37:222012-01-20 13:37:22430http://www.alicepegie.com/wordpress/wordpress/?p=4310revision0
43212011-10-02 14:38:382011-10-02 13:38:38<p><img style="float: left;" alt="kankan" src="images/stories/kankan.jpg" height="119" width="160" />Cette semaine je vous propose de (re)découvrir l'un des grands humouriste camerounais dans l'élève international. De son vrai nom Dieudonné Affana Ebogo,il est si drole!!</p> <hr id="system-readmore" /> <p>{flv}kankanleleveinternationals{/flv}</p>Jean Miche Kankan l'Eleve Internationalpublishopenopenjean-miche-kankan-leleve-international2012-01-20 14:39:292012-01-20 13:39:290http://www.alicepegie.com/wordpress/wordpress/?p=4320post0
43312012-01-20 14:38:572012-01-20 13:38:57<p><img style="float: left;" alt="kankan" src="images/stories/kankan.jpg" height="119" width="160" />Cette semaine je vous propose de (re)découvrir l'un des grands humouriste camerounais dans l'élève international. De son vrai nom Dieudonné Affana Ebogo,il est si drole!!</p> <hr id="system-readmore" /> <p>{flv}kankanleleveinternationals{/flv}</p>Jean Miche Kankan l'Eleve Internationalinheritopenopen432-revision2012-01-20 14:38:572012-01-20 13:38:57432http://www.alicepegie.com/wordpress/wordpress/?p=4330revision0
43412011-09-30 14:39:472011-09-30 13:39:47<span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pizza%20sardine%20gingembre/SAM_6067.JPG" alt="pizza sardine gingembre" width="600" height="450" />J’ai reçu dernièrement pas mal de sardines à l’huile, alors j’en profite pour tester des recettes. La pizza étant l’un de nos plats favoris, j’ai testé une aux sardines, comme d’habitude les épices ne sont pas loin.</span> <h3 style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Pour 1 pizza : </span></h3> <ul> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">1 <a href="index.php?option=com_content&amp;view=article&amp;catid=118&amp;id=2399">Pizza Maison</a></span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2 boites de sardine à l’huile</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2 tomates grappes</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2 oignons nouveaux (feuilles comprises)</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Du fromage râpé</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">sel, poivre</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2 racines gingembre</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">1 gousse d’ail<!--more--></span></li> </ul> <p style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Préparation</span></strong></p> <ul> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">1-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mixez la tomate, un oignon, le gingembre et l’ail.</span></span></span></li> </ul> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pizza%20sardine%20gingembre/SAM_5982.JPG" alt="SAM_5982" width="500" height="375" border="0" /></span></span></span></p> <ul> </ul><ul> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Ouvrez la boite de sardines, versez son huile dans une casserole</span></span></span></li> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">3-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Hachez le 2<sup>e</sup> oignon et faites le revenir dans l’huile de la sardine, jusqu’à ce que les lamelles deviennent transparentes.</span></span></span></li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pizza%20sardine%20gingembre/SAM_5984.JPG" alt="SAM_5984" width="500" height="375" border="0" /> <ul> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">4-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Ajoutez la tomate écrasée, salez et faites cuire 5mn env. à feu doux</span></span></span></li> </ul> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pizza%20sardine%20gingembre/SAM_6008.JPG" alt="SAM_6008" width="500" height="375" border="0" /> </span></span></span></p> <ul> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">5-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Étalez la pâte à pizza sur une plaque recouverte de papier sulfurisé.</span></span></span></li> </ul> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pizza%20sardine%20gingembre/SAM_4000.JPG" alt="SAM_4000" width="500" height="375" border="0" /> </span></span></span></p> <ul> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">6-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Ajoutez la tomate cuite, les oignons émincés, les sardines coupées en morceaux puis le fromage.</span></span></span></li> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/pizza%20sardine%20gingembre/SAM_6022.JPG" alt="SAM_6022" width="333" height="250" border="0" /><img src="images/stories/pizza%20sardine%20gingembre/SAM_6028.JPG" alt="SAM_6028" width="368" height="250" border="0" /> </span></span></span></li> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">7-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> Enfournez dans un four préchauffé à 200°C pendant 15- 20 min.</span></span></span></li> </ul> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/pizza%20sardine%20gingembre/SAM_6039.JPG" alt="SAM_6039" width="364" height="273" border="0" /><img src="images/stories/pizza%20sardine%20gingembre/SAM_6042.JPG" alt="SAM_6042" width="364" height="273" border="0" /></span></span></span></p> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Dégustez!!</span></span></span></p> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/pizza%20sardine%20gingembre/SAM_6057.JPG" alt="SAM_6057" width="368" height="173" border="0" /><img src="images/stories/pizza%20sardine%20gingembre/SAM_6063.JPG" alt="SAM_6063" width="354" height="172" border="0" /></span></span></span></p> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/pizza%20sardine%20gingembre/SAM_6058.JPG" alt="SAM_6058" width="395" height="209" border="0" /><img src="images/stories/pizza%20sardine%20gingembre/SAM_6065.JPG" alt="SAM_6065" width="324" height="211" border="0" /> </span></span></span></p> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> </span></span></span></p>Pizza à la Sardine & Gingembre publishopenopenpizza-a-la-sardine-gingembre2012-01-20 14:40:532012-01-20 13:40:530http://www.alicepegie.com/wordpress/wordpress/?p=4340post0
43512012-01-20 14:40:132012-01-20 13:40:13<span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pizza%20sardine%20gingembre/SAM_6067.JPG" alt="pizza sardine gingembre" width="600" height="450" />J’ai reçu dernièrement pas mal de sardines à l’huile, alors j’en profite pour tester des recettes. La pizza étant l’un de nos plats favoris, j’ai testé une aux sardines, comme d’habitude les épices ne sont pas loin.</span> <h3 style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Pour 1 pizza : </span></h3> <ul> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">1 <a href="index.php?option=com_content&amp;view=article&amp;catid=118&amp;id=2399">Pizza Maison</a></span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2 boites de sardine à l’huile</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2 tomates grappes</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2 oignons nouveaux (feuilles comprises)</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Du fromage râpé</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">sel, poivre</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2 racines gingembre</span></li> <li style="line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">1 gousse d’ail<!--more--></span></li> </ul> <p style="line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Préparation</span></strong></p> <ul> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">1-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mixez la tomate, un oignon, le gingembre et l’ail.</span></span></span></li> </ul> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pizza%20sardine%20gingembre/SAM_5982.JPG" alt="SAM_5982" width="500" height="375" border="0" /></span></span></span></p> <ul> </ul><ul> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Ouvrez la boite de sardines, versez son huile dans une casserole</span></span></span></li> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">3-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Hachez le 2<sup>e</sup> oignon et faites le revenir dans l’huile de la sardine, jusqu’à ce que les lamelles deviennent transparentes.</span></span></span></li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pizza%20sardine%20gingembre/SAM_5984.JPG" alt="SAM_5984" width="500" height="375" border="0" /> <ul> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">4-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Ajoutez la tomate écrasée, salez et faites cuire 5mn env. à feu doux</span></span></span></li> </ul> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pizza%20sardine%20gingembre/SAM_6008.JPG" alt="SAM_6008" width="500" height="375" border="0" /> </span></span></span></p> <ul> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">5-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Étalez la pâte à pizza sur une plaque recouverte de papier sulfurisé.</span></span></span></li> </ul> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pizza%20sardine%20gingembre/SAM_4000.JPG" alt="SAM_4000" width="500" height="375" border="0" /> </span></span></span></p> <ul> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">6-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Ajoutez la tomate cuite, les oignons émincés, les sardines coupées en morceaux puis le fromage.</span></span></span></li> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/pizza%20sardine%20gingembre/SAM_6022.JPG" alt="SAM_6022" width="333" height="250" border="0" /><img src="images/stories/pizza%20sardine%20gingembre/SAM_6028.JPG" alt="SAM_6028" width="368" height="250" border="0" /> </span></span></span></li> <li style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">7-<span style="font: 7pt 'Times New Roman';">     <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> Enfournez dans un four préchauffé à 200°C pendant 15- 20 min.</span></span></span></li> </ul> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/pizza%20sardine%20gingembre/SAM_6039.JPG" alt="SAM_6039" width="364" height="273" border="0" /><img src="images/stories/pizza%20sardine%20gingembre/SAM_6042.JPG" alt="SAM_6042" width="364" height="273" border="0" /></span></span></span></p> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Dégustez!!</span></span></span></p> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/pizza%20sardine%20gingembre/SAM_6057.JPG" alt="SAM_6057" width="368" height="173" border="0" /><img src="images/stories/pizza%20sardine%20gingembre/SAM_6063.JPG" alt="SAM_6063" width="354" height="172" border="0" /></span></span></span></p> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/pizza%20sardine%20gingembre/SAM_6058.JPG" alt="SAM_6058" width="395" height="209" border="0" /><img src="images/stories/pizza%20sardine%20gingembre/SAM_6065.JPG" alt="SAM_6065" width="324" height="211" border="0" /> </span></span></span></p> <p style="margin-left: 6px; text-indent: -18pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> </span></span></span></p>Pizza à la Sardine & Gingembre inheritopenopen434-revision2012-01-20 14:40:132012-01-20 13:40:13434http://www.alicepegie.com/wordpress/wordpress/?p=4350revision0
43612012-01-20 14:00:252012-01-20 13:00:25<img style="float: left;" src="images/pasto.jpg" alt="pasto" width="198" height="259" />Cette semaine je vos invite à danser un peu de "bol" Bon WE à tous! &nbsp; <strong></strong><strong></strong><strong><span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Pasto|1||a{/nmap}</span></strong>Pasto "Cécile"inheritopenopen386-revision-22012-01-20 14:00:252012-01-20 13:00:25386http://www.alicepegie.com/wordpress/wordpress/?p=4360revision0
43712012-01-20 14:01:442012-01-20 13:01:44<img style="display: block; margin-left: auto; margin-right: auto;" src="images/pizza%20crevettes/SAM_9894.JPG" alt="pizza crevettes" width="600" height="339" />Cette pizza est un délice pour les inconditionnelles de la crevette (fraiches et séchée), cette fois j’ai opté pour de la mozzarella comme fromage. Le résultat était à la hauteur des mes espérances.<!--more--><strong>Pour la pâte (4 petites pizza) <a href="index.php?option=com_content&amp;view=article&amp;id=2399:pizza-maison&amp;catid=118:ingredientsbases&amp;Itemid=492">recette en images ici</a></strong> <ul> <li>210ml d'eau ou de lait pour une pate + moelleuse</li> <li>350g de farine t65</li> <li>2cc de levain</li> <li>1cc de sel</li> <li>1cc de sucre</li> <li>2cs d'huile d'olive</li> </ul> <strong>Mode opératoire</strong> <strong>Si vous avez une machine à pain:</strong> <ul> <li>Mettez tous les ingrédients dans l'ordre dans la machine et lancez le programme pate.</li> <li>À la fin du programme divisez la pate en 4 formez des boules et laissez encore lever 1h à l'abri des courants d'airs.</li> </ul> <strong>Si vous n'avez pas de machine à pain:</strong> <ul> <li>Dans un saladier, mettre la farine + le levain+ le sel + l’huile d’olive, remuer (avec un batteur électrique c’est moins fatigant).</li> <li>Dès que la pâte est homogène, verser lentement l'eau petit à petit jusqu'à l'obtention d'une pate homogène.</li> <li>Faites une boule, couvrez-là avec un linge. Laissez reposer une heure.</li> <li>Divisez-la à 4 ou en 2 faites des boules et laissez à nouveau reposer 1h</li> <li>La pâte a bien gonflé, étalez-là en cercle ou en carré avec un rouleau à pâtisserie ou une bouteille.</li> </ul> <p style="margin-left: 18pt;"><strong>La garniture</strong></p> <ul> <li>comptez 10 crevettes par personne</li> <li>1 CS d’huile d’olive</li> <li>2 cc de crevettes séchées (facultatif)</li> <li>2 grosses tomates</li> <li>½ poireau</li> <li>1 oignon</li> <li>1 gousse d’ail</li> <li>De la mozzarella râpée</li> <li><strong>Préparation:</strong></li> </ul> Écrasez finement tous les ingrédients sauf les crevettes bien sur. <p style="text-align: justify;"><img src="images/pizza%20crevettes/SAM_6926.JPG" alt="SAM 6926" width="325" height="291" /><img src="images/pizza%20crevettes/SAM_6927.JPG" alt="SAM 6927" width="368" height="289" /></p> Dans un poêle, faites chauffer l’huile d’olive et faites y revenir le mélange à la tomate. Laissez cuire 10mn environ et coupez la source de chaleur. <img style="display: block; margin-left: auto; margin-right: auto;" src="images/pizza%20crevettes/SAM_6933.JPG" alt="SAM 6933" width="600" height="629" /> <strong>Montage :</strong> <ul> <li>Moi j’ai incrusté le fromage dans la pate à l’aide d’un rouleau parfois je l’épice aussi</li> </ul> <img src="images/pizza%20crevettes/SAM_9874.JPG" alt="SAM 9874" width="350" height="263" /><img src="images/pizza%20crevettes/SAM_9875.JPG" alt="SAM 9875" width="350" height="263" /> <ul> <li>J’ai utilisez de petits moules à tarte démontable.</li> <li>Une fois la pate étalez, garnissez là de tomate, puis de crevettes et recouvrez le tout de fromage râpé.</li> </ul> <img src="images/pizza%20crevettes/SAM_6935.JPG" alt="SAM 6935" width="350" height="263" /><img src="images/pizza%20crevettes/SAM_6938.JPG" alt="SAM 6938" width="350" height="263" /> <img src="images/pizza%20crevettes/SAM_9884.JPG" alt="SAM 9884" width="350" height="263" /><img src="images/pizza%20crevettes/SAM_9886.JPG" alt="SAM 9886" width="350" height="263" /> Faites cuire 15 à 20mn à 230° <img src="images/pizza%20crevettes/SAM_9893.JPG" alt="pizza crevettes" width="409" height="224" /><img src="images/pizza%20crevettes/SAM_9921.JPG" alt="pizza crevettes" width="284" height="225" /> Bon appétit!! <img src="images/pizza%20crevettes/SAM_9917.JPG" alt="pizza crevettes" width="329" height="256" /><img src="images/pizza%20crevettes/SAM_9932.JPG" alt="pizza crevettes" width="362" height="259" />Pizza aux Crevettesinheritopenopen388-revision-22012-01-20 14:01:442012-01-20 13:01:44388http://www.alicepegie.com/wordpress/wordpress/?p=4370revision0
43812012-01-20 14:04:102012-01-20 13:04:10<span style="font-size: 10pt;"><img style="vertical-align: middle; display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0158.JPG" alt="CREME MAIN COCO" width="600" height="513" />Ca fait longtemps que je ne me suis pas préparée de crème spéciale pour les mains. Toujours dans mes soins coco, voici une crème beauté des mains qui les nourrira et vous apportera un petit peu sous le soleil ! La formule reste minimaliste<!--more--><strong><span style="font-family: 'Arial','sans-serif';">Pour 30g env. :</span></strong></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Huile végétale de coco : 3g</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Lait de coco liquide : 23g</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Émulsifiant olivem : 1.5g</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Conservateur : 6 gouttes</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">vitamine E liquide :5 gouttes</span></li> </ul> <span style="font-size: 10pt;"><strong><span style="font-family: 'Arial','sans-serif';">Préparation</span></strong></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Toujours le procéder one pot dont je suis devenue fan :</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">On met tous les ingrédients sauf le conservateur et la vitamine E dans un bol,</span></li> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">On fait tout chauffer au bain marie jusqu’à complète liquéfaction de l’émulsifiant</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0071.JPG" alt="SAM 0071" width="600" height="450" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Ensuite on mélange énergiquement, on rajoute le conservateur et la vitamine E</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0074.JPG" alt="SAM 0074" width="600" height="433" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Puis on met dans un fond d’eau froide et continue à mélanger jusqu’à la prise de l’émulsion.</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0076.JPG" alt="SAM 0076" width="600" height="450" /></span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">Mettez dans le contenant choisi et appréciez !!</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img src="images/stories/creme%20main%20coco/SAM_0150.JPG" alt="creme main coco" width="288" height="323" /><img src="images/stories/creme%20main%20coco/SAM_0154.JPG" alt="creme main coco" width="387" height="321" /> </span> <ul> <li><span style="font-family: 'Arial','sans-serif'; font-size: 10pt;">tous les ingredients sont disponibles chez AZ</span></li> </ul> <span style="font-family: 'Arial','sans-serif'; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/creme%20main%20coco/SAM_0156.JPG" alt="creme main coco" width="500" height="795" /></span>Crème beauté des mains fou de cocoinheritopenopen390-revision-22012-01-20 14:04:102012-01-20 13:04:10390http://www.alicepegie.com/wordpress/wordpress/?p=4380revision0
43912012-01-20 14:05:452012-01-20 13:05:45<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0053.JPG" alt="tarte au citron meringuée" width="600" height="381" /></span>Le citron est l’un de mes parfums préférés. J’aime son parfum et son gout qui réveille mes papilles. C’est donc logiquement que la tarte au citron se fait volontiers consommer par moi. Ma tarte est composée d’une pâte brisée aromatisée au citron, d’une crème de citron (lemon curd) et d’une meringue. <strong>Pour 1 tarte de 4 pers<!--more--></strong><strong><a href="index.php?option=com_content&amp;view=article&amp;catid=118&amp;id=2796">La pâte Brisée</a></strong> <ul> <li>250g de farine</li> <li>1 pincée de sel</li> <li>125g de beurre mou en dés</li> <li>1 jaune d’œuf</li> <li>30ml de jus de citron (soit celui de 2 petits citrons ou 1 gros) ou de l'eau</li> <li style="text-align: center;"><strong>La crème au citron</strong></li> <li>54 g de jus de citron (2 gros ou 3 petits)</li> <li>le zeste d’un citron</li> <li>2 œufs</li> <li>37g de beurre mou</li> <li>100g de sucre glace</li> <li style="text-align: center;"><strong>La meringue</strong></li> <li>1 blanc d’œuf</li> <li>le double du poids du blanc en sucre</li> </ul> <p style="text-align: center;"><strong>Préparation</strong></p> <strong>La crème au citron :</strong> <ul> <li>1- Faites fondre le beurre au bain-marie.</li> <li>2- Toujours au bain-marie, ajoutez le sucre glace et le jus de citron, mélangez puis ajoutez l’œuf.</li> <li>3- Fouettez le tout jusqu’à ce que le mélange épaississe.</li> <li>Filtrez si nécessaire</li> <li>4-Laissez reposer 1 heure au réfrigérateur.</li> </ul> <p style="text-align: center;"><strong>La pâte Brisée <a href="index.php?option=com_content&amp;view=article&amp;id=2796:la-pate-brisee&amp;catid=118:ingredientsbases&amp;Itemid=492"> recette détaillée en images ici</a></strong></p> <ul> <li>Sortez l’œuf et le beurre du frais 15mn à l’avance pour qu’il soit à température ambiante.</li> <li>Mettez la farine et le sel dans un saladier et faites un puits.</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9839.JPG" alt="SAM 9839" width="350" height="263" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9840.JPG" alt="SAM 9840" width="350" height="263" /> Ajoutez le beurre puis le jaune d’œuf et mélangez rapidement. Rajoutez ensuite le jus de citron ou de l'eau. Mélangez sans trop travailler la pate. <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9841.JPG" alt="SAM 9841" width="600" height="450" /> Formez une boule avec la pate et enveloppez-la d’un film alimentaire. Laissez reposer le tout 1h au frais. Au bout d’une heure préchauffer le four à 180°, sortez votre pate du frais et étalez-la à l’aide d’un rouleau à pâtisserie <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/SAM_9999.JPG" alt="SAM 9999" width="600" height="450" /> <ul> <li>Beurrez et farinez le moule, garnissez le moule de pate mettez le tout au frais pendant que vous préparez votre garniture.</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0003.JPG" alt="SAM 0003" width="600" height="471" /> <ul> <li>Enfournez dans un four préchauffé à 180°C durant 15 min.</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0005.JPG" alt="SAM 0005" width="600" height="450" /> <ul> <li>Laissez refroidir à température ambiante.</li> <li style="text-align: center;"><strong>La meringue</strong></li> <li>Commencez à battre votre blanc d’œuf énergiquement, lorsqu’il devient mousseux, ajoutez le sucre en 3 ou 4 fois en continuant de battre entre chaque ajout.</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0018.JPG" alt="SAM 0018" width="350" height="263" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0019.JPG" alt="SAM 0019" width="350" height="263" /> <ul> <li>Arrêtez lorsque vous obtenez un bec d’oiseau</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0021.JPG" alt="SAM 0021" width="350" height="263" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0024.JPG" alt="SAM 0024" width="350" height="263" /> <ul> <li>Versez cette préparation dans une poche à douille.</li> <li style="text-align: center;"><strong>Le montage</strong></li> <li>Versez dans le fond de pâte la crème de citron, égalisez à la spatule. Faites cuite la pate contenant la crème 12mn à 130°</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0020.JPG" alt="SAM 0020" width="600" height="451" /> <ul> <li>Après 12mn, sortez la tarte du four et déposez de la meringue sur toute la tarte.</li> </ul> <img style="margin-right: auto; margin-left: auto; display: block;" src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0026.JPG" alt="SAM 0026" width="600" height="451" /> <ul> <li>Remettez pour 10mn toujours à 130°.</li> <li>Au bout de 10mn, éteignez le four et laissez refroidir la tarte dans le four, vous obtiendrez ainsi une meringue plus croquante.</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0029.JPG" alt="tarte au citron meringuée" width="387" height="281" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0043.JPG" alt="tarte au citron meringuée" width="277" height="281" /> <ul> <li>Bon Appétit !</li> </ul> <img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0036.JPG" alt="tarte au citron meringuée" width="318" height="308" /><img src="images/stories/tarte%20citron%20meringu%C3%A9/tarte%20citron%20meringu%C3%A9/SAM_0045.JPG" alt="tarte au citron meringuée" width="369" height="309" />Tarte au Citron Meringuéeinheritopenopen392-revision-22012-01-20 14:05:452012-01-20 13:05:45392http://www.alicepegie.com/wordpress/wordpress/?p=4390revision0
44012012-01-20 14:17:122012-01-20 13:17:12<p style="text-align: justify;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/brisee1.JPG" alt="pate brisee1" width="600" height="450" />La pâte brisée est une pâte qui sert de réceptacle à une garniture humide. C’est une base incontournable de la pâtisserie et de la cuisine. On s’en sert pour les tartes surtout aux fruits, quiche ou autres préparations du même type. Son nom viendrait de du geste qui consiste à briser la pâte contre le plan de travail.<!--more--></span><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ingrédients pour une tarte de 4 à 6 personnes :</span></strong></p> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">250g de farine</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1 pincée de sel</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">125g de beurre mou découpés en dés (pas fondu !!)</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">1 œuf entier ou 1 jaune d’œuf + 30ml d’eau (le tout à température ambiante.)</span></li> </ul> <p style="text-align: justify;"><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation</span></strong></p> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Sortez l’œuf et le beurre du frais 15mn à l’avance pour qu’il soit à température ambiante.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/2.JPG" alt="2" width="600" height="487" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mettez la farine et le sel dans un saladier et faites un puits.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/1.JPG" alt="1" width="600" height="449" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Ajoutez le beurre puis le jaune d’œuf et mélangez rapidement.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/3.JPG" alt="3" width="350" height="263" /><img src="images/stories/pate%20brisee/4.JPG" alt="4" width="350" height="263" /></span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/6.JPG" alt="6" width="600" height="451" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Rajoutez ensuite l’eau (ici moi à la place de l’eau je mets le blanc d’œuf qui en général fait entre 30 et 36 g ma pate est ainsi plus gouteuse). Mélangez sans trop travailler la pate.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pate%20brisee/5.JPG" alt="5" width="600" height="450" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Formez une boule avec la pate et enveloppez-la d’un film alimentaire. Laissez reposer le tout 1h au frais.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/8.JPG" alt="8" width="356" height="224" /><img src="images/stories/pate%20brisee/7.JPG" alt="7" width="345" height="225" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Au bout d’une heure préchauffer le four à 180°, sortez votre pate du frais et étalez la à l’aide d’un rouleau à pâtisserie</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/9.JPG" alt="pate brisée 9" width="388" height="312" /><img src="images/stories/pate%20brisee/10.JPG" alt="10" width="302" height="311" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Beurrez et farinez le moule, garnissez le moule de pate mettez le tout au frais pendant que vous préparez votre garniture.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/11.JPG" alt="11" width="325" height="273" /><img src="images/stories/pate%20brisee/brisee4.JPG" alt="pate brisee4" width="364" height="273" /></span> <ul> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Si votre recette nécessite une pré-cuisson, piquez la pate (sans la percer) avec une fourchette.</span></li> </ul> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/brisee5.JPG" alt="pate brisee5" width="328" height="273" /><img src="images/stories/pate%20brisee/brisee%20banane2.JPG" alt="brisee banane2" width="364" height="273" /></span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/pate%20brisee/pommes.JPG" alt="tarte aux pommes " width="264" height="282" /><img src="images/stories/pate%20brisee/tatin1.JPG" alt="tarte tatin1" width="429" height="281" /></span> <p style="text-align: justify;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> </span></p>La pâte Briséeinheritopenopen405-revision-22012-01-20 14:17:122012-01-20 13:17:12405http://www.alicepegie.com/wordpress/wordpress/?p=4400revision0
44112012-01-20 14:18:412012-01-20 13:18:41<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/masque%20capillaire%20coco/masque%20coco1.JPG" alt="masque coco1" width="600" height="508" />Je vous ai proposé la semaine dernière, 2 soins à base de noix de coco, huile et lait. J’ai commencé par des <a href="index.php?option=com_content&amp;view=article&amp;catid=131&amp;id=2788">Sels de bain apaisants fou de Coco</a> avec le lait et l’huile puis la <a href="index.php?option=com_content&amp;view=article&amp;catid=125&amp;id=2791">Crème purifiante &amp; apaisante coco &amp; riz</a> pour nourrir et hydrater la peau. Cette semaine on s’occupe des cheveux : on commence donc par un soin avant shampooing, à laisser poser. Ce soin va nourrir, fortifier et faire briller et favoriser la pousse des cheveux. Le lait de coco est un soin incontournable pour les cheveux.<!--more--></span><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 100g env. :</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">80g de lait de coco liquide (attention vérifier ce qui est marqué sur la boite !!)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">10g d’huile de coco</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">5g de cire de ricin (ou d’abeille)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2 g de protéine de riz</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">20 gouttes de conservateur </span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation :</span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez le lait, l’huile et la cire de ricin dans un bol et faites chauffer l’ensemble au bain marie jusqu’à ce que la cire soit complètement liquide.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/masque%20capillaire%20coco/SAM_9759.JPG" alt="SAM 9759" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Lorsque la cire est liquide, mélangez énergiquement pendant env. 3mn.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez votre bol dans un fon d’eau froide, et mélangez à nouveau jusqu’à la prise de l’émulsion.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Rajoutez le reste des ingrédients un à un en mélangeant entre chaque ajout en terminant par le </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">conservateur.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/masque%20capillaire%20coco/SAM_9764.JPG" alt="SAM 9764" width="288" height="286" /><img src="images/stories/masque%20capillaire%20coco/SAM_9766.JPG" alt="SAM 9766" width="380" height="286" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Mettez en pot</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/masque%20capillaire%20coco/masque%20coco2.JPG" alt="masque coco2" width="414" height="400" /><img src="images/stories/masque%20capillaire%20coco/masque%20coco3.JPG" alt="masque coco3" width="200" height="401" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Utilisation :</strong> Ce masque avant shampooing s’applique tous les 2 jours (pour une cure intensive) ou une fois par semaine pour un simple entretien, sur les racines en priorité, mais aussi sur les longueurs et les pointes afin de les nourrir. Laissez poser 2 heures minimum. Procédez ensuite au shampooing.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/masque%20capillaire%20coco/masque%20coco4.JPG" alt="masque coco4" width="329" height="269" /><img src="images/stories/masque%20capillaire%20coco/masque%20coco5.JPG" alt="masque coco5" width="355" height="267" /></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingrédients : disponibles chez AZ </span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Le lait de coco :</strong> Il sublime les cheveux, en leur donnant volume, force, brillance, et accélère la pousse quand il est utilisé en cure.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>L’huile de coco :</strong> fortifie les cheveux, leur rendant brillance et tonicité. On doit cependant l'appliquer en petites doses. Le massage du cuir chevelu avec l'huile de coco contribue à épaissir et à protéger tous les types de cheveux.</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">La cire de ricin (disponible ches macosmeto perso):</span></strong>Outre sa fonction nourrissante et revitalisante, la cire de ricin favorise aussi la repousse des cheveux et leurs apporte également du volume. <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">La protéine de riz: </span></strong>Améliore et maintient l'hydratation des cheveux,apporte force et volume aux cheveux,Gaine la fibre capillaire : facilite le coiffage<strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">NOTE: </span></strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">vous pouvez supprimer le conservateur si vous ne faite pas une grande quantité . Vous pourrez ainsi conserver votre préparation 1 semaine au frais</span><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong>Masque capillaire coup de pousseinheritopenopen407-revision-32012-01-20 14:18:412012-01-20 13:18:41407http://www.alicepegie.com/wordpress/wordpress/?p=4410revision0
44212012-01-20 14:23:272012-01-20 13:23:27<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mecombo/mecombo.jpg" alt="mecombo" width="600" height="450" /> <span style="font-family: 'Arial','sans-serif';">Voici une façon simple de recycler des restes de manioc bouilli. Dans les villages du sud du Cameroun, les restes de manioc cuit à l’eau, coupés en dés, sont enfermés dans un sac perméable mais solide et déposé en aval d’une source d’eau « potable » de façon à ce que le sac reste toujours dans une eau fraiche et renouvelée. En ville on n’a pas de source alors on procède comme ceci :<!--more--></span><strong><span style="font-family: 'Arial','sans-serif';">Il faut donc :</span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Du manioc cuit à l’eau</span></li> <li><span style="font-family: 'Arial','sans-serif';">De l’eau fraiche </span></li> <li><span style="font-family: 'Arial','sans-serif';">Un grand saladier</span></li> </ul> <strong><span style="font-family: 'Arial','sans-serif';">Méthode </span></strong> <ul> <li><span style="font-family: 'Arial','sans-serif';">Coupez vos maniocs en dés et rincez-les à l’eau claire.</span></li> <li><span style="font-family: 'Arial','sans-serif';">Déposez les dés de manioc dans le saladier et couvrez-les largement d’eau fraiche.</span></li> <li><span style="font-family: 'Arial','sans-serif';"><img src="images/stories/mecombo/SAM_4617.JPG" alt="SAM 4617" width="350" height="268" /><img src="images/stories/mecombo/SAM_5119.JPG" alt="SAM 5119" width="313" height="267" /></span></li> <li><span style="font-family: 'Arial','sans-serif';">Laissez tremper au minimum 24h en changeant l’eau chaque jour. Les dés de manioc vont se gorger d’eau.</span></li> <li style="text-align: center;"><span style="font-family: 'Arial','sans-serif';"><img src="images/stories/mecombo/SAM_5121.JPG" alt="manioc trempé" width="600" height="450" /></span></li> </ul> <span style="font-family: 'Arial','sans-serif';">Si vous ne consommez pas la totalité tout de suite, n’égouttez que la quantité désirée et laissez l’autre dans l’eau jusqu’à consommation.</span> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mecombo/SAM_5123.JPG" alt="mecombo, manioc" width="600" height="450" /></span> <span style="font-family: 'Arial','sans-serif';">Vous pouvez les servir en apéritif dans ce cas égouttez les et mettez dans des bols</span> <span style="font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mecombo/SAM_5125.JPG" alt="manioc, mecombo" width="600" height="450" /></span> <span style="font-family: 'Arial','sans-serif';">Ils peuvent aussi servir d’accompagnement pour un plat.</span>Dés de Manioc cuit trempésinheritopenopen414-revision-22012-01-20 14:23:272012-01-20 13:23:27414http://www.alicepegie.com/wordpress/wordpress/?p=4420revision0
44312012-01-20 14:29:092012-01-20 13:29:09<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sels%20de%20bain/SAM_9432.JPG" alt="sels de bain apaisant coco" width="600" height="450" /> En ce moment j’ai besoin de me détendre et le meilleur moyen c’est celui du bain. Ces Sels de bain riche en éléments minéraux et huiles essentielles de Géranium et Bois de rose au parfum subtil qui vous procurera un agréable moment de détente et d'apaisement.<!--more-->Après quelques minutes dans votre bain, vous êtes apaisée et ressourcée sous l'action bénéfique des éléments marins et des effluves aromatiques. <strong>Ingrédients :</strong> <ul> <li>Sel de la mer morte : 167g</li> <li>Huile végétale de coco : 10g</li> <li>He géranium rosat : 2g</li> <li>He bois de rose: 2g</li> <li>Vit E: 15 gouttes</li> <li>Lait de coco en poudre: 27g</li> </ul> <strong>Mode opératoire :</strong> 1/ Dans un grand récipient, l'huile de coco liquéfier et les huiles essentielles puis mélangez l'ensemble. <img src="images/stories/sels%20de%20bain/SAM_9408.JPG" alt="SAM 9408" width="248" height="196" /><img src="images/stories/sels%20de%20bain/SAM_9410.JPG" alt="SAM 9410" width="299" height="197" /> 2/ Ajoutez les sels de la mer morte et le lait de coco puis mélangez bien. <img src="images/stories/sels%20de%20bain/SAM_9413.JPG" alt="SAM 9413" width="333" height="251" /><img src="images/stories/sels%20de%20bain/SAM_9415.JPG" alt="SAM 9415" width="334" height="250" /> 4/ Transférez la préparation dans votre flacon. <img src="images/stories/sels%20de%20bain/SAM_9418.JPG" alt="sels de bain apaisants" width="290" height="274" /><img src="images/stories/sels%20de%20bain/SAM_9433.JPG" alt="sels de bain apaisants" width="364" height="273" /> <strong>Utilisation :</strong> <strong><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/sels%20de%20bain/SAM_9431.JPG" alt="sels de bain apaisants" width="600" height="486" /></strong> Ajoutez 1 à 2 poignées dans l'eau de votre bain. 15 à 30 minutes de bain sont suffisantes pour profiter des effets bénéfiques de ce sel pour apaiser les peaux délicates voire irritées. Stockez votre flacon à l'abri de la lumière et de la chaleur. Vous pourrez ainsi le conserver 3 mois env. <strong>Choix des ingrédients tous disponibles chez AZ</strong> <ul> <li><strong>Sel de la mer morte :</strong> riche en Potassium, Magnésium, Calcium et de Brome. Il est apaisant, il calme les peaux enflammées et irritées, améliore l'état de la peau notamment dans le cas de peaux atopiques, favorise l’hydratation de la peau et le bon fonctionnement de ses cellules, Tonifie le tissu cutané, purifiant et assainissant cutané, c'est un excellent agent de lutte contre les infections diverses</li> <li><strong>Huile de coco :</strong> très nourrissante, l'huile de coco réduit considérablement la déshydratation de la peau. Apaisante et douce, elle calme les rougeurs et les sensations d'échauffements dues au soleil.</li> <li><strong>He géranium :</strong> connue pour ses propriétés anti-infectieuses et antiseptiques. Idéale pour les soins de la peau, cette huile illumine le teint et est reconnue pour lutter contre l'eczéma et la cellulite.</li> <li><strong>He bois de rose:</strong> son parfum doux, légèrement boisé avec une touche camphrée calmera vos nerfs et votre anxiété. Cette huile est également reconnue pour son effet rajeunissant et régénérant sur la peau.</li> <li><strong>Lait de coco en poudre :</strong> apporte une douceur exceptionnelle à la peau, Il est adapté à tous les types de peau<strong>. (Disponible en grande surface)</strong></li> </ul>Sels de bain apaisants fou de Cocoinheritopenopen420-revision-22012-01-20 14:29:092012-01-20 13:29:09420http://www.alicepegie.com/wordpress/wordpress/?p=4430revision0
44412012-01-20 14:30:542012-01-20 13:30:54<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Pate%20de%20speculoos/SAM_8818.JPG" alt="pate de speculoos maison" width="600" height="646" /> Voici l'une de mes dernière drogue la pâte de spéculoos ! j'en achetais souvent toute prête, jusqu'à ce qu'en visite au rauyon cuisine de ma librairie je tombe sur une petit livre de 30 recettes de spéculoos. Une fois rentrée, j'ai d'abord réalisé la recette sans la modifier avec des spéculoos de la marque citée. résultat concluant mais je trouvais la pate trop compacte, pas top pour étaler. Alors je l'ai refaite sans la modifier mais avec <a href="index.php?option=com_content&amp;view=article&amp;id=1906:mes-speculoos&amp;catid=107:biscuits&amp;Itemid=489">mes speculoos maison</a> et j'ai obtenu la texture désirée ente pate à tartiner et confiture.<!--more--><strong>ingredients:</strong> 200g de speculoos <a href="index.php?option=com_content&amp;view=article&amp;id=1906:mes-speculoos&amp;catid=107:biscuits&amp;Itemid=489">maison</a> 300ml de lait concentré non sucré 1 cuillère a soupe bombée de miel solide (pour moi miel d'oranger liquide) 1/2 cuillère à café de cannelle en poudre <strong>Préparation:</strong> 1/ Placer les speculoos  dans le bol d'un robot et mixer pour les réduire en poudre. <img src="images/stories/Pate%20de%20speculoos/SAM_7583.JPG" alt="SAM 7583" width="326" height="244" /><img src="images/stories/Pate%20de%20speculoos/SAM_6883.JPG" alt="SAM 6883" width="323" height="242" /> 2/ Ajouter le lait concentré, le miel et la cannelle puis mixer de nouveau jusqu'à obtenir une pâte lisse <img src="images/stories/Pate%20de%20speculoos/SAM_6884.JPG" alt="SAM 6884" width="323" height="242" /><img src="images/stories/Pate%20de%20speculoos/SAM_6885.JPG" alt="SAM 6885" width="323" height="242" /> <img src="images/stories/Pate%20de%20speculoos/SAM_7591.JPG" alt="SAM 7591" width="322" height="242" /><img src="images/stories/Pate%20de%20speculoos/SAM_7596.JPG" alt="SAM 7596" width="320" height="241" /> 3/ Verser dans un pot avec couvercle et réserver au frais 4 heures <img src="images/stories/Pate%20de%20speculoos/SAM_7609.JPG" alt="SAM 7609" width="252" height="382" /><img src="images/stories/Pate%20de%20speculoos/SAM_8855.JPG" alt="pate de speculoos maison" width="240" height="381" /> Servez vous en tartine, patisserie, crèpes, gauffres..... <img src="images/stories/Pate%20de%20speculoos/SAM_8823.JPG" alt="pate de speculoos maison" width="307" height="274" /><img src="images/stories/Pate%20de%20speculoos/SAM_8831.JPG" alt="pate de speculoos maison" width="297" height="273" /> Bon appétit!! <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Pate%20de%20speculoos/SAM_8822.JPG" alt="pate de speculoos maison" width="600" height="469" />Pate de Spéculoos maisoninheritopenopen422-revision-22012-01-20 14:30:542012-01-20 13:30:54422http://www.alicepegie.com/wordpress/wordpress/?p=4440revision0
44512011-09-29 07:54:502011-09-29 06:54:50<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/savon%20banane/SAM_7191.JPG" alt="SAM_7191" width="500" height="475" border="0" />Voici la recette d’un savon doux pour les peaux sèches et très sèches. Je l’ai réalisé expressément pour ma doudou1 qui est une inconditionnelle de banane.</span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">La recette </span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">pour un surgraissage à 8% <!--more--></span> <ul> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">60g d'huile d'olive bio </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">250g de beurre de karité bio </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">40g d’huile de palmiste blanc</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">1 petite banane bien mure </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">La peau de la banane que vous passez au four afin de l’assécher et la réduire ensuite en poudre</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">44.12g de soude caustique</span></span></span></li> <li style="text-indent: -18pt;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">101.5g d’eau pure</span></span></span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Méthode : en détail et image ici </span></strong> <p style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> </span></p> <ul> </ul><ul> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Réduisez la banane en purée.</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal; text-align: center;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7021.JPG" alt="SAM_7021" width="500" height="375" border="0" /> </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Préparez votre lessive de soude</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Une fois la soude prête jetez y vos huiles et beurres afin qu’ils se dissolvent grâce à la chaleur de la soude.</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7016.JPG" alt="SAM_7016" width="341" height="256" border="0" /><img src="images/stories/savon%20banane/SAM_7019.JPG" alt="SAM_7019" width="340" height="255" border="0" /></span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Lorsque vos corps gras sont liquides, mixez jusqu’à la trace.</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7019.JPG" alt="SAM_7019" width="339" height="255" border="0" /><img src="images/stories/savon%20banane/SAM_7020.JPG" alt="SAM_7020" width="338" height="253" border="0" /> </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Ajoutez ensuite la purée de banane et la poudre de sa peau.</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/savon%20banane/SAM_7022.JPG" alt="SAM_7022" width="500" height="375" border="0" /> </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mixez à nouveau pour bien mélanger pendant environ 5mn.</span></span></span></li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/savon%20banane/SAM_7023.JPG" alt="SAM_7023" width="500" height="375" border="0" /> <ul> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">          <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mettez en moule et laissez durcir 2/3jours avant de démouler pour la cure </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/savon%20banane/SAM_7171.JPG" alt="SAM_7171" width="500" height="416" border="0" /> </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">(si vous n’avez besoin d’utiliser les moules tout de suite laissez les savons dedans, couvrez les et laissez cure 3 semaines minimum. </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7190.JPG" alt="SAM_7190" width="368" height="271" border="0" /><img src="images/stories/savon%20banane/SAM_7192.JPG" alt="SAM_7192" width="258" height="273" border="0" /></span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7197.JPG" alt="SAM_7197" width="318" height="327" border="0" /><img src="images/stories/savon%20banane/SAM_7200.JPG" alt="SAM_7200" width="302" height="326" border="0" /> </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> </span></span></span></li> </ul>Savon tout doux à la bananepublishopenopensavon-tout-doux-a-la-banane2012-01-21 07:56:352012-01-21 06:56:350http://www.alicepegie.com/wordpress/wordpress/?p=4450post0
44712011-09-28 07:56:412011-09-28 06:56:41<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pain%20d'%C3%A9pices/SAM_4721.JPG" alt="pain d'épicces" width="600" height="480" />J’aime bien le pain d’épices, mais j’ai toujours trouvé ceux du commerce soit trop corsé en miel soit trop « épicé ». dernièrement, en feuilletant un livre de cuisine qu’on m’a offert, je suis tombée sur la recette alors j’ai voulu essayer. Le résultat est à la hauteur des mes espérance. Je n’ai utilisé que du 4 épices et ca nous plait ainsi.<!--more--></span> <h3><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Pour 1 pain dépices: </span></h3> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">250g de miel de thym</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100 ml de lait chaud</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de farine de blé</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de farine de seigle</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1/2 sachet de levure chimique</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">50g de cassonade (vergeoise blonde pour moi)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 œuf</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1cc de cannelle</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1cc de 4 épices</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation :</span></strong> <ul> </ul><ul> <li>-          Faites chauffer le lait à feu doux dans une casserole et ajoutez le miel puis le sucre. Mélangez bien et laissez refroidir 10mn.</li> </ul> <img src="images/stories/pain%20d'%C3%A9pices/SAM_4432.JPG" alt="SAM_4432.JPG" width="350" height="265" /><img src="images/stories/pain%20d'%C3%A9pices/SAM_4436.JPG" alt="SAM_4436.JPG" width="350" height="268" /> <ul> </ul><ul> <li>-          Dans un saladier mélangez les farines, la levure et les épices, mélangez bien.</li> </ul> <img src="images/stories/pain%20d'%C3%A9pices/SAM_4438.JPG" alt="SAM_4438.JPG" width="356" height="265" /><img src="images/stories/pain%20d'%C3%A9pices/SAM_4440.JPG" alt="SAM_4440.JPG" width="352" height="264" /> <ul> <li>-          Versez le lait progressivement sur la farine et mélangez bien le tout.</li> <li><img src="images/stories/pain%20d'%C3%A9pices/SAM_4441.JPG" alt="SAM_4441.JPG" width="350" height="244" /><img src="images/stories/pain%20d'%C3%A9pices/SAM_4444.JPG" alt="SAM_4444.JPG" width="323" height="244" /></li> <li>-          Versez dans un moule à cake et faites cuire 1h30 dans un four préchauffé à 140°</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pain%20d'%C3%A9pices/SAM_4699.JPG" alt="SAM_4699.JPG" width="600" height="449" /></li> <li>-          Sortez du four et laissez refroidir sur grill et dégustez !</li> </ul> <img src="images/stories/pain%20d'%C3%A9pices/SAM_4711.JPG" alt="pain d'épices" width="345" height="258" /><img src="images/stories/pain%20d'%C3%A9pices/SAM_4715.JPG" alt="pain dépices" width="342" height="258" /> <img src="images/stories/pain%20d'%C3%A9pices/SAM_4720.JPG" alt="pain d'épices" width="344" height="257" /><img src="images/stories/pain%20d'%C3%A9pices/SAM_4722.JPG" alt="pain d'épices" width="343" height="258" /> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> On conseille d’attendre 48 !!! pour le déguster les miens ne survivent jamais plus de 3h.</span>Le Pain dépicespublishopenopenle-pain-depices2012-01-21 07:59:072012-01-21 06:59:070http://www.alicepegie.com/wordpress/wordpress/?p=4470post0
44612012-01-21 07:55:532012-01-21 06:55:53<p><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7191.JPG" alt="SAM_7191" style="display: block; margin-left: auto; margin-right: auto;" border="0" height="475" width="500" />Voici la recette d’un savon doux pour les peaux sèches et très sèches. Je l’ai réalisé expressément pour ma doudou1 qui est une inconditionnelle de banane.</span></p> <p><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">&nbsp;</span></p> <p><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">La recette </span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">pour un surgraissage à 8% </span></p> <p><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">&nbsp;</span></strong></p> <ul> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">60g d'huile d'olive bio </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">250g de beurre de karité bio </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">40g d’huile de palmiste blanc</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">1 petite banane bien mure </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">La peau de la banane que vous passez au four afin de l’assécher et la réduire ensuite en poudre</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">44.12g de soude caustique</span></span></span></li> <li style="text-indent: -18pt;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">101.5g d’eau pure</span></span></span></li> </ul> <hr id="system-readmore" /> <p><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">&nbsp;</span></p> <p><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Méthode&nbsp;: en détail et image ici<br /></span></strong></p> <p style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">&nbsp;</span></p> <ul> </ul><ul> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Réduisez la banane en purée.</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal; text-align: center;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7021.JPG" alt="SAM_7021" border="0" height="375" width="500" /><br /></span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Préparez votre lessive de soude</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Une fois la soude prête jetez y vos huiles et beurres afin qu’ils se dissolvent grâce à la chaleur de la soude.</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7016.JPG" alt="SAM_7016" border="0" height="256" width="341" /><img src="images/stories/savon%20banane/SAM_7019.JPG" alt="SAM_7019" border="0" height="255" width="340" /></span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Lorsque vos corps gras sont liquides, mixez jusqu’à la trace.</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7019.JPG" alt="SAM_7019" border="0" height="255" width="339" /><img src="images/stories/savon%20banane/SAM_7020.JPG" alt="SAM_7020" border="0" height="253" width="338" /><br /></span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Ajoutez ensuite la purée de banane et la poudre de sa peau.</span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7022.JPG" alt="SAM_7022" style="display: block; margin-left: auto; margin-right: auto;" border="0" height="375" width="500" /><br /></span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mixez à nouveau pour bien mélanger pendant environ 5mn.</span></span></span></li> </ul> <p><img src="images/stories/savon%20banane/SAM_7023.JPG" alt="SAM_7023" style="display: block; margin-left: auto; margin-right: auto;" border="0" height="375" width="500" /></p> <ul> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';">-<span style="font: 7pt 'Times New Roman';">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Mettez en moule et laissez durcir 2/3jours avant de démouler pour la cure <br /></span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7171.JPG" alt="SAM_7171" style="display: block; margin-left: auto; margin-right: auto;" border="0" height="416" width="500" /><br /></span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">(si vous n’avez besoin d’utiliser les moules tout de suite laissez les savons dedans, couvrez les et laissez cure 3 semaines minimum. </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7190.JPG" alt="SAM_7190" border="0" height="271" width="368" /><img src="images/stories/savon%20banane/SAM_7192.JPG" alt="SAM_7192" border="0" height="273" width="258" /></span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/savon%20banane/SAM_7197.JPG" alt="SAM_7197" border="0" height="327" width="318" /><img src="images/stories/savon%20banane/SAM_7200.JPG" alt="SAM_7200" border="0" height="326" width="302" /><br /></span></span></span></li> <li style="margin-bottom: 0.0001pt; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Times New Roman','serif';"><span style="font: 7pt 'Times New Roman';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><br /></span></span></span></li> </ul>Savon tout doux à la bananeinheritopenopen445-revision2012-01-21 07:55:532012-01-21 06:55:53445http://www.alicepegie.com/wordpress/wordpress/?p=4460revision0
44812012-01-21 07:58:442012-01-21 06:58:44<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pain%20d'%C3%A9pices/SAM_4721.JPG" alt="pain d'épicces" width="600" height="480" />J’aime bien le pain d’épices, mais j’ai toujours trouvé ceux du commerce soit trop corsé en miel soit trop « épicé ». dernièrement, en feuilletant un livre de cuisine qu’on m’a offert, je suis tombée sur la recette alors j’ai voulu essayer. Le résultat est à la hauteur des mes espérance. Je n’ai utilisé que du 4 épices et ca nous plait ainsi.<!--more--></span> <h3><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Pour 1 pain dépices: </span></h3> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">250g de miel de thym</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100 ml de lait chaud</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de farine de blé</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">100g de farine de seigle</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1/2 sachet de levure chimique</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">50g de cassonade (vergeoise blonde pour moi)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 œuf</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1cc de cannelle</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1cc de 4 épices</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation :</span></strong> <ul> </ul><ul> <li>-          Faites chauffer le lait à feu doux dans une casserole et ajoutez le miel puis le sucre. Mélangez bien et laissez refroidir 10mn.</li> </ul> <img src="images/stories/pain%20d'%C3%A9pices/SAM_4432.JPG" alt="SAM_4432.JPG" width="350" height="265" /><img src="images/stories/pain%20d'%C3%A9pices/SAM_4436.JPG" alt="SAM_4436.JPG" width="350" height="268" /> <ul> </ul><ul> <li>-          Dans un saladier mélangez les farines, la levure et les épices, mélangez bien.</li> </ul> <img src="images/stories/pain%20d'%C3%A9pices/SAM_4438.JPG" alt="SAM_4438.JPG" width="356" height="265" /><img src="images/stories/pain%20d'%C3%A9pices/SAM_4440.JPG" alt="SAM_4440.JPG" width="352" height="264" /> <ul> <li>-          Versez le lait progressivement sur la farine et mélangez bien le tout.</li> <li><img src="images/stories/pain%20d'%C3%A9pices/SAM_4441.JPG" alt="SAM_4441.JPG" width="350" height="244" /><img src="images/stories/pain%20d'%C3%A9pices/SAM_4444.JPG" alt="SAM_4444.JPG" width="323" height="244" /></li> <li>-          Versez dans un moule à cake et faites cuire 1h30 dans un four préchauffé à 140°</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/pain%20d'%C3%A9pices/SAM_4699.JPG" alt="SAM_4699.JPG" width="600" height="449" /></li> <li>-          Sortez du four et laissez refroidir sur grill et dégustez !</li> </ul> <img src="images/stories/pain%20d'%C3%A9pices/SAM_4711.JPG" alt="pain d'épices" width="345" height="258" /><img src="images/stories/pain%20d'%C3%A9pices/SAM_4715.JPG" alt="pain dépices" width="342" height="258" /> <img src="images/stories/pain%20d'%C3%A9pices/SAM_4720.JPG" alt="pain d'épices" width="344" height="257" /><img src="images/stories/pain%20d'%C3%A9pices/SAM_4722.JPG" alt="pain d'épices" width="343" height="258" /> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> On conseille d’attendre 48 !!! pour le déguster les miens ne survivent jamais plus de 3h.</span>inheritopenopen447-revision2012-01-21 07:58:442012-01-21 06:58:44447http://www.alicepegie.com/wordpress/wordpress/?p=4480revision0
44912011-09-27 07:59:232011-09-27 06:59:23<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lait%20corps%20hydratant/SAM_7048.JPG" alt="SAM_7048" width="500" height="420" border="0" />Avec sa texture légère mais nourissante, ce lait hydratant peaux sèches pénètre rapidement sans coller. Il Hydrate et rend  la peau est douce, fraîche et tonifiée, délicieusement <!--more--> <strong>pour 200ml env:</strong> • Beurre végétal de Karité : 58g <ul> <li>• Cire Emulsifiante n°3 : 20g</li> <li>• Eau de fruit de citron : 120g</li> <li>• Conservateur Cosgard : 2g</li> </ul> <strong>Préparation</strong> : &nbsp; <ul> <li>1. mettez tous les ingrédients sauf le conservateur dans un bol.</li> <li>2. Faites chauffer au bain-marie en mélangeant tout au long de la chauffe jusqu'à de la cire fonde complètement.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lait%20corps%20hydratant/SAM_6395.JPG" alt="SAM_6395" width="500" height="375" border="0" /></li> <li>3. Lorsque la cire est complètement liquide, mélangez vigoureusement pendant environ 3 minutes. Le mélange blanchit et s'homogénéise.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lait%20corps%20hydratant/SAM_6400.JPG" alt="SAM_6400" width="500" height="375" border="0" /></li> <li>4. Sans cesser d'agiter, mettez le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lait%20corps%20hydratant/SAM_6399.JPG" alt="SAM_6399" width="500" height="420" border="0" /></li> <li>5. Ajoutez le conservateur en mélangeant bien.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lait%20corps%20hydratant/SAM_6397.JPG" alt="SAM_6397" width="500" height="375" border="0" /></li> <li>6. Transférez la préparation dans votre flacon.</li> <li><img src="images/stories/lait%20corps%20hydratant/SAM_7028.JPG" alt="SAM_7028" width="200" height="265" border="0" /><img src="images/stories/lait%20corps%20hydratant/SAM_7039.JPG" alt="SAM_7039" width="263" height="263" border="0" /></li> </ul> &nbsp; <strong>Utilisation</strong> : Hydratez votre quotidiennement. Stockez votre flacon à l'abri de la lumière et de la chaleur. <img src="images/stories/lait%20corps%20hydratant/SAM_7032.JPG" alt="SAM_7032" width="319" height="275" border="0" /><img src="images/stories/lait%20corps%20hydratant/SAM_7046.JPG" alt="SAM_7046" width="227" height="273" border="0" /> &nbsp; <strong>Choix des ingrédients</strong> L'eau de fruit de citron (d'après AZ): est idéale pour éclaircir le teint et avoir une belle peau, astringente et purifiante, cette eau vitaminée et fruitée sera l'alliée incontournable des peaux à problèmes et viendra à bout de vos petits boutons disgracieux.Lait hydratant au karité publishopenopenlait-hydratant-au-karite2012-01-21 08:00:382012-01-21 07:00:380http://www.alicepegie.com/wordpress/wordpress/?p=4490post0
45012012-01-21 08:00:142012-01-21 07:00:14<img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lait%20corps%20hydratant/SAM_7048.JPG" alt="SAM_7048" width="500" height="420" border="0" />Avec sa texture légère mais nourissante, ce lait hydratant peaux sèches pénètre rapidement sans coller. Il Hydrate et rend  la peau est douce, fraîche et tonifiée, délicieusement <!--more--> <strong>pour 200ml env:</strong> • Beurre végétal de Karité : 58g <ul> <li>• Cire Emulsifiante n°3 : 20g</li> <li>• Eau de fruit de citron : 120g</li> <li>• Conservateur Cosgard : 2g</li> </ul> <strong>Préparation</strong> : &nbsp; <ul> <li>1. mettez tous les ingrédients sauf le conservateur dans un bol.</li> <li>2. Faites chauffer au bain-marie en mélangeant tout au long de la chauffe jusqu'à de la cire fonde complètement.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lait%20corps%20hydratant/SAM_6395.JPG" alt="SAM_6395" width="500" height="375" border="0" /></li> <li>3. Lorsque la cire est complètement liquide, mélangez vigoureusement pendant environ 3 minutes. Le mélange blanchit et s'homogénéise.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lait%20corps%20hydratant/SAM_6400.JPG" alt="SAM_6400" width="500" height="375" border="0" /></li> <li>4. Sans cesser d'agiter, mettez le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lait%20corps%20hydratant/SAM_6399.JPG" alt="SAM_6399" width="500" height="420" border="0" /></li> <li>5. Ajoutez le conservateur en mélangeant bien.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lait%20corps%20hydratant/SAM_6397.JPG" alt="SAM_6397" width="500" height="375" border="0" /></li> <li>6. Transférez la préparation dans votre flacon.</li> <li><img src="images/stories/lait%20corps%20hydratant/SAM_7028.JPG" alt="SAM_7028" width="200" height="265" border="0" /><img src="images/stories/lait%20corps%20hydratant/SAM_7039.JPG" alt="SAM_7039" width="263" height="263" border="0" /></li> </ul> &nbsp; <strong>Utilisation</strong> : Hydratez votre quotidiennement. Stockez votre flacon à l'abri de la lumière et de la chaleur. <img src="images/stories/lait%20corps%20hydratant/SAM_7032.JPG" alt="SAM_7032" width="319" height="275" border="0" /><img src="images/stories/lait%20corps%20hydratant/SAM_7046.JPG" alt="SAM_7046" width="227" height="273" border="0" /> &nbsp; <strong>Choix des ingrédients</strong> L'eau de fruit de citron (d'après AZ): est idéale pour éclaircir le teint et avoir une belle peau, astringente et purifiante, cette eau vitaminée et fruitée sera l'alliée incontournable des peaux à problèmes et viendra à bout de vos petits boutons disgracieux.Lait hydratant au karité inheritopenopen449-revision2012-01-21 08:00:142012-01-21 07:00:14449http://www.alicepegie.com/wordpress/wordpress/?p=4500revision0
45112011-09-26 08:01:012011-09-26 07:01:01<img style="float: left;" src="images/stories/audio/Govinal2/SAM_6910.JPG" alt="SAM_6910" width="203" height="339" /> <strong></strong><strong></strong><strong><span style="font-family: 'Arial','sans-serif';"> Govinal Ndzinga Essomba dans m'akutsi</span></strong> <strong></strong><strong></strong><strong><span style="font-family: 'Arial','sans-serif';"> {nmap}normal|250|150|images/stories/audio/Govinal2|1||a{/nmap}</span></strong> &nbsp;Govinal Ndzinga Essombapublishopenopengovinal-ndzinga-essomba2012-01-21 08:02:212012-01-21 07:02:210http://www.alicepegie.com/wordpress/wordpress/?p=4510post0
45212012-01-21 08:02:032012-01-21 07:02:03<img style="float: left;" src="images/stories/audio/Govinal2/SAM_6910.JPG" alt="SAM_6910" width="203" height="339" /> <strong></strong><strong></strong><strong><span style="font-family: 'Arial','sans-serif';"> Govinal Ndzinga Essomba dans m'akutsi</span></strong> <strong></strong><strong></strong><strong><span style="font-family: 'Arial','sans-serif';"> {nmap}normal|250|150|images/stories/audio/Govinal2|1||a{/nmap}</span></strong> &nbsp;Govinal Ndzinga Essombainheritopenopen451-revision2012-01-21 08:02:032012-01-21 07:02:03451http://www.alicepegie.com/wordpress/wordpress/?p=4520revision0
45312012-01-21 08:03:242012-01-21 07:03:24<img style="float: left;" src="images/stories/audio/Govinal2/SAM_6910.JPG" alt="SAM_6910" width="203" height="339" /> <strong></strong><strong></strong><strong><span style="font-family: 'Arial','sans-serif';"> Govinal Ndzinga Essomba dans m'akutsi</span></strong> <strong></strong><strong></strong><strong><span style="font-family: 'Arial','sans-serif';"> {nmap}normal|250|150|images/stories/audio/Govinal2|1||a{/nmap}</span></strong> &nbsp;Govinal Ndzinga Essombainheritopenopen451-autosave2012-01-21 08:03:242012-01-21 07:03:24451http://www.alicepegie.com/wordpress/wordpress/?p=4530revision0
45412011-09-22 08:03:252011-09-22 07:03:25<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4496.JPG" alt="MANIOC BOUILLI" width="600" height="371" />Le <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc </a>est cultivé essentiellement pour ses racines (tubercules), qui entre dans l'alimentation quotidienne de nombreuses populations, surtout africaines.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">On peut le déguster en <a href="index.php?option=com_content&amp;view=article&amp;id=2179:frites-de-manioc&amp;catid=376:accompagnements&amp;Itemid=133">frites</a>, <a href="index.php?option=com_content&amp;view=article&amp;id=2581:manioc-grille&amp;catid=376:accompagnements&amp;Itemid=133">grillé</a>, en <a href="index.php?option=com_content&amp;view=article&amp;id=1890:fufu-foufou-de-manioc&amp;catid=376:accompagnements&amp;Itemid=133">fufu</a>….</span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">On utilise aussi ses <a href="index.php?option=com_content&amp;view=article&amp;id=2238:feuilles-de-manioc-kpwem-au-suc-de-palme&amp;catid=363:plats&amp;Itemid=121">feuilles </a>comme <a href="index.php?option=com_content&amp;view=article&amp;id=2743:sauce-de-feuilles-de-manioc&amp;catid=363:plats&amp;Itemid=121">légume</a>.<!--more--></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients : (pour 4 personnes)</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 kg de <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc</a></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">eau</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Préparation :</span></strong> <ol start="1"> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Epluchez et lavez le <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc</a>.</span></li> </ol> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4419.JPG" alt="SAM_4419" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ensuite, coupez-le en morceaux de taille moyenne et faites les bouillir dans une marmite d'eau pendant 25 à 30 minutes.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4430.JPG" alt="SAM_4430" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Arrêtez la cuisson quand le manioc est tendre.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4492.JPG" alt="manioc bouilli" width="600" height="410" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Egouttez s’il reste de l’eau dans la casserole et dégustez.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4498.JPG" alt="manioc bouilli" width="600" height="455" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span>Le Manioc Bouillipublishopenopenle-manioc-bouilli2012-01-21 08:11:372012-01-21 07:11:370http://www.alicepegie.com/wordpress/wordpress/?p=4540post0
45512012-01-21 08:04:272012-01-21 07:04:27<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4496.JPG" alt="MANIOC BOUILLI" width="600" height="371" />Le <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc </a>est cultivé essentiellement pour ses racines (tubercules), qui entre dans l'alimentation quotidienne de nombreuses populations, surtout africaines.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">On peut le déguster en <a href="index.php?option=com_content&amp;view=article&amp;id=2179:frites-de-manioc&amp;catid=376:accompagnements&amp;Itemid=133">frites</a>, <a href="index.php?option=com_content&amp;view=article&amp;id=2581:manioc-grille&amp;catid=376:accompagnements&amp;Itemid=133">grillé</a>, en <a href="index.php?option=com_content&amp;view=article&amp;id=1890:fufu-foufou-de-manioc&amp;catid=376:accompagnements&amp;Itemid=133">fufu</a>….</span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">On utilise aussi ses <a href="index.php?option=com_content&amp;view=article&amp;id=2238:feuilles-de-manioc-kpwem-au-suc-de-palme&amp;catid=363:plats&amp;Itemid=121">feuilles </a>comme <a href="index.php?option=com_content&amp;view=article&amp;id=2743:sauce-de-feuilles-de-manioc&amp;catid=363:plats&amp;Itemid=121">légume</a>.<!--more--></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients : (pour 4 personnes)</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 kg de <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc</a></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">eau</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Préparation :</span></strong> <ol start="1"> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Epluchez et lavez le <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc</a>.</span></li> </ol> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4419.JPG" alt="SAM_4419" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ensuite, coupez-le en morceaux de taille moyenne et faites les bouillir dans une marmite d'eau pendant 25 à 30 minutes.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4430.JPG" alt="SAM_4430" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Arrêtez la cuisson quand le manioc est tendre.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4492.JPG" alt="manioc bouilli" width="600" height="410" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Egouttez s’il reste de l’eau dans la casserole et dégustez.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4498.JPG" alt="manioc bouilli" width="600" height="455" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span>Le Manioc Bouilliinheritopenopen454-revision2012-01-21 08:04:272012-01-21 07:04:27454http://www.alicepegie.com/wordpress/wordpress/?p=4550revision0
45612011-09-23 08:05:342011-09-23 07:05:34<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mimosa/SAM_6392.JPG" alt="SAM_6392" width="500" height="437" border="0" />Pendant la journée, votre peau est exposée aux agressions extérieures, elle perd en hydratation et souplesse. Pendant la nuit, elle a besoin d’un apport extérieur pour se régénérer et rétablir son niveau d’hydratation naturelle pour qu’au réveil elle soit fraîche et éclatante. La texture mousse et facilement absorbée de ce Soin hydrate intensément et détend la peau pendant la nuit pour une peau parfaitement régénérée, douce et souple le matin. <!--more--><strong>Ingrédients pour 50g env.</strong></span> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">HV de rose musquée : 4.5g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Cire émulsifiante : 2g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Cire de mimosa : 2g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Eau de fruit de citron : 32g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">complexe hydratation intense: 4g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Vit E : 4 gouttes</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Conservateur : 9 gouttes</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> </span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mode opératoire :</span></strong> <ul> <li style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">1/ Transférez l’huile, l’eau de fruit de citron et les cires dans un bol.</span></li> </ul> <p style="margin-bottom: 0.0001pt; line-height: normal;"></p> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mimosa/SAM_6357.JPG" alt="SAM_6357" width="314" height="204" border="0" /> </span></li> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2</span>/ Faites chauffer au bain-marie jusqu’à ce que les cires soient fendus.</li> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mimosa/SAM_6365.JPG" alt="SAM_6365" width="364" height="273" border="0" /></li> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';">3/Sortez le bol du bain-marie et agitez vigoureusement pendant environ 3 minutes. Le mélange blanchit et s'homogénéise.</li> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mimosa/SAM_6366.JPG" alt="SAM_6366" width="364" height="273" border="0" />4/ Sans cesser d'agiter, mettez le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</li> </ul> </li> </ul> <p style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="float: left;" src="images/stories/mimosa/SAM_6367.JPG" alt="SAM_6367" width="310" height="274" border="0" /><img src="images/stories/mimosa/SAM_6368.JPG" alt="SAM_6368" width="310" height="274" border="0" /></p> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';">5/ Ajoutez progressivement le reste des ingrédients en mélangeant bien entre chaque ajout.</li> </ul> </li> </ul> </li> </ul> <p style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/mimosa/SAM_6369.JPG" alt="SAM_6369" width="364" height="246" border="0" /><img src="images/stories/mimosa/SAM_6370.JPG" alt="SAM_6370" width="331" height="248" border="0" /></p> <p style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/mimosa/SAM_6371.JPG" alt="SAM_6371" width="347" height="260" border="0" /><img src="images/stories/mimosa/SAM_6375.JPG" alt="SAM_6375" width="348" height="261" border="0" /></p> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> 6/ Transférez la préparation dans votre pot. </span></li> </ul> </li> </ul> </li> </ul> <p style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/mimosa/SAM_6378.JPG" alt="SAM_6378" width="295" height="273" border="0" /><img src="images/stories/mimosa/SAM_6453.JPG" alt="SAM_6453" width="364" height="273" border="0" /></span></p> <p style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/mimosa/SAM_6456.JPG" alt="SAM_6456" width="279" height="284" border="0" /><img src="images/stories/mimosa/SAM_6463.JPG" alt="SAM_6463" width="379" height="284" border="0" /></span></p> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Utilisation :</span></strong> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Cette crème s'applique sur le visage le soir en massages pénétrants. Il laissera votre peau douce, nourrie et agréablement parfumée. Un moment de détente absolue. Stockez votre pot à l'abri de la lumière et de la chaleur. </span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Choix des Ingrédients</span></strong> <strong>HV de rose musquée</strong> : <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">idéale pour la jeunesse et l'éclat de la peau.  régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. </span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Cire de mimosa :</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> Sa richesse en phytostérols la rend aussi très intéressante pour le soin des peaux sensibles : incorporée dans une émulsion, elle la apportera un toucher très doux et des propriétés protectrices.</span> <p style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Eau de fruit de citron : </span></strong></p> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">complexe hydratation intense: </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mélange synergique de composés reproduisant de façon optimale le "facteur naturel d'hydratation" de la peau, c'est un actif hydratant ultra-performant, adapté pour tous types de crèmes, gels, produits moussants et pour tous vos soins visage, corps et cheveux. </span>Mousse de nuit régénérante rose & mimosapublishopenopenmousse-de-nuit-regenerante-rose-mimosa2012-01-21 08:07:102012-01-21 07:07:100http://www.alicepegie.com/wordpress/wordpress/?p=4560post0
45712012-01-21 08:06:352012-01-21 07:06:35<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mimosa/SAM_6392.JPG" alt="SAM_6392" width="500" height="437" border="0" />Pendant la journée, votre peau est exposée aux agressions extérieures, elle perd en hydratation et souplesse. Pendant la nuit, elle a besoin d’un apport extérieur pour se régénérer et rétablir son niveau d’hydratation naturelle pour qu’au réveil elle soit fraîche et éclatante. La texture mousse et facilement absorbée de ce Soin hydrate intensément et détend la peau pendant la nuit pour une peau parfaitement régénérée, douce et souple le matin. <!--more--><strong>Ingrédients pour 50g env.</strong></span> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">HV de rose musquée : 4.5g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Cire émulsifiante : 2g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Cire de mimosa : 2g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Eau de fruit de citron : 32g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">complexe hydratation intense: 4g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Vit E : 4 gouttes</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Conservateur : 9 gouttes</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> </span></li> </ul> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mode opératoire :</span></strong> <ul> <li style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">1/ Transférez l’huile, l’eau de fruit de citron et les cires dans un bol.</span></li> </ul> <p style="margin-bottom: 0.0001pt; line-height: normal;"></p> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mimosa/SAM_6357.JPG" alt="SAM_6357" width="314" height="204" border="0" /> </span></li> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">2</span>/ Faites chauffer au bain-marie jusqu’à ce que les cires soient fendus.</li> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mimosa/SAM_6365.JPG" alt="SAM_6365" width="364" height="273" border="0" /></li> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';">3/Sortez le bol du bain-marie et agitez vigoureusement pendant environ 3 minutes. Le mélange blanchit et s'homogénéise.</li> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/mimosa/SAM_6366.JPG" alt="SAM_6366" width="364" height="273" border="0" />4/ Sans cesser d'agiter, mettez le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion pendant encore 3 minutes environ.</li> </ul> </li> </ul> <p style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="float: left;" src="images/stories/mimosa/SAM_6367.JPG" alt="SAM_6367" width="310" height="274" border="0" /><img src="images/stories/mimosa/SAM_6368.JPG" alt="SAM_6368" width="310" height="274" border="0" /></p> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';">5/ Ajoutez progressivement le reste des ingrédients en mélangeant bien entre chaque ajout.</li> </ul> </li> </ul> </li> </ul> <p style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/mimosa/SAM_6369.JPG" alt="SAM_6369" width="364" height="246" border="0" /><img src="images/stories/mimosa/SAM_6370.JPG" alt="SAM_6370" width="331" height="248" border="0" /></p> <p style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/mimosa/SAM_6371.JPG" alt="SAM_6371" width="347" height="260" border="0" /><img src="images/stories/mimosa/SAM_6375.JPG" alt="SAM_6375" width="348" height="261" border="0" /></p> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"> <ul> <li style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> 6/ Transférez la préparation dans votre pot. </span></li> </ul> </li> </ul> </li> </ul> <p style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/mimosa/SAM_6378.JPG" alt="SAM_6378" width="295" height="273" border="0" /><img src="images/stories/mimosa/SAM_6453.JPG" alt="SAM_6453" width="364" height="273" border="0" /></span></p> <p style="font-size: 10pt; font-family: 'Arial','sans-serif';"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/mimosa/SAM_6456.JPG" alt="SAM_6456" width="279" height="284" border="0" /><img src="images/stories/mimosa/SAM_6463.JPG" alt="SAM_6463" width="379" height="284" border="0" /></span></p> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Utilisation :</span></strong> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Cette crème s'applique sur le visage le soir en massages pénétrants. Il laissera votre peau douce, nourrie et agréablement parfumée. Un moment de détente absolue. Stockez votre pot à l'abri de la lumière et de la chaleur. </span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Choix des Ingrédients</span></strong> <strong>HV de rose musquée</strong> : <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">idéale pour la jeunesse et l'éclat de la peau.  régénératrice cellulaire qui se manifeste par une action efficace sur les rides et l'hydratation cutanée des peaux dévitalisées, sèches, eczémateuses, couperosées, présentant des cicatrices. </span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Cire de mimosa :</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> Sa richesse en phytostérols la rend aussi très intéressante pour le soin des peaux sensibles : incorporée dans une émulsion, elle la apportera un toucher très doux et des propriétés protectrices.</span> <p style="margin-bottom: 0.0001pt; line-height: normal;"><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Eau de fruit de citron : </span></strong></p> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">complexe hydratation intense: </span> <span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Mélange synergique de composés reproduisant de façon optimale le "facteur naturel d'hydratation" de la peau, c'est un actif hydratant ultra-performant, adapté pour tous types de crèmes, gels, produits moussants et pour tous vos soins visage, corps et cheveux. </span>Mousse de nuit régénérante rose & mimosainheritopenopen456-revision2012-01-21 08:06:352012-01-21 07:06:35456http://www.alicepegie.com/wordpress/wordpress/?p=4570revision0
45812011-09-21 08:07:302011-09-21 07:07:30<p style="text-align: center;"><img style="vertical-align: middle;" title="pate à choux" src="images/stories/pate%20%C3%A0%20choux/SAM_3849.JPG" alt="pate à choux" width="300" height="225" border="0" /><img style="vertical-align: middle;" title="chouquette" src="images/stories/pate%20%C3%A0%20choux/SAM_3873.JPG" alt="chouquette" width="300" height="225" border="0" /></p> <p style="text-align: center;"><img style="vertical-align: middle;" title="éclairs" src="images/stories/pate%20%C3%A0%20choux/SAM_6592.JPG" alt="éclairs" width="332" height="225" border="0" /><img style="vertical-align: middle;" title="eclairs" src="images/stories/pate%20%C3%A0%20choux/SAM_6649.JPG" alt="eclairs" width="278" height="225" border="0" /></p> La pâte à choux est une pâte cuite utilisée en pâtisserie pour de nombreuses réalisations sucrées (chou à la crème, éclair…) ou salées (gougères, pommes dauphines…). Elle est obtenue par l'incorporation d'œufs dans une pâte (panade) composée principalement de farine ébouillantée (à l'eau ou au lait salée et beurrée) puis desséchée. Dont voici la recette:<!--more--> <strong>Pour 25 choux env.:</strong> 60g de beurre 250ml d’eau ou de lait (ou un peu de chaque) 125g de farine 4 œufs <strong>Préparation:</strong> 1- Portez à ébullition le lait et le beurre jusqu’à ce que le beurre soit dissout. <img src="images/stories/pate%20%C3%A0%20choux/SAM_3825.JPG" alt="SAM_3825" width="342" height="256" border="0" /><img src="images/stories/pate%20%C3%A0%20choux/SAM_6501.JPG" alt="SAM_6501" width="339" height="255" border="0" /> 2- Retirez la casserole du feu et ajoutez la farine d’un seul coup. Remuez à l’aide d’une cuillère en bois jusqu’à ce que l’eau soit absorbée et remettez sur feu doux. Remuez sans cesse jusqu’à ce que la pâte soit desséchée et se décolle de la paroi de la casserole. <img src="images/stories/pate%20%C3%A0%20choux/SAM_6503.JPG" alt="SAM_6503" width="342" height="256" border="0" /><img src="images/stories/pate%20%C3%A0%20choux/SAM_6511.JPG" alt="SAM_6511" width="340" height="255" border="0" /> 3- Otez la pâte du feu. Ajoutez alors les œufs un à un en mélangeant bien entre chaque ajout. <img src="images/stories/pate%20%C3%A0%20choux/SAM_6512.JPG" alt="SAM_6512" width="345" height="259" border="0" /><img src="images/stories/pate%20%C3%A0%20choux/SAM_3849.JPG" alt="SAM_3849" width="344" height="259" border="0" /> 4- A l’aide d’une poche à douille, dressez votre pâte en espaçant les tas pour éviter qu’ils ne collent. <img src="images/stories/pate%20%C3%A0%20choux/SAM_3858.JPG" alt="SAM_3858" width="343" height="257" border="0" /><img src="images/stories/pate%20%C3%A0%20choux/SAM_6546.JPG" alt="SAM_6546" width="341" height="257" border="0" /> 5- Faites cuire à 180° pendant 25 min. <img title="chouquette" src="images/stories/pate%20%C3%A0%20choux/SAM_3873.JPG" alt="CHOUQUETTE" width="349" height="261" border="0" /><img title="chouquette" src="images/stories/pate%20%C3%A0%20choux/SAM_3880.JPG" alt="chouquette" width="339" height="259" border="0" /> <img title="eclairs" src="images/stories/pate%20%C3%A0%20choux/SAM_6592.JPG" alt="eclairs" width="373" height="253" border="0" /><img title="eclairs" src="images/stories/pate%20%C3%A0%20choux/SAM_6649.JPG" alt="eclairs" width="313" height="253" border="0" />La Pâte à Chouxpublishopenopenla-pate-a-choux2012-01-21 08:10:292012-01-21 07:10:290http://www.alicepegie.com/wordpress/wordpress/?p=4580post0
45912012-01-21 08:08:402012-01-21 07:08:40<p style="text-align: center;"><img style="vertical-align: middle;" title="pate à choux" src="images/stories/pate%20%C3%A0%20choux/SAM_3849.JPG" alt="pate à choux" width="300" height="225" border="0" /><img style="vertical-align: middle;" title="chouquette" src="images/stories/pate%20%C3%A0%20choux/SAM_3873.JPG" alt="chouquette" width="300" height="225" border="0" /></p> <p style="text-align: center;"><img style="vertical-align: middle;" title="éclairs" src="images/stories/pate%20%C3%A0%20choux/SAM_6592.JPG" alt="éclairs" width="332" height="225" border="0" /><img style="vertical-align: middle;" title="eclairs" src="images/stories/pate%20%C3%A0%20choux/SAM_6649.JPG" alt="eclairs" width="278" height="225" border="0" /></p> La pâte à choux est une pâte cuite utilisée en pâtisserie pour de nombreuses réalisations sucrées (chou à la crème, éclair…) ou salées (gougères, pommes dauphines…). Elle est obtenue par l'incorporation d'œufs dans une pâte (panade) composée principalement de farine ébouillantée (à l'eau ou au lait salée et beurrée) puis desséchée. Dont voici la recette:<!--more--> <strong>Pour 25 choux env.:</strong> 60g de beurre 250ml d’eau ou de lait (ou un peu de chaque) 125g de farine 4 œufs <strong>Préparation:</strong> 1- Portez à ébullition le lait et le beurre jusqu’à ce que le beurre soit dissout. <img src="images/stories/pate%20%C3%A0%20choux/SAM_3825.JPG" alt="SAM_3825" width="342" height="256" border="0" /><img src="images/stories/pate%20%C3%A0%20choux/SAM_6501.JPG" alt="SAM_6501" width="339" height="255" border="0" /> 2- Retirez la casserole du feu et ajoutez la farine d’un seul coup. Remuez à l’aide d’une cuillère en bois jusqu’à ce que l’eau soit absorbée et remettez sur feu doux. Remuez sans cesse jusqu’à ce que la pâte soit desséchée et se décolle de la paroi de la casserole. <img src="images/stories/pate%20%C3%A0%20choux/SAM_6503.JPG" alt="SAM_6503" width="342" height="256" border="0" /><img src="images/stories/pate%20%C3%A0%20choux/SAM_6511.JPG" alt="SAM_6511" width="340" height="255" border="0" /> 3- Otez la pâte du feu. Ajoutez alors les œufs un à un en mélangeant bien entre chaque ajout. <img src="images/stories/pate%20%C3%A0%20choux/SAM_6512.JPG" alt="SAM_6512" width="345" height="259" border="0" /><img src="images/stories/pate%20%C3%A0%20choux/SAM_3849.JPG" alt="SAM_3849" width="344" height="259" border="0" /> 4- A l’aide d’une poche à douille, dressez votre pâte en espaçant les tas pour éviter qu’ils ne collent. <img src="images/stories/pate%20%C3%A0%20choux/SAM_3858.JPG" alt="SAM_3858" width="343" height="257" border="0" /><img src="images/stories/pate%20%C3%A0%20choux/SAM_6546.JPG" alt="SAM_6546" width="341" height="257" border="0" /> 5- Faites cuire à 180° pendant 25 min. <img title="chouquette" src="images/stories/pate%20%C3%A0%20choux/SAM_3873.JPG" alt="CHOUQUETTE" width="349" height="261" border="0" /><img title="chouquette" src="images/stories/pate%20%C3%A0%20choux/SAM_3880.JPG" alt="chouquette" width="339" height="259" border="0" /> <img title="eclairs" src="images/stories/pate%20%C3%A0%20choux/SAM_6592.JPG" alt="eclairs" width="373" height="253" border="0" /><img title="eclairs" src="images/stories/pate%20%C3%A0%20choux/SAM_6649.JPG" alt="eclairs" width="313" height="253" border="0" />La Pâte à Chouxinheritopenopen458-revision2012-01-21 08:08:402012-01-21 07:08:40458http://www.alicepegie.com/wordpress/wordpress/?p=4590revision0
46012012-01-21 08:04:582012-01-21 07:04:58<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4496.JPG" alt="MANIOC BOUILLI" width="600" height="371" />Le <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc </a>est cultivé essentiellement pour ses racines (tubercules), qui entre dans l'alimentation quotidienne de nombreuses populations, surtout africaines.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">On peut le déguster en <a href="index.php?option=com_content&amp;view=article&amp;id=2179:frites-de-manioc&amp;catid=376:accompagnements&amp;Itemid=133">frites</a>, <a href="index.php?option=com_content&amp;view=article&amp;id=2581:manioc-grille&amp;catid=376:accompagnements&amp;Itemid=133">grillé</a>, en <a href="index.php?option=com_content&amp;view=article&amp;id=1890:fufu-foufou-de-manioc&amp;catid=376:accompagnements&amp;Itemid=133">fufu</a>….</span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">On utilise aussi ses <a href="index.php?option=com_content&amp;view=article&amp;id=2238:feuilles-de-manioc-kpwem-au-suc-de-palme&amp;catid=363:plats&amp;Itemid=121">feuilles </a>comme <a href="index.php?option=com_content&amp;view=article&amp;id=2743:sauce-de-feuilles-de-manioc&amp;catid=363:plats&amp;Itemid=121">légume</a>.<!--more--></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients : (pour 4 personnes)</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 kg de <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc</a></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">eau</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Préparation :</span></strong> <ol start="1"> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Epluchez et lavez le <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc</a>.</span></li> </ol> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4419.JPG" alt="SAM_4419" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ensuite, coupez-le en morceaux de taille moyenne et faites les bouillir dans une marmite d'eau pendant 25 à 30 minutes.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4430.JPG" alt="SAM_4430" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Arrêtez la cuisson quand le manioc est tendre.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4492.JPG" alt="manioc bouilli" width="600" height="410" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Egouttez s’il reste de l’eau dans la casserole et dégustez.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4498.JPG" alt="manioc bouilli" width="600" height="455" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span>Le Manioc Bouilliinheritopenopen454-revision-22012-01-21 08:04:582012-01-21 07:04:58454http://www.alicepegie.com/wordpress/wordpress/?p=4600revision0
46112012-01-21 08:11:052012-01-21 07:11:05<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4496.JPG" alt="MANIOC BOUILLI" width="600" height="371" />Le <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc </a>est cultivé essentiellement pour ses racines (tubercules), qui entre dans l'alimentation quotidienne de nombreuses populations, surtout africaines.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">On peut le déguster en <a href="index.php?option=com_content&amp;view=article&amp;id=2179:frites-de-manioc&amp;catid=376:accompagnements&amp;Itemid=133">frites</a>, <a href="index.php?option=com_content&amp;view=article&amp;id=2581:manioc-grille&amp;catid=376:accompagnements&amp;Itemid=133">grillé</a>, en <a href="index.php?option=com_content&amp;view=article&amp;id=1890:fufu-foufou-de-manioc&amp;catid=376:accompagnements&amp;Itemid=133">fufu</a>….</span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">On utilise aussi ses <a href="index.php?option=com_content&amp;view=article&amp;id=2238:feuilles-de-manioc-kpwem-au-suc-de-palme&amp;catid=363:plats&amp;Itemid=121">feuilles </a>comme <a href="index.php?option=com_content&amp;view=article&amp;id=2743:sauce-de-feuilles-de-manioc&amp;catid=363:plats&amp;Itemid=121">légume</a>.<!--more--></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients : (pour 4 personnes)</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 kg de <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc</a></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">eau</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Préparation :</span></strong> <ol start="1"> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Epluchez et lavez le <a href="index.php?option=com_content&amp;view=article&amp;id=2049:le-manioc&amp;catid=377:bases&amp;Itemid=134">manioc</a>.</span></li> </ol> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4419.JPG" alt="SAM_4419" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ensuite, coupez-le en morceaux de taille moyenne et faites les bouillir dans une marmite d'eau pendant 25 à 30 minutes.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4430.JPG" alt="SAM_4430" width="600" height="450" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Arrêtez la cuisson quand le manioc est tendre.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4492.JPG" alt="manioc bouilli" width="600" height="410" /></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Egouttez s’il reste de l’eau dans la casserole et dégustez.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/manioc%20bouilli/SAM_4498.JPG" alt="manioc bouilli" width="600" height="455" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span>Le Manioc Bouilliinheritopenopen454-revision-32012-01-21 08:11:052012-01-21 07:11:05454http://www.alicepegie.com/wordpress/wordpress/?p=4610revision0
46212011-09-20 08:11:432011-09-20 07:11:43<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/beurre%20nigelle/SAM_6478.JPG" alt="SAM_6478" width="400" height="378" border="0" />L’huile de nigelle est à la fois réputée pour les peaux sensibles ou irritées, les peaux grasses à problèmes, les soins des cheveux et antipelliculaires. Voici Une recette facile de baume pour les cheveux abîmés et les cuirs chevelus irrités qui souffrent et qui démangent :<!--more--></span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Pour 100g env.</span></strong> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">HV de coco : 40 g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Cire de ricin: 10 g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Glycérine : 5 g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">HV de Nigelle : 10g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Macerat de Monoï : 35g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">4 gouttes de vitamine E</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">10 gouttes de conservateur</span></li> </ul> <p style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> </span></p> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation </span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">: </span> <ul> </ul><ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Faites chauffer au bain-marie la cire, et les huiles végétales. </span></li> </ul> <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/beurre%20nigelle/SAM_6316.JPG" alt="SAM_6316" width="355" height="272" border="0" /><img src="images/stories/beurre%20nigelle/SAM_6318.JPG" alt="SAM_6318" width="364" height="273" border="0" /> </span> <ul> </ul><ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Quand la cire est fondue, retirer aussitôt du feu.</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/beurre%20nigelle/SAM_6356.JPG" alt="SAM_6356" width="364" height="273" border="0" /> </span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Laissez refroidir un moment en remuant de temps en temps et ajouter la glycérine, la vitamine E et le conservateur.</span></li> </ul> <img src="images/stories/beurre%20nigelle/SAM_6360.JPG" alt="SAM_6360" width="347" height="236" border="0" /><img src="images/stories/beurre%20nigelle/SAM_6361.JPG" alt="SAM_6361" width="290" height="234" border="0" /> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Transvasez dans un pot. Laissez refroidir.</span></li> </ul> <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/beurre%20nigelle/SAM_6359.JPG" alt="SAM_6359" width="364" height="273" border="0" /><img src="images/stories/beurre%20nigelle/SAM_6364.JPG" alt="SAM_6364" width="286" height="271" border="0" /></span> <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/beurre%20nigelle/SAM_6480.JPG" alt="SAM_6480" width="297" height="264" border="0" /><img src="images/stories/beurre%20nigelle/SAM_6474.JPG" alt="SAM_6474" width="351" height="264" border="0" /> </span> &nbsp; <strong>Choix des Ingredients</strong> <strong>HV de Coco</strong>: Nourrit et lisse la fibre capillaire, rend les cheveux brillants et vigoureux <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Macerat de Monoi dans coco:</strong> il rend les cheveux plus forts, brillants et faciles à coiffer.</span> <ul> <li><strong>HV de Nigelle</strong>: Revitalise, assouplit et tonifie le cuir chevelu et les cheveux. Renforce les cheveux et les ongles cassants.</li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><strong>Cire de Ricin:</strong> Outre sa fonction nourrissante et revitalisante, la cire de ricin favorise aussi la repousse des cheveux et leurs apporte également du volume.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Glycérine</strong>: protège la peau et les cheveux de la déshydratation,assouplit et lisse peau et cheveux par son action émolliente.</span>Beurre Capillaire pour cheveux abîmés et cuirs chevelus irritéspublishopenopenbeurre-capillaire-pour-cheveux-abimes-et-cuirs-chevelus-irrites2012-01-21 08:13:542012-01-21 07:13:540http://www.alicepegie.com/wordpress/wordpress/?p=4620post0
46312012-01-21 08:13:462012-01-21 07:13:46<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/beurre%20nigelle/SAM_6478.JPG" alt="SAM_6478" width="400" height="378" border="0" />L’huile de nigelle est à la fois réputée pour les peaux sensibles ou irritées, les peaux grasses à problèmes, les soins des cheveux et antipelliculaires. Voici Une recette facile de baume pour les cheveux abîmés et les cuirs chevelus irrités qui souffrent et qui démangent :<!--more--></span> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Pour 100g env.</span></strong> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">HV de coco : 40 g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Cire de ricin: 10 g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Glycérine : 5 g</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">HV de Nigelle : 10g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Macerat de Monoï : 35g</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">4 gouttes de vitamine E</span></li> <li><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">10 gouttes de conservateur</span></li> </ul> <p style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"> </span></p> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Préparation </span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">: </span> <ul> </ul><ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Faites chauffer au bain-marie la cire, et les huiles végétales. </span></li> </ul> <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/beurre%20nigelle/SAM_6316.JPG" alt="SAM_6316" width="355" height="272" border="0" /><img src="images/stories/beurre%20nigelle/SAM_6318.JPG" alt="SAM_6318" width="364" height="273" border="0" /> </span> <ul> </ul><ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Quand la cire est fondue, retirer aussitôt du feu.</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/beurre%20nigelle/SAM_6356.JPG" alt="SAM_6356" width="364" height="273" border="0" /> </span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Laissez refroidir un moment en remuant de temps en temps et ajouter la glycérine, la vitamine E et le conservateur.</span></li> </ul> <img src="images/stories/beurre%20nigelle/SAM_6360.JPG" alt="SAM_6360" width="347" height="236" border="0" /><img src="images/stories/beurre%20nigelle/SAM_6361.JPG" alt="SAM_6361" width="290" height="234" border="0" /> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif';">Transvasez dans un pot. Laissez refroidir.</span></li> </ul> <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/beurre%20nigelle/SAM_6359.JPG" alt="SAM_6359" width="364" height="273" border="0" /><img src="images/stories/beurre%20nigelle/SAM_6364.JPG" alt="SAM_6364" width="286" height="271" border="0" /></span> <span style="font-size: 10pt; font-family: 'Arial','sans-serif';"><img src="images/stories/beurre%20nigelle/SAM_6480.JPG" alt="SAM_6480" width="297" height="264" border="0" /><img src="images/stories/beurre%20nigelle/SAM_6474.JPG" alt="SAM_6474" width="351" height="264" border="0" /> </span> &nbsp; <strong>Choix des Ingredients</strong> <strong>HV de Coco</strong>: Nourrit et lisse la fibre capillaire, rend les cheveux brillants et vigoureux <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Macerat de Monoi dans coco:</strong> il rend les cheveux plus forts, brillants et faciles à coiffer.</span> <ul> <li><strong>HV de Nigelle</strong>: Revitalise, assouplit et tonifie le cuir chevelu et les cheveux. Renforce les cheveux et les ongles cassants.</li> </ul> <span style="font-size: 10pt; font-family: arial,helvetica,sans-serif;"><strong>Cire de Ricin:</strong> Outre sa fonction nourrissante et revitalisante, la cire de ricin favorise aussi la repousse des cheveux et leurs apporte également du volume.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Glycérine</strong>: protège la peau et les cheveux de la déshydratation,assouplit et lisse peau et cheveux par son action émolliente.</span>Beurre Capillaire pour cheveux abîmés et cuirs chevelus irritésinheritopenopen462-revision2012-01-21 08:13:462012-01-21 07:13:46462http://www.alicepegie.com/wordpress/wordpress/?p=4630revision0
46412011-09-17 08:14:322011-09-17 07:14:32<strong><span style="font-size: 14pt;">Nnem Eding</span></strong><img style="float: left;" src="images/stories/MBARGA%20SOUKOUS.JPG" alt="MBARGA SOUKOUS" width="194" height="292" border="0" /> <!--more--> <strong></strong><strong></strong><strong></strong><strong></strong><strong></strong><strong></strong><strong><span style="font-family: 'Arial','sans-serif';"> <span style="font-size: x-large;"><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong><strong></strong><strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>{nmap}normal|250|150|images/stories/audio/Mbarga Soukous|1|a{/nmap}</strong></span></span></strong></span></strong></span></span></strong> <strong> </strong> &nbsp; &nbsp; &nbsp;Mbarga Soukouspublishopenopenmbarga-soukous2012-01-21 08:16:032012-01-21 07:16:030http://www.alicepegie.com/wordpress/wordpress/?p=4640post0
46512012-01-21 08:15:102012-01-21 07:15:10<strong><span style="font-size: 14pt;">Nnem Eding</span></strong><img style="float: left;" src="images/stories/MBARGA%20SOUKOUS.JPG" alt="MBARGA SOUKOUS" width="194" height="292" border="0" /> <!--more--> <strong></strong><strong></strong><strong></strong><strong></strong><strong></strong><strong></strong><strong><span style="font-family: 'Arial','sans-serif';"> <span style="font-size: x-large;"><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong></strong><strong></strong><strong><span style="color: black;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>{nmap}normal|250|150|images/stories/audio/Mbarga Soukous|1|a{/nmap}</strong></span></span></strong></span></strong></span></span></strong> <strong> </strong> &nbsp; &nbsp; &nbsp;Mbarga Soukousinheritopenopen464-revision2012-01-21 08:15:102012-01-21 07:15:10464http://www.alicepegie.com/wordpress/wordpress/?p=4650revision0
46612011-09-16 08:16:262011-09-16 07:16:26<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poisson%20en%20papillote/SAM_4886.JPG" alt="SAM_4886" width="500" height="338" border="0" />Les papillotes, c'est sympa à faire, rapide, plein de saveurs et à la portée de tous. En Europe on a coutume de les faire dans e l'alu, du papier ou film spécial. M ais en Afrique on a coutume e les faires dans es feuilles de bananiers ou d'autres plantes. Cette fois j'ai opté pour un film spécial papillote, une préparation originale aux herbes aromatiques délicieusement odorante:</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Pour 2 pers:<!--more--></span></strong> <ul> <li> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2 petits Bars ou dorades</span></li> </ul> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 oignon</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 gousse d'ail</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">quelques feuilles de basilic sauvage(messep)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">quelques feuilles d'odjom (feuilles de gingembre ou de fausse noix de muscade)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">quelques bruns de citronnelle</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 poignée de njansan</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 tomate</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2 cuillères à soupe d'huile d'arachide</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">sel, poivre blanc</span></li> </ul> &nbsp; <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation</span></strong> &nbsp; <ul> </ul><ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ecaillez, videz et coupez vos poissons en darnes</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poisson%20en%20papillote/SAM_4796.JPG" alt="SAM_4796" width="500" height="375" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">hachez finement l'oignon, l'ail et la tomate</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poisson%20en%20papillote/SAM_4805.JPG" alt="SAM_4805" width="500" height="375" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">écrasez finement le njansan</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/poisson%20en%20papillote/SAM_4799.JPG" alt="SAM_4799" width="273" height="273" border="0" /><img src="images/stories/poisson%20en%20papillote/SAM_4801.JPG" alt="SAM_4801" width="225" height="273" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">mélangez bien toutes les épices et le poisson</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poisson%20en%20papillote/SAM_4804.JPG" alt="SAM_4804" width="500" height="375" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">sur chaque papillote, disposez les herbes aromatiques, puis le poisson</span></li> </ul> <img src="images/stories/poisson%20en%20papillote/SAM_4808.JPG" alt="SAM_4808" width="352" height="264" border="0" /><img src="images/stories/poisson%20en%20papillote/SAM_4809.JPG" alt="SAM_4809" width="350" height="262" border="0" /> <ul> </ul><ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">ajoutez ensuite la tomate épicé et finissez en arrosant le tout d'huile d'arachide</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/poisson%20en%20papillote/SAM_4812.JPG" alt="SAM_4812" width="340" height="255" border="0" /><img src="images/stories/poisson%20en%20papillote/SAM_4811.JPG" alt="SAM_4811" width="365" height="251" border="0" /> </span> <ul> </ul><ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">refermez les papillote en les ficelant bien</span></li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poisson%20en%20papillote/SAM_4813.JPG" alt="SAM_4813" width="500" height="287" border="0" /> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">disposez les papillotes dans une casserole couvrir d'eau jusqu'à mis hauteur et faites cuire 1h env. à feu moyen</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/poisson%20en%20papillote/SAM_4831.JPG" alt="SAM_4831" width="356" height="267" border="0" /><img src="images/stories/poisson%20en%20papillote/SAM_4837.JPG" alt="SAM_4837" width="356" height="268" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Servez!!</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/poisson%20en%20papillote/SAM_4854.JPG" alt="SAM_4854" width="368" height="308" border="0" /><img src="images/stories/poisson%20en%20papillote/SAM_4862.JPG" alt="SAM_4862" width="345" height="308" border="0" /> </span>Poisson en papillotepublishopenopenpoisson-en-papillote2012-01-21 08:17:582012-01-21 07:17:580http://www.alicepegie.com/wordpress/wordpress/?p=4660post0
46712012-01-21 08:17:292012-01-21 07:17:29<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poisson%20en%20papillote/SAM_4886.JPG" alt="SAM_4886" width="500" height="338" border="0" />Les papillotes, c'est sympa à faire, rapide, plein de saveurs et à la portée de tous. En Europe on a coutume de les faire dans e l'alu, du papier ou film spécial. M ais en Afrique on a coutume e les faires dans es feuilles de bananiers ou d'autres plantes. Cette fois j'ai opté pour un film spécial papillote, une préparation originale aux herbes aromatiques délicieusement odorante:</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Pour 2 pers:<!--more--></span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2 petits Bars ou dorades</span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 oignon</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 gousse d'ail</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">quelques feuilles de basilic sauvage(messep)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">quelques feuilles d'odjom (feuilles de gingembre ou de fausse noix de muscade)</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">quelques bruns de citronnelle</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 poignée de njansan</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 tomate</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2 cuillères à soupe d'huile d'arachide</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">sel, poivre blanc</span></li> </ul> &nbsp; <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation</span></strong> &nbsp; <ul> </ul><ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ecaillez, videz et coupez vos poissons en darnes</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poisson%20en%20papillote/SAM_4796.JPG" alt="SAM_4796" width="500" height="375" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">hachez finement l'oignon, l'ail et la tomate</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poisson%20en%20papillote/SAM_4805.JPG" alt="SAM_4805" width="500" height="375" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">écrasez finement le njansan</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/poisson%20en%20papillote/SAM_4799.JPG" alt="SAM_4799" width="273" height="273" border="0" /><img src="images/stories/poisson%20en%20papillote/SAM_4801.JPG" alt="SAM_4801" width="225" height="273" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">mélangez bien toutes les épices et le poisson</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poisson%20en%20papillote/SAM_4804.JPG" alt="SAM_4804" width="500" height="375" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">sur chaque papillote, disposez les herbes aromatiques, puis le poisson</span></li> </ul> <img src="images/stories/poisson%20en%20papillote/SAM_4808.JPG" alt="SAM_4808" width="352" height="264" border="0" /><img src="images/stories/poisson%20en%20papillote/SAM_4809.JPG" alt="SAM_4809" width="350" height="262" border="0" /> <ul> </ul><ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">ajoutez ensuite la tomate épicé et finissez en arrosant le tout d'huile d'arachide</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/poisson%20en%20papillote/SAM_4812.JPG" alt="SAM_4812" width="340" height="255" border="0" /><img src="images/stories/poisson%20en%20papillote/SAM_4811.JPG" alt="SAM_4811" width="365" height="251" border="0" /> </span> <ul> </ul><ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">refermez les papillote en les ficelant bien</span></li> </ul> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/poisson%20en%20papillote/SAM_4813.JPG" alt="SAM_4813" width="500" height="287" border="0" /> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">disposez les papillotes dans une casserole couvrir d'eau jusqu'à mis hauteur et faites cuire 1h env. à feu moyen</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/poisson%20en%20papillote/SAM_4831.JPG" alt="SAM_4831" width="356" height="267" border="0" /><img src="images/stories/poisson%20en%20papillote/SAM_4837.JPG" alt="SAM_4837" width="356" height="268" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Servez!!</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/poisson%20en%20papillote/SAM_4854.JPG" alt="SAM_4854" width="368" height="308" border="0" /><img src="images/stories/poisson%20en%20papillote/SAM_4862.JPG" alt="SAM_4862" width="345" height="308" border="0" /> </span>Poisson en papilloteinheritopenopen466-revision2012-01-21 08:17:292012-01-21 07:17:29466http://www.alicepegie.com/wordpress/wordpress/?p=4670revision0
46812011-09-15 08:18:202011-09-15 07:18:20<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5919.JPG" alt="SAM_5919" width="500" height="375" border="0" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cette lotion permet de nettoyer en profondeur les pores des peaux irritables et à problèmes. Ses actifs luttent efficacement contre les bactéries.</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 100ml env. :<!--more--></span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Huile de ricin sulfaté 4g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Huile végétale de Nigelle : 3g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Eau de fruit de citron (maison): 72g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Glycérine végétale: 20g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">HE Lavande fine : 2 gouttes</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Conserbateur cosgard 20 gouttes</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mode opératoire :</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1/ Dans un bol, transférez l'huile de ricin sulfatée, l'huile végétale et l'huile essentielle, puis mélangez l'ensemble. </span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5888.JPG" alt="SAM_5888" width="364" height="275" border="0" /><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5889.JPG" alt="SAM_5889" width="358" height="274" border="0" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 2/ Ajoutez la glycérine et l'eau de fruit de citron et mélangez de nouveau pour homogénéiser.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5891.JPG" alt="SAM_5891" width="347" height="300" border="0" /><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5892.JPG" alt="SAM_5892" width="374" height="297" border="0" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 3/ Ajoutez enfin le conservateur cosgard puis mélangez après cet ajout.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5894.JPG" alt="SAM_5894" width="500" height="380" border="0" /></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 4/ Transférez la préparation dans votre flacon.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5897.JPG" alt="SAM_5897" width="347" height="405" border="0" /><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5911.JPG" alt="SAM_5911" width="358" height="405" border="0" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5914.JPG" alt="SAM_5914" width="351" height="264" border="0" /><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5918.JPG" alt="SAM_5918" width="351" height="264" border="0" /> </span> &nbsp; <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Utilisation :</span></strong> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cette lotion micellaire sans rinçage nettoie et démaquille le visage en un seul geste. Son agréable odeur et sa richesse en huile laisseront votre peau nourrie et délicatement parfumée. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Bien agiter votre préparation avant emploi. Evitez d'appliquer ce produit sur les yeux et le contour des yeux. Stockez votre flacon à l'abri de la lumière et de la chaleur.</span> &nbsp; <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingrédients :</span></strong> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Eau de fruit de citron </strong>: idéale pour éclaircir le teint et avoir une belle peau, astringente et purifiante, cette eau vitaminée et fruitée sera l’alliée incontournable des peaux à problèmes et viendra à bout de vos petits boutons disgracieux.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HE Lavande fine :</strong> elle favorise le renouvellement des cellules et elle est utilisée pour lutter contre les infections cutanées telles que l'acné, le psoriasis, les mycoses.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Huile végétale de Nigelle:</strong></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> fabuleuse huile anti-âge, calmante et nourrissante, ainsi qu'un atout contre l'acné.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Glycérine végétale:</strong> protège la peau et les cheveux de la déshydratation, assouplit et lisse peau et cheveux par son action émolliente.</span>Lotion Micellaire pour peaux à problèmespublishopenopenlotion-micellaire-pour-peaux-a-problemes2012-01-21 08:19:482012-01-21 07:19:480http://www.alicepegie.com/wordpress/wordpress/?p=4680post0
47012011-09-14 08:20:392011-09-14 07:20:39<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4184.JPG" alt="salade crevettes mangue" width="500" height="375" />Les crevettes se marient très bien avec la mangue. Cette salade est très fraiche, et le sucré salé est assez agréable en bouche.</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 2 :</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">8 crevettes crues surgelées</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 petite mangue mure mais ferme.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 petite gousse d’ail.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 petite botte de salade</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 petit morceau de gingembre frais</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 cuillère à soupe de jus d’orange</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 cuillère à soupe d’huile de noisette</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Sel et poivre blanc.</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation :</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Décortiquez les crevettes en leur laissant la queue.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Pelez et hachez l'ail et le gingembre.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4154.JPG" alt="SAM_4154" width="364" height="273" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Faire une marinade avec le gingembre l’ail, le poivre, l’huile et le sel.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Dans un bol, mettre les crevettes, et la marinade.</span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Filmez et conservez au réfrigérateur au moins 30 minutes. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/salade%20mangue%20crevettes/SAM_4162.JPG" alt="SAM_4162" width="356" height="267" border="0" /><img src="images/stories/salade%20mangue%20crevettes/SAM_4163.JPG" alt="SAM_4163" width="354" height="265" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Lavez et essorez la salade.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4167.JPG" alt="SAM_4167" width="500" height="375" border="0" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Otez le noyau de la mangue et coupez-la en dés.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4168.JPG" alt="SAM_4168" width="500" height="375" border="0" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Passez les crevettes à la poêle quelques minutes.Gardez le suc que vous obtiendrez </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/salade%20mangue%20crevettes/SAM_4165.JPG" alt="SAM_4165" width="352" height="267" border="0" /><img src="images/stories/salade%20mangue%20crevettes/SAM_4170.JPG" alt="SAM_4170" width="353" height="265" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">En dehors du feu, ajoutez le jus d'orange.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4171.JPG" alt="SAM_4171" width="500" height="375" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Salez et poivrez.</span> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/salade%20mangue%20crevettes/SAM_4177.JPG" alt="SAM_4177" width="500" height="375" border="0" /> </span></p> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Répartir la salade dans 2 coupelles puis les mangues et enfin les crevettes.</span> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4178.JPG" alt="SAM_4178" width="500" height="375" border="0" /><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Arrosez avec la sauce de la poêle et servir.</span> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4181.JPG" alt="SAM_4181" width="500" height="342" border="0" />Salade de crevettes & manguepublishopenopensalade-de-crevettes-mangue2012-01-21 08:23:182012-01-21 07:23:180http://www.alicepegie.com/wordpress/wordpress/?p=4700post0
46912012-01-21 08:19:162012-01-21 07:19:16<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5919.JPG" alt="SAM_5919" width="500" height="375" border="0" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cette lotion permet de nettoyer en profondeur les pores des peaux irritables et à problèmes. Ses actifs luttent efficacement contre les bactéries.</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 100ml env. :<!--more--></span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Huile de ricin sulfaté 4g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Huile végétale de Nigelle : 3g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Eau de fruit de citron (maison): 72g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Glycérine végétale: 20g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">HE Lavande fine : 2 gouttes</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Conserbateur cosgard 20 gouttes</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mode opératoire :</span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1/ Dans un bol, transférez l'huile de ricin sulfatée, l'huile végétale et l'huile essentielle, puis mélangez l'ensemble. </span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5888.JPG" alt="SAM_5888" width="364" height="275" border="0" /><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5889.JPG" alt="SAM_5889" width="358" height="274" border="0" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 2/ Ajoutez la glycérine et l'eau de fruit de citron et mélangez de nouveau pour homogénéiser.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5891.JPG" alt="SAM_5891" width="347" height="300" border="0" /><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5892.JPG" alt="SAM_5892" width="374" height="297" border="0" /></span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 3/ Ajoutez enfin le conservateur cosgard puis mélangez après cet ajout.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5894.JPG" alt="SAM_5894" width="500" height="380" border="0" /></span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 4/ Transférez la préparation dans votre flacon.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5897.JPG" alt="SAM_5897" width="347" height="405" border="0" /><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5911.JPG" alt="SAM_5911" width="358" height="405" border="0" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5914.JPG" alt="SAM_5914" width="351" height="264" border="0" /><img src="images/stories/lotion%20micellaire%20peau%20pb/SAM_5918.JPG" alt="SAM_5918" width="351" height="264" border="0" /> </span> &nbsp; <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Utilisation :</span></strong> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cette lotion micellaire sans rinçage nettoie et démaquille le visage en un seul geste. Son agréable odeur et sa richesse en huile laisseront votre peau nourrie et délicatement parfumée. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Bien agiter votre préparation avant emploi. Evitez d'appliquer ce produit sur les yeux et le contour des yeux. Stockez votre flacon à l'abri de la lumière et de la chaleur.</span> &nbsp; <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingrédients :</span></strong> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Eau de fruit de citron </strong>: idéale pour éclaircir le teint et avoir une belle peau, astringente et purifiante, cette eau vitaminée et fruitée sera l’alliée incontournable des peaux à problèmes et viendra à bout de vos petits boutons disgracieux.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>HE Lavande fine :</strong> elle favorise le renouvellement des cellules et elle est utilisée pour lutter contre les infections cutanées telles que l'acné, le psoriasis, les mycoses.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Huile végétale de Nigelle:</strong></span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000;"> fabuleuse huile anti-âge, calmante et nourrissante, ainsi qu'un atout contre l'acné.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Glycérine végétale:</strong> protège la peau et les cheveux de la déshydratation, assouplit et lisse peau et cheveux par son action émolliente.</span>Lotion Micellaire pour peaux à problèmesinheritopenopen468-revision2012-01-21 08:19:162012-01-21 07:19:16468http://www.alicepegie.com/wordpress/wordpress/?p=4690revision0
47112012-01-21 08:21:412012-01-21 07:21:41<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4184.JPG" alt="salade crevettes mangue" width="500" height="375" />Les crevettes se marient très bien avec la mangue. Cette salade est très fraiche, et le sucré salé est assez agréable en bouche.</span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 2 :</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">8 crevettes crues surgelées</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 petite mangue mure mais ferme.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 petite gousse d’ail.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 petite botte de salade</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 petit morceau de gingembre frais</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 cuillère à soupe de jus d’orange</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1 cuillère à soupe d’huile de noisette</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Sel et poivre blanc.</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation :</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Décortiquez les crevettes en leur laissant la queue.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Pelez et hachez l'ail et le gingembre.</span></li> </ul> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4154.JPG" alt="SAM_4154" width="364" height="273" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Faire une marinade avec le gingembre l’ail, le poivre, l’huile et le sel.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Dans un bol, mettre les crevettes, et la marinade.</span><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Filmez et conservez au réfrigérateur au moins 30 minutes. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/salade%20mangue%20crevettes/SAM_4162.JPG" alt="SAM_4162" width="356" height="267" border="0" /><img src="images/stories/salade%20mangue%20crevettes/SAM_4163.JPG" alt="SAM_4163" width="354" height="265" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Lavez et essorez la salade.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4167.JPG" alt="SAM_4167" width="500" height="375" border="0" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Otez le noyau de la mangue et coupez-la en dés.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4168.JPG" alt="SAM_4168" width="500" height="375" border="0" /></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Passez les crevettes à la poêle quelques minutes.Gardez le suc que vous obtiendrez </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/salade%20mangue%20crevettes/SAM_4165.JPG" alt="SAM_4165" width="352" height="267" border="0" /><img src="images/stories/salade%20mangue%20crevettes/SAM_4170.JPG" alt="SAM_4170" width="353" height="265" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">En dehors du feu, ajoutez le jus d'orange.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4171.JPG" alt="SAM_4171" width="500" height="375" border="0" /> </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Salez et poivrez.</span> <p style="text-align: center;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/salade%20mangue%20crevettes/SAM_4177.JPG" alt="SAM_4177" width="500" height="375" border="0" /> </span></p> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Répartir la salade dans 2 coupelles puis les mangues et enfin les crevettes.</span> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4178.JPG" alt="SAM_4178" width="500" height="375" border="0" /><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Arrosez avec la sauce de la poêle et servir.</span> <img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/salade%20mangue%20crevettes/SAM_4181.JPG" alt="SAM_4181" width="500" height="342" border="0" />inheritopenopen470-revision2012-01-21 08:21:412012-01-21 07:21:41470http://www.alicepegie.com/wordpress/wordpress/?p=4710revision0
47212011-09-13 08:23:352011-09-13 07:23:35<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5637.JPG" alt="SAM_5637" width="500" height="NaN" />Les cheveux défrisés ont tendances à être secs, cassants. Le défrisage les abimes, c’est pourquoi il doit être suivi de soins nourrissants et hydratants. Cette lotion laissera les cheveux doux, brillants et bien nourris.<!--more--></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 50 ml :</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">34g eau</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">4g d'aloe vera</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2g de vinaigre de cidre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">4g Glycérine</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1g d'acide hyaluronique</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">5 g d’huile de palmiste</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 1 g de protéines de soie</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1g de kératine liquide</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 0.6g conservateur</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation :</span></strong> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Faites dissoudre l’huile de palmiste au bain marie.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5624.JPG" alt="SAM_5624" width="364" height="273" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez ensemble l’huile de palmiste, le vinaigre, la glycérine et l'eau, et mélangez énergiquement.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5621.JPG" alt="SAM_5621" width="321" height="273" border="0" /><img src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5622.JPG" alt="SAM_5622" width="343" height="273" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Rajoutez ensuite le reste des ingrédients un à un en terminant par le conservateur.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5625.JPG" alt="SAM_5625" width="340" height="240" border="0" /> </span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Utilisation :</span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Avant chaque utilisation, il faut brasser énergiquement la lotion pour mélanger les différentes phases. Appliquer sur cheveux secs.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5630.JPG" alt="SAM_5630" width="364" height="192" border="0" /><img src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5638.JPG" alt="SAM_5638" width="313" height="188" border="0" /></span> &nbsp; <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingrédients :</span></strong> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Gel d’aloe vera :</strong> hydratant et nourrissant grâce à sa structure, à sa richesse en vitamines et en acides aminés et grâce aussi à sa facilité de pénétration dans la peau et les cheveux.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Vinaigre de cidre :</strong> apportent vigueur et brillance à notre chevelure. Il agit en traitant les cheveux les plus ternes et les plus cassants en profondeur. De par sa constitution riche en minéraux, cette solution constitue un réel soin nettoyant naturel pour les cheveux.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Glycérine :</strong> assouplit et lisse les cheveux par son action émolliente.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong> Acide hyaluronique :</strong> hydratant profond et repulpant intense</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Huile de coco :</strong> Nourrit et lisse la fibre capillaire, rend les cheveux brillants et vigoureux</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong> Protéines de soie :</strong> lisse et embelli les cheveux. La soie lisse les écailles du cheveu, et lui apporte résistance et équilibre hydrique. Les cheveux sont soyeux et renforcés, plus faciles à démêler et souples. </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Kératine liquide :</strong> rend les cheveux lisses, doux, brillants et faciles à coiffer. </span></li> </ul>Gelée hydratante pour Cheveux Secs & Abiméspublishopenopengelee-hydratante-pour-cheveux-secs-abimes2012-01-21 08:25:292012-01-21 07:25:290http://www.alicepegie.com/wordpress/wordpress/?p=4720post0
47312012-01-21 08:24:382012-01-21 07:24:38<span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5637.JPG" alt="SAM_5637" width="500" height="NaN" />Les cheveux défrisés ont tendances à être secs, cassants. Le défrisage les abimes, c’est pourquoi il doit être suivi de soins nourrissants et hydratants. Cette lotion laissera les cheveux doux, brillants et bien nourris.<!--more--></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 50 ml :</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">34g eau</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">4g d'aloe vera</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">2g de vinaigre de cidre</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">4g Glycérine</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1g d'acide hyaluronique</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">5 g d’huile de palmiste</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 1 g de protéines de soie</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">1g de kératine liquide</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> 0.6g conservateur</span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation :</span></strong> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Faites dissoudre l’huile de palmiste au bain marie.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5624.JPG" alt="SAM_5624" width="364" height="273" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Mettez ensemble l’huile de palmiste, le vinaigre, la glycérine et l'eau, et mélangez énergiquement.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5621.JPG" alt="SAM_5621" width="321" height="273" border="0" /><img src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5622.JPG" alt="SAM_5622" width="343" height="273" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Rajoutez ensuite le reste des ingrédients un à un en terminant par le conservateur.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5625.JPG" alt="SAM_5625" width="340" height="240" border="0" /> </span></li> </ul> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Utilisation :</span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Avant chaque utilisation, il faut brasser énergiquement la lotion pour mélanger les différentes phases. Appliquer sur cheveux secs.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5630.JPG" alt="SAM_5630" width="364" height="192" border="0" /><img src="images/stories/Gel%C3%A9e%20hydratante%20cheveux%20secs%20et%20abim%C3%A9s/SAM_5638.JPG" alt="SAM_5638" width="313" height="188" border="0" /></span> &nbsp; <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Choix des ingrédients :</span></strong> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></strong> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Gel d’aloe vera :</strong> hydratant et nourrissant grâce à sa structure, à sa richesse en vitamines et en acides aminés et grâce aussi à sa facilité de pénétration dans la peau et les cheveux.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Vinaigre de cidre :</strong> apportent vigueur et brillance à notre chevelure. Il agit en traitant les cheveux les plus ternes et les plus cassants en profondeur. De par sa constitution riche en minéraux, cette solution constitue un réel soin nettoyant naturel pour les cheveux.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Glycérine :</strong> assouplit et lisse les cheveux par son action émolliente.</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong> Acide hyaluronique :</strong> hydratant profond et repulpant intense</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Huile de coco :</strong> Nourrit et lisse la fibre capillaire, rend les cheveux brillants et vigoureux</span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong> Protéines de soie :</strong> lisse et embelli les cheveux. La soie lisse les écailles du cheveu, et lui apporte résistance et équilibre hydrique. Les cheveux sont soyeux et renforcés, plus faciles à démêler et souples. </span> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Kératine liquide :</strong> rend les cheveux lisses, doux, brillants et faciles à coiffer. </span></li> </ul>Gelée hydratante pour Cheveux Secs & Abimésinheritopenopen472-revision2012-01-21 08:24:382012-01-21 07:24:38472http://www.alicepegie.com/wordpress/wordpress/?p=4730revision0
47412011-09-12 08:25:552011-09-12 07:25:55<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif'; color: black;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/njinjer%20tea/SAM_5484.JPG" alt="SAM_5484" width="500" height="375" />Voici une association délicieuse et bien pratique lorsqu’on fait attention à sa ligne.</span> <p style="text-align: justify;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif'; color: black;"><!--more--></span></p> <ul> <li style="margin-bottom: 0.0001pt; text-align: justify; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">-<span style="font: 7pt 'Times New Roman';">      <a href="index.php?option=com_content&amp;view=article&amp;id=1972:le-gingembre&amp;catid=56:soins-naturels&amp;Itemid=80"> <strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Le gingembre</span></strong></a><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"> est riche en minéraux mais pauvre en sodium. Fraîche, cette racine parfumée vous fournit 60 calories pour 100 g, contre 322. Cette épice est donc idéale pour agrémenter des plats dans le cadre d’un régime minceur. Réputé pour ses vertus aphrodisiaques, c'est aussi un allié minceur de taille, qui offre, en outre, de nombreux bienfaits santé. </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">En plus de nous donner envie de nous réchauffer, il est parfait pour relever un plat un peu fade sans en alourdir l’addition calorique. Et comme il est pauvre en sodium, il convient aussi parfaitement à un régime sans sel. Il est également connu pour ses vertus digestives et pour sa richesse en antioxydants, ce qui en ferait un allié dans la prévention des maladies cardiovasculaires et dans certains cancers.</span></li> </ul> <ul> <li> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif'; color: black;"><a href="index.php?option=com_content&amp;view=article&amp;id=2020:les-vertus-incroyables-du-the-vert&amp;catid=56:soins-naturels&amp;Itemid=80">Le Thé Vert </a>un allié minceur à ne pas négliger</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif'; color: black;"> : Il peut être le compagnon idéal d'un programme minceur. Il peut être une alternative à l’eau. D'ailleurs, une grande tasse de thé pourra agir comme un coupe-faim, en cas de petit creux. De plus, sa teneur en théine, plus connue sous le nom de caféine, vous aidera à éviter les coups de barre et autres petites fatigues liées à votre régime hypocalorique. Il a aussi l'avantage de vous aider à faire le plein d'antioxydants, pour protéger vos artères, votre cœur, votre squelette et même votre peau. </span></li> </ul> <strong>La Recette: pour une tasse (env. 50kcal)</strong> <ul> <li>80g de thé vert</li> <li>80g de <a href="index.php?option=com_content&amp;view=article&amp;id=1920:jus-de-gingembre-njijer-recette-camerounaise&amp;catid=373:boissons&amp;Itemid=132">jus de giengembre</a></li> <li>1 cuillère à café de miel liquide</li> </ul> <strong>Préparation:</strong> <ul> <li>préparez votre thé vert comme d'habitude</li> <li>préparez votre jus de gingembre:</li> </ul> <ol style="list-style-type: lower-alpha;"> <li>soit en prenant la quantité nécessaire si vous en avez de tout prêt <a href="index.php?option=com_content&amp;view=article&amp;id=1920:jus-de-gingembre-njijer-recette-camerounaise&amp;catid=373:boissons&amp;Itemid=132">(recette ici)</a></li> <li>soit en mixant 10g de raccine de gingembre avec 100ml d'eau,</li> </ol> <ul> <li>faites ensuite chauffer l'ensemble et filtrez</li> <li>mélangez le thé vert chaud et le jus de gingembre</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/njinjer%20tea/SAM_5474.JPG" alt="SAM_5474" width="294" height="228" border="0" /></li> <li>rajoutez la cuillère à café de miel</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/njinjer%20tea/SAM_5475.JPG" alt="SAM_5475" width="364" height="273" border="0" /></li> <li>mélangez et servez aussitôt!</li> </ul> <img src="images/stories/njinjer%20tea/SAM_5476.JPG" alt="SAM_5476" width="378" height="355" border="0" /><img src="images/stories/njinjer%20tea/SAM_5480.JPG" alt="SAM_5480" width="251" height="352" border="0" /> <img src="images/stories/njinjer%20tea/SAM_5485.JPG" alt="SAM_5485" width="343" height="306" border="0" /><img src="images/stories/njinjer%20tea/SAM_5488.JPG" alt="SAM_5488" width="319" height="303" border="0" />Thé Vert au Gingembrepublishopenopenthe-vert-au-gingembre2012-01-21 08:27:272012-01-21 07:27:270http://www.alicepegie.com/wordpress/wordpress/?p=4740post0
47512012-01-21 08:26:582012-01-21 07:26:58<span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif'; color: black;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/njinjer%20tea/SAM_5484.JPG" alt="SAM_5484" width="500" height="375" />Voici une association délicieuse et bien pratique lorsqu’on fait attention à sa ligne.</span> <p style="text-align: justify;"><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif'; color: black;"><!--more--></span></p> <ul> <li style="margin-bottom: 0.0001pt; text-align: justify; text-indent: -18pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">-<span style="font: 7pt 'Times New Roman';">      <a href="index.php?option=com_content&amp;view=article&amp;id=1972:le-gingembre&amp;catid=56:soins-naturels&amp;Itemid=80"> <strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Le gingembre</span></strong></a><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"> est riche en minéraux mais pauvre en sodium. Fraîche, cette racine parfumée vous fournit 60 calories pour 100 g, contre 322. Cette épice est donc idéale pour agrémenter des plats dans le cadre d’un régime minceur. Réputé pour ses vertus aphrodisiaques, c'est aussi un allié minceur de taille, qui offre, en outre, de nombreux bienfaits santé. </span></span></span></li> <li style="margin-bottom: 0.0001pt; text-align: justify; line-height: normal;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">En plus de nous donner envie de nous réchauffer, il est parfait pour relever un plat un peu fade sans en alourdir l’addition calorique. Et comme il est pauvre en sodium, il convient aussi parfaitement à un régime sans sel. Il est également connu pour ses vertus digestives et pour sa richesse en antioxydants, ce qui en ferait un allié dans la prévention des maladies cardiovasculaires et dans certains cancers.</span></li> </ul> <ul> <li> <strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif'; color: black;"><a href="index.php?option=com_content&amp;view=article&amp;id=2020:les-vertus-incroyables-du-the-vert&amp;catid=56:soins-naturels&amp;Itemid=80">Le Thé Vert </a>un allié minceur à ne pas négliger</span></strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif'; color: black;"> : Il peut être le compagnon idéal d'un programme minceur. Il peut être une alternative à l’eau. D'ailleurs, une grande tasse de thé pourra agir comme un coupe-faim, en cas de petit creux. De plus, sa teneur en théine, plus connue sous le nom de caféine, vous aidera à éviter les coups de barre et autres petites fatigues liées à votre régime hypocalorique. Il a aussi l'avantage de vous aider à faire le plein d'antioxydants, pour protéger vos artères, votre cœur, votre squelette et même votre peau. </span></li> </ul> <strong>La Recette: pour une tasse (env. 50kcal)</strong> <ul> <li>80g de thé vert</li> <li>80g de <a href="index.php?option=com_content&amp;view=article&amp;id=1920:jus-de-gingembre-njijer-recette-camerounaise&amp;catid=373:boissons&amp;Itemid=132">jus de giengembre</a></li> <li>1 cuillère à café de miel liquide</li> </ul> <strong>Préparation:</strong> <ul> <li>préparez votre thé vert comme d'habitude</li> <li>préparez votre jus de gingembre:</li> </ul> <ol style="list-style-type: lower-alpha;"> <li>soit en prenant la quantité nécessaire si vous en avez de tout prêt <a href="index.php?option=com_content&amp;view=article&amp;id=1920:jus-de-gingembre-njijer-recette-camerounaise&amp;catid=373:boissons&amp;Itemid=132">(recette ici)</a></li> <li>soit en mixant 10g de raccine de gingembre avec 100ml d'eau,</li> </ol> <ul> <li>faites ensuite chauffer l'ensemble et filtrez</li> <li>mélangez le thé vert chaud et le jus de gingembre</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/njinjer%20tea/SAM_5474.JPG" alt="SAM_5474" width="294" height="228" border="0" /></li> <li>rajoutez la cuillère à café de miel</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/njinjer%20tea/SAM_5475.JPG" alt="SAM_5475" width="364" height="273" border="0" /></li> <li>mélangez et servez aussitôt!</li> </ul> <img src="images/stories/njinjer%20tea/SAM_5476.JPG" alt="SAM_5476" width="378" height="355" border="0" /><img src="images/stories/njinjer%20tea/SAM_5480.JPG" alt="SAM_5480" width="251" height="352" border="0" /> <img src="images/stories/njinjer%20tea/SAM_5485.JPG" alt="SAM_5485" width="343" height="306" border="0" /><img src="images/stories/njinjer%20tea/SAM_5488.JPG" alt="SAM_5488" width="319" height="303" border="0" />inheritopenopen474-revision2012-01-21 08:26:582012-01-21 07:26:58474http://www.alicepegie.com/wordpress/wordpress/?p=4750revision0
47612011-09-11 08:27:432011-09-11 07:27:43<span style="font-family: arial,helvetica,sans-serif;"><img class="alignleft" style="border: 0pt none;" src="images/stories/DONNY/donny.jpg" alt="donny" border="0" /></span>Aux côtés des habituels Bikutsi et Makossa, <strong>Donny Elwood,</strong> chanteur- compositeur et guitariste apparaît comme un ovni dans la tradition musicale camerounaise. Ses chansons ne sont pas faites pour danser, mais seraient plutôt des "chants à penser". Ce gavroche des faubourgs de Yaoundé (Cameroun), qui gueule à qui veut bien l'entendre : "On m'appelle Monsieur alère, Tonton Misère", la guitare en bandoulière et son indécollable chapeau crânement enfoncé sur sa tête, il manie la langue française avec autant de dextérité qu'un chirurgien son scalpel. Mix de <strong>Brassens</strong>, de <strong>Dutronc</strong> et de <a href="http://francis_bebey.mondomix.com/fr/artiste.htm"><strong>Francis Bebey</strong></a>, cet enfant du colonialisme transforme les mots qu'on lui a appris en des armes redoutables, renversant les préjugés.<img src="images/stories/DONNY/donny2.jpg" alt="donny2" width="256" height="192" /> <span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Donny Elwood|1||a{/nmap}</span> <p style="line-height: normal;"><span style="font-family: arial,helvetica,sans-serif;">Dans ses chansons, il accule l'Homme jusque dans ses dernières défenses : corruption, impuissance, misère... Tout est objet à plaisanterie et rien n'échappe au regard acerbe de Mr Elwood, de son vrai nom <strong>Ella Owoudou Albert Dieudonné</strong>. Né en 1968 à Ebelowa (Sud-Cameroun), ce jouisseur des mots a aussi été comédien (Les Nul' Art) et réalisateur, avant de se lancer dans la chanson, où là encore, il met à profit son plaisir de jouer. Sur scène, il exulte, il s'amuse, il échange avec le public... </span></p> <p style="line-height: normal;"><span style="font-family: arial,helvetica,sans-serif;">Pygmée par ses grands-parents, Donny semble avoir hérité de son don pour la parabole des griots de sa région, les joueurs de mvet (sorte de guitare avec des calebasses comme caisse de résonance), qui utilisent les contes pour ramener hommes et femmes dans le droit chemin. Lui pourtant ne prêche pas la bonne parole, il se contente d'observer le monde. Et nous, on se régale à l'écouter nous raconter l'histoire du Cousin militaire : "Heureusement que j'ai mon cousin militaire. Quand il touche son salaire, me donne mon argent de bière. Et moi je fonce chez ma rombière, toute la nuit on s'envoie en l'air.</span></p> <span style="line-height: 115%; font-family: arial,helvetica,sans-serif;"> <a href="http://donny_elwood.mondomix.com/fr/portrait40.htm">Source</a></span> &nbsp;Donny Elwoodpublishopenopendonny-elwood2012-01-21 08:30:412012-01-21 07:30:410http://www.alicepegie.com/wordpress/wordpress/?p=4760post0
47712012-01-21 08:29:452012-01-21 07:29:45<span style="font-family: arial,helvetica,sans-serif;"><img class="alignleft" style="border: 0pt none;" src="images/stories/DONNY/donny.jpg" alt="donny" border="0" /></span>Aux côtés des habituels Bikutsi et Makossa, <strong>Donny Elwood,</strong> chanteur- compositeur et guitariste apparaît comme un ovni dans la tradition musicale camerounaise. Ses chansons ne sont pas faites pour danser, mais seraient plutôt des "chants à penser". Ce gavroche des faubourgs de Yaoundé (Cameroun), qui gueule à qui veut bien l'entendre : "On m'appelle Monsieur alère, Tonton Misère", la guitare en bandoulière et son indécollable chapeau crânement enfoncé sur sa tête, il manie la langue française avec autant de dextérité qu'un chirurgien son scalpel. Mix de <strong>Brassens</strong>, de <strong>Dutronc</strong> et de <a href="http://francis_bebey.mondomix.com/fr/artiste.htm"><strong>Francis Bebey</strong></a>, cet enfant du colonialisme transforme les mots qu'on lui a appris en des armes redoutables, renversant les préjugés.<img src="images/stories/DONNY/donny2.jpg" alt="donny2" width="256" height="192" /> <span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Donny Elwood|1||a{/nmap}</span> <p style="line-height: normal;"><span style="font-family: arial,helvetica,sans-serif;">Dans ses chansons, il accule l'Homme jusque dans ses dernières défenses : corruption, impuissance, misère... Tout est objet à plaisanterie et rien n'échappe au regard acerbe de Mr Elwood, de son vrai nom <strong>Ella Owoudou Albert Dieudonné</strong>. Né en 1968 à Ebelowa (Sud-Cameroun), ce jouisseur des mots a aussi été comédien (Les Nul' Art) et réalisateur, avant de se lancer dans la chanson, où là encore, il met à profit son plaisir de jouer. Sur scène, il exulte, il s'amuse, il échange avec le public... </span></p> <p style="line-height: normal;"><span style="font-family: arial,helvetica,sans-serif;">Pygmée par ses grands-parents, Donny semble avoir hérité de son don pour la parabole des griots de sa région, les joueurs de mvet (sorte de guitare avec des calebasses comme caisse de résonance), qui utilisent les contes pour ramener hommes et femmes dans le droit chemin. Lui pourtant ne prêche pas la bonne parole, il se contente d'observer le monde. Et nous, on se régale à l'écouter nous raconter l'histoire du Cousin militaire : "Heureusement que j'ai mon cousin militaire. Quand il touche son salaire, me donne mon argent de bière. Et moi je fonce chez ma rombière, toute la nuit on s'envoie en l'air.</span></p> <span style="line-height: 115%; font-family: arial,helvetica,sans-serif;"> <a href="http://donny_elwood.mondomix.com/fr/portrait40.htm">Source</a></span> &nbsp;Donny Elwoodinheritopenopen476-revision2012-01-21 08:29:452012-01-21 07:29:45476http://www.alicepegie.com/wordpress/wordpress/?p=4770revision0
47812012-01-21 08:30:192012-01-21 07:30:19<span style="font-family: arial,helvetica,sans-serif;"><img class="alignleft" style="border: 0pt none;" src="images/stories/DONNY/donny.jpg" alt="donny" border="0" /></span>Aux côtés des habituels Bikutsi et Makossa, <strong>Donny Elwood,</strong> chanteur- compositeur et guitariste apparaît comme un ovni dans la tradition musicale camerounaise. Ses chansons ne sont pas faites pour danser, mais seraient plutôt des "chants à penser". Ce gavroche des faubourgs de Yaoundé (Cameroun), qui gueule à qui veut bien l'entendre : "On m'appelle Monsieur alère, Tonton Misère", la guitare en bandoulière et son indécollable chapeau crânement enfoncé sur sa tête, il manie la langue française avec autant de dextérité qu'un chirurgien son scalpel. Mix de <strong>Brassens</strong>, de <strong>Dutronc</strong> et de <a href="http://francis_bebey.mondomix.com/fr/artiste.htm"><strong>Francis Bebey</strong></a>, cet enfant du colonialisme transforme les mots qu'on lui a appris en des armes redoutables, renversant les préjugés.<img src="images/stories/DONNY/donny2.jpg" alt="donny2" width="256" height="192" /> <span style="font-family: 'Arial','sans-serif';">{nmap}normal|250|150|images/stories/audio/Donny Elwood|1||a{/nmap}</span> <p style="line-height: normal;"><span style="font-family: arial,helvetica,sans-serif;">Dans ses chansons, il accule l'Homme jusque dans ses dernières défenses : corruption, impuissance, misère... Tout est objet à plaisanterie et rien n'échappe au regard acerbe de Mr Elwood, de son vrai nom <strong>Ella Owoudou Albert Dieudonné</strong>. Né en 1968 à Ebelowa (Sud-Cameroun), ce jouisseur des mots a aussi été comédien (Les Nul' Art) et réalisateur, avant de se lancer dans la chanson, où là encore, il met à profit son plaisir de jouer. Sur scène, il exulte, il s'amuse, il échange avec le public... </span></p> <p style="line-height: normal;"><span style="font-family: arial,helvetica,sans-serif;">Pygmée par ses grands-parents, Donny semble avoir hérité de son don pour la parabole des griots de sa région, les joueurs de mvet (sorte de guitare avec des calebasses comme caisse de résonance), qui utilisent les contes pour ramener hommes et femmes dans le droit chemin. Lui pourtant ne prêche pas la bonne parole, il se contente d'observer le monde. Et nous, on se régale à l'écouter nous raconter l'histoire du Cousin militaire : "Heureusement que j'ai mon cousin militaire. Quand il touche son salaire, me donne mon argent de bière. Et moi je fonce chez ma rombière, toute la nuit on s'envoie en l'air.</span></p> <span style="line-height: 115%; font-family: arial,helvetica,sans-serif;"> <a href="http://donny_elwood.mondomix.com/fr/portrait40.htm">Source</a></span> &nbsp;Donny Elwoodinheritopenopen476-revision-22012-01-21 08:30:192012-01-21 07:30:19476http://www.alicepegie.com/wordpress/wordpress/?p=4780revision0
47912011-09-10 08:30:462011-09-10 07:30:46<img style="float: left;" src="images/stories/kpeum%20nkou/SAM_4508.JPG" alt="SAM_4508" width="364" height="273" border="0" />Les feuilles de manioc contiennent beaucoup de vitamine A et de vitamine C. Une demi-tasse de feuilles de manioc cuites couvre la moitié des besoins quotidiens en vitamine A d'un jeune enfant. La vitamine A est importante pour la croissance, pour la vue et pour prévenir les maladies. C'est une substance utile qu'il faut veiller à consommer en quantité suffisante. Les feuilles de manioc contiennent également beaucoup de fibres alimentaires. En associant les feuilles aux tubercules de Manioc, on obtient un plat très nourrissant.<!--more--> <strong>La recette :</strong> <ul> <li>400g de feuilles de manioc pilés ou 1kg de feuilles fraiches.</li> <li>200g de pate d'arachides ou 400g d'arachide à griller.</li> <li>200g de viande ou de poisson.</li> <li>3 verres d'eau</li> <li>2 cuillères à soupe d'huile de palme brut.</li> <li></li> </ul> <strong>Préparation:</strong> <ul> <li>faites cuire la viande avec un oignon et du sel pendant 1h, jusqu'à ce qu'elle soit tendre.</li> <li><img src="images/stories/kpeum%20nkou/SAM_4409.JPG" alt="SAM_4409" width="364" height="273" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4415.JPG" alt="SAM_4415" width="364" height="273" border="0" /></li> <li>apprêtez vos feuilles de manioc (pilez les si elles sont fraiches).</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/kpeum%20nkou/SAM_4412.JPG" alt="SAM_4412" width="364" height="273" border="0" /></li> <li>lorsque les feuilles sont bien pilées, mettez les dans une casserole avec 2 verres d'eau et laissez cuire 10-15mn environ à feu doux en remuant pour éviter qu'elles ne collent au fond de la casserole.</li> <li><img src="images/stories/kpeum%20nkou/SAM_4416.JPG" alt="SAM_4416" width="374" height="264" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4421.JPG" alt="SAM_4421" width="353" height="265" border="0" /></li> <li>lorsque la viande est cuite mettez-la dans la casserole contenant les feuilles de manioc.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/kpeum%20nkou/SAM_4422.JPG" alt="SAM_4422" width="364" height="273" border="0" /></li> <li>mouillez la pate d'arachide avec le jus de viande (ou de l'eau) et mélangez bien de façon à obtenir une crème sans grumeaux que vous versez dans la casserole.</li> <li>mélangez le tout et laissez cuire 10mn env.</li> <li><img src="images/stories/kpeum%20nkou/SAM_4425.JPG" alt="SAM_4425" width="364" height="273" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4426.JPG" alt="SAM_4426" width="364" height="273" border="0" /></li> <li>après 10mn mélangez et rajoutez l'huile de palme, salez et laissez à nouveau cuire 15mn.</li> <li><img src="images/stories/kpeum%20nkou/SAM_4427.JPG" alt="SAM_4427" width="364" height="273" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4428.JPG" alt="SAM_4428" width="364" height="273" border="0" /></li> <li>servez chaud avec du manioc bouilli.</li> <li><img src="images/stories/kpeum%20nkou/SAM_4475.JPG" alt="SAM_4475" width="364" height="273" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4476.JPG" alt="SAM_4476" width="364" height="273" border="0" /></li> <li><img src="images/stories/kpeum%20nkou/SAM_4485.JPG" alt="SAM_4485" width="311" height="314" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4487.JPG" alt="SAM_4487" width="409" height="315" border="0" /> Bon appétit!</li> </ul>Sauce de feuilles de Maniocpublishopenopensauce-de-feuilles-de-manioc2012-01-21 08:32:252012-01-21 07:32:250http://www.alicepegie.com/wordpress/wordpress/?p=4790post0
48012012-01-21 08:31:282012-01-21 07:31:28<img style="float: left;" src="images/stories/kpeum%20nkou/SAM_4508.JPG" alt="SAM_4508" width="364" height="273" border="0" />Les feuilles de manioc contiennent beaucoup de vitamine A et de vitamine C. Une demi-tasse de feuilles de manioc cuites couvre la moitié des besoins quotidiens en vitamine A d'un jeune enfant. La vitamine A est importante pour la croissance, pour la vue et pour prévenir les maladies. C'est une substance utile qu'il faut veiller à consommer en quantité suffisante. Les feuilles de manioc contiennent également beaucoup de fibres alimentaires. En associant les feuilles aux tubercules de Manioc, on obtient un plat très nourrissant.<!--more--> <strong>La recette :</strong> <ul> <li>400g de feuilles de manioc pilés ou 1kg de feuilles fraiches.</li> <li>200g de pate d'arachides ou 400g d'arachide à griller.</li> <li>200g de viande ou de poisson.</li> <li>3 verres d'eau</li> <li>2 cuillères à soupe d'huile de palme brut.</li> <li></li> </ul> <strong>Préparation:</strong> <ul> <li>faites cuire la viande avec un oignon et du sel pendant 1h, jusqu'à ce qu'elle soit tendre.</li> <li><img src="images/stories/kpeum%20nkou/SAM_4409.JPG" alt="SAM_4409" width="364" height="273" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4415.JPG" alt="SAM_4415" width="364" height="273" border="0" /></li> <li>apprêtez vos feuilles de manioc (pilez les si elles sont fraiches).</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/kpeum%20nkou/SAM_4412.JPG" alt="SAM_4412" width="364" height="273" border="0" /></li> <li>lorsque les feuilles sont bien pilées, mettez les dans une casserole avec 2 verres d'eau et laissez cuire 10-15mn environ à feu doux en remuant pour éviter qu'elles ne collent au fond de la casserole.</li> <li><img src="images/stories/kpeum%20nkou/SAM_4416.JPG" alt="SAM_4416" width="374" height="264" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4421.JPG" alt="SAM_4421" width="353" height="265" border="0" /></li> <li>lorsque la viande est cuite mettez-la dans la casserole contenant les feuilles de manioc.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/kpeum%20nkou/SAM_4422.JPG" alt="SAM_4422" width="364" height="273" border="0" /></li> <li>mouillez la pate d'arachide avec le jus de viande (ou de l'eau) et mélangez bien de façon à obtenir une crème sans grumeaux que vous versez dans la casserole.</li> <li>mélangez le tout et laissez cuire 10mn env.</li> <li><img src="images/stories/kpeum%20nkou/SAM_4425.JPG" alt="SAM_4425" width="364" height="273" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4426.JPG" alt="SAM_4426" width="364" height="273" border="0" /></li> <li>après 10mn mélangez et rajoutez l'huile de palme, salez et laissez à nouveau cuire 15mn.</li> <li><img src="images/stories/kpeum%20nkou/SAM_4427.JPG" alt="SAM_4427" width="364" height="273" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4428.JPG" alt="SAM_4428" width="364" height="273" border="0" /></li> <li>servez chaud avec du manioc bouilli.</li> <li><img src="images/stories/kpeum%20nkou/SAM_4475.JPG" alt="SAM_4475" width="364" height="273" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4476.JPG" alt="SAM_4476" width="364" height="273" border="0" /></li> <li><img src="images/stories/kpeum%20nkou/SAM_4485.JPG" alt="SAM_4485" width="311" height="314" border="0" /><img src="images/stories/kpeum%20nkou/SAM_4487.JPG" alt="SAM_4487" width="409" height="315" border="0" /> Bon appétit!</li> </ul>Sauce de feuilles de Maniocinheritopenopen479-revision2012-01-21 08:31:282012-01-21 07:31:28479http://www.alicepegie.com/wordpress/wordpress/?p=4800revision0
48112011-09-08 08:32:452011-09-08 07:32:45<span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="float: left;" src="images/stories/baume%20eczema/SAM_5268.JPG" alt="SAM_5268" width="270" height="239" border="0" />Grace à ces composants naturels, ce <span style="line-height: 115%; color: black;">baume</span><span style="line-height: 115%;"> lutte efficacement contre la <span style="line-height: 115%; color: black;">secheresse de la<span style="line-height: 115%; color: red;"> <span style="line-height: 115%; color: black;">peau</span></span></span><span style="line-height: 115%;"> et <span style="line-height: 115%; color: black;">l'eczéma.</span></span></span></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ce baume crémeux nourrissant à la sublime odeur de noix de Macadamia citronnée est idéal pour nourrir et protéger les peaux sèches et abîmées. Un réel moment de plaisir !<!--more--></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingredients:</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cire d'abeille modifiée : 8g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cire olive protection: 4g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Hv de palmiste (noir): 70g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Hv cameline: 15</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Glycérine vegetale: 5g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Céramides végétales: 15g</span></li> </ul> <strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;">Préparation:</span></span></span></span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Transférez les huiles et les cires dans un bol.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20eczema/SAM_5257.JPG" alt="SAM_5257" width="235" height="237" border="0" /><img src="images/stories/baume%20eczema/SAM_5260.JPG" alt="SAM_5260" width="364" height="237" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Faites chauffer l’ensemble au bain-marie jusqu’à ce que les cires soient dissoutes.</span></li> </ul> <ul> <li>Mélangez vigoureusement pendant environ 3 minutes. Le mélange blanchit et s'homogénéise. <ul> <li style="line-height: 115%;">Sans cesser d'agiter, mettez le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion.</li> <li style="line-height: 115%;"> <ul> <li style="line-height: 115%;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20eczema/SAM_5262.JPG" alt="SAM_5262" width="364" height="273" border="0" /></li> <li style="line-height: 115%;">Ajoutez enfin la phase les céramides végétales et la vitamine E en mélangeant bien entre chaque ajout.</li> <li style="line-height: 115%;"><img src="images/stories/baume%20eczema/SAM_5263.JPG" alt="SAM_5263" width="343" height="257" border="0" /><img src="images/stories/baume%20eczema/SAM_5265.JPG" alt="SAM_5265" width="344" height="257" border="0" /></li> <li style="line-height: 115%;"> <ul> <li style="line-height: 115%;"></li> <li style="line-height: 115%;"><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"> Transférez la préparation dans son pot.</span></span></span></span></span></li> <li style="line-height: 115%;"><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></li> </ul> </li> </ul> </li> </ul> </li> </ul> <ul> <li><img src="images/stories/baume%20eczema/SAM_5267.JPG" alt="SAM_5267" width="283" height="258" border="0" /><img src="images/stories/baume%20eczema/SAM_5272.JPG" alt="SAM_5272" width="286" height="257" border="0" /></li> <li><strong>U</strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><strong>tilisation :</strong> Chauffer le <span style="line-height: 115%; color: black;">baume</span><span style="line-height: 115%; color: black;"> <span style="line-height: 115%;">au creux de la main et appliquer matin et soir sur les <span style="line-height: 115%; color: black;">zones d'eczéma</span><span style="line-height: 115%;">, Vous aurez le résultat au bout de trois jours.</span></span></span></span></span></span></span></span></li> <li><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"><img src="images/stories/baume%20eczema/SAM_5280.JPG" alt="SAM_5280" width="256" height="215" border="0" /><img src="images/stories/baume%20eczema/SAM_5286.JPG" alt="SAM_5286" width="293" height="215" border="0" /></span></span></span></span></span></span></span></span></li> <li style="text-align: center;"><strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Choix des ingrédients:</span></span></span></span></span></span></span></span></strong></li> <li><span style="line-height: 115%; color: black;"><strong>Huile de palmiste:</strong> exfoliante et purifiante, cette huile utilisée dans les bains laisse une peau propre et douce. Un usage régulier de cette huile prévient les problèmes de peaux (eczéma...). </span></li> <li><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Huile de Cameline: </span></span></span></span></span></span></span></span></strong><span style="line-height: 115%; color: #000000;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span>très riche en oméga-3, l'huile végétale de Cameline fait aujourd'hui office d'ingrédient noble dans la confection de soins anti-âge ou de soins apaisants et réparateurs pour les peaux atopiques.</span></span></span></span></span></span></span></span></span><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></span></span></span></strong></li> <li><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Glycérine végétale: </span></span></span></span></span></span></span></span></strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="color: #000000;"> protège la peau et les cheveux de la déshydratation, assouplit et lisse peau et cheveux par son action émolliente.</span></span></span></span></span></span></span></span></span><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></span></span></span></strong></li> <li><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Céramides végétales: </span></span></span></span></span></span></span></span></strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Dérivées de l'huile de Tournesol, les Céramides végétales sont un actif relipidant et protecteur pour la peau et les cheveux. Dans les soins capillaires, les Céramides sont très efficaces pour lisser, protéger, et renforcer la fibre capillaire. Elles sont particulièrement réputées pour le soin des cheveux colorés, dont elles aident à garder l'éclat. Sur la peau, elles protègent de la déshydratation et restaurent le film hydrolipidique cutané.</span></span></span></span></span></span></span></span><strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></span></span></span></strong></li> </ul>Baume crémeux nourissantpublishopenopenbaume-cremeux-nourissant2012-01-21 08:34:342012-01-21 07:34:340http://www.alicepegie.com/wordpress/wordpress/?p=4810post0
48212012-01-21 08:33:342012-01-21 07:33:34<span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="float: left;" src="images/stories/baume%20eczema/SAM_5268.JPG" alt="SAM_5268" width="270" height="239" border="0" />Grace à ces composants naturels, ce <span style="line-height: 115%; color: black;">baume</span><span style="line-height: 115%;"> lutte efficacement contre la <span style="line-height: 115%; color: black;">secheresse de la<span style="line-height: 115%; color: red;"> <span style="line-height: 115%; color: black;">peau</span></span></span><span style="line-height: 115%;"> et <span style="line-height: 115%; color: black;">l'eczéma.</span></span></span></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ce baume crémeux nourrissant à la sublime odeur de noix de Macadamia citronnée est idéal pour nourrir et protéger les peaux sèches et abîmées. Un réel moment de plaisir !<!--more--></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingredients:</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cire d'abeille modifiée : 8g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cire olive protection: 4g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Hv de palmiste (noir): 70g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Hv cameline: 15</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Glycérine vegetale: 5g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Céramides végétales: 15g</span></li> </ul> <strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;">Préparation:</span></span></span></span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Transférez les huiles et les cires dans un bol.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20eczema/SAM_5257.JPG" alt="SAM_5257" width="235" height="237" border="0" /><img src="images/stories/baume%20eczema/SAM_5260.JPG" alt="SAM_5260" width="364" height="237" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Faites chauffer l’ensemble au bain-marie jusqu’à ce que les cires soient dissoutes.</span></li> </ul> <ul> <li>Mélangez vigoureusement pendant environ 3 minutes. Le mélange blanchit et s'homogénéise. <ul> <li style="line-height: 115%;">Sans cesser d'agiter, mettez le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion.</li> <li style="line-height: 115%;"> <ul> <li style="line-height: 115%;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20eczema/SAM_5262.JPG" alt="SAM_5262" width="364" height="273" border="0" /></li> <li style="line-height: 115%;">Ajoutez enfin la phase les céramides végétales et la vitamine E en mélangeant bien entre chaque ajout.</li> <li style="line-height: 115%;"><img src="images/stories/baume%20eczema/SAM_5263.JPG" alt="SAM_5263" width="343" height="257" border="0" /><img src="images/stories/baume%20eczema/SAM_5265.JPG" alt="SAM_5265" width="344" height="257" border="0" /></li> <li style="line-height: 115%;"> <ul> <li style="line-height: 115%;"></li> <li style="line-height: 115%;"><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"> Transférez la préparation dans son pot.</span></span></span></span></span></li> <li style="line-height: 115%;"><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></li> </ul> </li> </ul> </li> </ul> </li> </ul> <ul> </ul><ul> <li><img src="images/stories/baume%20eczema/SAM_5267.JPG" alt="SAM_5267" width="283" height="258" border="0" /><img src="images/stories/baume%20eczema/SAM_5272.JPG" alt="SAM_5272" width="286" height="257" border="0" /></li> <li><strong>U</strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><strong>tilisation :</strong> Chauffer le <span style="line-height: 115%; color: black;">baume</span><span style="line-height: 115%; color: black;"> <span style="line-height: 115%;">au creux de la main et appliquer matin et soir sur les <span style="line-height: 115%; color: black;">zones d'eczéma</span><span style="line-height: 115%;">, Vous aurez le résultat au bout de trois jours.</span></span></span></span></span></span></span></span></li> <li><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"><img src="images/stories/baume%20eczema/SAM_5280.JPG" alt="SAM_5280" width="256" height="215" border="0" /><img src="images/stories/baume%20eczema/SAM_5286.JPG" alt="SAM_5286" width="293" height="215" border="0" /></span></span></span></span></span></span></span></span></li> <li style="text-align: center;"><strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Choix des ingrédients:</span></span></span></span></span></span></span></span></strong></li> </ul> <li><span style="line-height: 115%; color: black;"><strong>Huile de palmiste:</strong> exfoliante et purifiante, cette huile utilisée dans les bains laisse une peau propre et douce. Un usage régulier de cette huile prévient les problèmes de peaux (eczéma...). </span></li> <li><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Huile de Cameline: </span></span></span></span></span></span></span></span></strong><span style="line-height: 115%; color: #000000;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span>très riche en oméga-3, l'huile végétale de Cameline fait aujourd'hui office d'ingrédient noble dans la confection de soins anti-âge ou de soins apaisants et réparateurs pour les peaux atopiques.</span></span></span></span></span></span></span></span></span><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></span></span></span></strong></li> <li><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Glycérine végétale: </span></span></span></span></span></span></span></span></strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="color: #000000;"> protège la peau et les cheveux de la déshydratation, assouplit et lisse peau et cheveux par son action émolliente.</span></span></span></span></span></span></span></span></span><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></span></span></span></strong></li> <li><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Céramides végétales: </span></span></span></span></span></span></span></span></strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Dérivées de l'huile de Tournesol, les Céramides végétales sont un actif relipidant et protecteur pour la peau et les cheveux. Dans les soins capillaires, les Céramides sont très efficaces pour lisser, protéger, et renforcer la fibre capillaire. Elles sont particulièrement réputées pour le soin des cheveux colorés, dont elles aident à garder l'éclat. Sur la peau, elles protègent de la déshydratation et restaurent le film hydrolipidique cutané.</span></span></span></span></span></span></span></span><strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></span></span></span></strong></li> Baume crémeux nourissantinheritopenopen481-revision2012-01-21 08:33:342012-01-21 07:33:34481http://www.alicepegie.com/wordpress/wordpress/?p=4820revision0
48312012-01-21 08:34:022012-01-21 07:34:02<span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="float: left;" src="images/stories/baume%20eczema/SAM_5268.JPG" alt="SAM_5268" width="270" height="239" border="0" />Grace à ces composants naturels, ce <span style="line-height: 115%; color: black;">baume</span><span style="line-height: 115%;"> lutte efficacement contre la <span style="line-height: 115%; color: black;">secheresse de la<span style="line-height: 115%; color: red;"> <span style="line-height: 115%; color: black;">peau</span></span></span><span style="line-height: 115%;"> et <span style="line-height: 115%; color: black;">l'eczéma.</span></span></span></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ce baume crémeux nourrissant à la sublime odeur de noix de Macadamia citronnée est idéal pour nourrir et protéger les peaux sèches et abîmées. Un réel moment de plaisir !<!--more--></span> <strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingredients:</span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cire d'abeille modifiée : 8g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Cire olive protection: 4g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Hv de palmiste (noir): 70g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Hv cameline: 15</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Glycérine vegetale: 5g</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Céramides végétales: 15g</span></li> </ul> <strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;">Préparation:</span></span></span></span></strong> <ul> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Transférez les huiles et les cires dans un bol.</span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img src="images/stories/baume%20eczema/SAM_5257.JPG" alt="SAM_5257" width="235" height="237" border="0" /><img src="images/stories/baume%20eczema/SAM_5260.JPG" alt="SAM_5260" width="364" height="237" border="0" /> </span></li> <li><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Faites chauffer l’ensemble au bain-marie jusqu’à ce que les cires soient dissoutes.</span></li> </ul> <ul> <li>Mélangez vigoureusement pendant environ 3 minutes. Le mélange blanchit et s'homogénéise. <ul> <li style="line-height: 115%;">Sans cesser d'agiter, mettez le bol dans un fond d'eau froide afin d'accélérer le refroidissement et la prise de l'émulsion.</li> <li style="line-height: 115%;"> <ul> <li style="line-height: 115%;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/baume%20eczema/SAM_5262.JPG" alt="SAM_5262" width="364" height="273" border="0" /></li> <li style="line-height: 115%;">Ajoutez enfin la phase les céramides végétales et la vitamine E en mélangeant bien entre chaque ajout.</li> <li style="line-height: 115%;"><img src="images/stories/baume%20eczema/SAM_5263.JPG" alt="SAM_5263" width="343" height="257" border="0" /><img src="images/stories/baume%20eczema/SAM_5265.JPG" alt="SAM_5265" width="344" height="257" border="0" /></li> <li style="line-height: 115%;"> <ul> <li style="line-height: 115%;"></li> <li style="line-height: 115%;"><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"> Transférez la préparation dans son pot.</span></span></span></span></span></li> <li style="line-height: 115%;"><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></li> </ul> </li> </ul> </li> </ul> </li> </ul> <ul> </ul><ul> <li><img src="images/stories/baume%20eczema/SAM_5267.JPG" alt="SAM_5267" width="283" height="258" border="0" /><img src="images/stories/baume%20eczema/SAM_5272.JPG" alt="SAM_5272" width="286" height="257" border="0" /></li> <li><strong>U</strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><strong>tilisation :</strong> Chauffer le <span style="line-height: 115%; color: black;">baume</span><span style="line-height: 115%; color: black;"> <span style="line-height: 115%;">au creux de la main et appliquer matin et soir sur les <span style="line-height: 115%; color: black;">zones d'eczéma</span><span style="line-height: 115%;">, Vous aurez le résultat au bout de trois jours.</span></span></span></span></span></span></span></span></li> <li><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"><img src="images/stories/baume%20eczema/SAM_5280.JPG" alt="SAM_5280" width="256" height="215" border="0" /><img src="images/stories/baume%20eczema/SAM_5286.JPG" alt="SAM_5286" width="293" height="215" border="0" /></span></span></span></span></span></span></span></span></li> <li style="text-align: center;"><strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Choix des ingrédients:</span></span></span></span></span></span></span></span></strong></li> </ul> <li><span style="line-height: 115%; color: black;"><strong>Huile de palmiste:</strong> exfoliante et purifiante, cette huile utilisée dans les bains laisse une peau propre et douce. Un usage régulier de cette huile prévient les problèmes de peaux (eczéma...). </span></li> <li><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Huile de Cameline: </span></span></span></span></span></span></span></span></strong><span style="line-height: 115%; color: #000000;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span>très riche en oméga-3, l'huile végétale de Cameline fait aujourd'hui office d'ingrédient noble dans la confection de soins anti-âge ou de soins apaisants et réparateurs pour les peaux atopiques.</span></span></span></span></span></span></span></span></span><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></span></span></span></strong></li> <li><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Glycérine végétale: </span></span></span></span></span></span></span></span></strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="color: #000000;"> protège la peau et les cheveux de la déshydratation, assouplit et lisse peau et cheveux par son action émolliente.</span></span></span></span></span></span></span></span></span><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></span></span></span></strong></li> <li><strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Céramides végétales: </span></span></span></span></span></span></span></span></strong><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;">Dérivées de l'huile de Tournesol, les Céramides végétales sont un actif relipidant et protecteur pour la peau et les cheveux. Dans les soins capillaires, les Céramides sont très efficaces pour lisser, protéger, et renforcer la fibre capillaire. Elles sont particulièrement réputées pour le soin des cheveux colorés, dont elles aident à garder l'éclat. Sur la peau, elles protègent de la déshydratation et restaurent le film hydrolipidique cutané.</span></span></span></span></span></span></span></span><strong><span style="line-height: 115%; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%;"><span style="line-height: 115%; color: black;"><span style="line-height: 115%;"><span style="line-height: 115%;"> </span></span></span></span></span></span></span></span></strong></li> Baume crémeux nourissantinheritopenopen481-revision-22012-01-21 08:34:022012-01-21 07:34:02481http://www.alicepegie.com/wordpress/wordpress/?p=4830revision0
48412011-09-07 08:34:542011-09-07 07:34:54<p style="line-height: normal; margin-left: 6px;"><span style="color: #003300; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="float: left;" src="images/stories/cassia%20alata/cassiacomp.jpg" alt="cassiacomp" width="226" height="400" /></span><span style="color: #000000; font-size: 10pt;"><strong><span style="text-decoration: underline;">Nom Commun: </span></strong>Dartrier</span></p> <p style="text-align: justify; line-height: normal; margin-left: 6px;"><span style="color: #000000; font-size: 10pt;"><strong><span style="text-decoration: underline;"> AUTRES APPELLATIONS : </span></strong>Casse ailée, Herbe à Dartre, Arbre Candelabre, Ngom ntangan en Ewondo, Ndawolo ntangan (en bulu) </span></p> <p style="text-align: justify; line-height: normal; margin-left: 6px;"><span style="color: #000000; font-size: 10pt;">Originaire d'Amérique tropicale cet arbuste atteint deux à trois mètres de haut. Ses fleurs, dressées en épis, sont jaune d'or et très décoratives. Comme les autres <img style="float: right;" src="images/stories/cassia%20alata/Cassia%20alata2.jpg" alt="Cassia alata2" width="208" height="327" border="0" />cassias, il est pe exigeant quand à la nature du sol, mais il demande par contre à être planté en plein soleil. Il s'est répandu dans toutes les régions chaudes du monde.</span></p> <p style="text-align: justify;"><span style="color: #000000; font-size: 10pt;">C'est un remède puissant pour <strong>soigner des dermatoses diverses</strong>: eczéma surinfecté; ulcères tropicaux, herpès circiné (mycose cutanée), parasitoses cutanées surinfectées. Plaies infectées ou surinfectées. Elle possède également des vertus antiparasitaires : Gale, Tiques.</span></p> <p style="text-align: justify; color: #003300; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="color: #000000; font-size: 10pt;">En décoction, elle possède des propriétés laxatives.</span></p> <ul style="text-align: justify;"> <li style="line-height: normal;"><span style="color: #000000; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Pour soigner les Mycoses</strong> : On prépare une pâte en mélangeant de la poudre de feuilles séchées avec de l'eau ou de la graisse, de l'huile ou de la vaseline. Les praticiens traditionnels recommandent de bien frotter les lésions mycosiques avec cette pâte plusieurs fois par jour jusqu’à disparition.</span></li> </ul> <p style="text-align: justify;"><span style="color: #000000; line-height: 115%; font-family: 'Calibri','sans-serif'; font-size: 11pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> L'application directe du jus de la feuille après broyage donne également d'excellents résultats.</span></span></p> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Les feuilles fraîches sous forme de pulpe, de jus ou de poudre, servent à soigner les dartres, l'eczéma, la teigne et la gale. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> En Afrique, les feuilles sont parfois utilisées en infusion contre la grippe,</span><span style="line-height: 115%; font-family: 'Calibri','sans-serif'; font-size: 11pt;"> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">ou encore comme fébrifuge et sudorifique (en bain).</span></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">A Madagascar elle sert contre l'hypertension. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Ses propriétés antibactériennes sont principalement le résultat de son action sur le staphylocoque.</span> <span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif'; color: #003300;"><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="color: #003300;"><span style="color: #003300;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></span></span></span></span>Le Dartrier (Cassia Alata)publishopenopenle-dartrier-cassia-alata2012-01-21 08:36:212012-01-21 07:36:210http://www.alicepegie.com/wordpress/wordpress/?p=4840post0
48612011-09-06 08:36:472011-09-06 07:36:47<p style="margin: 0cm 0cm 0.0001pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><img style="float: left;" src="images/stories/eau%20de%20fruit%20de%20citron/SAM_5137.JPG" alt="SAM_5137" width="149" height="241" border="0" />L'hydrolat est le sous-produit de la distillation par entraînement par la vapeur d'eau d'une plante. C'est la phase aqueuse récoltée à la sortie de l'alambic après décantation.</span></p> <p style="margin: 0cm 0cm 0.0001pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"> </span></p> <p style="margin: 0cm 0cm 2.25pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">C'est en fait une <strong>eau chargée en molécules actives volatiles de plantes. </strong></span></p> <span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Pendant mes vacances j’en discutais avec ma maman qui m’a décrit comment, plus jeune elle avait pris à bidouiller un alambic maison. Le principe étant de refroidir la vapeur d’eau qui s’échappe lors de l’ébullition et ainsi la récupérer sous forme liquide. Cela m'a donné une idée, en utilisant le cuiseur de ma doudou2 (on peut aussi utiliser un cuit vapeur), je vais me bidouiller moi aussi un alambic maison. <!--more--></span> <strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Voici ma méthode :</span></strong> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Je rempli le réservoir d’eau filtrée</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Dans le bol du cuiseur les fruits ou plantes</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/eau%20de%20fruit%20de%20citron/SAM_5115.JPG" alt="SAM_5115" width="364" height="196" border="0" /> </span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">au dessus, de l’orifice par lequel s’échappe la vapeur, un bol rempli de glaçons (pour accélérer le refroidissement de la vapeur), </span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">mise en route 1h (1litre en 3 fois 200ml) </span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/eau%20de%20fruit%20de%20citron/SAM_5134.JPG" alt="SAM_5134" width="236" height="364" border="0" /> </span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Puis une fois toute l'eau passée sous forme de vapeur, je lisse refroidir pour récupérer un maximum de produit.</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">J'obtiens un hydrolat un peu moins parfumé que les commerciaux, Pour sa conservation, par sécurité, j'ai quand même ajouté un peu d'EPP, comme conservateur, mais je ne suis pas sûre que ce soit nécessaire! </span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/eau%20de%20fruit%20de%20citron/SAM_5136.JPG" alt="SAM_5136" width="200" height="329" border="0" /> </span></li> </ul> &nbsp; <span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><img style="float: left;" src="images/stories/eau%20de%20fruit%20de%20citron/SAM_5139.JPG" alt="SAM_5139" width="186" height="337" border="0" />Et voila ce que je récupère (avec du citron vert) : environ 200mL d'un liquide tout à fait transparent qui sent les plantes que j'ai mises. </span> <span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Bien sur ça ne vaut pas une distillation à l'alambic mais ce n’est pas si mal. C’est déjà mieux que les décoctions et macérât.</span> <span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"> </span> <span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><strong>L'eau de fruit de citron (d'après AZ)</strong>: </span>est idéale pour éclaircir le teint et avoir une belle peau, astringente et purifiante, cette eau vitaminée et fruitée sera l'alliée incontournable des peaux à problèmes et viendra à bout de vos petits boutons disgracieux. C'est aussi un ingrédient de choix pour élaborer des dentifrices « maison ». Idéale aussi en cuisine pour ajouter une note citronnée à vos plats. <span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"> </span>Eau de fruit de Citron Vert (hydrolat maison)publishopenopeneau-de-fruit-de-citron-vert-hydrolat-maison2012-01-21 08:38:292012-01-21 07:38:290http://www.alicepegie.com/wordpress/wordpress/?p=4860post0
48512012-01-21 08:35:562012-01-21 07:35:56<p style="line-height: normal; margin-left: 6px;"><span style="color: #003300; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><img style="float: left;" src="images/stories/cassia%20alata/cassiacomp.jpg" alt="cassiacomp" width="226" height="400" /></span><span style="color: #000000; font-size: 10pt;"><strong><span style="text-decoration: underline;">Nom Commun: </span></strong>Dartrier</span></p> <p style="text-align: justify; line-height: normal; margin-left: 6px;"><span style="color: #000000; font-size: 10pt;"><strong><span style="text-decoration: underline;"> AUTRES APPELLATIONS : </span></strong>Casse ailée, Herbe à Dartre, Arbre Candelabre, Ngom ntangan en Ewondo, Ndawolo ntangan (en bulu) </span></p> <p style="text-align: justify; line-height: normal; margin-left: 6px;"><span style="color: #000000; font-size: 10pt;">Originaire d'Amérique tropicale cet arbuste atteint deux à trois mètres de haut. Ses fleurs, dressées en épis, sont jaune d'or et très décoratives. Comme les autres <img style="float: right;" src="images/stories/cassia%20alata/Cassia%20alata2.jpg" alt="Cassia alata2" width="208" height="327" border="0" />cassias, il est pe exigeant quand à la nature du sol, mais il demande par contre à être planté en plein soleil. Il s'est répandu dans toutes les régions chaudes du monde.</span></p> <p style="text-align: justify;"><span style="color: #000000; font-size: 10pt;">C'est un remède puissant pour <strong>soigner des dermatoses diverses</strong>: eczéma surinfecté; ulcères tropicaux, herpès circiné (mycose cutanée), parasitoses cutanées surinfectées. Plaies infectées ou surinfectées. Elle possède également des vertus antiparasitaires : Gale, Tiques.</span></p> <p style="text-align: justify; color: #003300; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><span style="color: #000000; font-size: 10pt;">En décoction, elle possède des propriétés laxatives.</span></p> <p style="text-align: justify; line-height: normal; margin-left: 36pt;"><span style="color: #000000; font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></p> <ul style="text-align: justify;"> <li style="line-height: normal;"><span style="color: #000000; font-family: arial,helvetica,sans-serif; font-size: 10pt;"><strong>Pour soigner les Mycoses</strong> : On prépare une pâte en mélangeant de la poudre de feuilles séchées avec de l'eau ou de la graisse, de l'huile ou de la vaseline. Les praticiens traditionnels recommandent de bien frotter les lésions mycosiques avec cette pâte plusieurs fois par jour jusqu’à disparition.</span></li> </ul> <p style="text-align: justify;"><span style="color: #000000; line-height: 115%; font-family: 'Calibri','sans-serif'; font-size: 11pt;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> L'application directe du jus de la feuille après broyage donne également d'excellents résultats.</span></span></p> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Les feuilles fraîches sous forme de pulpe, de jus ou de poudre, servent à soigner les dartres, l'eczéma, la teigne et la gale. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> En Afrique, les feuilles sont parfois utilisées en infusion contre la grippe,</span><span style="line-height: 115%; font-family: 'Calibri','sans-serif'; font-size: 11pt;"> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">ou encore comme fébrifuge et sudorifique (en bain).</span></span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">A Madagascar elle sert contre l'hypertension. </span> <span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> Ses propriétés antibactériennes sont principalement le résultat de son action sur le staphylocoque.</span> <span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif'; color: #003300;"><span style="font-size: 11pt; line-height: 115%; font-family: 'Calibri','sans-serif';"><span style="color: #003300;"><span style="color: #003300;"><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"> </span></span></span></span></span>Le Dartrier (Cassia Alata)inheritopenopen484-revision2012-01-21 08:35:562012-01-21 07:35:56484http://www.alicepegie.com/wordpress/wordpress/?p=4850revision0
48812011-09-05 08:39:042011-09-05 07:39:04<p style="text-align: justify;"><img style="float: left;" src="images/stories/brioche%20grill%C3%A9e/SAM_4632.JPG" alt="SAM_4632" width="364" height="238" border="0" />Après mes longues vacances bien méritées me revoilà pour partager avec vous de nouvelles recettes en espérant ne pas subir de nouvelles embrouilles techniques.</p> <p style="text-align: justify;">Dans mon livre de recettes de boulange il y a une recette de biscotte que j’ai toujours eu envie de tester. Lorsqu’enfin je me suis décidée, j’ai vu au supermarché qu’une célèbre marque de biscotte avait sorti des brioches grillées. Alors j’ai troqué mes biscottes contre des pains briochées grillés dont voici la recette :<!--more--></p> <strong>Pour 10 petits pains env (soit 20 tranches grillées) :</strong> <ul> <li>500g de farine</li> <li>325g de crème entière liquide (ou de lait)</li> <li>5g de sucre</li> <li>40g de beurre</li> <li>1 sachet de levure boulangère</li> <li>1cc de sel</li> <li><strong>Préparation :</strong></li> <li><strong>En Machine à pain:</strong></li> </ul> <ul> <li>Mettez dans l’ordre tous les ingrédients dans la MAP. Lancez le programme “pâte”.</li> <li><img src="images/stories/brioche%20grill%C3%A9e/SAM_4987.JPG" alt="SAM_4987" width="364" height="273" border="0" /><img src="images/stories/brioche%20grill%C3%A9e/SAM_5021.JPG" alt="SAM_5021" width="359" height="272" border="0" /></li> </ul> <ul> <li><strong>A la main:</strong></li> </ul> <ul> <li>Versez la levure dans 3 cuillères à soupe de lait tiède et laissez reposer 15 minutes.Dans un saladier, mélanger la farine avec le sucre et le sel. Faites fondre le beurre et chauffer le lait puis laissez tiédir. Versez-les sur la farine et mélangez avec une cuillère en bois puis pétrissez à la main durant 5 à 10 minutes.</li> <li><img style="float: left;" src="images/stories/brioche%20grill%C3%A9e/SAM_4525.JPG" alt="SAM_4525" width="364" height="273" border="0" /><img src="images/stories/brioche%20grill%C3%A9e/SAM_4528.JPG" alt="SAM_4528" width="364" height="273" border="0" />Laissez reposer pendant 1h30 dans un endroit à l'abri des courants d'airs (couvrez d'un linge humide).</li> <li>Au bout de ce temps, ou lorsque le programme de la MAP est fini, façonnez vos pains</li> </ul> <img src="images/stories/brioche%20grill%C3%A9e/SAM_4529.JPG" alt="SAM_4529" width="351" height="264" border="0" /><img src="images/stories/brioche%20grill%C3%A9e/SAM_5028.JPG" alt="SAM_5028" width="351" height="262" border="0" /> <ul> <li>Laissez à nouveau lever 1h et faites-les cuire environ 25 minutes dans four préchauffé à 200° en surveillant la cuisson.</li> <li>une fois les pains sortis du four, laissez les complètement refroidir à l’air.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_5044.JPG" alt="SAM_5044" width="402" height="315" border="0" /></li> <li>Coupez les ensuite en tranches et étalez ces dernières sur plaque, mie vers le haut laissez reposer 1h.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_5080.JPG" alt="SAM_5080" width="353" height="317" border="0" /></li> <li>Préchauffez le four à 215° enfournez les tranches de pain pour 15mn les pains doivent être dorés et prendre une couleur brun foncée sur les bords.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_5079.JPG" alt="SAM_5079" width="433" height="223" border="0" /></li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_4613.JPG" alt="SAM_4613" width="426" height="446" border="0" /></li> <li>Sortez vos pains du four laissez sa temperature redescendre à 100° eteignez le, remettez vos pains grillés et laissez dedans jusqu’à complet refroidissement.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_5083.JPG" alt="SAM_5083" width="420" height="210" border="0" /></li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_4633.JPG" alt="SAM_4633" width="343" height="233" border="0" /></li> <li>Et régalez vous. Ils peuvent se conserver 10 jours environ.</li> <li><img src="images/stories/brioche%20grill%C3%A9e/SAM_4622.JPG" alt="SAM_4622" width="383" height="300" border="0" /><img src="images/stories/brioche%20grill%C3%A9e/SAM_4637.JPG" alt="SAM_4637" width="347" height="297" border="0" /></li> <li><img src="images/stories/brioche%20grill%C3%A9e/SAM_4645.JPG" alt="SAM_4645" width="463" height="314" border="0" /><img src="images/stories/brioche%20grill%C3%A9e/SAM_5093.JPG" alt="SAM_5093" width="269" height="314" border="0" /></li> </ul>Pains briochés grilléspublishopenopenpains-brioches-grilles2012-01-21 08:41:232012-01-21 07:41:230http://www.alicepegie.com/wordpress/wordpress/?p=4880post0
48712012-01-21 08:37:332012-01-21 07:37:33<p style="margin: 0cm 0cm 0.0001pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><img src="images/stories/eau%20de%20fruit%20de%20citron/SAM_5137.JPG" border="0" alt="SAM_5137" width="149" height="241" style="float: left;" />L'hydrolat est le sous-produit de la distillation par entraînement par la vapeur d'eau d'une plante. C'est la phase aqueuse récoltée à la sortie de l'alambic après décantation.</span></p> <p style="margin: 0cm 0cm 0.0001pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><br /></span></p> <p style="margin: 0cm 0cm 2.25pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">C'est en fait une <strong>eau chargée en molécules actives volatiles de plantes. </strong></span></p> <p style="margin: 0cm 0cm 2.25pt;"><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><strong><br /></strong></span></p> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Pendant mes vacances j’en discutais avec ma maman qui m’a décrit comment, plus jeune elle avait pris à bidouiller un alambic maison. Le principe étant de refroidir la vapeur d’eau qui s’échappe lors de l’ébullition et ainsi la récupérer sous forme liquide. Cela m'a donné une idée, en utilisant le cuiseur de ma doudou2 (on peut aussi utiliser un cuit vapeur), je vais me bidouiller moi aussi un alambic maison. </span></p> <p> </p> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><br /></span></p> <p><strong><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Voici ma méthode :</span></strong></p> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <hr id="system-readmore" /> <ul> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Je rempli le réservoir d’eau filtrée</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Dans le bol du cuiseur les fruits ou plantes</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><img src="images/stories/eau%20de%20fruit%20de%20citron/SAM_5115.JPG" border="0" alt="SAM_5115" width="364" height="196" style="display: block; margin-left: auto; margin-right: auto;" /><br /></span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">au dessus, de l’orifice par lequel s’échappe la vapeur, un bol rempli de glaçons (pour accélérer le refroidissement de la vapeur), </span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">mise en route 1h (1litre en 3 fois 200ml) </span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><img src="images/stories/eau%20de%20fruit%20de%20citron/SAM_5134.JPG" border="0" alt="SAM_5134" width="236" height="364" style="display: block; margin-left: auto; margin-right: auto;" /><br /></span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Puis une fois toute l'eau passée sous forme de vapeur, je lisse refroidir pour récupérer un maximum de produit.</span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">J'obtiens un hydrolat un peu moins parfumé que les commerciaux, Pour sa conservation, par sécurité, j'ai quand même ajouté un peu d'EPP, comme conservateur, mais je ne suis pas sûre que ce soit nécessaire! </span></li> <li><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><img src="images/stories/eau%20de%20fruit%20de%20citron/SAM_5136.JPG" border="0" alt="SAM_5136" width="200" height="329" style="display: block; margin-left: auto; margin-right: auto;" /><br /></span></li> </ul> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"> </span></p> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><img src="images/stories/eau%20de%20fruit%20de%20citron/SAM_5139.JPG" border="0" alt="SAM_5139" width="186" height="337" style="float: left;" />Et voila ce que je récupère (avec du citron vert) : environ 200mL d'un liquide tout à fait transparent qui sent les plantes que j'ai mises. </span></p> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;">Bien sur ça ne vaut pas une distillation à l'alambic mais ce n’est pas si mal. C’est déjà mieux que les décoctions et macérât.</span></p> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><br /></span></p> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><strong>L'eau de fruit de citron (d'après AZ)</strong>: </span>est idéale pour éclaircir le teint et avoir une belle peau, astringente et purifiante, cette eau vitaminée et fruitée sera l'alliée incontournable des peaux à problèmes et viendra à bout de vos petits boutons disgracieux. C'est aussi un ingrédient de choix pour élaborer des dentifrices « maison ».</p> <p>Idéale aussi en cuisine pour ajouter une note citronnée à vos plats.</p> <p><span style="font-size: 10pt; font-family: 'Arial','sans-serif'; color: black;"><br /></span></p>Eau de fruit de Citron Vert (hydrolat maison)inheritopenopen486-revision2012-01-21 08:37:332012-01-21 07:37:33486http://www.alicepegie.com/wordpress/wordpress/?p=4870revision0
48912012-01-21 08:41:072012-01-21 07:41:07<p style="text-align: justify;"><img style="float: left;" src="images/stories/brioche%20grill%C3%A9e/SAM_4632.JPG" alt="SAM_4632" width="364" height="238" border="0" />Après mes longues vacances bien méritées me revoilà pour partager avec vous de nouvelles recettes en espérant ne pas subir de nouvelles embrouilles techniques.</p> <p style="text-align: justify;">Dans mon livre de recettes de boulange il y a une recette de biscotte que j’ai toujours eu envie de tester. Lorsqu’enfin je me suis décidée, j’ai vu au supermarché qu’une célèbre marque de biscotte avait sorti des brioches grillées. Alors j’ai troqué mes biscottes contre des pains briochées grillés dont voici la recette :<!--more--></p> <strong>Pour 10 petits pains env (soit 20 tranches grillées) :</strong> <ul> <li>500g de farine</li> <li>325g de crème entière liquide (ou de lait)</li> <li>5g de sucre</li> <li>40g de beurre</li> <li>1 sachet de levure boulangère</li> <li>1cc de sel</li> <li><strong>Préparation :</strong></li> <li><strong>En Machine à pain:</strong></li> </ul> <ul> <li>Mettez dans l’ordre tous les ingrédients dans la MAP. Lancez le programme “pâte”.</li> <li><img src="images/stories/brioche%20grill%C3%A9e/SAM_4987.JPG" alt="SAM_4987" width="364" height="273" border="0" /><img src="images/stories/brioche%20grill%C3%A9e/SAM_5021.JPG" alt="SAM_5021" width="359" height="272" border="0" /></li> </ul> <ul> <li><strong>A la main:</strong></li> </ul> <ul> <li>Versez la levure dans 3 cuillères à soupe de lait tiède et laissez reposer 15 minutes.Dans un saladier, mélanger la farine avec le sucre et le sel. Faites fondre le beurre et chauffer le lait puis laissez tiédir. Versez-les sur la farine et mélangez avec une cuillère en bois puis pétrissez à la main durant 5 à 10 minutes.</li> <li><img style="float: left;" src="images/stories/brioche%20grill%C3%A9e/SAM_4525.JPG" alt="SAM_4525" width="364" height="273" border="0" /><img src="images/stories/brioche%20grill%C3%A9e/SAM_4528.JPG" alt="SAM_4528" width="364" height="273" border="0" />Laissez reposer pendant 1h30 dans un endroit à l'abri des courants d'airs (couvrez d'un linge humide).</li> <li>Au bout de ce temps, ou lorsque le programme de la MAP est fini, façonnez vos pains</li> </ul> <img src="images/stories/brioche%20grill%C3%A9e/SAM_4529.JPG" alt="SAM_4529" width="351" height="264" border="0" /><img src="images/stories/brioche%20grill%C3%A9e/SAM_5028.JPG" alt="SAM_5028" width="351" height="262" border="0" /> <ul> <li>Laissez à nouveau lever 1h et faites-les cuire environ 25 minutes dans four préchauffé à 200° en surveillant la cuisson.</li> <li>une fois les pains sortis du four, laissez les complètement refroidir à l’air.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_5044.JPG" alt="SAM_5044" width="402" height="315" border="0" /></li> <li>Coupez les ensuite en tranches et étalez ces dernières sur plaque, mie vers le haut laissez reposer 1h.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_5080.JPG" alt="SAM_5080" width="353" height="317" border="0" /></li> <li>Préchauffez le four à 215° enfournez les tranches de pain pour 15mn les pains doivent être dorés et prendre une couleur brun foncée sur les bords.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_5079.JPG" alt="SAM_5079" width="433" height="223" border="0" /></li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_4613.JPG" alt="SAM_4613" width="426" height="446" border="0" /></li> <li>Sortez vos pains du four laissez sa temperature redescendre à 100° eteignez le, remettez vos pains grillés et laissez dedans jusqu’à complet refroidissement.</li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_5083.JPG" alt="SAM_5083" width="420" height="210" border="0" /></li> <li><img style="display: block; margin-left: auto; margin-right: auto;" src="images/stories/brioche%20grill%C3%A9e/SAM_4633.JPG" alt="SAM_4633" width="343" height="233" border="0" /></li> <li>Et régalez vous. Ils peuvent se conserver 10 jours environ.</li> <li><img src="images/stories/brioche%20grill%C3%A9e/SAM_4622.JPG" alt="SAM_4622" width="383" height="300" border="0" /><img src="images/stories/brioche%20grill%C3%A9e/SAM_4637.JPG" alt="SAM_4637" width="347" height="297" border="0" /></li> <li><img src="images/stories/brioche%20grill%C3%A9e/SAM_4645.JPG" alt="SAM_4645" width="463" height="314" border="0" /><img src="images/stories/brioche%20grill%C3%A9e/SAM_5093.JPG" alt="SAM_5093" width="269" height="314" border="0" /></li> </ul>inheritopenopen488-revision2012-01-21 08:41:072012-01-21 07:41:07488http://www.alicepegie.com/wordpress/wordpress/?p=4890revision0
49012011-06-28 08:41:462011-06-28 07:41:46suite à quelque soucis techniques et à une année riche en changements, Alicepégie se déconnecte pour quelques temps , retour prévu en septembre. Je vous souhaite de bonnes vacances et vous revient avec de nouvelles recettes. <p style="text-align: center;"><img src="images/stories/vacances.jpg" alt="vacances" width="400" height="608" border="0" /></p> Bonnes vacances à tousVacancespublishopenopenvacances2012-01-21 08:42:532012-01-21 07:42:530http://www.alicepegie.com/wordpress/wordpress/?p=4900post0
49112012-01-21 08:42:492012-01-21 07:42:49suite à quelque soucis techniques et à une année riche en changements, Alicepégie se déconnecte pour quelques temps , retour prévu en septembre. Je vous souhaite de bonnes vacances et vous revient avec de nouvelles recettes. <p style="text-align: center;"><img src="images/stories/vacances.jpg" alt="vacances" width="400" height="608" border="0" /></p> Bonnes vacances à tousinheritopenopen490-revision2012-01-21 08:42:492012-01-21 07:42:49490http://www.alicepegie.com/wordpress/wordpress/?p=4910revision0
265pâtepate0
2Liensliens0
3Catégoriescategories0
4Syndicationsyndication0
5Menu Horizontalmenu-horizontal0
6Ma Musiquemusique0
7Mes Cosmétiquescosmetiques0
8Ma Cuisinecuisine0
9Mon Camerounmon-cameroun0
10Diversdivers0
11Liens Favorisliens-favoris0
12Index Musiqueindex-musique0
13Africaineafricaine0
14Du Centre Suddu-centre-sud0
15Kmer en Vrackmer-en-vrac0
16Sawasawa0
17Religieusereligieuse0
18Worldworld0
19Index Cosmétiquesindex-cosmetiques0
20Pour le Corpspour-le-corps0
21Pour le Visagepour-le-visage0
22Pour les Cheveuxpour-les-cheveux0
23Pour Maman &amp; Bébépour-maman-bebe0
24Pour la Maisonpour-la-maison0
25Savonneriesavonnerie0
26Douce Naturedouce-nature0
27Remèdes Maisonremedes-maison0
28Index Cuisineindex-cuisine0
29Entréesentrees0
30Platsplats0
31Accompagnementsaccompagnements0
32Dessertsdesserts0
33Boulangeboulange0
34Boissonsboissons0
35Ingredients/Basesingredientsbases0
36Histoirehistoire0
37Peuplespeuple0
38Cultureculture0
39testtest0
40Viandeviande0
41Poissonpoisson0
42Saladesalade0
43Soupe/Potagesoupepotage0
44Féculents/Légumesfeculentslegumes0
45Apéritifsaperitifs0
46Grignotagegrignotage0
47Poissonpoisson-aperitifs0
48Saucessauces0
49Biscuitsbiscuits0
50Tartes/Pizzatartespizza0
51Viandeviande-aperitifs0
52Gateauxgateaux0
53Gateauxgateaux-plats0
54Poissonpoisson-plats0
55Viandeviande-plats0
56Féculents/Légumesfeculentslegumes-plats0
57Tartes/Pizzatartespizza-plats0
58Yaourts Maisonyaourts-maison0
59Beignetsbeignets0
60Confitures, Saucesconfitures-sauces0
61Crèpes, Gauffrescrepes-gauffres0
62Gateauxgateaux-desserts0
63Fruitsfruits0
64Glacésglaces0
65Féculentsfeculents0
66Tartes/Pizzatartespizza-desserts0
67bièrebiere0
68gingembregingembre0
69maisonmaison0
70l'hydrolathérapielhydrolatherapie0
71savonsavon0
72savonneriesavonnerie-20
73froidfroid0
74Bûchebuche0
75Noëlnoel0
76Ananasananas0
77génoisegenoise0
78rouléroule0
79phytothérapiephytotherapie0
80soinssoins0
81naturelsnaturels0
82plantesplantes0
83Basiliquebasilique0
84tropicaltropical0
85messebmesseb0
86afriqueafrique0
87kolakola0
88bittabitta0
89bitterbitter0
90colacola0
91peaupeau0
92noirenoire0
93solutionssolutions0
94problèmesproblemes0
95acnéacne0
96eczémaeczema0
97pigmentationpigmentation0
98camerouncameroun0
99histoirehistoire-20
100peuplespeuples0
101bantousbantous0
102bétibeti0
103epcepc0
104presbytériennepresbyterienne0
105égliseeglise0
106camerounaisecamerounaise0
107choralechorale0
108musiquemusique-20
109abakuyaabakuya0
110Alicepégiealicepegie0
111Contactcontact0
112Communautécommunaute0
113post-format-gallerypost-format-gallery0
114Bikutsibikutsi0
115anneanne0
116mariemarie0
117nzienzie0
118essoesso0
119essombaessomba0
120georgesgeorges0
121sebaseba0
122ladylady0
123ponceponce0
124têtestetes0
125brûléesbrulees0
126archangeloarchangelo0
127messimessi0
128martinmartin0
129monazangmonazang0
130merenguemerengue0
131testamenttestament0
132zangalewazangalewa0
133makossamakossa0
134sawasawa-20
135charlottecharlotte0
136dipandadipanda0
137erikoeriko0
138manulomanulo0
139benben0
140deccadecca0
141gracegrace0
142douleurdouleur0
143théotheo0
144blaiseblaise0
145kounkoukounkou0
146edeneden0
147africaafrica0
148daoudadaouda0
149rumbarumba0
150gâteaugateau0
151dessertdessert0
152moelleuxmoelleux0
153spéculosspeculos0
154saintesainte0
155alicealice0
156chocolatchocolat0
157blancblanc0
158poissonpoisson-20
159panépane0
160croquettescroquettes0
161sachertotrtesachertotrte0
162crèmecreme0
163coprscoprs0
164karitékarite0
165aloé véraaloe-vera0
166visagevisage0
167cacaocacao0
168roserose0
169musquéemusquee0
170centellacentella0
171busserolebusserole0
172éclaircissanteclaircissant0
173lissantlissant0
174ahaaha0
175acidesacides0
176fruitsfruits-20
177manguemangue0
178noirnoir0
179palmistepalmiste0
180cocococo0
181rooibosrooibos0
182shampooingshampooing0
183mielmiel0
184soinsoin0
185corpscorps0
186unifianteunifiante0
187enfantenfant0
188calendulacalendula0
189Pour les Mains, Pieds &amp; Bouchepour-les-mains-pieds-bouche0
190mainmain0
191amande douceamande-douce0
192après-shampooingapres-shampooing0
193barrebarre0
194solidesolide0
195btmsbtms0
196huilehuile0
197capillairecapillaire0
198cheveuxcheveux0
199sensibiliséssensibilises0
200lotionlotion0
201toniquetonique0
202matifiantematifiante0
203purifiantepurifiante0
204acnéiqueacneique0
205stickstick0
206lèvreslevres0
207framboiseframboise0
208nourrissantnourrissant0
209protecteurprotecteur0
210spayspay0
211haltehalte0
212antianti0
213pouxpoux0
214spaspa0
215selsel0
216mermer0
217mortemorte0
218argileargile0
219africainafricain0
220huileshuiles0
221essentiellesessentielles0
222reequilibrantreequilibrant0
223exfolianteexfoliante0
224manucuremanucure0
225expresseexpresse0
226mainsmains0
227onglesongles0
228shampoingshampoing0
229glossgloss0
230pour le Bainpour-le-bain0
231bainbain0
232palmepalme0
233pouletpoulet0
234yassayassa0
235citroncitron0
236sénégalsenegal0
237gambasgambas0
238Bouchéesbouchees0
239foiefoie0
240grasgras0
241plantainplantain0
242grillégrille0
243coqcoq0
244vinvin0
245matangomatango0
246anniversaireanniversaire0
247princesseprincesse0
248barbiebarbie0
249caramelcaramel0
250Confiseriesconfiseries0
251vapeurvapeur0
252poivrepoivre0
253penjapenja0
254beurrebeurre0
255meringuemeringue0
256suissesuisse0
257browniesbrownies0
258cookiescookies0
259brookiesbrookies0
260cuircuir0
261nettoyantnettoyant0
262régénérantregenerant0
263détachantdetachant0
264sidasida0
266sablésable0
267alepalep0
268confitureconfiture0
269figuefigue0
270pizzapizza0
271crevettescrevettes0
272madjangamadjanga0
273laitlait0
274noixnoix0
275tartetarte0
276briséebrisee0
277beignetbeignet0
278makalamakala0
279spéculoosspeculoos0
280Jeanjean0
281Michemiche0
282Kankankankan0
283fuméfume0
284potpot0
285afroafro0
286abimésabimes0
287defrisésdefrises0
288quichequiche0
289masquemasque0
290poussepousse0
291éclairseclairs0
292chouquettechouquette0
293chouxchoux0
294gressinsgressins0
295Tabutabu0
296Leyley0
297Mbiliambilia0
298Belbel0
299africaineafricaine-20
300mecombomecombo0
301maniocmanioc0
302trempétrempe0
303apaisanteapaisante0
304rizriz0
305maniguettemaniguette0
306bongobongo0
307bongolobongolo0
308vongolovongolo0
309Selssels0
310apaisantapaisant0
3111001000
312Equitableequitable0
313mortmort0
314Une Graineune-graine0
315thymthym0
316liquideliquide0
317Vaissellevaisselle0
318baguettebaguette0
319briochéebriochee0
320sucresucre0
321Eleveeleve0
322Internationainternationa0
323cultureculture-20
324Sardinessardines0
325douxdoux0
326bananebanane0
327painpain0
328épicesepices0
329cannellecannelle0
330anisanis0
331hydratanthydratant0
332Govinalgovinal0
333Ndzingandzinga0
334m'akutsimakutsi0
335bikusti betibikusti-beti0
336bouillibouilli0
337cuisinercuisiner0
338moussemousse0
339nuitnuit0
340régénéranteregenerante0
341mimosamimosa0
342chouquetteschouquettes0
343cuirscuirs0
344cheveluschevelus0
345irritésirrites0
346mbargambarga0
347soukoussoukous0
348essambaessamba0
349longlong0
350courriercourrier0
351papillotepapillote0
352ndombandomba0
353Micellairemicellaire0
354peauxpeaux0
355saladesalade-20
356manguesmangues0
357Geléegelee0
358hydratantehydratante0
359Secssecs0
360crépuscrepus0
361DONNYdonny0
362ELWODelwod0
363négronegro0
364saucesauce0
365feuillesfeuilles0
366fiangfiang0
367kpeumkpeum0
368baumebaume0
369crémeuxcremeux0
370sèchesseches0
371abîméesabimees0
372cassiacassia0
373alataalata0
374dartrierdartrier0
375ndawolondawolo0
376ngom ntanganngom-ntangan0
377hydrolathydrolat0
378vertvert0
379briochebrioche0
120
220
320
420
520
620
720
7060
24620
2480
17690
50800
50260
5070
47260
4770
50790
42260
4270
17680
42700
24780
24770
24760
24750
24740
26730
17670
26720
26690
26710
31260
3170
17340
31700
1780
26250
2670
50810
50820
50830
50840
50850
50860
50350
53790
5380
53350
53260
53800
53810
53820
53870
53880
53890
53900
571130
55910
55920
55930
55940
55950
55960
55970
57980
57360
57990
59980
5990
59370
591000
591010
5790
24320
63980
6390
63370
631000
631010
631020
65380
6560
65170
6590
651030
65980
651040
651050
651060
671050
671040
671060
671070
671030
67980
6760
67170
6790
67380
701080
70980
701020
701090
7430
7530
7630
7730
7830
7930
8030
8130
8230
8330
8430
8530
8630
8730
8830
8930
9030
9130
9230
9330
9430
9530
9630
9730
9830
9930
10030
10130
10230
10330
10430
10530
10630
10730
10830
10930
11030
11130
11230
11330
11430
11530
11630
11730
11830
11930
12030
12130
12230
3701130
1241100
124100
13550
13250
13350
13450
551130
5570
1511130
1511140
15160
151140
1511150
1511160
1511170
1511020
151980
1531130
15360
153140
1531140
1531020
153980
1531180
1531190
1551130
1551200
15560
155140
1551210
1551140
1551020
155980
1631130
1631220
16360
163140
1631230
1631140
1631020
163980
1651130
1651140
16560
165140
1651020
165980
1651240
1651250
16960
1691140
169140
1691020
169980
1691160
1691260
1711130
17160
171140
1711140
1711020
171980
1711270
1711280
1731130
1781130
1731140
1731020
173980
1731290
1751130
1751140
17560
175140
1751020
175980
1751300
1751310
17360
173140
1781140
17860
178140
1781020
178980
1781320
1811130
1821130
18260
182160
1821330
1821340
182980
1821350
1821360
1851130
1851330
18560
185160
1851340
185980
1851370
1871130
3511130
1871330
1871340
187980
1871380
1891130
1891330
18960
189160
1891340
189980
1891310
1911130
1911330
19160
191160
1911340
191980
1911390
1911400
1931130
1931330
19360
193160
1931340
193980
1931410
1931400
1951130
1951330
19560
195160
1951340
195980
1951420
1971130
1971430
19760
197130
1971440
1971450
1971460
1971470
197860
2011130
20160
201130
2011480
2011470
201860
2011490
2051130
2051500
20580
205320
205620
2051510
2051520
2051530
2051540
2051550
2051560
2051570
2071130
20780
207290
207410
207300
207540
2071580
2071590
2071600
2091130
2091500
20980
209320
209620
2091610
2091560
2091520
2121130
2121620
21270
212200
2121630
2121640
2121650
2161130
2161620
21670
216200
2161560
2161660
2161670
2161680
2161690
2161700
2161710
2161720
216910
216920
2361130
2361620
23670
236200
2361660
2361730
2361740
2361750
2361760
236910
236920
2361770
2381130
23870
238250
238710
2381780
238860
2381640
2381670
2381790
2401130
240710
24070
240250
2401640
2401800
2401810
2421130
24270
242220
242250
242710
2421820
2421640
2421830
2421800
2441130
2441620
24470
244200
2441840
2441850
2441560
2441640
2441670
2461130
2461620
24670
246200
2461850
2461860
2461740
2461710
2461830
2481130
2481620
24870
248200
248230
2481850
2481870
2481880
2481640
2481770
2501130
2501620
25070
2501890
2501900
2501560
2501670
2501910
2521130
25270
252220
2521920
2521930
2521940
2521640
2521950
2541130
2541960
25470
254220
2541840
2541970
2541980
2541990
2591130
259100
2621130
2622000
26270
262210
2622010
2622020
2622030
262910
2622040
2621660
2641130
2642050
26470
2641890
2642060
2642070
2642080
2642090
2671130
2672100
26770
267220
2671980
2671970
2672110
2672120
2672130
2701130
270710
27070
270250
2701640
2702140
2701800
2702150
2702160
2702170
2702180
2731130
273710
27370
273250
2731640
2731790
2731670
2731780
2732190
273860
2751130
275710
27570
275250
2751640
2751800
2751790
2751670
2752200
2752210
2752220
2771130
2771620
27770
2771890
2771840
2772230
2772240
2772250
2772260
2772270
2831130
28370
283220
283250
2832280
2832290
2831640
2831950
2831800
2851130
285710
28570
285250
2851770
2852310
2851640
2851800
2852320
2851960
2881130
288100
3121130
3181130
3182330
31880
318300
318550
3182340
3182350
3182360
3201130
3202370
32080
320290
320410
320760
320680
3221130
3222380
32280
322450
322510
3222390
3222400
3221770
3222410
3222420
3241130
3242430
32480
324300
324550
3242440
3242320
3242450
3242330
3261130
3261500
32680
326320
326620
3262460
3261560
3262470
3262480
3301130
3302490
33080
330320
3301560
330750
330690
3302500
3331130
3332390
33380
333290
333400
3332400
333690
3332510
3332520
3331570
3332530
3332440
3332320
3361130
33680
336320
336620
336350
3361620
3362540
3362550
3362560
3391130
3392570
33980
339320
339620
3392580
3392590
3411130
341710
34170
341240
3411840
3412600
3412610
3412620
3412630
3431130
3432570
34380
343320
343620
3431500
3431560
3461130
346100
3462640
18760
187160
35240
3731130
70140
37380
373350
3732650
3732660
3751130
375710
37570
375250
3752670
375690
3751800
3791130
3792680
37980
379600
3792690
379680
3821130
382100
3841130
3861130
3861020
38660
386140
3861140
3881130
3882700
38880
388300
388570
3882710
3882720
3901130
3901620
39070
3901890
3901900
3902730
3902740
3901800
3921130
3922750
39280
392320
392660
3922350
3922550
3922650
3922760
3941130
3941620
39470
394200
3941850
3942730
3941960
3941800
3971130
3972770
39780
397320
397590
3972780
3972790
3991130
3992800
39990
399380
3992810
3992820
4011130
4012330
40180
401300
401550
4012830
4012840
4031130
40370
403220
4031620
4031980
4032850
4032860
4032870
4051130
4052650
40580
405350
4052760
4052880
4052750
4071130
4072890
40770
407220
4071970
4071800
4072900
4072850
4101130
4102910
41080
410450
410520
410320
410620
4102920
4102650
4102930
4102940
4121130
4122950
41260
412130
4122960
4122970
4122980
4121080
4122990
4141130
4143000
41480
414310
414450
414460
4143010
4143020
4161130
4161620
41670
416200
416210
4162030
4163030
4161800
4163040
4181130
41880
418350
4183050
4183060
4183070
4183080
4201130
4203090
42070
4202300
4202310
4203100
4203110
4201800
4221130
4222650
42280
422320
422600
4222790
422690
4241130
424100
424980
4243120
4243130
4243140
4243050
4261130
4261830
42670
426260
426270
4263150
426690
4281130
4283160
42870
428240
4283170
428690
4301130
4303180
43080
430330
4303190
4303200
4321130
4322800
43290
432380
4322810
4322820
4323210
4323220
432980
4323230
4341130
4342700
43480
434300
434570
4343240
434680
445710
4453250
44570
445250
4453260
4471130
44780
447320
447620
4473270
4473280
4473290
4473300
4491130
4492730
44970
449200
4493310
4491640
4491850
4511130
4513320
45160
451140
4513330
4511190
4513340
4513350
4541130
4543010
45480
454310
4543360
4543370
4561130
4563380
45670
456210
4563390
4563400
4561680
4563410
4561660
4581130
4582650
45880
458350
4582930
4583420
4582910
4621130
462220
46270
4622540
4621970
4621980
4622860
4623430
4623440
4623450
4641130
4643460
46460
464140
4643470
4641140
4643480
4643490
4643500
4661130
466300
46680
466540
4661580
4663510
4663520
4681130
46870
468210
4682000
4683530
4683540
468940
468950
4701130
4703550
47080
470290
470410
470420
4702710
4703560
4721130
4723570
47270
472220
4723580
4721980
4723590
4722860
4722850
4723600
4722870
4741130
47480
474340
4761130
4763610
47660
476140
4763620
4763630
476980
4761140
4761020
4791130
4793640
47980
479300
479560
4793650
4793010
4793660
4793670
4811130
4813680
48170
481200
481210
481230
4813690
4812080
4813540
4813700
4813710
481960
4841130
4843720
48470
484260
4843730
4843740
4843750
4843760
4861130
4863770
48670
486260
486210
486270
486690
4862350
4863780
4881130
488330
48880
4883270
4883790
4882420
4901130
490100
22link_category07
33nav_menu049
44nav_menu01
55nav_menu04
66category027
77category046
88category037
99category07
1010category07
1111category00
1212category60
1313category63
1414category615
1515category60
1616category67
1717category62
1818category60
1919category70
2020category710
2121category76
2222category79
2323category72
2424category72
2525category711
2626category78
2727category72
2828category80
2929category84
3030category88
3131category82
3232category813
3333category82
3434category82
3535category87
3636category91
3737category92
3838category94
3939post_tag00
4242category291
7474post_tag01
4141category293
4848category450
4747category450
4646category451
4040category291
4545category83
4444category290
4343category290
4949category450
5050category450
5151category451
5252category451
5353category300
5454category302
5555category303
5656category301
5757category302
5858category320
5959category321
6060category322
6161category320
6262category329
6363category320
6464category320
6565category320
6666category321
6767post_tag01
6868post_tag04
6969post_tag09
7070post_tag02
7171post_tag011
7272post_tag01
7373post_tag01
7575post_tag02
7676post_tag02
7777post_tag01
7878post_tag01
7979post_tag02
8080post_tag02
8181post_tag02
8282post_tag02
8383post_tag01
8484post_tag01
8585post_tag01
8686post_tag05
8787post_tag01
8888post_tag01
8989post_tag01
9090post_tag01
9191post_tag04
9292post_tag03
9393post_tag01
9494post_tag02
9595post_tag02
9696post_tag02
9797post_tag01
9898post_tag026
9999post_tag01
100100post_tag02
101101post_tag02
102102post_tag014
103103post_tag02
104104post_tag02
105105post_tag02
106106post_tag02
107107post_tag01
108108post_tag02
109109post_tag01
110110post_tag01
111111category00
112112category00
113113post_format0106
114114post_tag013
115115post_tag01
116116post_tag02
117117post_tag01
118118post_tag01
119119post_tag02
120120post_tag01
121121post_tag01
122122post_tag01
123123post_tag01
124124post_tag01
125125post_tag01
126126post_tag01
127127post_tag01
128128post_tag01
129129post_tag01
130130post_tag01
131131post_tag02
132132post_tag01
133133post_tag07
134134post_tag07
135135post_tag01
136136post_tag01
137137post_tag01
138138post_tag01
139139post_tag01
140140post_tag02
141141post_tag01
142142post_tag01
143143post_tag01
144144post_tag01
145145post_tag01
146146post_tag01
147147post_tag02
148148post_tag01
149149post_tag01
150150post_tag04
151151post_tag01
152152post_tag02
153153post_tag01
154154post_tag01
155155post_tag01
156156post_tag08
157157post_tag02
158158post_tag02
159159post_tag01
160160post_tag01
161161post_tag01
162162post_tag013
163163post_tag01
164164post_tag013
165165post_tag01
166166post_tag04
167167post_tag06
168168post_tag02
169169post_tag01
170170post_tag01
171171post_tag02
172172post_tag01
173173post_tag01
174174post_tag02
175175post_tag01
176176post_tag01
177177post_tag04
178178post_tag02
179179post_tag03
180180post_tag012
181181post_tag01
182182post_tag01
183183post_tag03
184184post_tag04
185185post_tag05
186186post_tag01
187187post_tag01
188188post_tag01
189189category74
190190post_tag02
191191post_tag01
192192post_tag01
193193post_tag01
194194post_tag01
195195post_tag02
196196post_tag03
197197post_tag04
198198post_tag05
199199post_tag01
200200post_tag02
201201post_tag01
202202post_tag01
203203post_tag02
204204post_tag01
205205post_tag01
206206post_tag01
207207post_tag01
208208post_tag02
209209post_tag01
210210post_tag01
211211post_tag01
212212post_tag01
213213post_tag01
214214post_tag01
215215post_tag01
216216post_tag01
217217post_tag01
218218post_tag01
219219post_tag01
220220post_tag01
221221post_tag01
222222post_tag01
223223post_tag01
224224post_tag01
225225post_tag01
226226post_tag01
227227post_tag01
228228post_tag01
229229post_tag01
230230category71
231231post_tag02
232232post_tag03
233233post_tag03
234234post_tag01
235235post_tag03
236236post_tag01
237237post_tag01
238238post_tag01
239239post_tag02
240240post_tag02
241241post_tag01
242242post_tag02
243243post_tag01
244244post_tag02
245245post_tag01
246246post_tag01
247247post_tag01
248248post_tag01
249249post_tag01
250250category321
251251post_tag01
252252post_tag01
253253post_tag01
254254post_tag02
255255post_tag02
256256post_tag01
257257post_tag02
258258post_tag01
259259post_tag01
260260post_tag01
261261post_tag01
262262post_tag01
263263post_tag01
264264post_tag01
265265post_tag06
266266post_tag01
267267post_tag01
268268post_tag01
269269post_tag01
270270post_tag02
271271post_tag02
272272post_tag01
273273post_tag03
274274post_tag01
275275post_tag02
276276post_tag02
277277post_tag01
278278post_tag01
279279post_tag02
280280post_tag02
281281post_tag02
282282post_tag02
283283post_tag01
284284post_tag01
285285post_tag03
286286post_tag03
287287post_tag02
288288post_tag01
289289post_tag01
290290post_tag01
291291post_tag02
292292post_tag01
293293post_tag02
294294post_tag01
295295post_tag01
296296post_tag01
297297post_tag01
298298post_tag01
299299post_tag01
300300post_tag01
301301post_tag03
302302post_tag01
303303post_tag01
304304post_tag01
305305post_tag02
306306post_tag01
307307post_tag01
308308post_tag01
309309post_tag01
310310post_tag01
311311post_tag01
312312post_tag01
313313post_tag01
314314post_tag01
315315post_tag01
316316post_tag01
317317post_tag01
318318post_tag01
319319post_tag01
320320post_tag01
321321post_tag01
322322post_tag01
323323post_tag01
324324post_tag01
325325post_tag01
326326post_tag01
327327post_tag02
328328post_tag01
329329post_tag01
330330post_tag01
331331post_tag01
332332post_tag01
333333post_tag01
334334post_tag01
335335post_tag01
336336post_tag01
337337post_tag01
338338post_tag01
339339post_tag01
340340post_tag01
341341post_tag01
342342post_tag01
343343post_tag01
344344post_tag01
345345post_tag01
346346post_tag01
347347post_tag01
348348post_tag01
349349post_tag01
350350post_tag01
351351post_tag01
352352post_tag01
353353post_tag01
354354post_tag02
355355post_tag01
356356post_tag01
357357post_tag01
358358post_tag01
359359post_tag01
360360post_tag01
361361post_tag01
362362post_tag01
363363post_tag01
364364post_tag01
365365post_tag01
366366post_tag01
367367post_tag01
368368post_tag01
369369post_tag01
370370post_tag01
371371post_tag01
372372post_tag01
373373post_tag01
374374post_tag01
375375post_tag01
376376post_tag01
377377post_tag01
378378post_tag01
379379post_tag01
11first_name
21last_name
31nicknamealicepegie
41description
51rich_editingtrue
61comment_shortcutsfalse
71admin_colorfresh
81use_ssl0
91show_admin_bar_fronttrue
101wp_capabilitiesa:1:{s:13:"administrator";s:1:"1";}
111wp_user_level10
121dismissed_wp_pointerswp330_toolbar,wp330_media_uploader,wp330_saving_widgets
131show_welcome_panel1
141wp_user-settingsuploader=1&editor=tinymce&hidetb=1
151wp_user-settings-time1327066849
161wp_dashboard_quick_press_last_post_id3
171managenav-menuscolumnshiddena:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}
181metaboxhidden_nav-menusa:2:{i:0;s:8:"add-post";i:1;s:12:"add-post_tag";}
191nav_menu_recently_edited4
201closedpostboxes_nav-menusa:0:{}
211wysija_prefYToxOntzOjE4OiJ3eXNpamFfc3Vic2NyaWJlcnMiO2E6MTp7czo3OiJkZWZhdWx0IjthOjE6e3M6ODoibGltaXRfcHAiO3M6MzoiMTAwIjt9fX0=
241s2_authors
1alicepegie$P$BHqnH.xuPsDka1id9in2q9IIW.1bm0.alicepegiewebmaster@alicepegie.com2012-01-17 11:56:04mbpQ2M0QJnoZTHFKbEyp0alicepegie
1Un exemple et un guide
2news1
21
12
11Un exemple et un guide<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Un exemple et un guide</title><style type="text/css">.ReadMsgBody { width:100%; }.ExternalClass { width:100%; }img { outline:0 none; border:0 none; text-decoration:none; }a { outline:0 none; border:0 none; }tr.header td, tr.footer td { padding:0; }img.image.left { margin:0 15px 10px 0; }img.image.right { margin:0 0 10px 15px; }tr.header img.image.left {margin:0 15px 0 0;}tr.header img.image.right { margin:0 0 0 15px; }.align-left {text-align:left;}.align-center {text-align:center;}.align-right {text-align:right;}.body td .divider {border:0 none;border-top:1px dashed #BEAEA0;height:1px;display:block;margin:0;padding:0;}html, body {background-color: #BEAEA0;}tr.header td {background-color: #BEAEA0;}tr.header td .text {padding:10px;}.text, .text p {font-family: "Arial";font-size: 12px;color: #000000;line-height:1.4em;margin:0 0 5px 0;padding:0;}.text ol, .text ul {margin:15px 0 15px 0;}.text ul {list-style-position: inside;list-style-type: disc;}.text ol {list-style-position: inside;list-style-type: decimal;}.text ul li, .text ol li {padding:0 0 0 20px;font-size: 12px;}.text h1 {font-family: "Arial";font-size: 30px;color: #BEAEA0;text-shadow: none;line-height:1em;font-style:normal;font-weight:normal;margin:0 0 10px 0;padding:0;}.text h2 {font-family: "Arial";font-size: 28px;color: #BEAEA0;text-shadow: none;line-height:1em;font-style:normal;font-weight:normal;margin:0 0 10px 0;padding:0;}.text h3 {font-family: "Arial";font-size: 26px;color: #BEAEA0;text-shadow: none;line-height:1em;font-style:normal;font-weight:normal;margin:0 0 10px 0;padding:0;}.text a {font-family: "Arial";font-size: 14px;color: #A0583D;text-decoration: none;line-height:1.4em;}tr.footer td a {color: #A0583D;text-decoration: none;}tr.footer td, tr.footer td p {font-family: "Arial";font-size: 12px;color: #FAEEDD;}tr.footer td {background-color: #BEAEA0;}.body td {background-color: #FAEEDD;}</style></head><body bgcolor="#BEAEA0"><div style="background-color:#BEAEA0;text-align:center;width:100%;"><table align="center" width="600" border="0" cellpadding="0" cellspacing="0" style="margin:auto;color:#000000; text-align:left;"><tr><td width="600" valign="top" class="header" style="background-color:#BEAEA0; color:#000000;"><table width="600" border="0" cellpadding="0" cellspacing="0" style="margin:auto;color:#000000; text-align:left;"><tr class="header"></tr></table></td></tr><tr><td class="body"><table width="600" border="0" cellpadding="0" cellspacing="0" style="margin:auto;color:#000000; text-align:left;"><tr style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><td valign="top" width="580" style="border:0 none;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=17"><img src="/images/stories/BIERRE/1.JPG" height="400" width="323" align="left" alt="" / style="text-decoration: none;outline:0 none;border:0 none;border:0 none;margin-top:0;margin-right:15px;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;float:left;"></a><div style="border:0 none;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;"><h1 style="font-family:'Arial';font-size:30px;color: #BEAEA0 !important;border:0 none;font-weight:normal;line-height:1em;margin-top:0;margin-right:0;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >La Bière au Gingembre Maison</h1><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre.</p><h3 style="font-family:'Arial';font-size:26px;color: #BEAEA0 !important;border:0 none;font-weight:normal;line-height:1em;margin-top:0;margin-right:0;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" ><strong><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=17">Lire la suite.</a></strong></h3></div></td></tr><tr style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><td valign="top" width="580" style="border:0 none;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=24"><img src="/images/stories/buche%20ananas/1.JPG" height="146" width="323" align="left" alt="" / style="text-decoration: none;outline:0 none;border:0 none;border:0 none;margin-top:0;margin-right:15px;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;float:left;"></a><div style="border:0 none;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;"><h1 style="font-family:'Arial';font-size:30px;color: #BEAEA0 !important;border:0 none;font-weight:normal;line-height:1em;margin-top:0;margin-right:0;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >Bûche de Noël à l'Ananas</h1><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >J’ai commencé à m’exercer à faire des buches maison l’année dernière. Le résultat était plutôt concluant alors j’ai décidé de réitérer cette année avec cette buche légère et fruitée.</p><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" ><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=24">Lire la suite.</a></p></div></td></tr><tr style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><td valign="top" width="580" style="border:0 none;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=285"><img src="http://s1.e-monsite.com/2009/10/14/11/10502309savon-mango-jpg.jpg" height="235" width="323" align="left" alt="" / style="text-decoration: none;outline:0 none;border:0 none;border:0 none;margin-top:0;margin-right:15px;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;float:left;"></a><div style="border:0 none;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;"><h1 style="font-family:'Arial';font-size:30px;color: #BEAEA0 !important;border:0 none;font-weight:normal;line-height:1em;margin-top:0;margin-right:0;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >Mangue de bain Miam Miam!!</h1><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >La mangue est l'un des fruits que je préfère, et AZ a un extrait aromatique de mangue qui me donne envie de vider la bouteille dans ma bouche à chaque fois, toujours en préparation du cadeau d'anniv à venir, voici une petite mangue fouettée, pas très lisse, mais qui sent cro cro bon!</p><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" ><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=285">Lire la suite.</a></p></div></td></tr><tr style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><td style="border:0 none;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;" width="580"><div style="height:1px;border-top:1px dashed #BEAEA0;border-right:0 none;border-bottom:0 none;border-left:0 none;display:block;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;"> &nbsp; </div></td></tr><tr style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><td valign="top" width="580" style="border:0 none;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=277"><img src="http://s1.e-monsite.com/2009/10/12/09/42002663manucure-jpg.jpg" height="236" width="323" align="left" alt="" / style="text-decoration: none;outline:0 none;border:0 none;border:0 none;margin-top:0;margin-right:15px;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;float:left;"></a><div style="border:0 none;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;"><h1 style="font-family:'Arial';font-size:30px;color: #BEAEA0 !important;border:0 none;font-weight:normal;line-height:1em;margin-top:0;margin-right:0;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >Crème de soin Exfoliante Manucure expresse</h1><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >Pour des mains très souvent maltraitées, Voici une crème de <em>Soin pour M</em>anucure expresse et naturelle.</p><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" ><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=277">Lire la suite.</a></p></div></td></tr><tr style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><td valign="top" width="580" style="border:0 none;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=273"><img src="http://s1.e-monsite.com/2009/10/11/04/61888559snv32446-jpg.jpg" height="323" width="323" align="left" alt="" / style="text-decoration: none;outline:0 none;border:0 none;border:0 none;margin-top:0;margin-right:15px;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;float:left;"></a><div style="border:0 none;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;"><h1 style="font-family:'Arial';font-size:30px;color: #BEAEA0 !important;border:0 none;font-weight:normal;line-height:1em;margin-top:0;margin-right:0;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >Savon Noir Fouetté</h1><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >Eh bien! Mon premier essaie de savon fouetté semble réussi du coup j'ai eu envie de continuer, alors j'ai décidé de fouetter le Noir (lol) Et voici une nouvelle édition de mon si bon <a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="blog,mon-savon-noir-d-afrique,169993.html#suite">savon noi</a><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="index.php?option=com_content&amp;view=article&amp;id=206:mon-savon-noir-dafrique&amp;catid=59&amp;Itemid=82">r</a>, mon préféré, cette fois il ne sera pas exfolient.</p><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >coût pour 100g 2.90€</p><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >Temps de réalisation env 30mn après refroidissement des Beurres</p><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" ><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=273">Lire la suite.</a></p></div></td></tr><tr style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><td valign="top" width="580" style="border:0 none;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=267"><img src="http://s1.e-monsite.com/2009/10/10/07/67541600spray-preventif-pouxopt40-jpg.jpg" height="323" width="323" align="left" alt="" / style="text-decoration: none;outline:0 none;border:0 none;border:0 none;margin-top:0;margin-right:15px;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;float:left;"></a><div style="border:0 none;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;"><h1 style="font-family:'Arial';font-size:30px;color: #BEAEA0 !important;border:0 none;font-weight:normal;line-height:1em;margin-top:0;margin-right:0;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >Spray "Halte aux poux"</h1><p style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >Ca y est Bébé est entrée à l'école, et souvent quand j'annonce tout fièrement cette grande nouvelle à quelqu'un, ca fini souvent par aie aie attention aux poux. Et comme je suis d'un naturel préventif j'ai cherché une recette qui pouvrrait empêcher que cela n'arrive et j'ai trouvé <a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.aroma-zone.com/aroma/fichelavandevraieBIO.asp#spray_poux">cette recette d'AZ.</a></p><h2 style="font-family:'Arial';font-size:28px;color: #BEAEA0 !important;border:0 none;font-weight:normal;line-height:1em;margin-top:0;margin-right:0;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" ><strong><a style="font-family:'Arial';font-size:14px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=267">Lire la suite.</a></strong></h2></div></td></tr><tr style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><td style="border:0 none;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;" width="580"><div style="height:1px;border-top:1px dashed #BEAEA0;border-right:0 none;border-bottom:0 none;border-left:0 none;display:block;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;"> &nbsp; </div></td></tr><tr style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><td valign="top" align="center" width="580" style="border:0 none;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"><img style="text-decoration: none;outline:0 none;border:0 none;" src="http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/wysija-newsletters/img/default-newsletter/full/sample-newsletter-01_21.png" height="17" width="578" class="image center" alt="" /></td></tr><tr style="font-family:'Arial';font-size:12px;color: #000000;background-color: #FAEEDD;border:0 none;"></tr></table></td></tr><tr><td class="footer" width="600" border="0" valign="top" style="background-color:#BEAEA0; color:#FAEEDD;"><p style="font-family:'Arial';font-size:12px;color: #FAEEDD;background-color: #BEAEA0;border:0 none;text-align:center;margin:1em 0 1em 0;" ><a style="font-family:'Arial';font-size:12px;color: #A0583D;text-decoration: none;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?wysijap=subscriptions&wysija-page=1&controller=confirm&wysija-key=a05c74609e61e3a058bbd4a98bcd19fa&action=unsubscribe&demo=1&wysijap=subscriptions" target="_blank">Désabonnez-vous</a></p><p style="font-family:'Arial';font-size:12px;color: #FAEEDD;background-color: #BEAEA0;border:0 none;text-align:center;margin:1em 0 1em 0;" >www.alicepegie.com</p></td></tr></table></div></body></html>1326984369NULLwebmaster@alicepegie.comalicepegiewebmaster@alicepegie.comalicepegie21010000YToxOntzOjE0OiJxdWlja3NlbGVjdGlvbiI7YTo3OntzOjY6IndwLTMwMSI7YTo4OntzOjEwOiJpZGVudGlmaWVyIjtzOjY6IndwLTMwMSI7czo1OiJ3aWR0aCI7czozOiIyODEiO3M6NjoiaGVpZ2h0IjtzOjM6IjE5MCI7czozOiJ1cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMDcucG5nIjtzOjk6InRodW1iX3VybCI7czoxNDI6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMDctMTUweDE1MC5wbmciO3M6NzoiSVNfUEFJUiI7aTowO3M6NzoiSVNfTEFTVCI7YjowO3M6ODoiSVNfRklSU1QiO2I6MDt9czo2OiJ3cC0zMDIiO2E6ODp7czoxMDoiaWRlbnRpZmllciI7czo2OiJ3cC0zMDIiO3M6NToid2lkdGgiO3M6MzoiNDgyIjtzOjY6ImhlaWdodCI7czoyOiIzMCI7czozOiJ1cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMTAucG5nIjtzOjk6InRodW1iX3VybCI7czoxNDE6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMTAtMTUweDMwLnBuZyI7czo3OiJJU19QQUlSIjtpOjE7czo3OiJJU19MQVNUIjtiOjA7czo4OiJJU19GSVJTVCI7YjowO31zOjY6IndwLTMwMyI7YTo4OntzOjEwOiJpZGVudGlmaWVyIjtzOjY6IndwLTMwMyI7czo1OiJ3aWR0aCI7czoyOiI1MiI7czo2OiJoZWlnaHQiO3M6MjoiNDUiO3M6MzoidXJsIjtzOjEzOToiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzL3dwLWNvbnRlbnQvcGx1Z2lucy93eXNpamEtbmV3c2xldHRlcnMvaW1nL2RlZmF1bHQtbmV3c2xldHRlci9mdWxsL3NhbXBsZS1uZXdzbGV0dGVyLTAxXzE0LnBuZyI7czo5OiJ0aHVtYl91cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMTQucG5nIjtzOjc6IklTX1BBSVIiO2k6MDtzOjc6IklTX0xBU1QiO2I6MDtzOjg6IklTX0ZJUlNUIjtiOjA7fXM6Njoid3AtMzA0IjthOjg6e3M6MTA6ImlkZW50aWZpZXIiO3M6Njoid3AtMzA0IjtzOjU6IndpZHRoIjtzOjI6IjcwIjtzOjY6ImhlaWdodCI7czoyOiI0MiI7czozOiJ1cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMTYucG5nIjtzOjk6InRodW1iX3VybCI7czoxMzk6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvZnVsbC9zYW1wbGUtbmV3c2xldHRlci0wMV8xNi5wbmciO3M6NzoiSVNfUEFJUiI7aToxO3M6NzoiSVNfTEFTVCI7YjowO3M6ODoiSVNfRklSU1QiO2I6MDt9czo2OiJ3cC0zMDUiO2E6ODp7czoxMDoiaWRlbnRpZmllciI7czo2OiJ3cC0zMDUiO3M6NToid2lkdGgiO3M6MzoiNTQ2IjtzOjY6ImhlaWdodCI7czoyOiIxNiI7czozOiJ1cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMjEucG5nIjtzOjk6InRodW1iX3VybCI7czoxNDE6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMjEtMTUweDE2LnBuZyI7czo3OiJJU19QQUlSIjtpOjA7czo3OiJJU19MQVNUIjtiOjA7czo4OiJJU19GSVJTVCI7YjowO31zOjY6IndwLTMwNiI7YTo4OntzOjEwOiJpZGVudGlmaWVyIjtzOjY6IndwLTMwNiI7czo1OiJ3aWR0aCI7czozOiIzMjEiO3M6NjoiaGVpZ2h0IjtzOjM6IjIzNiI7czozOiJ1cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMjUucG5nIjtzOjk6InRodW1iX3VybCI7czoxNDI6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMjUtMTUweDE1MC5wbmciO3M6NzoiSVNfUEFJUiI7aToxO3M6NzoiSVNfTEFTVCI7YjowO3M6ODoiSVNfRklSU1QiO2I6MDt9czo2OiJ3cC0zMDciO2E6ODp7czoxMDoiaWRlbnRpZmllciI7czo2OiJ3cC0zMDciO3M6NToid2lkdGgiO3M6MzoiMTQwIjtzOjY6ImhlaWdodCI7czozOiIxNDAiO3M6MzoidXJsIjtzOjEzMjoiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzL3dwLWNvbnRlbnQvcGx1Z2lucy93eXNpamEtbmV3c2xldHRlcnMvaW1nL2RlZmF1bHQtbmV3c2xldHRlci9mdWxsL3doaXRlLWxhYmVsLWxvZ28ucG5nIjtzOjk6InRodW1iX3VybCI7czoxMzI6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvZnVsbC93aGl0ZS1sYWJlbC1sb2dvLnBuZyI7czo3OiJJU19QQUlSIjtpOjA7czo3OiJJU19MQVNUIjtiOjE7czo4OiJJU19GSVJTVCI7YjowO319fQ==YTozOntzOjc6InZlcnNpb24iO3M6NToiMS4wLjAiO3M6NjoiaGVhZGVyIjthOjU6e3M6NDoidGV4dCI7TjtzOjU6ImltYWdlIjthOjU6e3M6Mzoic3JjIjtzOjEwMzoiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzL3dwLWNvbnRlbnQvcGx1Z2lucy93eXNpamEtbmV3c2xldHRlcnMvaW1nL3RyYW5zcGFyZW50LnBuZyI7czo1OiJ3aWR0aCI7aTo2MDA7czo2OiJoZWlnaHQiO2k6ODY7czo5OiJhbGlnbm1lbnQiO3M6NjoiY2VudGVyIjtzOjY6InN0YXRpYyI7YjoxO31zOjk6ImFsaWdubWVudCI7czo2OiJjZW50ZXIiO3M6Njoic3RhdGljIjtiOjE7czo0OiJ0eXBlIjtzOjY6ImhlYWRlciI7fXM6NDoiYm9keSI7YTo5OntzOjc6ImJsb2NrLTEiO2E6Njp7czo0OiJ0ZXh0IjthOjE6e3M6NToidmFsdWUiO3M6NDg0OiJQR2d4UGt4aElFSnB3Nmh5WlNCaGRTQkhhVzVuWlcxaWNtVWdUV0ZwYzI5dVBDOW9NVDQ4Y0Q1V2IybGphU0IxYm1VZ2NtVmpaWFIwWlNCa1pTQmlhY09vY21VZ2JXRnBjMjl1TENCTVlTQnlaV05sZEhSbElIQmhjbVpoYVhSbElIQnZkWElnWTJWMWVDQnhkV2tnWVdsdFpTQnNaU0JuYVc1blpXMWljbVV1SUVWc2JHVWdZV05qYjIxd1lXZHVaWEpoSUhadmRISmxJRTFsYm5VZ1pHVWdac09xZEdWeklHVjBJR1pwYm1seVlTQms0b0NadzZsd1lYUmxjaUIyYjNNZ2FXNTJhWFREcVhNdUlFTW5aWE4wSUhWdUlHVERxV3hwWTJVZ1lYWmxZeUJrWlhNZ1ltbHpZM1ZwZEhNZ1lYVWdaMmx1WjJWdFluSmxMand2Y0Q0OGFETStQSE4wY205dVp6NDhZU0JvY21WbVBTSm9kSFJ3T2k4dmQzZDNMbUZzYVdObGNHVm5hV1V1WTI5dEwzZHZjbVJ3Y21WemN5OTNiM0prY0hKbGMzTXZQM0E5TVRjaVBreHBjbVVnYkdFZ2MzVnBkR1V1UEM5aFBqd3ZjM1J5YjI1blBqd3ZhRE0rIjt9czo1OiJpbWFnZSI7YTo2OntzOjM6InNyYyI7czoyODoiL2ltYWdlcy9zdG9yaWVzL0JJRVJSRS8xLkpQRyI7czo1OiJ3aWR0aCI7aTozMjM7czo2OiJoZWlnaHQiO2k6NDAwO3M6MzoidXJsIjtzOjUxOiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3MvP3A9MTciO3M6OToiYWxpZ25tZW50IjtzOjQ6ImxlZnQiO3M6Njoic3RhdGljIjtiOjA7fXM6OToiYWxpZ25tZW50IjtzOjQ6ImxlZnQiO3M6Njoic3RhdGljIjtiOjA7czo4OiJwb3NpdGlvbiI7czoxOiIxIjtzOjQ6InR5cGUiO3M6NzoiY29udGVudCI7fXM6NzoiYmxvY2stMiI7YTo2OntzOjQ6InRleHQiO2E6MTp7czo1OiJ2YWx1ZSI7czo0NDg6IlBHZ3hQa0xEdTJOb1pTQmtaU0JPYjhPcmJDRERvQ0JzSjBGdVlXNWhjend2YURFK1BIQStTdUtBbVdGcElHTnZiVzFsYm1QRHFTRERvQ0J0NG9DWlpYaGxjbU5sY2lERG9DQm1ZV2x5WlNCa1pYTWdZblZqYUdWeklHMWhhWE52YmlCczRvQ1pZVzV1dzZsbElHUmxjbTVwdzZoeVpTNGdUR1VnY3NPcGMzVnNkR0YwSU1PcGRHRnBkQ0J3YkhWMHc3UjBJR052Ym1Oc2RXRnVkQ0JoYkc5eWN5QnE0b0NaWVdrZ1pNT3BZMmxrdzZrZ1pHVWdjc09wYVhURHFYSmxjaUJqWlhSMFpTQmhibTdEcVdVZ1lYWmxZeUJqWlhSMFpTQmlkV05vWlNCc3c2bG53Nmh5WlNCbGRDQm1jblZwZE1PcFpTNDhMM0ErUEhBK1BHRWdhSEpsWmowaWFIUjBjRG92TDNkM2R5NWhiR2xqWlhCbFoybGxMbU52YlM5M2IzSmtjSEpsYzNNdmQyOXlaSEJ5WlhOekx6OXdQVEkwSWo1TWFYSmxJR3hoSUhOMWFYUmxMand2WVQ0OEwzQSsiO31zOjU6ImltYWdlIjthOjY6e3M6Mzoic3JjIjtzOjM2OiIvaW1hZ2VzL3N0b3JpZXMvYnVjaGUlMjBhbmFuYXMvMS5KUEciO3M6NToid2lkdGgiO2k6MzIzO3M6NjoiaGVpZ2h0IjtpOjE0NjtzOjM6InVybCI7czo1MToiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzLz9wPTI0IjtzOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO31zOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO3M6ODoicG9zaXRpb24iO3M6MToiMiI7czo0OiJ0eXBlIjtzOjc6ImNvbnRlbnQiO31zOjc6ImJsb2NrLTMiO2E6Njp7czo0OiJ0ZXh0IjthOjE6e3M6NToidmFsdWUiO3M6NTY0OiJQR2d4UGsxaGJtZDFaU0JrWlNCaVlXbHVJRTFwWVcwZ1RXbGhiU0VoUEM5b01UNDhjRDVNWVNCdFlXNW5kV1VnWlhOMElHd25kVzRnWkdWeklHWnlkV2wwY3lCeGRXVWdhbVVnY0hMRHFXYkRxSEpsTENCbGRDQkJXaUJoSUhWdUlHVjRkSEpoYVhRZ1lYSnZiV0YwYVhGMVpTQmtaU0J0WVc1bmRXVWdjWFZwSUcxbElHUnZibTVsSUdWdWRtbGxJR1JsSUhacFpHVnlJR3hoSUdKdmRYUmxhV3hzWlNCa1lXNXpJRzFoSUdKdmRXTm9aU0REb0NCamFHRnhkV1VnWm05cGN5d2dkRzkxYW05MWNuTWdaVzRnY0hMRHFYQmhjbUYwYVc5dUlHUjFJR05oWkdWaGRTQmtKMkZ1Ym1sMklNT2dJSFpsYm1seUxDQjJiMmxqYVNCMWJtVWdjR1YwYVhSbElHMWhibWQxWlNCbWIzVmxkSFREcVdVc0lIQmhjeUIwY3NPb2N5QnNhWE56WlN3Z2JXRnBjeUJ4ZFdrZ2MyVnVkQ0JqY204Z1kzSnZJR0p2YmlFOEwzQStQSEErUEdFZ2FISmxaajBpYUhSMGNEb3ZMM2QzZHk1aGJHbGpaWEJsWjJsbExtTnZiUzkzYjNKa2NISmxjM012ZDI5eVpIQnlaWE56THo5d1BUSTROU0krVEdseVpTQnNZU0J6ZFdsMFpTNDhMMkUrUEM5d1BnPT0iO31zOjU6ImltYWdlIjthOjY6e3M6Mzoic3JjIjtzOjY1OiJodHRwOi8vczEuZS1tb25zaXRlLmNvbS8yMDA5LzEwLzE0LzExLzEwNTAyMzA5c2F2b24tbWFuZ28tanBnLmpwZyI7czo1OiJ3aWR0aCI7aTozMjM7czo2OiJoZWlnaHQiO2k6MjM1O3M6MzoidXJsIjtzOjUyOiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3MvP3A9Mjg1IjtzOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO31zOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO3M6ODoicG9zaXRpb24iO3M6MToiMyI7czo0OiJ0eXBlIjtzOjc6ImNvbnRlbnQiO31zOjc6ImJsb2NrLTQiO2E6Mzp7czo3OiJkaXZpZGVyIjthOjM6e3M6Mzoic3JjIjtOO3M6NToid2lkdGgiO047czo2OiJoZWlnaHQiO047fXM6ODoicG9zaXRpb24iO3M6MToiNCI7czo0OiJ0eXBlIjtzOjc6ImRpdmlkZXIiO31zOjc6ImJsb2NrLTUiO2E6Njp7czo0OiJ0ZXh0IjthOjE6e3M6NToidmFsdWUiO3M6MzQ4OiJQR2d4UGtOeXc2aHRaU0JrWlNCemIybHVJRVY0Wm05c2FXRnVkR1VnVFdGdWRXTjFjbVVnWlhod2NtVnpjMlU4TDJneFBqeHdQbEJ2ZFhJZ1pHVnpJRzFoYVc1eklIUnl3Nmh6SUhOdmRYWmxiblFnYldGc2RISmhhWFREcVdWekxDQldiMmxqYVNCMWJtVWdZM0xEcUcxbElHUmxJRHhsYlQ1VGIybHVJSEJ2ZFhJZ1RUd3ZaVzArWVc1MVkzVnlaU0JsZUhCeVpYTnpaU0JsZENCdVlYUjFjbVZzYkdVdVBDOXdQanh3UGp4aElHaHlaV1k5SW1oMGRIQTZMeTkzZDNjdVlXeHBZMlZ3WldkcFpTNWpiMjB2ZDI5eVpIQnlaWE56TDNkdmNtUndjbVZ6Y3k4L2NEMHlOemNpUGt4cGNtVWdiR0VnYzNWcGRHVXVQQzloUGp3dmNEND0iO31zOjU6ImltYWdlIjthOjY6e3M6Mzoic3JjIjtzOjYyOiJodHRwOi8vczEuZS1tb25zaXRlLmNvbS8yMDA5LzEwLzEyLzA5LzQyMDAyNjYzbWFudWN1cmUtanBnLmpwZyI7czo1OiJ3aWR0aCI7aTozMjM7czo2OiJoZWlnaHQiO2k6MjM2O3M6MzoidXJsIjtzOjUyOiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3MvP3A9Mjc3IjtzOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO31zOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO3M6ODoicG9zaXRpb24iO3M6MToiNSI7czo0OiJ0eXBlIjtzOjc6ImNvbnRlbnQiO31zOjc6ImJsb2NrLTYiO2E6Njp7czo0OiJ0ZXh0IjthOjE6e3M6NToidmFsdWUiO3M6ODg0OiJQR2d4UGxOaGRtOXVJRTV2YVhJZ1JtOTFaWFIwdzZrOEwyZ3hQanh3UGtWb0lHSnBaVzRoSUUxdmJpQndjbVZ0YVdWeUlHVnpjMkZwWlNCa1pTQnpZWFp2YmlCbWIzVmxkSFREcVNCelpXMWliR1VnY3NPcGRYTnphU0JrZFNCamIzVndJR29uWVdrZ1pYVWdaVzUyYVdVZ1pHVWdZMjl1ZEdsdWRXVnlMQ0JoYkc5eWN5QnFKMkZwSUdURHFXTnBaTU9wSUdSbElHWnZkV1YwZEdWeUlHeGxJRTV2YVhJZ0tHeHZiQ2tnUlhRZ2RtOXBZMmtnZFc1bElHNXZkWFpsYkd4bElNT3BaR2wwYVc5dUlHUmxJRzF2YmlCemFTQmliMjRnUEdFZ2FISmxaajBpWW14dlp5eHRiMjR0YzJGMmIyNHRibTlwY2kxa0xXRm1jbWx4ZFdVc01UWTVPVGt6TG1oMGJXd2pjM1ZwZEdVaVBuTmhkbTl1SUc1dmFUd3ZZVDQ4WVNCb2NtVm1QU0pwYm1SbGVDNXdhSEEvYjNCMGFXOXVQV052YlY5amIyNTBaVzUwSm1GdGNEdDJhV1YzUFdGeWRHbGpiR1VtWVcxd08ybGtQVEl3TmpwdGIyNHRjMkYyYjI0dGJtOXBjaTFrWVdaeWFYRjFaU1poYlhBN1kyRjBhV1E5TlRrbVlXMXdPMGwwWlcxcFpEMDRNaUkrY2p3dllUNHNJRzF2YmlCd2NzT3Bac09wY3NPcExDQmpaWFIwWlNCbWIybHpJR2xzSUc1bElITmxjbUVnY0dGeklHVjRabTlzYVdWdWRDNDhMM0ErUEhBK1kyL0R1M1FnY0c5MWNpQXhNREJuSURJdU9URGlncXc4TDNBK1BIQStWR1Z0Y0hNZ1pHVWdjc09wWVd4cGMyRjBhVzl1SUdWdWRpQXpNRzF1SUdGd2NzT29jeUJ5WldaeWIybGthWE56WlcxbGJuUWdaR1Z6SUVKbGRYSnlaWE04TDNBK1BIQStQR0VnYUhKbFpqMGlhSFIwY0RvdkwzZDNkeTVoYkdsalpYQmxaMmxsTG1OdmJTOTNiM0prY0hKbGMzTXZkMjl5WkhCeVpYTnpMejl3UFRJM015SStUR2x5WlNCc1lTQnpkV2wwWlM0OEwyRStQQzl3UGc9PSI7fXM6NToiaW1hZ2UiO2E6Njp7czozOiJzcmMiO3M6NjI6Imh0dHA6Ly9zMS5lLW1vbnNpdGUuY29tLzIwMDkvMTAvMTEvMDQvNjE4ODg1NTlzbnYzMjQ0Ni1qcGcuanBnIjtzOjU6IndpZHRoIjtpOjMyMztzOjY6ImhlaWdodCI7aTozMjM7czozOiJ1cmwiO3M6NTI6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy8/cD0yNzMiO3M6OToiYWxpZ25tZW50IjtzOjQ6ImxlZnQiO3M6Njoic3RhdGljIjtiOjA7fXM6OToiYWxpZ25tZW50IjtzOjQ6ImxlZnQiO3M6Njoic3RhdGljIjtiOjA7czo4OiJwb3NpdGlvbiI7czoxOiI2IjtzOjQ6InR5cGUiO3M6NzoiY29udGVudCI7fXM6NzoiYmxvY2stNyI7YTo2OntzOjQ6InRleHQiO2E6MTp7czo1OiJ2YWx1ZSI7czo3MjA6IlBHZ3hQbE53Y21GNUlDSklZV3gwWlNCaGRYZ2djRzkxZUNJOEwyZ3hQanh3UGtOaElIa2daWE4wSUVMRHFXTERxU0JsYzNRZ1pXNTBjc09wWlNERG9DQnNKOE9wWTI5c1pTd2daWFFnYzI5MWRtVnVkQ0J4ZFdGdVpDQnFKMkZ1Ym05dVkyVWdkRzkxZENCbWFjT29jbVZ0Wlc1MElHTmxkSFJsSUdkeVlXNWtaU0J1YjNWMlpXeHNaU0REb0NCeGRXVnNjWFVuZFc0c0lHTmhJR1pwYm1rZ2MyOTFkbVZ1ZENCd1lYSWdZV2xsSUdGcFpTQmhkSFJsYm5ScGIyNGdZWFY0SUhCdmRYZ3VJRVYwSUdOdmJXMWxJR3BsSUhOMWFYTWdaQ2QxYmlCdVlYUjFjbVZzSUhCeXc2bDJaVzUwYVdZZ2FpZGhhU0JqYUdWeVkyakRxU0IxYm1VZ2NtVmpaWFIwWlNCeGRXa2djRzkxZG5KeVlXbDBJR1Z0Y01PcVkyaGxjaUJ4ZFdVZ1kyVnNZU0J1SjJGeWNtbDJaU0JsZENCcUoyRnBJSFJ5YjNWMnc2a2dQR0VnYUhKbFpqMGlhSFIwY0RvdkwzZDNkeTVoY205dFlTMTZiMjVsTG1OdmJTOWhjbTl0WVM5bWFXTm9aV3hoZG1GdVpHVjJjbUZwWlVKSlR5NWhjM0FqYzNCeVlYbGZjRzkxZUNJK1kyVjBkR1VnY21WalpYUjBaU0JrSjBGYUxqd3ZZVDQ4TDNBK1BHZ3lQanh6ZEhKdmJtYytQR0VnYUhKbFpqMGlhSFIwY0RvdkwzZDNkeTVoYkdsalpYQmxaMmxsTG1OdmJTOTNiM0prY0hKbGMzTXZkMjl5WkhCeVpYTnpMejl3UFRJMk55SStUR2x5WlNCc1lTQnpkV2wwWlM0OEwyRStQQzl6ZEhKdmJtYytQQzlvTWo0PSI7fXM6NToiaW1hZ2UiO2E6Njp7czozOiJzcmMiO3M6Nzk6Imh0dHA6Ly9zMS5lLW1vbnNpdGUuY29tLzIwMDkvMTAvMTAvMDcvNjc1NDE2MDBzcHJheS1wcmV2ZW50aWYtcG91eG9wdDQwLWpwZy5qcGciO3M6NToid2lkdGgiO2k6MzIzO3M6NjoiaGVpZ2h0IjtpOjMyMztzOjM6InVybCI7czo1MjoiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzLz9wPTI2NyI7czo5OiJhbGlnbm1lbnQiO3M6NDoibGVmdCI7czo2OiJzdGF0aWMiO2I6MDt9czo5OiJhbGlnbm1lbnQiO3M6NDoibGVmdCI7czo2OiJzdGF0aWMiO2I6MDtzOjg6InBvc2l0aW9uIjtzOjE6IjciO3M6NDoidHlwZSI7czo3OiJjb250ZW50Ijt9czo3OiJibG9jay04IjthOjM6e3M6NzoiZGl2aWRlciI7YTozOntzOjM6InNyYyI7TjtzOjU6IndpZHRoIjtOO3M6NjoiaGVpZ2h0IjtOO31zOjg6InBvc2l0aW9uIjtzOjE6IjgiO3M6NDoidHlwZSI7czo3OiJkaXZpZGVyIjt9czo3OiJibG9jay05IjthOjY6e3M6NDoidGV4dCI7TjtzOjU6ImltYWdlIjthOjU6e3M6Mzoic3JjIjtzOjEzOToiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzL3dwLWNvbnRlbnQvcGx1Z2lucy93eXNpamEtbmV3c2xldHRlcnMvaW1nL2RlZmF1bHQtbmV3c2xldHRlci9mdWxsL3NhbXBsZS1uZXdzbGV0dGVyLTAxXzIxLnBuZyI7czo1OiJ3aWR0aCI7aTo1Nzg7czo2OiJoZWlnaHQiO2k6MTc7czo5OiJhbGlnbm1lbnQiO3M6NjoiY2VudGVyIjtzOjY6InN0YXRpYyI7YjowO31zOjk6ImFsaWdubWVudCI7czo2OiJjZW50ZXIiO3M6Njoic3RhdGljIjtiOjA7czo4OiJwb3NpdGlvbiI7czoxOiI5IjtzOjQ6InR5cGUiO3M6NzoiY29udGVudCI7fX19YTo5OntzOjQ6ImJvZHkiO2E6NDp7czo1OiJjb2xvciI7czo2OiIwMDAwMDAiO3M6NjoiZmFtaWx5IjtzOjU6IkFyaWFsIjtzOjQ6InNpemUiO3M6MjoiMTIiO3M6MTA6ImJhY2tncm91bmQiO3M6NjoiRkFFRUREIjt9czoyOiJoMSI7YTozOntzOjU6ImNvbG9yIjtzOjY6IkJFQUVBMCI7czo2OiJmYW1pbHkiO3M6NToiQXJpYWwiO3M6NDoic2l6ZSI7czoyOiIzMCI7fXM6MjoiaDIiO2E6Mzp7czo1OiJjb2xvciI7czo2OiJCRUFFQTAiO3M6NjoiZmFtaWx5IjtzOjU6IkFyaWFsIjtzOjQ6InNpemUiO3M6MjoiMjgiO31zOjI6ImgzIjthOjM6e3M6NToiY29sb3IiO3M6NjoiQkVBRUEwIjtzOjY6ImZhbWlseSI7czo1OiJBcmlhbCI7czo0OiJzaXplIjtzOjI6IjI2Ijt9czoxOiJhIjthOjQ6e3M6NToiY29sb3IiO3M6NjoiQTA1ODNEIjtzOjY6ImZhbWlseSI7czo1OiJBcmlhbCI7czo0OiJzaXplIjtzOjI6IjE0IjtzOjk6InVuZGVybGluZSI7aTotMTt9czo2OiJmb290ZXIiO2E6NDp7czo1OiJjb2xvciI7czo2OiJGQUVFREQiO3M6NjoiZmFtaWx5IjtzOjU6IkFyaWFsIjtzOjQ6InNpemUiO3M6MjoiMTIiO3M6MTA6ImJhY2tncm91bmQiO3M6NjoiQkVBRUEwIjt9czo2OiJoZWFkZXIiO2E6MTp7czoxMDoiYmFja2dyb3VuZCI7czo2OiJCRUFFQTAiO31zOjQ6Imh0bWwiO2E6MTp7czoxMDoiYmFja2dyb3VuZCI7czo2OiJCRUFFQTAiO31zOjc6ImRpdmlkZXIiO2E6MTp7czo2OiJib3JkZXIiO2E6Mzp7czo1OiJjb2xvciI7czo2OiJCRUFFQTAiO3M6NToic3R5bGUiO3M6NjoiZGFzaGVkIjtzOjQ6InNpemUiO3M6MToiMSI7fX19
20Confirmez votre abonnement à Une Graine de ManiguetteBonjour! Félicitations! Vous êtes bientôt abonné à notre site. Vous devez activer votre abonnement en cliquant sur le lien ci-dessous: [activation_link]Je confirme mon abonnement.[/activation_link] Merci, L'équipe! 1326984370NULLwebmaster@alicepegie.comUne Graine de Maniguettewebmaster@alicepegie.comUne Graine de Maniguette10000000NULLNULL
32news1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>news1</title><style type="text/css">.ReadMsgBody { width:100%; }.ExternalClass { width:100%; }img { outline:0 none; border:0 none; text-decoration:none; }a { outline:0 none; border:0 none; }tr.header td, tr.footer td { padding:0; }img.image.left { margin:0 15px 10px 0; }img.image.right { margin:0 0 10px 15px; }tr.header img.image.left {margin:0 15px 0 0;}tr.header img.image.right { margin:0 0 0 15px; }.align-left {text-align:left;}.align-center {text-align:center;}.align-right {text-align:right;}.body td .divider {border:0 none;border-top:1px solid #B3B3B3;height:1px;display:block;margin:0;padding:0;}html, body {background-color: #E04C65;}tr.header td {background-color: #FFFFFF;}tr.header td .text {padding:10px;}.text, .text p {font-family: "Arial";font-size: 12px;color: #7A7A7A;line-height:1.4em;margin:0 0 5px 0;padding:0;}.text ol, .text ul {margin:15px 0 15px 0;}.text ul {list-style-position: inside;list-style-type: disc;}.text ol {list-style-position: inside;list-style-type: decimal;}.text ul li, .text ol li {padding:0 0 0 20px;font-size: 12px;}.text h1 {font-family: "Arial";font-size: 30px;color: #C8DE31;text-shadow: none;line-height:1em;font-style:normal;font-weight:normal;margin:0 0 10px 0;padding:0;}.text h2 {font-family: "Arial";font-size: 28px;color: #C8DE31;text-shadow: none;line-height:1em;font-style:normal;font-weight:normal;margin:0 0 10px 0;padding:0;}.text h3 {font-family: "Arial";font-size: 24px;color: #C8DE31;text-shadow: none;line-height:1em;font-style:normal;font-weight:normal;margin:0 0 10px 0;padding:0;}.text a {font-family: "Arial";font-size: 12px;color: #C8DE31;text-decoration: underline;line-height:1.4em;}tr.footer td a {color: #C8DE31;text-decoration: underline;}tr.footer td, tr.footer td p {font-family: "Verdana";font-size: 12px;color: #FFFFFF;}tr.footer td {background-color: #E04C65;}.body td {background-color: #FFFFFF;}</style></head><body bgcolor="#E04C65"><div style="background-color:#E04C65;text-align:center;width:100%;"><table align="center" width="600" border="0" cellpadding="0" cellspacing="0" style="margin:auto;color:#7A7A7A; text-align:left;"><tr><td width="600" valign="top" class="header" style="background-color:#FFFFFF; color:#7A7A7A;"><table width="600" border="0" cellpadding="0" cellspacing="0" style="margin:auto;color:#7A7A7A; text-align:left;"><tr class="header"><td style="border:0 none;padding:0 0 0 0;" valign="top" align="center" width="600"><img src="http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/wysija/templates/header-yummi.png" height="305" width="600" class="image center" alt="" /></td></tr><tr class="header"></tr></table></td></tr><tr><td class="body"><table width="600" border="0" cellpadding="0" cellspacing="0" style="margin:auto;color:#7A7A7A; text-align:left;"><tr style="font-family:'Arial';font-size:12px;color: #7A7A7A;background-color: #FFFFFF;border:0 none;"><td valign="top" align="center" width="580" style="border:0 none;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;font-family:'Arial';font-size:12px;color: #7A7A7A;background-color: #FFFFFF;border:0 none;"><a style="font-family:'Arial';font-size:12px;color: #C8DE31;text-decoration: underline;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=17"><img style="text-decoration: none;outline:0 none;border:0 none;" src="/images/stories/BIERRE/1.JPG" height="400" width="323" class="image center" alt="" /></a></td></tr><tr style="font-family:'Arial';font-size:12px;color: #7A7A7A;background-color: #FFFFFF;border:0 none;"><td valign="top" width="580" style="border:0 none;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;font-family:'Arial';font-size:12px;color: #7A7A7A;background-color: #FFFFFF;border:0 none;"><div style="border:0 none;margin-top:0;margin-right:0;margin-bottom:0;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;"><h1 style="font-family:'Arial';font-size:30px;color: #C8DE31 !important;border:0 none;font-weight:normal;line-height:1em;margin-top:0;margin-right:0;margin-bottom:10px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >La Bière au Gingembre Maison</h1><p style="font-family:'Arial';font-size:12px;color: #7A7A7A;background-color: #FFFFFF;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" >Voici une recette de bière maison, La recette parfaite pour ceux qui aime le gingembre. Elle accompagnera votre Menu de fêtes et finira d’épater vos invités. C'est un délice avec des biscuits au gingembre.</p><p style="font-family:'Arial';font-size:12px;color: #7A7A7A;background-color: #FFFFFF;border:0 none;margin-top:0;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" ><a style="font-family:'Arial';font-size:12px;color: #C8DE31;text-decoration: underline;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?p=17">Lire la suite.</a></p></div></td></tr></table></td></tr><tr><td class="footer" width="600" border="0" valign="top" style="background-color:#E04C65; color:#FFFFFF;"><p style="font-family:'Verdana';font-size:12px;color: #FFFFFF;background-color: #E04C65;border:0 none;text-align:center;margin:1em 0 1em 0;" ><a style="font-family:'Arial';font-size:12px;color: #C8DE31;text-decoration: underline;border:0 none;" href="http://www.alicepegie.com/wordpress/wordpress/?wysijap=subscriptions&wysija-page=1&controller=confirm&wysija-key=a05c74609e61e3a058bbd4a98bcd19fa&action=unsubscribe&demo=1&wysijap=subscriptions" target="_blank">Désabonnez-vous</a></p><p style="font-family:'Verdana';font-size:12px;color: #FFFFFF;background-color: #E04C65;border:0 none;text-align:center;margin:1em 0 1em 0;" >www.alicepegie.com</p></td></tr></table></div></body></html>1326986871NULLwebmaster@alicepegie.comUne Graine de Maniguettewebmaster@alicepegie.comAlicePégie01000000YToxOntzOjE0OiJxdWlja3NlbGVjdGlvbiI7YToxOntzOjY6IndwLTMwMSI7YTo1OntzOjEwOiJpZGVudGlmaWVyIjtzOjY6IndwLTMwMSI7czo1OiJ3aWR0aCI7aToyODE7czo2OiJoZWlnaHQiO2k6MTkwO3M6MzoidXJsIjtzOjEzOToiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzL3dwLWNvbnRlbnQvcGx1Z2lucy93eXNpamEtbmV3c2xldHRlcnMvaW1nL2RlZmF1bHQtbmV3c2xldHRlci9mdWxsL3NhbXBsZS1uZXdzbGV0dGVyLTAxXzA3LnBuZyI7czo5OiJ0aHVtYl91cmwiO3M6MTQyOiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL3NhbXBsZS1uZXdzbGV0dGVyLTAxXzA3LTE1MHgxNTAucG5nIjt9fX0=YTozOntzOjc6InZlcnNpb24iO3M6NToiMS4wLjAiO3M6NjoiaGVhZGVyIjthOjU6e3M6NDoidGV4dCI7TjtzOjU6ImltYWdlIjthOjU6e3M6Mzoic3JjIjtzOjk4OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC91cGxvYWRzL3d5c2lqYS90ZW1wbGF0ZXMvaGVhZGVyLXl1bW1pLnBuZyI7czo1OiJ3aWR0aCI7aTo2MDA7czo2OiJoZWlnaHQiO2k6MzA1O3M6OToiYWxpZ25tZW50IjtzOjY6ImNlbnRlciI7czo2OiJzdGF0aWMiO2I6MDt9czo5OiJhbGlnbm1lbnQiO3M6NjoiY2VudGVyIjtzOjY6InN0YXRpYyI7YjowO3M6NDoidHlwZSI7czo2OiJoZWFkZXIiO31zOjQ6ImJvZHkiO2E6MTp7czo3OiJibG9jay0xIjthOjY6e3M6NDoidGV4dCI7YToxOntzOjU6InZhbHVlIjtzOjQ2MDoiUEdneFBreGhJRUpwdzZoeVpTQmhkU0JIYVc1blpXMWljbVVnVFdGcGMyOXVQQzlvTVQ0OGNENVdiMmxqYVNCMWJtVWdjbVZqWlhSMFpTQmtaU0JpYWNPb2NtVWdiV0ZwYzI5dUxDQk1ZU0J5WldObGRIUmxJSEJoY21aaGFYUmxJSEJ2ZFhJZ1kyVjFlQ0J4ZFdrZ1lXbHRaU0JzWlNCbmFXNW5aVzFpY21VdUlFVnNiR1VnWVdOamIyMXdZV2R1WlhKaElIWnZkSEpsSUUxbGJuVWdaR1VnWnNPcWRHVnpJR1YwSUdacGJtbHlZU0JrNG9DWnc2bHdZWFJsY2lCMmIzTWdhVzUyYVhURHFYTXVJRU1uWlhOMElIVnVJR1REcVd4cFkyVWdZWFpsWXlCa1pYTWdZbWx6WTNWcGRITWdZWFVnWjJsdVoyVnRZbkpsTGp3dmNENDhjRDQ4WVNCb2NtVm1QU0pvZEhSd09pOHZkM2QzTG1Gc2FXTmxjR1ZuYVdVdVkyOXRMM2R2Y21Sd2NtVnpjeTkzYjNKa2NISmxjM012UDNBOU1UY2lQa3hwY21VZ2JHRWdjM1ZwZEdVdVBDOWhQand2Y0Q0PSI7fXM6NToiaW1hZ2UiO2E6Njp7czozOiJzcmMiO3M6Mjg6Ii9pbWFnZXMvc3Rvcmllcy9CSUVSUkUvMS5KUEciO3M6NToid2lkdGgiO2k6MzIzO3M6NjoiaGVpZ2h0IjtpOjQwMDtzOjM6InVybCI7czo1MToiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzLz9wPTE3IjtzOjk6ImFsaWdubWVudCI7czo2OiJjZW50ZXIiO3M6Njoic3RhdGljIjtiOjA7fXM6OToiYWxpZ25tZW50IjtzOjY6ImNlbnRlciI7czo2OiJzdGF0aWMiO2I6MDtzOjg6InBvc2l0aW9uIjtzOjE6IjEiO3M6NDoidHlwZSI7czo3OiJjb250ZW50Ijt9fX0=YTo5OntzOjQ6ImJvZHkiO2E6NDp7czo1OiJjb2xvciI7czo2OiI3QTdBN0EiO3M6NjoiZmFtaWx5IjtzOjU6IkFyaWFsIjtzOjQ6InNpemUiO3M6MjoiMTIiO3M6MTA6ImJhY2tncm91bmQiO3M6NjoiRkZGRkZGIjt9czoyOiJoMSI7YTozOntzOjU6ImNvbG9yIjtzOjY6IkM4REUzMSI7czo2OiJmYW1pbHkiO3M6NToiQXJpYWwiO3M6NDoic2l6ZSI7czoyOiIzMCI7fXM6MjoiaDIiO2E6Mzp7czo1OiJjb2xvciI7czo2OiJDOERFMzEiO3M6NjoiZmFtaWx5IjtzOjU6IkFyaWFsIjtzOjQ6InNpemUiO3M6MjoiMjgiO31zOjI6ImgzIjthOjM6e3M6NToiY29sb3IiO3M6NjoiQzhERTMxIjtzOjY6ImZhbWlseSI7czo1OiJBcmlhbCI7czo0OiJzaXplIjtzOjI6IjI0Ijt9czoxOiJhIjthOjQ6e3M6NToiY29sb3IiO3M6NjoiQzhERTMxIjtzOjY6ImZhbWlseSI7czo1OiJBcmlhbCI7czo0OiJzaXplIjtzOjI6IjEyIjtzOjk6InVuZGVybGluZSI7czoxOiIxIjt9czo2OiJmb290ZXIiO2E6NDp7czo1OiJjb2xvciI7czo2OiJGRkZGRkYiO3M6NjoiZmFtaWx5IjtzOjc6IlZlcmRhbmEiO3M6NDoic2l6ZSI7czoyOiIxMiI7czoxMDoiYmFja2dyb3VuZCI7czo2OiJFMDRDNjUiO31zOjY6ImhlYWRlciI7YToxOntzOjEwOiJiYWNrZ3JvdW5kIjtzOjY6IkZGRkZGRiI7fXM6NDoiaHRtbCI7YToxOntzOjEwOiJiYWNrZ3JvdW5kIjtzOjY6IkUwNEM2NSI7fXM6NzoiZGl2aWRlciI7YToxOntzOjY6ImJvcmRlciI7YTozOntzOjU6ImNvbG9yIjtzOjY6IkIzQjNCMyI7czo1OiJzdHlsZSI7czo1OiJzb2xpZCI7czo0OiJzaXplIjtzOjE6IjEiO319fQ==
11132698625413269862681
1Ma première listeCette liste a été créée automatiquement lors de l'installation.00113269843690
2Synchronisé WordPressLa liste "WordPress créée automatiquement suite à l'importation.00013269843690
11webmaster@alicepegie.comalicepegiea05c74609e61e3a058bbd4a98bcd19fa13269843691
20wescelest@yahoo.frserg célestin13269857631
30didouche80@yahoo.frnadia13269857631
40kang2ju@gmail.comCornélie13269857631
50onadjaserge@gmail.comonadja13269857631
60atangofoot@gmail.comAtango13269857631
70lola-_-porchet@live.comlola porchet13269857631
80kaoizaki33@hotmail.frcuestas13269857631
90mespoussieresdetoiles@gmail.comBel13269857631
100poussieresdetoiles@gmail.comEva13269857631
110cardoakarasisp@yahoo.frcardinal13269857631
120erik.meunier@orange.frERIK13269857631
130liliane20022003@yahoo.frLili13269857631
140princess97.2@live.frprincess13269857631
150steciep@gmail.comStess13269857631
160tabehenri@yahoo.frtabekam kuate henri joel13269857631
170noumbeatrice@yahoo.frgwladys13269857631
180mhkenmogne@yahoo.frmaggie13269857631
190akstar53@yahoo.comcookey13269857631
200faratheo@yahoo.frTheophile Awana13269857631
210l.cuisinedetheorine@yahoo.frESSIANE13269857631
220melaindora@yahoo.frdoramel13269857631
230melainedora@yahoo.frMbakob13269857631
240lorenza.david@wanadoo.frlorenza13269857631
250lkogaing@yahoo.frKOGAING DJOKO Huguette Laure13269857631
260mks@hotmail.frmimi13269857631
270iboudec1969@yahoo.fribrahima Faye13269857631
280fouda_eloundou@yahoo.frfouda13269857631
290steffymegnedou@yahoo.frsteffy13269857631
300foudaabega@yahoo.frFOUDA13269857631
310guy.ngono@yahoo.frNGONO NTONGA GUY13269857631
320webmaster1@alicepegie.cominfomaniak13269857631
330eboundaneericfranois@yahoo.frEboundane Eric François13269857631
340william.tedom@yahoo.frwilliam13269857631
350crouzetnathalie@free.frnath.13269857631
360selvigej@gmail.comJulie13269857631
370hafedh_001@yahoo.frhafedh13269857631
380fnjinkwe@yahoo.comfracine13269857631
390lilianbitini@yahoo.frMargaret KONUYI13269857631
400hnyakangako@yahoo.co.ukhortense13269857631
410henriettebiloa@yahoo.frhenriette13269857631
420esmeralchoun@live.frstaybaby13269857631
430nadettematena@yahoo.frmatena13269857631
440carobrl@msn.comcaroline13269857631
450jeanonguen@yahoo.fronguené13269857631
460aichadk@live.fraicha13269857631
470konanvincy@yahoo.frvincent konan13269857631
480bahipoline@yahoo.frsabinepatience13269857631
490mandoua@yahoo.frmandou13269857631
500mjmyrthil@hotmail.comMARIE13269857631
510farah.luccin@gmail.comFarah13269857631
520ngahorty@yahoo.frla douce zang13269857631
530myda1988@yahoo.fraudrey yomgne13269857631
540marceau.36@hotmail.frmarboeur13269857631
550urbainyebe@yahoo.fryebe eyegue J urbain13269857631
560masskokola@yahoo.frASSAMOI13269857631
570n.sewa@yahoo.frmichel13269857631
580raissamegane@yahoo.frraissa13269857631
590marijoyce971@hotmail.commary13269857631
600floremoniqueewenza@yahoo.frflore monique13269857631
610fidakif@yahoo.frakif13269857631
620lemageorges84@yahoo.frGeorges13269857631
630aneth723@hotmail.comBelobo Beyala13269857631
640tochiemarthe@yahoo.frsimopat13269857631
650christiandedi@yahoo.frndedi ewane christian13269857631
660k_gilliane@yahoo.frgille13269857631
670maria.tidoudou@hotmail.frmarie13269857631
680assalova5@yahoo.frassana13269857631
690batelaurel@ymail.comlaurel13269857631
700mbaidetin@yahoo.frnorbert13269857631
710charlys089@yahoo.frcharlys13269857631
720viaud.michel@gmail.comviaud13269857631
730kmetycy@yahoo.frkouame maimounan13269857631
740k1frigril@hotmail.frle molaire13269857631
750meyieyvette@yahoo.fryvette13269857631
760gilokio@yahoo.frgisèle13269857631
770.jeanbaptiste.atangana@yahoo.frfrJean-Baptiste Otto Faustin ATANGANA13269857631
780jeanbaptiste.ataangana@yahoo.frJean-Baptiste Otto Faustin ATANGANA13269857631
790jeanbaptiste.atangana@yahoo.frJean-Baptiste Otto Faustin ATANGANA13269857631
800janyloveji@yahoo.frMBOUROU MJ13269857631
810josuetinwa@yahoo.frJoshua Tinwa13269857631
820thodorendenghandengha@yahoo.frNdengha Ndengha Théodore13269857631
830benoitbaptiste5@hotmail.combenoit13269857631
840benoitbaptiste5@hotmail.comoobenoit13269857631
850mbandjoun@yahoo.frmbandjoun13269857631
860ririq41@aol.comregerat13269857631
870thrseeyango@yahoo.frThérèse EYANGO13269857631
880doguiller@laposte.netguiller fany13269857631
890fb816948@skynet.beLECROMBS13269857631
900nickitankou@yahoo.frnicaise13269857631
910youmbijakarta@yahoo.frRosine13269857631
920btissoh@yahoo.frtissoh boniface13269857631
930christelle_ngadi@yahoo.frchristelle ngadi13269857631
940jjpigha@yahoo.frgaëlle13269857631
950ynviviane@gmail.comManou13269857631
960sylviesado@yahoo.frsylvie13269857631
970supernf@gmail.comJuan Ndong13269857631
980biroungnina@yahoo.frBiroung Nina13269857631
990takoubory@yahoo.frtakou13269857631
1000pop0033@gmail.compop003313269857631
1010tity1920@hotmail.comfatima13269857631
1020ycarecarlos@yahoo.frcarlos13269859061
1030fabanne@hotmail.comnjom13269859061
1040gloriantondele@yahoo.frgloria13269859061
1050foudasony@yahoo.frnnomo sonia13269859061
1060christian.delgobe@yahoo.frDelgobe13269859061
1070florelleceliak@yahoo.frKpotin célia13269859061
1080limoges516@orange.frbilogue13269859061
1090bsiaka1@yahoo.frBamba siaka13269859061
1100gillesm007@yahoo.frgillesm00713269859061
1110charadjepit@yahoo.fradjeme charles pascal13269859061
1120andrianasolofalinirina@yahoo.frANDRIANASOLO Falinirina13269859061
1130ja.cazaubon@cegetel.netCazaubon13269859061
1140bmessanga@yahoo.frMESSANGA13269859061
1150casimirmbop@yahoo.frmbopda13269859061
1160reginegina@yahoo.fredjo13269859061
1170edjokapasa@yahoo.fredjo13269859061
1180dpossi@yahoo.frpossi13269859061
1190vaillantlegrand@yahoo.frMOUDOUROU NKOUNGOUROU Vaillant13269859061
1200emilie_malembe@yahoo.frmalembe mbo13269859061
1210fcbeine@yahoo.frfatimetou13269859061
1220ambomofaustin@yahoo.frAmbomo Faustin13269859061
1230francinenana2000@yahoo.frclaude francine13269859061
1240lysisca.blog@gmail.comLysisca13269859061
1250lololia24@gmail.comsoleya13269859061
1260soleilsourire90@hotmail.comsoleilsourire13269859061
1270florettedemano@yahoo.frflorettedemano13269859061
1280athenisbis@voila.frisabelle13269859061
1290kamahamurielle@yahoo.frkamaha13269859061
1300ginettekenny@globetrotter.netGinette13269859061
1310yossaraoul@yahoo.frRAOUL13269859061
1320christianmbiafeu@yahoo.frchristian13269859061
1330justinezogang@hotmail.comJustine13269859061
1340bekuy@hotmail.frjose ramon bekuy makina mibuy13269859061
1350h-kaced2009@live.frhakima13269859061
1360ngohmotto@yahoo.frNgoh Motto Ebénézer13269859061
1370cajmanfo@yahoo.frChristiane Manfo13269859061
1380ouertatanich@yahoo.frchaouki13269859061
1390francinitakouambo@yahoo.frm vanessa13269859061
1400math.y@hotmail.frmartha13269859061
1410delorisd2005@yahoo.frdeloris13269859061
1420jkthelondon@yahoo.frkandala jose13269859061
1430patrick.deffo@yahoo.frpatdef13269859061
1440liorie79@hotmail.comliorica13269859061
1450tsogo_nicole@hotmail.comnicole13269859061
1460mendjamarthe@yahoo.frmendja marthe13269859061
1470tchoukio2@hotmail.frtovar13269859061
1480t.daniel16@voila.frDaniel13269859061
1490mamjosette@gmail.frguillon13269859061
1500mel_javelot@yahoo.frmel13269859061
1510cafeolait33@free.frcafeolait3313269859061
1520jeannoatiokeng@yahoo.frAtiokeng paul13269859061
1530mounsande@yahoo.frMOUNSANDE13269859061
1540daoudboubakar@yahoo.frDaoud Boubakar13269859061
1550knourima@yahoo.frMariama13269859061
1560oumati86@yahoo.frkaltouma13269859061
1570hocanspaulin@yahoo.frPaulin13269859061
1580luemba.celestin@gmail.comCelestin13269859061
1590eyingaeric@yahoo.frakono eyinga eric13269859061
1600gskyconstantin@yahoo.frgnagne13269859061
1610orlane.stewenson@orange.frorlane13269859061
1620theresefon@bluewin.chFontolliet thérèse13269859061
1630mmiss86@hotmail.frMMISS13269859061
1640sandraestival@orange.frsandra13269859061
1650claire.onana@yahoo.frClaire Yona13269859061
1660jpmfouda@yahoo.frowona13269859061
1670abma06@yahoo.frndengue13269859061
1680marie@yahoo.frmarie13269859061
1690alain.borisse@yahoo.frAlain borisse13269859061
1700tsapigracien@yahoo.frGraciano13269859061
1710kadidjasanogo@live.frkadidja sanogo13269859061
1720the-nice-nana@hotmail.froumaima13269859061
1730audelara@yahoo.fraude-lara13269859061
1740noumou_charlie@yahoo.frNoumou charlie13269859061
1750florentinemafo@yahoo.frflorentine13269859061
1760floendjilo@yahoo.frFlorette13269859061
1770andre.urbain@skynet.beurbain13269859061
1780calistchogna@yahoo.frcaliso13269859061
1790atanganaky@yahoo.fratangana tsimi jacqueline13269859061
1800noutenay@yahoo.frdoumbia13269859061
1810mhurault@orange.frhurault13269859061
1820fabyrolin@yahoo.frfaby13269859061
1830roza-z@hotmail.comROZA ZERRAF13269859061
1840adamousafiou@yahoo.fradamou13269859061
1850lekoubou_leon@yahoo.frleon hugues13269859061
1860soazic.g@hotmail.frsoaz13269859061
1870kbasilin@yahoo.frbasilin13269859061
1880amour000x@yahoo.demarie13269859061
1890charlesborromeeeyebe@ymail.comeyebe charles13269859061
1900yvonne.brazard@yahoo.frbrazard yvonne13269859061
1910oliandre2003@yahoo.comandree mbezele13269859061
1920sweetornelia@hotmail.comornelia13269859061
1930spip123@yahoo.frDetournay13269859061
1940nngotom@yahoo.frCharlotte ABADOMA13269859061
1950adjaavi2006@yahoo.comAdja13269859061
1960karen.esthetique@gmail.comkaren13269859061
1970alaintebeni@yahoo.fralain patrice13269859061
1980tonyfree01@yahoo.frantoine13269859061
1990amighazi@yahoo.frEL GHAZI amina13269859061
2000titounne61@hotmail.comloulou13269859061
2010rinelclorel@yahoo.fratangana13269859061
2020adrien@example.comAdrien13269859261
2030john@example.comJohn13269859261
2040karineb1980@hotmail.frKarineB13269859261
2050moulareceline@hotmail.comCéline13269859261
2060popion@hotmail.frpopion13269859261
2070guillemette33@msn.comguillemette13269859261
2080clarissegnokam@yahoo.frclarisse13269859261
2090nnkede@yahoo.itNkede13269859261
2100ebangmbassi@yahoo.frEbang Mbassi13269859261
2110ezabot@yahoo.frDams13269859261
2120magicalbbgun@gmail.comclubpenguincheat13269859261
2130jo.h.n.c.ser@gmail.comTyncnuapy13269859261
2140sallyec@gmail.comjefflily13269859261
2150yougangfrieda@yahoo.frfrieda13269859261
2160sabpullicino@gmail.comFéeSabBio13269859261
2170vlumbroso@sfr.frViviane13269859261
2180candidaturegentiane@gmail.comchrisdeparis13269859261
2190nakkazipauline@yahoo.frMfona13269859261
2200stella-36@hotmail.frstella13269859261
221020@scottsdaleazwindshieldrepair.comInolargereobe13269859261
2220leacanelle@sfr.frnathalie13269859261
2230ndjofangdora@yahoo.frndjiotcho13269859261
2240caspat4@gmail.compatricia13269859261
2250isabaraujo@sapo.ptisabel13269859261
2260yan.tamalet@menugourmet.comYan13269859261
2270abellemoussavou@yahoo.frmoussavou isabelle13269859261
2280joelle045@hotmail.comdaliane13269859261
2290johnmovuli@yahoo.frjohn movuli kieweme13269859261
2300goussopoulos@gmail.comeva13269859261
2310leilaazri@yahoo.frleila13269859261
2320yannicknawezi1@yahoo.fryannick13269859261
2330minettemajoli@yahoo.frminette13269859261
2340bebylydvine@ymail.comlydvine13269859261
2350jekaprince@yahoo.frKana Charles Jésus13269859261
2360melvicedione@yahoo.comMelvice13269859261
2370kans5719@free.frKans13269859261
2380theo.cc@wanadoo.frdumont13269859261
2390hadilaye@gmail.comabdoulaye13269859261
2400emanejeandaniel@hotmail.fremane jean daniel13269859261
2410mdongmo@yahoo.frdongmo micheline13269859261
2420salvadorenor_05@yahoo.frsalvador13269859261
2430aliasba@gmail.combak13269859261
2440mdaniellecarine@yahoo.frmakamwe13269859261
2450deubeda.mariefrance@neuf.frmf13269859261
2460kingvirgile@hotmail.comVirgile Momo13269859261
2470lagrace5@yahoo.frDANG COLETTE13269859261
2480nofear972000@yahoo.frAbdelaziz13269859261
2490magnang2007@yahoo.frDupont13269859261
2500levitakarlha@yahoo.frSIATOU13269859261
2510seanchristopher5@yahoo.frsean kris13269859261
2520mbilaura@yahoo.frlaura13269859261
2530didiouatr@gmail.comdidier ouattara13269859261
2540zeon.guen@yahoo.frze onguene13269859261
2550donaldsonys@yahoo.frMano13269859261
2560nkr@voila.frNKOMBA13269859261
2570rush_mk@hotmail.frmacoway13269859261
2580zinzindohous@yahoo.frzinzindohoué salomon13269859261
2590valou.36@live.frvalou13269859261
2600jafogoum@gmail.comFOGOUM JustinAimé13269859261
2610partivertdc@gmail.comParti vert pour la Démovratie au Cameroun13269859261
2620rajabesbes1@yahoo.frbesbes raja13269859261
2630sevnanga@yahoo.frnanga13269859261
2640miaichami@yahoo.frMimi13269859261
2650johnstarks@gawab.comasypesasiavok13269859261
2660grospico@yahoo.caChantale13269859261
2670aubierge_s@yahoo.frAubiluxeDINGOM13269859261
2680mchristy74@gmail.comMengue Nelly13269859261
2690bimualaeme@yahoo.frEmé13269859261
2700h-sara@live.frmohamed13269859261
2710babetoune318@yahoo.frcannella13269859261
2720liliole@yahoo.frliliole13269859261
2730beyoncedivas@yahoo.frblede13269859261
2740tchoukio2@hotmail.comtovar13269859261
2750Tchouio2@hotmail.comtovar13269859261
2760d.khadiawa@hotmail.frkadi13269859261
2770marynyemb@yahoo.frngo nyemb marie jeanine13269859261
2780abeibytanwa1@hotmail.comkatherine13269859261
2790msoniarc@hotmail.frsonia13269859261
2800lokitok@yahoo.delokito13269859261
2810fleurderhum972@hotmail.comdela13269859261
2820bipakila@yahoo.frBIPAKILA Jean Noel13269859261
2830nadine.postic@gmail.compostic13269859261
2840kremkoua@yahoo.frkreman13269859261
2850marialitran@yahoo.comelekhtre13269859261
2860aubinal2001@yahoo.fraubino13269859261
2870taroum_5@hotmail.comtaroum13269859261
2880kpricemick@yahoo.frMICKALA13269859261
2890fleche.brune@hotmail.commiomi7213269859261
1Prénomfirstname00Prénom
2Nomlastname00Nom de famille
2113269843690
110100
110000
19900
19800
19700
19600
19500
19400
19300
19200
19100
19000
18900
18800
18700
18600
18500
18400
18300
18200
18100
18000
17900
17800
17700
17600
17500
17400
17300
17200
17100
17000
16900
16800
16700
16600
16500
16400
16300
16200
16100
16000
15900
15800
15700
15600
15500
15400
15300
15200
15100
15000
14900
14800
14700
14600
14500
14400
14300
14200
14100
14000
13900
13800
13700
13600
13500
13400
13300
13200
13100
13000
12900
12800
12700
12600
12500
12400
12300
12200
12100
12000
11900
11800
11700
11600
11500
11400
11300
11200
11100
11000
1900
1800
1700
1600
1500
1400
1300
1200
120100
120000
119900
119800
119700
119600
119500
119400
119300
119200
119100
119000
118900
118800
118700
118600
118500
118400
118300
118200
118100
118000
117900
117800
117700
117600
117500
117400
117300
117200
117100
117000
116900
116800
116700
116600
116500
116400
116300
116200
116100
116000
115900
115800
115700
115600
115500
115400
115300
115200
115100
115000
114900
114800
114700
114600
114500
114400
114300
114200
114100
114000
113900
113800
113700
113600
113500
113400
113300
113200
113100
113000
112900
112800
112700
112600
112500
112400
112300
112200
112100
112000
111900
111800
111700
111600
111500
111400
111300
111200
111100
111000
110900
110800
110700
110600
110500
110400
110300
110200
128900
128800
128700
128600
128500
128400
128300
128200
128100
128000
127900
127800
127700
127600
127500
127400
127300
127200
127100
127000
126900
126800
126700
126600
126500
126400
126300
126200
126100
126000
125900
125800
125700
125600
125500
125400
125300
125200
125100
125000
124900
124800
124700
124600
124500
124400
124300
124200
124100
124000
123900
123800
123700
123600
123500
123400
123300
123200
123100
123000
122900
122800
122700
122600
122500
122400
122300
122200
122100
122000
121900
121800
121700
121600
121500
121400
121300
121200
121100
121000
120900
120800
120700
120600
120500
120400
120300
120200
1100