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';
2
2
akismet_history
a: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";}
3
2
akismet_as_submitted
a: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";}
4
2
akismet_history
a: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";}
5
2
_wp_trash_meta_status
1
6
2
_wp_trash_meta_time
1326888383
8
3
akismet_history
a: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:"";}
9
3
akismet_as_submitted
a: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";}
10
3
akismet_history
a: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";}
11
3
akismet_history
a: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";}
12
3
_wp_trash_meta_status
1
13
3
_wp_trash_meta_time
1327067162
15
4
akismet_history
a: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:"";}
16
4
akismet_as_submitted
a: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";}
2
17
alicepegie
webmaster@alicepegie.com
81.93.17.182
2012-01-18 11:50:03
2012-01-18 10:50:03
fjf
0
trash
Mozilla/5.0 (Windows NT 6.1; rv:8.0.1) Gecko/20100101 Firefox/8.0.1
0
1
3
354
Abonnez-Vous!!! | Une Graine de Maniguette
http://www.alicepegie.com/wordpress/wordpress/?p=288
93.88.240.208
2012-01-20 01:23:38
2012-01-20 00:23:38
[...] Newsletter [...]
0
trash
The Incutio XML-RPC PHP Library -- WordPress/3.3.1
pingback
0
0
4
53
chair rail
anime4lovrrr@gmail.com
http://chairrail.net/
38.106.29.28
2012-01-20 15:34:43
2012-01-20 14:34:43
Thanks!
0
spam
Mozilla/5.0 (X11; U; Linux i686; it-IT; rv:1.9.0.2) Gecko/2008092313 Ubuntu/9.25 (jaunty) Firefox/3.8
0
0
1
http://codex.wordpress.org/
Documentation
Y
1
0
0000-00-00 00:00:00
2
http://wordpress.org/news/
WordPress Blog
Y
1
0
0000-00-00 00:00:00
http://wordpress.org/news/feed/
3
http://wordpress.org/extend/ideas/
Suggest Ideas
Y
1
0
0000-00-00 00:00:00
4
http://wordpress.org/support/
Support Forum
Y
1
0
0000-00-00 00:00:00
5
http://wordpress.org/extend/plugins/
Plugins
Y
1
0
0000-00-00 00:00:00
6
http://wordpress.org/extend/themes/
Themes
Y
1
0
0000-00-00 00:00:00
7
http://planet.wordpress.org/
WordPress Planet
Y
1
0
0000-00-00 00:00:00
1258
0
_site_transient_timeout_theme_roots
1327150550
yes
1259
0
_site_transient_theme_roots
a:3:{s:16:"maniguettepress2";s:7:"/themes";s:12:"twentyeleven";s:7:"/themes";s:9:"twentyten";s:7:"/themes";}
yes
3
0
siteurl
http://www.alicepegie.com/wordpress/wordpress
yes
4
0
blogname
Une Graine de Maniguette
yes
5
0
blogdescription
Cuisine & Cosmétiques Exotiques
yes
6
0
users_can_register
1
yes
7
0
admin_email
webmaster@alicepegie.com
yes
9
0
use_balanceTags
1
yes
11
0
require_name_email
1
yes
12
0
comments_notify
1
yes
13
0
posts_per_rss
10
yes
14
0
rss_use_excerpt
1
yes
15
0
mailserver_url
mail.example.com
yes
16
0
mailserver_login
login@example.com
yes
17
0
mailserver_pass
password
yes
18
0
mailserver_port
110
yes
19
0
default_category
10
yes
20
0
default_comment_status
open
yes
21
0
default_ping_status
open
yes
22
0
default_pingback_flag
1
yes
23
0
default_post_edit_rows
20
yes
24
0
posts_per_page
10
yes
25
0
date_format
d/m/Y
yes
27
0
links_updated_date_format
j F Y, G \h i \m\i\n
yes
28
0
links_recently_updated_prepend
<em>
yes
29
0
links_recently_updated_append
</em>
yes
30
0
links_recently_updated_time
120
yes
31
0
comment_moderation
yes
32
0
moderation_notify
1
yes
33
0
permalink_structure
yes
34
0
gzipcompression
0
yes
36
0
blog_charset
UTF-8
yes
38
0
active_plugins
a: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
39
0
home
http://www.alicepegie.com/wordpress/wordpress
yes
41
0
ping_sites
http://rpc.pingomatic.com/
yes
43
0
comment_max_links
2
yes
45
0
default_email_category
1
yes
46
0
recently_edited
a: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
47
0
template
maniguettepress2
yes
48
0
stylesheet
maniguettepress2
yes
49
0
comment_whitelist
1
yes
51
0
comment_registration
yes
53
0
html_type
text/html
yes
55
0
default_role
subscriber
yes
56
0
db_version
19470
yes
57
0
uploads_use_yearmonth_folders
1
yes
60
0
default_link_category
2
yes
61
0
show_on_front
posts
yes
66
0
thumbnail_size_w
150
yes
67
0
thumbnail_size_h
150
yes
68
0
thumbnail_crop
1
yes
69
0
medium_size_w
300
yes
70
0
medium_size_h
300
yes
71
0
avatar_default
wavatar
yes
74
0
large_size_w
1024
yes
75
0
large_size_h
1024
yes
76
0
image_default_link_type
yes
77
0
image_default_size
yes
78
0
image_default_align
yes
79
0
close_comments_for_old_posts
yes
80
0
close_comments_days_old
14
yes
81
0
thread_comments
1
yes
82
0
thread_comments_depth
5
yes
84
0
comments_per_page
50
yes
85
0
default_comments_page
newest
yes
86
0
comment_order
desc
yes
87
0
sticky_posts
a:0:{}
yes
88
0
widget_categories
a:1:{s:12:"_multiwidget";i:1;}
yes
89
0
widget_text
a: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
90
0
widget_rss
a:0:{}
yes
92
0
embed_autourls
1
yes
94
0
embed_size_h
600
yes
95
0
page_for_posts
0
yes
97
0
default_post_format
gallery
yes
98
0
initial_db_version
19470
yes
99
0
wp_user_roles
a: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
100
0
widget_search
a: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
101
0
widget_recent-posts
a:1:{s:12:"_multiwidget";i:1;}
yes
102
0
widget_recent-comments
a:1:{s:12:"_multiwidget";i:1;}
yes
103
0
widget_archives
a:1:{s:12:"_multiwidget";i:1;}
yes
104
0
widget_meta
a:1:{s:12:"_multiwidget";i:1;}
yes
105
0
sidebars_widgets
a: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
159
0
_transient_random_seed
91a6e6eba1cc5cf2dde76979eac53027
yes
106
0
cron
a: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
108
0
_site_transient_update_core
O: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
1142
0
akismet_spam_count
1
yes
1268
0
_transient_doing_cron
1327149932
yes
111
0
_site_transient_timeout_browser_43f563bf057dd1165aa558218d4e670d
1327406254
yes
112
0
_site_transient_browser_43f563bf057dd1165aa558218d4e670d
a: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
113
0
dashboard_widget_options
a:4:{s:25:"dashboard_recent_comments";a:1:{s:5:"items";i:5;}s:24:"dashboard_incoming_links";a:5:{s:4:"home";s: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
1173
0
_transient_timeout_feed_mod_2fb9572e3d6a42f680e36370936a57ae
1327164145
no
1174
0
_transient_feed_mod_2fb9572e3d6a42f680e36370936a57ae
1327120945
no
1175
0
_transient_timeout_dash_4077549d03da2e451c8b5f002294ff51
1327164145
no
1176
0
_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'ajouter le contenu d'un widget n'importe où dans une page ou dans un article WordPress. […]'>GeekPress : Afficher un widget sur une page</a> <span class="rss-date">20/01/2012</span><div class='rssSummary'>Cette astuce permet d'ajouter le contenu d'un widget n'importe où dans une page ou dans un article WordPress. […]</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'une mise à jour d'un site WordPress : "Indisponibilité temporaire pour cause de maintenance. Veuillez revenir dans un instant." […]'>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'une mise à jour d'un site WordPress : "Indisponibilité temporaire pour cause de maintenance. Veuillez revenir dans un instant." […]</div></li></ul></div>
no
1177
0
_transient_timeout_dash_aa95765b5cc111c56d5993d476b1c2f0
1327164145
no
1178
0
_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'ajouter le contenu d'un widget n'importe où dans une page ou dans un article WordPress. […]'>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'une mise à jour d'un site WordPress : "Indisponibilité temporaire pour cause de maintenance. Veuillez revenir dans un instant." […]'>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&amp;utm_medium=rss&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 […]'>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 "ThemeF […]'>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 […]'>WordPress Channel : WP-Shopified, une solution e-commerce pour WordPress</a></li></ul></div>
no
131
0
can_compress_scripts
1
yes
1135
0
WT_ReadMoreRightHere_PluginOptions
a: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
1168
0
_transient_timeout_feed_mod_253de389bad96c5309a80d6ac32e94d0
1327164145
no
1169
0
_transient_feed_mod_253de389bad96c5309a80d6ac32e94d0
1327120945
no
1170
0
_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f
1327164145
no
1171
0
_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’affichera ici. Ce moteur n’a pas encore trouvé de lien entrant… Ce n’est pas grave, on n’est pas pressé.</p>
no
1172
0
_transient_feed_2fb9572e3d6a42f680e36370936a57ae
a: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&utm_medium=rss&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&utm_medium=rss&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’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.</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’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’ai pris pour exemple l’ajout d’une taille d’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;">(</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">(</span> <span style="color: #0000ff;">'add_image_size'</span> <span style="color: #009900;">)</span> <span style="color: #009900;">)</span> <span style="color: #009900;">{</span>
add_image_size<span style="color: #009900;">(</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;">)</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;">}</span>
add_filter<span style="color: #009900;">(</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;">)</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;">(</span><span style="color: #000088;">$sizes</span><span style="color: #009900;">)</span> <span style="color: #009900;">{</span>
<span style="color: #000088;">$addsizes</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">(</span>
<span style="color: #0000ff;">"featured"</span> <span style="color: #339933;">=&</span>gt<span style="color: #339933;">;</span> __<span style="color: #009900;">(</span> <span style="color: #0000ff;">"Featured"</span><span style="color: #009900;">)</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;">)</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;">(</span><span style="color: #000088;">$sizes</span><span style="color: #339933;">,</span> <span style="color: #000088;">$addsizes</span><span style="color: #009900;">)</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;">}</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’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’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’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<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’agence Web IWEBIX, basée en Allemagne. Cette nouvelle solution de boutique en ligne vient s’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&banner_id=16&width=480&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’options très intéressantes :</p>
<ul>
<li>Installation comme un thème WordPress : au-delà des options du plugin, WP-Shopified s’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’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’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’é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'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’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’achat jQuery, paiements gérés via Paypal… bref, WP-Shopified n’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&source=br1o&style=normal&service=bit.ly&service_api=R_0c1ee4b64f105d1b2672690740a77d6a&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 : 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’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>
<?php
$more_strings = array(
"Read More...",
"Keep on Reading...",
"Wait! There's more...",
"Read the rest of the article..."
);
?>
<?php
the_content($more_strings[rand(0,count($more_strings))]);
?>
</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’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>
<div id="MySplitter">
<div> Left content goes here </div>
<div> Right content goes here </div>
</div>
</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 & 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’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 — WordPress, développement web, etc.</a></li><li><a href="http://css4design.com/liens-javascript-jquery" title="390 ressources Javascript & jQuery">390 ressources Javascript & 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 — E comme Extensions (les plugins)</a></li></ul>
<p><a href="http://css4design.com/?flattrss_redirect&id=2724&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’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&old=&new_path=/akismet/tags/2.5.5&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’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…</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’ils ne sont pas développeurs. Je suis, je pense, un bon exemple de cette catégorie de personnes d’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’on change justement ce dernier. <a href="http://wpchannel.com/creer-plugin-fonctions-globales-site-wordpress/">L’idée est de les réunir au sein d’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’outils</h3>
<p>Il y avait la barre d’admin, maintenant, il y a la barre d’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’écran d’é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’est ce que propose <a href="http://www.wpmayor.com/plugin-reviews/wordpress-post-formats-admin-ui/">cette interface d’administration</a> afin de faciliter l’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’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 « What you see what you get » : 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’insérer vos articles WordPress ;</li>
<li>6 thèmes prêts-à-l’emploi ;</li>
<li>Widget d’abonnement ou shortcode ;</li>
<li>Import / export de listes d’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’é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'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'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’opposé d’une usine à gaz. A tester d’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’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’hui je vais vous parlez d’un de mes clients. Vous ne le savez peut-être pas mais je propose mes services sur ce blog afin d’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’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’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’un changement de thème ? La réponse : créer un plugin de fonctions.<span id="more-11363"></span></p>
<h2>Quel est l’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’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 – quelques lignes de code très simple, pour appliquer de façon automatique vos fonctions qui n’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&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&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><?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/
*/
?></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’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’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’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’oubliez pas d’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’y placer directement votre plugin.</p>
<p>De cette manière, le plugin sera automatiquement activé et l’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’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’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>… la suite pourrait peut-être s’écrire par « Free Mobile pousse tout le monde par dessus bord. Qui reste-t’il ? » … 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’elle vaut concernant le monde de la téléphonie mobile.</p>
<p>Tout d’abord je dois dire que je ne suis certainement pas l’utilisateur lambda classique visé par les opérateurs traditionnels, oui je travaille dans le web mais non je n’ai pas de smartphone, même pas de forfait ou abonnement quelconque. J’ai un pauvre portable que je recharge de 5 euros par mois et qui m’a coûté à l’achat 19 euros. Et je ne ‘tue’ même pas mes 5 euros en utilisation, bien souvent j’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’est pas parce que je suis dans la misère complète (<em>mais si vous voulez m’envoyer des chèques ne vous gênez pas hein ;)</em>) c’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’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’il se faisait entuber par bidon de 50l de vaseline mais puisqu’il y avait arrangement entre les opérateurs il ne pouvait pas y faire grand-chose. Rien n’était réellement plus intéressant chez l’un ou l’autre (un petit plus d’un côté contrebalancé d’un petit moins). Bien entendu il existait des moyens de payer un peu moins mais ces solutions n’étaient pas à portée de tous, ne concernaient que certains cas d’utilisation particulier, etc. Même moi avec un portable qui me revient à moins de 100 euros l’année j’avais un petit goût amer en bouche.</p>
<p>Que l’offre de Free ne soit pas idéale, soit (difficile de rependre tous les cas de figures dés le début). Qu’il y aie des cas dans lesquels elle soit moins intéressante que les autres, soit (personne n’est obligé d’aller chez eux). Qu’ils vendent des iPhone & Co plus cher qu’ailleurs, soit (personne n’est obligé d’acheter les terminaux chez eux). Le but reste tout de même d’être bénéficiaire et ne pas être à perte. Sur le point du rapport qualité-prix j’ai un peu l’impression que ceux qui se plaignent sont ceux qui s’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’offre, l’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’est clairement un indice que nous étions prit pour des volatiles depuis le début et qu’ils pouvaient tout mettre en place depuis longtemps.</p>
<p>La question que je me pose alors est « si quelqu’un me prend pour un con, vais-je l’apprécier ou l’aimer ? » … 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’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 & Co me proposaient des forfaits similaires à ceux de Free pour 50% moins cher, <strong>rien que pour le principe je me dois d’aller chez Freemobile.</strong></p>
<p>Pour une fois, j’ai la chance de dire à ceux qui m’ont prit pour un con durant des années un bon « DTC, fallait y penser avant ». Et je ne vais pas me faire prier pour le dire. Même si dans 1 an je refais marche arrière pour n’importe quelle raison que ce soit (clauses cachées, modifications des CGV, SAV pourrit, couverture pourrie, etc.). Peut-être qu’à l’avenir eux et d’autres dans d’autres domaines se poseront la question de savoir s’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’emplois, des rachats, … c’est quasi certain).</p>
<p>Voilà c’était juste le petit coup de gueule du jour, maintenant si <strong>Xavier Niel</strong> me lit j’aimerai lui proposer un autre marché à venir bousculer … celui des impôts sur les revenus, là aussi il y a entente concertée et pot de vaseline … D’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’é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’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’ai également traqué et éradiqué les moindres traces de code crypté à l’intérieur de ces thèmes. Je n’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 & 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’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’utiliser dans votre projet puis je proposerai des exemples d’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/">« Design a custom theme »</a>. Choisissez vos couleurs, polices, textures, arrondis, etc.</p>
<p>Une fois l’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’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’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… Il vaut mieux l’importer pour jQuery UI et enlever l’intégration de WordPress (nous y reviendrons plus loin) ;</li>
<li><strong>development-bundle/ : </strong>dossier servant à développer de nouveaux plugins jQuery… Absolument inutile à votre niveau ;</li>
<li><strong>css/custom-theme/images OU css/nomdutheme-theme/images : </strong>vous l’aurez compris c’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><?php wp_head(); ?></code>, imputez ceci :
<pre><script src="/js/jquery-1.6.2.min.js">
<script src="/js/jquery-ui-1.8.16.custom.min.js"></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’installer votre librairie jQuery UI. On va maintenant pouvoir s’amuser ! <img src="http://wpchannel.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
<h2>Exemples d’utilisation</h2>
<h3>#1 – L’accordéon</h3>
<p>Vous avez peut-être déjà tenté de créer, sur votre site, ce type d’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><div></code> dit container</strong> : ce bloc est dit <em>container</em>, c’est à dire qu’il englobera votre accordéon ;</li>
<li><strong>Un titre pour chaque partie de l’accordéon</strong> : le titre d’un bloc servira à le rétracter ou à l’étirer.</li>
<li><strong>Un bloc <code><div></code> pour chaque partie de l’accordéon</strong> : vous l’aurez compris, chaque partie de l’accordéon sera composée d’un titre et d’un bloc ;</li>
</ul>
<p>Exemple de code :</p>
<pre><div id="accordion">
<!-- PARTIE 1 -->
<h3><a href="#">Partie 1</a></h3>
<div>
<p>Contenu de la partie 1 de votre accordéon.</p>
</div>
<!-- END OF PARTIE 1 -->
<!-- PARTIE 2 -->
<h3><a href="#">Partie 2</a></h3>
<div>
<p>Contenu de la partie 2 de votre accordéon.</p>
</div>
<!-- END OF PARTIE 2 -->
ETC.....
</div></pre>
<p>Et c’est tout… 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'accordéon utilisé dans un formulaire</p></div>
<h3>#2 – Datepicker</h3>
<p>Sous ce nom barbare se cache un outil qui permet d’afficher un calendrier lorsque qu’on entre dans un champ formulaire de type date. Ce champ référence alors la date sélectionnée. C’est un sélecteur de date de l’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’est autre qu’un input de type text. Mais il servira à renvoyer une date ;</li>
</ul>
<p>Exemple de code :</p>
<pre><label for="date">Date</label>
<input type="text" id="date" value="jj/mm/aa" /></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’intégration des options dans jQuery UI.</p>
<p>En effet, afin d’avoir un affichage correct et en français de votre datepicker. Vous devrez inscrire une série d’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’est tout pour le moment. Entrainez-vous sur d’autres effets…. J’expliquerais plus en détails des exemples d’utilisation plus complexes de cette formidable librairie. Cela fera l’objet d’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
1165
0
_transient_timeout_feed_253de389bad96c5309a80d6ac32e94d0
1327164145
no
1166
0
_transient_timeout_feed_2fb9572e3d6a42f680e36370936a57ae
1327164145
no
1167
0
_transient_feed_253de389bad96c5309a80d6ac32e94d0
a: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
1179
0
_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc
1327164146
no
1180
0
_transient_feed_a5420c83891a9c88ad2a4f04584a5efc
a: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
1185
0
_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2
1327164147
no
1186
0
_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2
1327120947
no
1187
0
_transient_timeout_dash_de3249c4736ad3bd2cd29147c4a0d43e
1327164147
no
1188
0
_transient_dash_de3249c4736ad3bd2cd29147c4a0d43e
<h4>Plus populaire</h4>
<h5><a href='http://wordpress.org/extend/plugins/really-simple-captcha/'>Really Simple CAPTCHA</a></h5> <span>(<a href='plugin-install.php?tab=plugin-information&plugin=really-simple-captcha&_wpnonce=8a61de1c8b&TB_iframe=true&width=600&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> <span>(<a href='plugin-install.php?tab=plugin-information&plugin=artisteer-buddy&_wpnonce=26f405b065&TB_iframe=true&width=600&height=800' class='thickbox' title='Artisteer Buddy'>Installer</a>)</span>
<p>A collection of functions to better Artisteer built themes.</p>
no
1192
0
moreLink_isJumpDisabled
yes
1193
0
moreLink_isOpenNewWindow
yes
1194
0
moreLink_limitType
none
yes
1195
0
moreLink_maxLimit
yes
1196
0
moreLink_showEllipsis
yes
1197
0
moreLink_linkText
Continue reading '[TITLE]'
yes
814
0
widget_pages
a:1:{s:12:"_multiwidget";i:1;}
yes
144
0
_transient_timeout_plugin_slugs
1327215150
no
145
0
_transient_plugin_slugs
a: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
1200
0
_site_transient_timeout_wporg_theme_feature_list
1327154155
yes
1201
0
_site_transient_wporg_theme_feature_list
a: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
150
0
recently_activated
a: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
1189
0
_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a
1327132259
yes
1190
0
_site_transient_poptags_40cd750bba9870f18aada2478b24840a
a: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
935
0
content_index_option
a: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
155
0
theme_mods_diary
a: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
168
0
widget_nav_menu
a:1:{s:12:"_multiwidget";i:1;}
yes
210
0
ftp_credentials
a:3:{s:8:"hostname";s:18:"ftp.alicepegie.com";s:8:"username";s:12:"sys_alicepeg";s:15:"connection_type";s:3:"ftp";}
yes
586
0
theme_header_show_headline
1
yes
587
0
theme_header_show_slogan
1
yes
212
0
gsom_msg_confirmation_succeed
yes
995
0
wysijey
YTozOntzOjExOiJkb21haW5fbmFtZSI7czoxNDoiYWxpY2VwZWdpZS5jb20iO3M6MzoidXJsIjtzOjgzOiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtYWRtaW4vYWRtaW4ucGhwP3BhZ2U9d3lzaWphX2NvbmZpZyI7czoxMzoiNGYxODMzZmQ3NjBmNiI7czoxOToiV1lTSUpBNGYxODMzZmQ3ODgwOCI7fQ==
yes
213
0
gsom_db_version
2.5.0
yes
214
0
gsom_form_title
Newsletter
yes
215
0
gsom_email_from
webmaster@alicepegie.com
yes
216
0
gsom_name_from
Une Graine de Maniguette
yes
217
0
gsom_email_confirmation_subj
yes
218
0
gsom_email_confirmation_msg
yes
219
0
gsom_email_welcome_subj
Merci de votre inscription à la Newsletter de mon Blog $blog_url
yes
220
0
gsom_email_welcome_msg
Vous ê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_link
yes
221
0
gsom_email_unsubscribe_subj
Désabonnement
yes
222
0
gsom_email_unsubscribe_msg
Chè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_url
yes
223
0
gsom_send_welcome_message
1
yes
224
0
gsom_send_unsubscibed_message
1
yes
225
0
gsom_msg_confirmation_required
yes
993
0
wysija_import_fields
a: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
1253
0
_site_transient_update_themes
O: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
1183
0
_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c2
1327164147
no
1184
0
_transient_feed_1a5f760f2e2b48827d4974a60857e7c2
a: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™ 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 & Ask. Webmaster option for Google,Bing,Alexa,Yahoo,Facebook & 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 "Censured" 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' 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
226
0
gsom_msg_unsubscribe_succeed
yes
227
0
gsom_msg_bad_email_address
<h2>Veuillez rentrer une adresse e-mail valide SVP</h2>
yes
228
0
gsom_msg_email_subscribed_and_confirmed
yes
229
0
gsom_msg_email_subscribed_but_not_confirmed
yes
981
0
uninstall_plugins
a:2:{i:0;b:0;s:32:"wysija-newsletters/core/base.php";s:16:"wysija_uninstall";}
yes
983
0
wysija_post_type_updated
1326984369
yes
984
0
wysija_post_type_created
1326984369
yes
985
0
wysija
YTozNTp7czoxNzoidG90YWxfc3Vic2NyaWJlcnMiO3M6MzoiMjg5IjtzOjk6ImZyb21fbmFtZSI7czoyNDoiVW5lIEdyYWluZSBkZSBNYW5pZ3VldHRlIjtzOjEyOiJyZXBseXRvX25hbWUiO3M6MjQ6IlVuZSBHcmFpbmUgZGUgTWFuaWd1ZXR0ZSI7czoxMDoiZnJvbV9lbWFpbCI7czoyNDoid2VibWFzdGVyQGFsaWNlcGVnaWUuY29tIjtzOjEzOiJyZXBseXRvX2VtYWlsIjtzOjI0OiJ3ZWJtYXN0ZXJAYWxpY2VwZWdpZS5jb20iO3M6MTU6ImVtYWlsc19ub3RpZmllZCI7czoyNDoid2VibWFzdGVyQGFsaWNlcGVnaWUuY29tIjtzOjE1OiJkZWZhdWx0X2xpc3RfaWQiO2k6MTtzOjE2OiJpbXBvcnR3cF9saXN0X2lkIjtpOjI7czoxODoiY29uZmlybV9lbWFpbF9saW5rIjtpOjMxNTtzOjEyOiJ1cGxvYWRmb2xkZXIiO3M6OTM6Ii9ob21lL3d3dy80ZGMzYzcxZWQxZmMyZmNhY2IzYmY2MWZhMGQ5OWE3OS93ZWIvd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3VwbG9hZHMvd3lzaWphLyI7czo5OiJ1cGxvYWR1cmwiO3M6NzI6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3VwbG9hZHMvd3lzaWphLyI7czoxNjoiY29uZmlybV9lbWFpbF9pZCI7aToyO3M6OToiaW5zdGFsbGVkIjtiOjE7czoxNDoiaW5zdGFsbGVkX3RpbWUiO2k6MTMyNjk4NDM3MDtzOjE1OiJjb21wYW55X2FkZHJlc3MiO3M6MTg6Ind3dy5hbGljZXBlZ2llLmNvbSI7czoyNDoiZW1haWxzX25vdGlmaWVkX3doZW5fc3ViIjtzOjE6IjEiO3M6MzM6ImVtYWlsc19ub3RpZmllZF93aGVuX2RhaWx5c3VtbWFyeSI7czoxOiIxIjtzOjk6InNtdHBfaG9zdCI7czoxOToibWFpbC5pbmZvbWFuaWFrLmNvbSI7czoxMDoic210cF9sb2dpbiI7czoyNDoid2VibWFzdGVyQGFsaWNlcGVnaWUuY29tIjtzOjEzOiJzbXRwX3Bhc3N3b3JkIjtzOjk6Im5nYTAxMDY4MCI7czoxMToic210cF9zZWN1cmUiO3M6MToiMCI7czoxOToic2VuZGluZ19lbWFpbHNfZWFjaCI7czo2OiJob3VybHkiO3M6MTI6ImJvdW5jZV9lbWFpbCI7czowOiIiO3M6OToibGFzdF9zYXZlIjtpOjEzMjY5ODQ5MTc7czoxNzoiY29uZmlybV9kYmxlb3B0aW4iO3M6MToiMCI7czoxNDoic2VuZGluZ19tZXRob2QiO3M6NDoic210cCI7czo5OiJzbXRwX3BvcnQiO3M6MzoiNTg3IjtzOjg6Il93cG5vbmNlIjtzOjEwOiI2NDgxMzFlNTE5IjtzOjE2OiJfd3BfaHR0cF9yZWZlcmVyIjtzOjU4OiIvd29yZHByZXNzL3dvcmRwcmVzcy93cC1hZG1pbi9hZG1pbi5waHA/cGFnZT13eXNpamFfY29uZmlnIjtzOjY6ImFjdGlvbiI7czo0OiJzYXZlIjtzOjExOiJyZWRpcmVjdHRhYiI7czoxNDoiI3NlbmRpbmdtZXRob2QiO3M6MTc6InNlbmRpbmdfZW1haWxzX29rIjtiOjE7czoxMToicHJlbWl1bV9rZXkiO3M6MDoiIjtzOjExOiJwcmVtaXVtX3ZhbCI7czowOiIiO3M6MjY6ImVtYWlsc19ub3RpZmllZF93aGVuX3Vuc3ViIjtiOjA7fQ==
yes
230
0
gsom_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
231
0
gsom_sform_header
yes
232
0
gsom_sform_footer
Merci
yes
280
0
gsom_cron_clean_unsubscribed_every_week
yes
233
0
gsom_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
234
0
gsom_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
235
0
gsom_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_link
yes
236
0
gsom_email_address_changed_subj
$blog_url Subscription Email Address Updated
yes
237
0
gsom_email_subscribtion_event_subj
A contact has joined your mailing list at $blog_name
yes
238
0
gsom_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 Manager
yes
239
0
gsom_email_unsubscribtion_event_subj
A contact has unsubscribed from your mailing list at $blog_name
yes
240
0
gsom_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 Manager
yes
241
0
gsom_send_event_notif
1
yes
242
0
gsom_mail_delivery_option
sendmail
yes
243
0
gsom_smtp_hostname
yes
244
0
gsom_smtp_username
yes
245
0
gsom_smtp_password
yes
247
0
gsom_dashboard_stats
off
yes
248
0
gsom_smtp_secure_conn
off
yes
249
0
gsom_bcst_email_subj
$last_rss_item_date - $last_rss_item_title
yes
250
0
gsom_bcst_email_msg
Hi $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
251
0
gsom_bcst_email_msg_plain
Welcome 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_link
yes
252
0
gsom_bcst_number_of_posts
6
yes
253
0
gsom_bcst_day_number
15
yes
254
0
gsom_bcst_when
sat
yes
255
0
gsom_bcst_send
date
yes
256
0
gsom_def_bcst_email_subj
$last_rss_item_date - $last_rss_item_title
yes
257
0
gsom_def_bcst_email_msg
Hi $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
258
0
gsom_def_bcst_email_msg_plain
Welcome 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_link
yes
259
0
gsom_bcst_dom_post_limit
10
yes
260
0
gsom_rss_excerpt_length
350
yes
261
0
gsom_write_debug_log
yes
262
0
gsom_feed_limit
6
yes
263
0
gsom_filter_images
0
yes
264
0
gsom_form_xdata
aHRtbCBlbWFpbCBtYXJrZXRpbmcgc29mdHdhcmU=
yes
265
0
gsom_last_broadcast
1327674300
yes
266
0
gsom_broadcast_lock
0
yes
272
0
DynamicwpAjaxRssAdminOptions
a: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
285
0
gsom_bcst_sel_cat
yes
286
0
gsom_bcst_sel_auth
yes
287
0
gsom_show_full_posts
0
yes
276
0
cispm_mail_reception
webmaster@alicepegie.com
yes
277
0
cispm_width_form
450
yes
1017
0
category_children
a: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
289
0
fbci_lock
1327133028
yes
323
0
akismet_available_servers
a:4:{s:12:"66.135.58.62";b:1;s:12:"72.233.69.88";b:1;s:12:"72.233.69.89";b:1;s:12:"66.135.58.61";b:1;}
yes
324
0
akismet_connectivity_time
1326915188
yes
328
0
wordpress_api_key
9664c7b3eb90
yes
329
0
akismet_discard_month
true
yes
330
0
akismet_show_user_comments_approved
true
yes
443
0
theme_mods_maniguetteword
a: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
1266
0
current_theme
maniguettepress2
yes
1264
0
theme_mods_twentyten
a: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
444
0
_site_transient_timeout_browser_55acc71f55ed4da024b5e6b1c4b13817
1327461592
yes
445
0
_site_transient_browser_55acc71f55ed4da024b5e6b1c4b13817
a: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
1181
0
_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc
1327164146
no
1182
0
_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc
1327120946
no
475
0
theme_show_post_title
a: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
1042
0
theme_mods_maniguettepress
a: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
478
0
theme_mods_maniguettewordpress
a: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
480
0
nav_menu_options
a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}
yes
487
0
theme_title_in_menu
a: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
485
0
theme_show_in_menu
a: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
486
0
theme_show_as_separator
a: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
488
0
theme_show_page_title
a: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
490
0
cispm_prefixe
[Une Graine de Maniguette]
yes
492
0
cispm_radio_nom
o
yes
493
0
cispm_radio_nom_obl
o
yes
494
0
cispm_titre_formulaire
Formulaire de contact
yes
495
0
cispm_prenom
Prénom
yes
496
0
cispm_radio_prenom
n
yes
497
0
cispm_radio_prenom_obl
n
yes
498
0
cispm_mail
Mail
yes
499
0
cispm_site_web
Site internet
yes
500
0
cispm_radio_site_web
o
yes
501
0
cispm_radio_site_web_obl
n
yes
502
0
cispm_objet
Sujet
yes
503
0
cispm_message
Message
yes
504
0
cispm_copie
Recevoir une copie du mail
yes
505
0
cispm_radio_copie
o
yes
506
0
cispm_valider
Envoyer le mail
yes
507
0
cispm_hexa
e5e5e5
yes
508
0
cispm_hexa_titre
777777
yes
509
0
cispm_hexa_texte
777777
yes
510
0
cispm_taille_texte
15
yes
511
0
cispm_police_texte
Cambria
yes
512
0
cispm_taille_titre
30
yes
513
0
cispm_police_titre
Cambria
yes
514
0
cispm_radio_pos
center
yes
515
0
cispm_nom_taille
260
yes
516
0
cispm_prenom_taille
260
yes
517
0
cispm_mail_taille
260
yes
518
0
cispm_site_web_taille
260
yes
519
0
cispm_objet_taille
260
yes
520
0
cispm_message_taille
260
yes
521
0
cispm_valider_taille
200
yes
522
0
cispm_obligatoire
* Champ(s) Obligatoire(s)
yes
523
0
cispm_obligatoire_pos
out
yes
524
0
cispm_hexa_texte_erreur
C9DF0D
yes
525
0
cispm_hexa_input_erreur
C9DF0D
yes
526
0
cispm_hexa_form_erreur
C9DF0D
yes
527
0
cispm_dessus_formulaire
yes
528
0
cispm_dessous_champ
yes
529
0
cispm_mess_erreur
Ce champ est obligatoire
yes
530
0
cispm_radio_captcha
cispm_aucun
yes
531
0
cispm_question_texte
yes
532
0
cispm_reponse_texte
yes
533
0
cispm_caseacocher_texte
yes
534
0
cispm_taille_reponse
150
yes
535
0
cispm_captcha_texte
yes
536
0
cispm_captcha_texte_couleur
FFFFFF
yes
537
0
cispm_captcha_fond_couleur
000000
yes
538
0
cispm_debut_message
[DEBUT DU MESSAGE]
yes
539
0
fbci_page_id
Alicepegie1
yes
540
0
fbci_author_str
%name% via Facebook
yes
541
0
fbci_scheduler
hourly
yes
547
0
fb_like_thumbnail
a:1:{s:7:"default";s:0:"";}
yes
550
0
relpoststh_single_only
1
yes
551
0
relpoststh_post_types
a:3:{i:0;s:4:"post";i:1;s:4:"page";i:2;s:10:"attachment";}
yes
552
0
relpoststh_onlywiththumbs
yes
553
0
relpoststh_output_style
div
yes
554
0
relpoststh_cleanhtml
yes
555
0
relpoststh_auto
1
yes
556
0
relpoststh_top_text
<h3>A Voir Aussi!!:</h3>
yes
557
0
relpoststh_number
4
yes
558
0
relpoststh_relation
both
yes
559
0
relpoststh_default_image
http://www.alicepegie.com/wordpress/wordpress/wp-content/plugins/related-posts-thumbnails/img/default.png
yes
560
0
relpoststh_poststhname
thumbnail
yes
561
0
relpoststh_background
#FFFFFF
yes
562
0
relpoststh_hoverbackground
#EEEEEF
yes
563
0
relpoststh_bordercolor
#DDDDDD
yes
564
0
relpoststh_fontcolor
#333333
yes
565
0
relpoststh_fontsize
12
yes
566
0
relpoststh_fontfamily
Arial
yes
567
0
relpoststh_textlength
100
yes
568
0
relpoststh_excerptlength
0
yes
569
0
relpoststh_thsource
post-thumbnails
yes
570
0
relpoststh_customfield
yes
571
0
relpoststh_theme_resize_url
yes
572
0
relpoststh_customwidth
100
yes
573
0
relpoststh_customheight
100
yes
574
0
relpoststh_textblockheight
75
yes
575
0
relpoststh_categoriesall
1
yes
576
0
relpoststh_categories
yes
577
0
relpoststh_show_categoriesall
1
yes
578
0
relpoststh_show_categories
yes
579
0
relpoststh_devmode
yes
580
0
relpoststh_startdate
yes
581
0
relpoststh_custom_taxonomies
yes
582
0
theme_widget_styles
a: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
584
0
widget_vmenuwidget
a: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
588
0
theme_menu_showHome
1
yes
589
0
theme_menu_homeCaption
Accueil
yes
590
0
theme_menu_highlight_active_categories
1
yes
591
0
theme_menu_trim_title
0
yes
592
0
theme_menu_trim_len
45
yes
593
0
theme_submenu_trim_len
40
yes
594
0
theme_menu_source
Pages
yes
595
0
theme_home_top_posts_navigation
0
yes
596
0
theme_top_posts_navigation
0
yes
597
0
theme_bottom_posts_navigation
1
yes
598
0
theme_top_single_navigation
0
yes
599
0
theme_bottom_single_navigation
1
yes
600
0
theme_single_navigation_trim_title
0
yes
601
0
theme_single_navigation_trim_len
80
yes
602
0
theme_metadata_use_featured_image_as_thumbnail
1
yes
603
0
theme_metadata_thumbnail_auto
1
yes
604
0
theme_metadata_thumbnail_width
128
yes
605
0
theme_metadata_thumbnail_height
128
yes
606
0
theme_metadata_excerpt_auto
1
yes
607
0
theme_metadata_excerpt_words
40
yes
608
0
theme_metadata_excerpt_min_remainder
5
yes
609
0
theme_metadata_excerpt_use_tag_filter
0
yes
610
0
theme_metadata_excerpt_allowed_tags
a, abbr, blockquote, b, cite, pre, code, em, label, i, p, strong, ul, ol, li, h1, h2, h3, h4, h5, h6, object, param, embed
yes
611
0
theme_show_random_posts_on_404_page
1
yes
612
0
theme_show_random_posts_title_on_404_page
oups la cuillere est tombée dans la sauce!
yes
613
0
theme_show_tags_on_404_page
0
yes
614
0
theme_show_tags_title_on_404_page
Tag Cloud
yes
615
0
theme_allow_comments
1
yes
616
0
theme_comment_use_smilies
1
yes
617
0
theme_sidebars_style_default
block
yes
618
0
theme_sidebars_style_secondary
block
yes
619
0
theme_sidebars_style_top
block
yes
620
0
theme_sidebars_style_bottom
block
yes
621
0
theme_sidebars_style_footer
simple
yes
622
0
theme_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
623
0
theme_ad_code_1
yes
624
0
theme_ad_code_2
yes
625
0
theme_ad_code_3
yes
626
0
theme_ad_code_4
yes
627
0
theme_ad_code_5
yes
628
0
theme_posts_headline_tag
h1
yes
629
0
theme_posts_slogan_tag
h2
yes
630
0
theme_posts_article_title_tag
h2
yes
631
0
theme_posts_widget_title_tag
h3
yes
632
0
theme_single_headline_tag
div
yes
633
0
theme_single_slogan_tag
div
yes
634
0
theme_single_article_title_tag
h1
yes
635
0
theme_single_widget_title_tag
div
yes
678
0
dl_custom_more_link_complete_pattern
<a href=\"%permalink%\" class=\"%Lire la suite de%\">%linktext% %title%</a>
yes
679
0
dl_custom_more_link_complete_limitType
none
yes
680
0
dl_custom_more_link_complete_maxLimit
yes
681
0
dl_custom_more_link_complete_showEllipsis
yes
742
0
j2wp_mysql_change_vars
off
yes
740
0
joomla-importer.db_info
a:0:{}
no
743
0
j2wp_cpage_conv
off
yes
744
0
j2wp_cms_type
0
yes
745
0
j2wp_cat_sel
on
yes
746
0
j2wp_page_sel
on
yes
747
0
j2wp_users_sel
on
yes
748
0
j2wp_mysql_srv
localhost
yes
749
0
j2wp_mysql_use_one_srv
0
yes
751
0
j2wp_mysql_pswd
yes
752
0
j2wp_joomla_mysql_srv_name
yes
753
0
j2wp_joomla_db_charset
utf8
yes
754
0
j2wp_joomla_db_name
yes
755
0
j2wp_joomla_db_usr_name
yes
756
0
j2wp_joomla_db_usr_pswd
yes
757
0
j2wp_joomla_tb_prefix
jos_
yes
758
0
j2wp_joomla_images_path
yes
759
0
j2wp_joomla_images_folder
/images/stories
yes
760
0
j2wp_joomla_web_url
yes
761
0
j2wp_wp_mysql_srv_name
yes
762
0
j2wp_wp_db_name
yes
763
0
j2wp_wp_db_user_name
yes
764
0
j2wp_wp_db_user_pswd
yes
765
0
j2wp_wp_db_charset
utf8
yes
766
0
j2wp_wp_tb_prefix
wp_
yes
767
0
j2wp_wp_images_folder
/wp-content/themes/twentyten/images
yes
768
0
j2wp_wp_web_url
yes
994
0
widget_wysija
a:1:{s:12:"_multiwidget";i:1;}
yes
853
0
theme_mods_maniguetteworprs2
a: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
925
0
_transient_plugins_delete_result_1
1
yes
1262
0
theme_mods_twentyeleven
a: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
1256
0
theme_mods_desk-mess-mirrored
a: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
1048
0
theme_mods_maniguettepress2
a:1:{i:0;b:0;}
yes
1208
0
_site_transient_update_plugins
O: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
1
2
_wp_page_template
default
2
4
_menu_item_type
taxonomy
3
4
_menu_item_menu_item_parent
0
4
4
_menu_item_object_id
10
5
4
_menu_item_object
category
7
4
_menu_item_classes
a:1:{i:0;s:0:"";}
10
4
_menu_item_orphaned
1326804014
11
5
_menu_item_type
taxonomy
12
5
_menu_item_menu_item_parent
0
13
5
_menu_item_object_id
11
14
5
_menu_item_object
category
16
5
_menu_item_classes
a:1:{i:0;s:0:"";}
19
5
_menu_item_orphaned
1326804014
20
6
_menu_item_type
taxonomy
21
6
_menu_item_menu_item_parent
0
22
6
_menu_item_object_id
8
23
6
_menu_item_object
category
25
6
_menu_item_classes
a:1:{i:0;s:0:"";}
28
6
_menu_item_orphaned
1326804014
29
7
_menu_item_type
taxonomy
30
7
_menu_item_menu_item_parent
0
31
7
_menu_item_object_id
6
32
7
_menu_item_object
category
34
7
_menu_item_classes
a:1:{i:0;s:0:"";}
37
7
_menu_item_orphaned
1326804014
38
8
_menu_item_type
taxonomy
39
8
_menu_item_menu_item_parent
0
40
8
_menu_item_object_id
7
41
8
_menu_item_object
category
43
8
_menu_item_classes
a:1:{i:0;s:0:"";}
46
8
_menu_item_orphaned
1326804014
47
9
_menu_item_type
taxonomy
48
9
_menu_item_menu_item_parent
0
49
9
_menu_item_object_id
9
50
9
_menu_item_object
category
52
9
_menu_item_classes
a:1:{i:0;s:0:"";}
55
9
_menu_item_orphaned
1326804014
1084
382
_edit_lock
1327064122:1
1080
379
_edit_lock
1327064037:1
1074
375
_edit_lock
1327063871:1
1070
373
_edit_lock
1327063734:1
76
17
_edit_lock
1326997412:1
86
26
_edit_lock
1326815095:1
84
24
_edit_lock
1326997487:1
96
31
_edit_lock
1326890945:1
118
42
_edit_lock
1326816748:1
128
47
_edit_lock
1326816711:1
134
50
_edit_lock
1326816829:1
140
53
_edit_lock
1326816921:1
144
55
_edit_lock
1326890995:1
148
57
_edit_lock
1326891039:1
152
59
_edit_lock
1326891063:1
160
63
_edit_lock
1326891092:1
164
65
_edit_lock
1326891103:1
168
67
_edit_lock
1326891117:1
174
70
_edit_lock
1327063641:1
179
74
_menu_item_type
taxonomy
180
74
_menu_item_menu_item_parent
0
181
74
_menu_item_object_id
10
182
74
_menu_item_object
category
184
74
_menu_item_classes
a:1:{i:0;s:0:"";}
675
133
_menu_item_menu_item_parent
0
188
75
_menu_item_type
taxonomy
189
75
_menu_item_menu_item_parent
0
190
75
_menu_item_object_id
11
191
75
_menu_item_object
category
193
75
_menu_item_classes
a:1:{i:0;s:0:"";}
674
133
_menu_item_type
taxonomy
197
76
_menu_item_type
taxonomy
198
76
_menu_item_menu_item_parent
0
199
76
_menu_item_object_id
8
200
76
_menu_item_object
category
202
76
_menu_item_classes
a:1:{i:0;s:0:"";}
732
153
_edit_lock
1326891621:1
206
77
_menu_item_type
taxonomy
207
77
_menu_item_menu_item_parent
0
208
77
_menu_item_object_id
31
209
77
_menu_item_object
category
211
77
_menu_item_classes
a:1:{i:0;s:0:"";}
215
78
_menu_item_type
taxonomy
216
78
_menu_item_menu_item_parent
0
217
78
_menu_item_object_id
45
218
78
_menu_item_object
category
220
78
_menu_item_classes
a:1:{i:0;s:0:"";}
224
79
_menu_item_type
taxonomy
225
79
_menu_item_menu_item_parent
0
226
79
_menu_item_object_id
49
227
79
_menu_item_object
category
229
79
_menu_item_classes
a:1:{i:0;s:0:"";}
233
80
_menu_item_type
taxonomy
234
80
_menu_item_menu_item_parent
0
235
80
_menu_item_object_id
52
236
80
_menu_item_object
category
238
80
_menu_item_classes
a:1:{i:0;s:0:"";}
670
132
_menu_item_classes
a:1:{i:0;s:0:"";}
242
81
_menu_item_type
taxonomy
243
81
_menu_item_menu_item_parent
0
244
81
_menu_item_object_id
46
245
81
_menu_item_object
category
247
81
_menu_item_classes
a:1:{i:0;s:0:"";}
669
132
_menu_item_target
251
82
_menu_item_type
taxonomy
252
82
_menu_item_menu_item_parent
0
253
82
_menu_item_object_id
47
254
82
_menu_item_object
category
256
82
_menu_item_classes
a:1:{i:0;s:0:"";}
668
132
_menu_item_object
page
260
83
_menu_item_type
taxonomy
261
83
_menu_item_menu_item_parent
0
262
83
_menu_item_object_id
48
263
83
_menu_item_object
category
265
83
_menu_item_classes
a:1:{i:0;s:0:"";}
667
132
_menu_item_object_id
130
269
84
_menu_item_type
taxonomy
270
84
_menu_item_menu_item_parent
0
271
84
_menu_item_object_id
34
272
84
_menu_item_object
category
274
84
_menu_item_classes
a:1:{i:0;s:0:"";}
666
132
_menu_item_menu_item_parent
0
278
85
_menu_item_type
taxonomy
279
85
_menu_item_menu_item_parent
0
280
85
_menu_item_object_id
33
281
85
_menu_item_object
category
283
85
_menu_item_classes
a:1:{i:0;s:0:"";}
665
132
_menu_item_type
post_type
287
86
_menu_item_type
taxonomy
288
86
_menu_item_menu_item_parent
0
289
86
_menu_item_object_id
32
290
86
_menu_item_object
category
292
86
_menu_item_classes
a:1:{i:0;s:0:"";}
664
130
_wp_page_template
default
296
87
_menu_item_type
taxonomy
297
87
_menu_item_menu_item_parent
0
298
87
_menu_item_object_id
59
299
87
_menu_item_object
category
301
87
_menu_item_classes
a:1:{i:0;s:0:"";}
663
130
_edit_lock
1326857840:1
305
88
_menu_item_type
taxonomy
306
88
_menu_item_menu_item_parent
0
307
88
_menu_item_object_id
60
308
88
_menu_item_object
category
310
88
_menu_item_classes
a:1:{i:0;s:0:"";}
314
89
_menu_item_type
taxonomy
315
89
_menu_item_menu_item_parent
0
316
89
_menu_item_object_id
61
317
89
_menu_item_object
category
319
89
_menu_item_classes
a:1:{i:0;s:0:"";}
661
2
_wp_trash_meta_time
1326857881
323
90
_menu_item_type
taxonomy
324
90
_menu_item_menu_item_parent
0
325
90
_menu_item_object_id
65
326
90
_menu_item_object
category
328
90
_menu_item_classes
a:1:{i:0;s:0:"";}
660
2
_wp_trash_meta_status
publish
332
91
_menu_item_type
taxonomy
333
91
_menu_item_menu_item_parent
0
334
91
_menu_item_object_id
63
335
91
_menu_item_object
category
337
91
_menu_item_classes
a:1:{i:0;s:0:"";}
659
128
_menu_item_orphaned
1326857833
341
92
_menu_item_type
taxonomy
342
92
_menu_item_menu_item_parent
0
343
92
_menu_item_object_id
62
344
92
_menu_item_object
category
346
92
_menu_item_classes
a:1:{i:0;s:0:"";}
350
93
_menu_item_type
taxonomy
351
93
_menu_item_menu_item_parent
0
352
93
_menu_item_object_id
64
353
93
_menu_item_object
category
355
93
_menu_item_classes
a:1:{i:0;s:0:"";}
359
94
_menu_item_type
taxonomy
360
94
_menu_item_menu_item_parent
0
361
94
_menu_item_object_id
29
362
94
_menu_item_object
category
364
94
_menu_item_classes
a:1:{i:0;s:0:"";}
368
95
_menu_item_type
taxonomy
369
95
_menu_item_menu_item_parent
0
370
95
_menu_item_object_id
44
371
95
_menu_item_object
category
373
95
_menu_item_classes
a:1:{i:0;s:0:"";}
656
128
_menu_item_classes
a:1:{i:0;s:0:"";}
377
96
_menu_item_type
taxonomy
378
96
_menu_item_menu_item_parent
0
379
96
_menu_item_object_id
41
380
96
_menu_item_object
category
382
96
_menu_item_classes
a:1:{i:0;s:0:"";}
655
128
_menu_item_target
386
97
_menu_item_type
taxonomy
387
97
_menu_item_menu_item_parent
0
388
97
_menu_item_object_id
42
389
97
_menu_item_object
category
391
97
_menu_item_classes
a:1:{i:0;s:0:"";}
654
128
_menu_item_object
category
395
98
_menu_item_type
taxonomy
396
98
_menu_item_menu_item_parent
0
397
98
_menu_item_object_id
28
398
98
_menu_item_object
category
400
98
_menu_item_classes
a:1:{i:0;s:0:"";}
653
128
_menu_item_object_id
111
404
99
_menu_item_type
taxonomy
405
99
_menu_item_menu_item_parent
0
406
99
_menu_item_object_id
35
407
99
_menu_item_object
category
409
99
_menu_item_classes
a:1:{i:0;s:0:"";}
652
128
_menu_item_menu_item_parent
0
413
100
_menu_item_type
taxonomy
414
100
_menu_item_menu_item_parent
0
415
100
_menu_item_object_id
30
416
100
_menu_item_object
category
417
100
_menu_item_target
418
100
_menu_item_classes
a:1:{i:0;s:0:"";}
651
128
_menu_item_type
taxonomy
422
101
_menu_item_type
taxonomy
423
101
_menu_item_menu_item_parent
0
424
101
_menu_item_object_id
56
425
101
_menu_item_object
category
426
101
_menu_item_target
427
101
_menu_item_classes
a:1:{i:0;s:0:"";}
650
127
_menu_item_orphaned
1326857833
431
102
_menu_item_type
taxonomy
432
102
_menu_item_menu_item_parent
0
433
102
_menu_item_object_id
53
434
102
_menu_item_object
category
435
102
_menu_item_target
436
102
_menu_item_classes
a:1:{i:0;s:0:"";}
440
103
_menu_item_type
taxonomy
441
103
_menu_item_menu_item_parent
0
442
103
_menu_item_object_id
54
443
103
_menu_item_object
category
444
103
_menu_item_target
445
103
_menu_item_classes
a:1:{i:0;s:0:"";}
449
104
_menu_item_type
taxonomy
450
104
_menu_item_menu_item_parent
0
451
104
_menu_item_object_id
6
452
104
_menu_item_object
category
453
104
_menu_item_target
454
104
_menu_item_classes
a:1:{i:0;s:0:"";}
458
105
_menu_item_type
taxonomy
459
105
_menu_item_menu_item_parent
0
460
105
_menu_item_object_id
13
461
105
_menu_item_object
category
462
105
_menu_item_target
463
105
_menu_item_classes
a:1:{i:0;s:0:"";}
647
127
_menu_item_classes
a:1:{i:0;s:0:"";}
467
106
_menu_item_type
taxonomy
468
106
_menu_item_menu_item_parent
0
469
106
_menu_item_object_id
14
470
106
_menu_item_object
category
471
106
_menu_item_target
472
106
_menu_item_classes
a:1:{i:0;s:0:"";}
646
127
_menu_item_target
476
107
_menu_item_type
taxonomy
477
107
_menu_item_menu_item_parent
0
478
107
_menu_item_object_id
12
479
107
_menu_item_object
category
480
107
_menu_item_target
481
107
_menu_item_classes
a:1:{i:0;s:0:"";}
645
127
_menu_item_object
category
485
108
_menu_item_type
taxonomy
486
108
_menu_item_menu_item_parent
0
487
108
_menu_item_object_id
15
488
108
_menu_item_object
category
489
108
_menu_item_target
490
108
_menu_item_classes
a:1:{i:0;s:0:"";}
644
127
_menu_item_object_id
112
494
109
_menu_item_type
taxonomy
495
109
_menu_item_menu_item_parent
0
496
109
_menu_item_object_id
17
497
109
_menu_item_object
category
498
109
_menu_item_target
499
109
_menu_item_classes
a:1:{i:0;s:0:"";}
643
127
_menu_item_menu_item_parent
0
503
110
_menu_item_type
taxonomy
504
110
_menu_item_menu_item_parent
0
505
110
_menu_item_object_id
7
506
110
_menu_item_object
category
507
110
_menu_item_target
508
110
_menu_item_classes
a:1:{i:0;s:0:"";}
642
127
_menu_item_type
taxonomy
512
111
_menu_item_type
taxonomy
513
111
_menu_item_menu_item_parent
0
514
111
_menu_item_object_id
26
515
111
_menu_item_object
category
516
111
_menu_item_target
517
111
_menu_item_classes
a:1:{i:0;s:0:"";}
641
126
_menu_item_orphaned
1326857812
521
112
_menu_item_type
taxonomy
522
112
_menu_item_menu_item_parent
0
523
112
_menu_item_object_id
19
524
112
_menu_item_object
category
525
112
_menu_item_target
526
112
_menu_item_classes
a:1:{i:0;s:0:"";}
530
113
_menu_item_type
taxonomy
531
113
_menu_item_menu_item_parent
0
532
113
_menu_item_object_id
24
533
113
_menu_item_object
category
534
113
_menu_item_target
535
113
_menu_item_classes
a:1:{i:0;s:0:"";}
640
126
_menu_item_url
http://www.alicepegie.com/wordpress/wordpress/
539
114
_menu_item_type
taxonomy
540
114
_menu_item_menu_item_parent
0
541
114
_menu_item_object_id
20
542
114
_menu_item_object
category
543
114
_menu_item_target
544
114
_menu_item_classes
a:1:{i:0;s:0:"";}
548
115
_menu_item_type
taxonomy
549
115
_menu_item_menu_item_parent
0
550
115
_menu_item_object_id
21
551
115
_menu_item_object
category
552
115
_menu_item_target
553
115
_menu_item_classes
a:1:{i:0;s:0:"";}
557
116
_menu_item_type
taxonomy
558
116
_menu_item_menu_item_parent
0
559
116
_menu_item_object_id
22
560
116
_menu_item_object
category
561
116
_menu_item_target
562
116
_menu_item_classes
a:1:{i:0;s:0:"";}
638
126
_menu_item_classes
a:1:{i:0;s:0:"";}
566
117
_menu_item_type
taxonomy
567
117
_menu_item_menu_item_parent
0
568
117
_menu_item_object_id
23
569
117
_menu_item_object
category
570
117
_menu_item_target
571
117
_menu_item_classes
a:1:{i:0;s:0:"";}
637
126
_menu_item_target
575
118
_menu_item_type
taxonomy
576
118
_menu_item_menu_item_parent
0
577
118
_menu_item_object_id
27
578
118
_menu_item_object
category
579
118
_menu_item_target
580
118
_menu_item_classes
a:1:{i:0;s:0:"";}
636
126
_menu_item_object
custom
584
119
_menu_item_type
taxonomy
585
119
_menu_item_menu_item_parent
0
586
119
_menu_item_object_id
9
587
119
_menu_item_object
category
588
119
_menu_item_target
589
119
_menu_item_classes
a:1:{i:0;s:0:"";}
635
126
_menu_item_object_id
126
593
120
_menu_item_type
taxonomy
594
120
_menu_item_menu_item_parent
0
595
120
_menu_item_object_id
38
596
120
_menu_item_object
category
597
120
_menu_item_target
598
120
_menu_item_classes
a:1:{i:0;s:0:"";}
633
126
_menu_item_type
custom
602
121
_menu_item_type
taxonomy
603
121
_menu_item_menu_item_parent
0
604
121
_menu_item_object_id
36
605
121
_menu_item_object
category
606
121
_menu_item_target
607
121
_menu_item_classes
a:1:{i:0;s:0:"";}
634
126
_menu_item_menu_item_parent
0
611
122
_menu_item_type
taxonomy
612
122
_menu_item_menu_item_parent
0
613
122
_menu_item_object_id
37
614
122
_menu_item_object
category
615
122
_menu_item_target
616
122
_menu_item_classes
a:1:{i:0;s:0:"";}
630
124
_edit_lock
1326981001:1
1094
390
_edit_lock
1327128812:1
1092
388
_edit_lock
1327128798:1
1090
386
_edit_lock
1327128672:1
676
133
_menu_item_object_id
112
677
133
_menu_item_object
category
678
133
_menu_item_target
679
133
_menu_item_classes
a:1:{i:0;s:0:"";}
683
134
_menu_item_type
taxonomy
684
134
_menu_item_menu_item_parent
0
685
134
_menu_item_object_id
111
686
134
_menu_item_object
category
687
134
_menu_item_target
688
134
_menu_item_classes
a:1:{i:0;s:0:"";}
728
151
_edit_lock
1326891834:1
692
135
_menu_item_type
custom
693
135
_menu_item_menu_item_parent
0
694
135
_menu_item_object_id
135
695
135
_menu_item_object
custom
696
135
_menu_item_target
697
135
_menu_item_classes
a:1:{i:0;s:0:"";}
699
135
_menu_item_url
http://www.alicepegie.com/wordpress/wordpress/
736
155
_edit_lock
1326891675:1
750
163
_edit_lock
1326892162:1
754
165
_edit_lock
1326892037:1
760
169
_edit_lock
1326892265:1
764
171
_edit_lock
1326892331:1
768
173
_edit_lock
1326892704:1
772
175
_edit_lock
1326892635:1
778
178
_edit_lock
1326892958:1
784
182
_edit_lock
1326893082:1
790
185
_edit_lock
1326895118:1
794
187
_edit_lock
1327011161:1
798
189
_edit_lock
1326894539:1
802
191
_edit_lock
1326894659:1
806
193
_edit_lock
1326894863:1
810
195
_edit_lock
1326894968:1
814
197
_edit_lock
1326895094:1
826
203
_edit_lock
1326915332:1
822
201
_edit_lock
1326895250:1
827
203
_wp_page_template
default
829
205
_edit_lock
1326899863:1
833
207
_edit_lock
1326901278:1
837
209
_edit_lock
1326900532:1
841
212
_edit_lock
1326900970:1
847
216
_edit_lock
1326901084:1
852
219
_wp_attached_file
2012/01/news2.jpg
853
219
_wp_attachment_metadata
a: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:"";}}
854
220
_wp_attached_file
2012/01/facebook-icone-9714-32.png
855
220
_wp_attachment_metadata
a: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:"";}}
856
221
_wp_attached_file
2012/01/twitter-icone-8387-321.png
857
221
_wp_attachment_metadata
a: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:"";}}
858
222
_wp_attached_file
2012/01/rss-picto-flux-format-18-icone-6712-32.png
859
222
_wp_attachment_metadata
a: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:"";}}
861
236
_edit_lock
1326903494:1
865
238
_edit_lock
1326903610:1
869
240
_edit_lock
1326903688:1
873
242
_edit_lock
1326903775:1
877
244
_edit_lock
1326903881:1
881
246
_edit_lock
1326916466:1
885
248
_edit_lock
1326904095:1
889
250
_edit_lock
1326904213:1
893
252
_edit_lock
1326904277:1
897
254
_edit_lock
1326904398:1
905
259
_edit_lock
1327064197:1
911
262
_edit_lock
1326972863:1
915
264
_edit_lock
1326973213:1
921
267
_edit_lock
1326973055:1
927
270
_edit_lock
1326973249:1
933
273
_edit_lock
1326973332:1
937
275
_edit_lock
1326973433:1
941
277
_edit_lock
1326973903:1
951
285
_edit_lock
1326975671:1
949
283
_edit_lock
1326975518:1
957
285
_content_index_enable
1
959
287
_edit_lock
1326981834:1
961
288
_edit_lock
1327019452:1
990
320
_edit_lock
1326997711:1
966
287
_wp_page_template
default
986
318
_edit_lock
1326997584:1
994
322
_edit_lock
1327010060:1
996
324
_edit_lock
1326998052:1
1000
326
_edit_lock
1327002045:1
1006
330
_edit_lock
1327002736:1
1012
333
_edit_lock
1327010003:1
1018
336
_edit_lock
1327010275:1
1022
339
_edit_lock
1327010332:1
1026
341
_edit_lock
1327010453:1
1030
343
_edit_lock
1327010713:1
1034
346
_edit_lock
1327063571:1
1039
352
_menu_item_type
post_type
1040
352
_menu_item_menu_item_parent
0
1041
352
_menu_item_object_id
287
1042
352
_menu_item_object
page
1043
352
_menu_item_target
1044
352
_menu_item_classes
a:1:{i:0;s:0:"";}
1048
287
_wp_trash_meta_status
publish
1049
287
_wp_trash_meta_time
1327015240
1051
354
_edit_lock
1327016814:1
1052
354
_wp_page_template
default
1054
363
_edit_lock
1327017052:1
1096
392
_edit_lock
1327128826:1
1098
394
_edit_lock
1327064824:1
1104
397
_edit_lock
1327064911:1
1108
399
_edit_lock
1327065029:1
1112
401
_edit_lock
1327065147:1
1116
403
_edit_lock
1327065247:1
1120
405
_edit_lock
1327128836:1
1122
407
_edit_lock
1327128848:1
1124
410
_edit_lock
1327065532:1
1128
412
_edit_lock
1327065606:1
1132
414
_edit_lock
1327128859:1
1134
416
_edit_lock
1327065837:1
1138
418
_edit_lock
1327065953:1
1142
420
_edit_lock
1327128870:1
1144
422
_edit_lock
1327128880:1
1146
424
_edit_lock
1327066259:1
1150
426
_edit_lock
1327066374:1
1154
428
_edit_lock
1327066464:1
1158
430
_edit_lock
1327066604:1
1162
432
_edit_lock
1327066672:1
1166
434
_edit_lock
1327066750:1
1188
445
_edit_lock
1327128886:1
1192
447
_edit_lock
1327129049:1
1196
449
_edit_lock
1327129146:1
1200
451
_edit_lock
1327129404:1
1204
454
_edit_lock
1327129897:1
1208
456
_edit_lock
1327129536:1
1212
458
_edit_lock
1327129718:1
1220
462
_edit_lock
1327129958:1
1224
464
_edit_lock
1327130071:1
1228
466
_edit_lock
1327130185:1
1232
468
_edit_lock
1327130324:1
1236
470
_edit_lock
1327130500:1
1240
472
_edit_lock
1327130641:1
1244
474
_edit_lock
1327130748:1
1248
476
_edit_lock
1327130932:1
1254
479
_edit_lock
1327131050:1
1258
481
_edit_lock
1327131179:1
1264
484
_edit_lock
1327131293:1
1268
486
_edit_lock
1327131429:1
1272
488
_edit_lock
1327131592:1
1276
490
_edit_lock
1327131663:1
2
1
2012-01-17 11:56:04
2012-01-17 11:56:04
Voici 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 « À Propos » qui les présente aux visiteurs potentiels du site. Vous pourriez y écrire quelque chose de ce tenant :
<blockquote>Bonjour ! 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 :
<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 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 !
Page d’exemple
trash
open
open
page-d-exemple
2012-01-18 04:38:01
2012-01-18 03:38:01
0
http://www.alicepegie.com/wordpress/wordpress/?page_id=2
0
page
0
3
1
2012-01-17 11:57:34
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-17 11:57:34
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=3
0
post
0
4
1
2012-01-17 13:40:14
0000-00-00 00:00:00
draft
open
open
2012-01-17 13:40:14
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=4
1
nav_menu_item
0
5
1
2012-01-17 13:40:14
0000-00-00 00:00:00
draft
open
open
2012-01-17 13:40:14
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=5
1
nav_menu_item
0
6
1
2012-01-17 13:40:14
0000-00-00 00:00:00
draft
open
open
2012-01-17 13:40:14
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=6
1
nav_menu_item
0
7
1
2012-01-17 13:40:14
0000-00-00 00:00:00
draft
open
open
2012-01-17 13:40:14
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=7
1
nav_menu_item
0
8
1
2012-01-17 13:40:14
0000-00-00 00:00:00
draft
open
open
2012-01-17 13:40:14
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=8
1
nav_menu_item
0
9
1
2012-01-17 13:40:14
0000-00-00 00:00:00
draft
open
open
2012-01-17 13:40:14
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=9
1
nav_menu_item
0
366
1
2012-01-19 14:58:50
2012-01-19 13:58:50
Mes 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&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!!!
inherit
open
open
288-revision-9
2012-01-19 14:58:50
2012-01-19 13:58:50
288
http://www.alicepegie.com/wordpress/wordpress/?p=366
0
revision
0
16
1
2012-01-17 16:12:21
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-17 16:12:21
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=16
0
post
0
17
1
2011-12-23 16:24:47
2011-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>
<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 Maison
publish
open
open
18
2012-01-19 19:25:22
2012-01-19 18:25:22
0
http://www.alicepegie.com/wordpress/wordpress/?p=17
0
post
0
137
1
2012-01-18 11:21:36
2012-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>
<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 Maison
inherit
open
open
17-revision-7
2012-01-18 11:21:36
2012-01-18 10:21:36
17
http://www.alicepegie.com/wordpress/wordpress/?p=137
0
revision
0
75
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
75
2012-01-18 04:30:52
2012-01-18 03:30:52
0
http://www.alicepegie.com/wordpress/wordpress/?p=75
2
nav_menu_item
0
76
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
76
2012-01-18 04:30:52
2012-01-18 03:30:52
0
http://www.alicepegie.com/wordpress/wordpress/?p=76
3
nav_menu_item
0
77
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
77
2012-01-18 04:30:52
2012-01-18 03:30:52
8
http://www.alicepegie.com/wordpress/wordpress/?p=77
4
nav_menu_item
0
78
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
78
2012-01-18 04:30:52
2012-01-18 03:30:52
8
http://www.alicepegie.com/wordpress/wordpress/?p=78
5
nav_menu_item
0
79
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
79
2012-01-18 04:30:52
2012-01-18 03:30:52
45
http://www.alicepegie.com/wordpress/wordpress/?p=79
6
nav_menu_item
0
80
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
80
2012-01-18 04:30:52
2012-01-18 03:30:52
45
http://www.alicepegie.com/wordpress/wordpress/?p=80
7
nav_menu_item
0
18
1
2012-01-17 16:23:36
2012-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&print=1&layout=default&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&template=maniguettebis1&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>
<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>
inherit
open
open
17-revision
2012-01-17 16:23:36
2012-01-17 15:23:36
17
http://www.alicepegie.com/wordpress/wordpress/?p=18
0
revision
0
19
1
2012-01-17 16:24:08
2012-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&print=1&layout=default&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&template=maniguettebis1&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>
<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>
inherit
open
open
17-revision-2
2012-01-17 16:24:08
2012-01-17 15:24:08
17
http://www.alicepegie.com/wordpress/wordpress/?p=19
0
revision
0
20
1
2012-01-17 16:24:47
2012-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&print=1&layout=default&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&template=maniguettebis1&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>
<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>
inherit
open
open
17-revision-3
2012-01-17 16:24:47
2012-01-17 15:24:47
17
http://www.alicepegie.com/wordpress/wordpress/?p=20
0
revision
0
74
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
74
2012-01-18 04:30:52
2012-01-18 03:30:52
0
http://www.alicepegie.com/wordpress/wordpress/?p=74
1
nav_menu_item
0
21
1
2012-01-17 16:26:49
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-17 16:26:49
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=21
0
post
0
22
1
2012-01-17 16:27:29
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-17 16:27:29
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=22
0
post
0
23
1
2012-01-17 16:28:41
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-17 16:28:41
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=23
0
post
0
24
1
2011-12-22 16:30:37
2011-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" />
<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>
<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>
<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'Ananas
publish
open
open
buche-de-noel-a-lananas
2012-01-19 19:24:46
2012-01-19 18:24:46
0
http://www.alicepegie.com/wordpress/wordpress/?p=24
0
post
0
25
1
2012-01-17 16:29:45
2012-01-17 15:29:45
Brouillon auto
inherit
open
open
24-revision
2012-01-17 16:29:45
2012-01-17 15:29:45
24
http://www.alicepegie.com/wordpress/wordpress/?p=25
0
revision
0
139
1
2012-01-17 17:27:28
2012-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> </p>
<p><strong></strong><strong>Un voyage rythmique redoutable. </strong></p>
<p> </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> </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> </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>
Abakuya
inherit
open
open
70-revision-2
2012-01-17 17:27:28
2012-01-17 16:27:28
70
http://www.alicepegie.com/wordpress/wordpress/?p=139
0
revision
0
26
1
2010-01-14 16:34:19
2010-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) 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). 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 soyez attentifs à la quantité de Soude que vous mettez </span></strong></em><span style="color: black;"> (aidez vous du <a href="http://calc.mendrulandia.es/?lg=fr"><span style="color: black;">Calculateur de Saponification</span></a> par exemple) et 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;"> </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 !</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 à 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 ?</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, 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. Ce surplus 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, 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 moules de cuisine en silicones, des briques de lait, surtout pas d'aluminium si vous utilisez des moules en bois, cartons, protégez les par du film plastique. Une fois votre pâte de savon moulées recouvrez-la d'une pellicule de Film plastique. 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 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 Savon
publish
open
open
le-savon
2012-01-17 16:44:55
2012-01-17 15:44:55
0
http://www.alicepegie.com/wordpress/wordpress/?p=26
0
post
0
27
1
2012-01-17 16:34:16
2012-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) 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). 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 soyez attentifs à la quantité de Soude que vous mettez </span></strong></em><span style="color: black;"> (aidez vous du <a href="http://calc.mendrulandia.es/?lg=fr"><span style="color: black;">Calculateur de Saponification</span></a> par exemple) et 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;"> </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 !</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 à 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 ?</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, 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. Ce surplus 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, 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 moules de cuisine en silicones, des briques de lait, surtout pas d'aluminium si vous utilisez des moules en bois, cartons, protégez les par du film plastique. Une fois votre pâte de savon moulées recouvrez-la d'une pellicule de Film plastique. 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 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 Savon
inherit
open
open
26-revision
2012-01-17 16:34:16
2012-01-17 15:34:16
26
http://www.alicepegie.com/wordpress/wordpress/?p=27
0
revision
0
28
1
2012-01-17 16:34:19
2012-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) 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). 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 soyez attentifs à la quantité de Soude que vous mettez </span></strong></em><span style="color: black;"> (aidez vous du <a href="http://calc.mendrulandia.es/?lg=fr"><span style="color: black;">Calculateur de Saponification</span></a> par exemple) et 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;"> </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 !</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 à 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 ?</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, 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. Ce surplus 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, 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 moules de cuisine en silicones, des briques de lait, surtout pas d'aluminium si vous utilisez des moules en bois, cartons, protégez les par du film plastique. Une fois votre pâte de savon moulées recouvrez-la d'une pellicule de Film plastique. 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 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 Savon
inherit
open
open
26-revision-2
2012-01-17 16:34:19
2012-01-17 15:34:19
26
http://www.alicepegie.com/wordpress/wordpress/?p=28
0
revision
0
31
1
2010-01-14 15:41:53
2010-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érapie
publish
open
open
lhydrolatherapie
2012-01-18 13:50:53
2012-01-18 12:50:53
0
http://www.alicepegie.com/wordpress/wordpress/?p=31
0
post
0
32
1
2012-01-17 16:42:13
2012-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 : 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;"> </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érapie
inherit
open
open
31-revision
2012-01-17 16:42:13
2012-01-17 15:42:13
31
http://www.alicepegie.com/wordpress/wordpress/?p=32
0
revision
0
146
1
2012-01-17 17:17:50
2012-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 solutions
inherit
open
open
55-revision-2
2012-01-17 17:17:50
2012-01-17 16:17:50
55
http://www.alicepegie.com/wordpress/wordpress/?p=146
0
revision
0
34
1
2012-01-17 16:35:35
2012-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) 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). 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 soyez attentifs à la quantité de Soude que vous mettez </span></strong></em><span style="color: black;"> (aidez vous du <a href="http://calc.mendrulandia.es/?lg=fr"><span style="color: black;">Calculateur de Saponification</span></a> par exemple) et 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;"> </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 !</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 à 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 ?</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, 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. Ce surplus 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, 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 moules de cuisine en silicones, des briques de lait, surtout pas d'aluminium si vous utilisez des moules en bois, cartons, protégez les par du film plastique. Une fois votre pâte de savon moulées recouvrez-la d'une pellicule de Film plastique. 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 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 Savon
inherit
open
open
26-revision-3
2012-01-17 16:35:35
2012-01-17 15:35:35
26
http://www.alicepegie.com/wordpress/wordpress/?p=34
0
revision
0
37
1
2012-01-17 16:25:16
2012-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&print=1&layout=default&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&template=maniguettebis1&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>
<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 Maison
inherit
open
open
17-revision-4
2012-01-17 16:25:16
2012-01-17 15:25:16
17
http://www.alicepegie.com/wordpress/wordpress/?p=37
0
revision
0
38
1
2012-01-17 16:42:50
2012-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 : 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;"> </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érapie
inherit
open
open
31-revision-2
2012-01-17 16:42:50
2012-01-17 15:42:50
31
http://www.alicepegie.com/wordpress/wordpress/?p=38
0
revision
0
39
1
2012-01-17 16:30:37
2012-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&print=1&layout=default&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&template=maniguettebis1&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> <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> </p>
<p> </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> </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> </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
inherit
open
open
24-revision-2
2012-01-17 16:30:37
2012-01-17 15:30:37
24
http://www.alicepegie.com/wordpress/wordpress/?p=39
0
revision
0
40
1
2012-01-17 16:48:07
2012-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&print=1&layout=default&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&template=maniguettebis1&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> <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> </p>
<p> </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> </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> </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
inherit
open
open
24-revision-3
2012-01-17 16:48:07
2012-01-17 15:48:07
24
http://www.alicepegie.com/wordpress/wordpress/?p=40
0
revision
0
41
1
2012-01-17 16:48:49
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-17 16:48:49
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=41
0
post
0
42
1
2010-01-14 17:10:57
2010-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 à S
publish
open
open
les-hydrolats-de-i-a-s-2
2012-01-17 17:12:28
2012-01-17 16:12:28
0
http://www.alicepegie.com/wordpress/wordpress/?p=42
0
post
0
43
1
2012-01-17 17:10:53
2012-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 à S
inherit
open
open
42-revision
2012-01-17 17:10:53
2012-01-17 16:10:53
42
http://www.alicepegie.com/wordpress/wordpress/?p=43
0
revision
0
44
1
2012-01-17 17:10:57
2012-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 à S
inherit
open
open
42-revision-2
2012-01-17 17:10:57
2012-01-17 16:10:57
42
http://www.alicepegie.com/wordpress/wordpress/?p=44
0
revision
0
46
1
2012-01-17 17:11:15
2012-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 à S
inherit
open
open
42-revision-3
2012-01-17 17:11:15
2012-01-17 16:11:15
42
http://www.alicepegie.com/wordpress/wordpress/?p=46
0
revision
0
47
1
2010-01-14 16:12:44
2010-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 à H
publish
open
open
les-hydrolats-de-a-a-h
2012-01-17 17:13:35
2012-01-17 16:13:35
0
http://www.alicepegie.com/wordpress/wordpress/?p=47
0
post
0
48
1
2012-01-17 17:12:56
2012-01-17 16:12:56
Les Hydrolats de A à H
inherit
open
open
47-revision
2012-01-17 17:12:56
2012-01-17 16:12:56
47
http://www.alicepegie.com/wordpress/wordpress/?p=48
0
revision
0
49
1
2012-01-17 17:13:25
2012-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 à H
inherit
open
open
47-revision-2
2012-01-17 17:13:25
2012-01-17 16:13:25
47
http://www.alicepegie.com/wordpress/wordpress/?p=49
0
revision
0
50
1
2010-01-14 17:13:46
2010-01-14 16:13:46
Basilic 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&id_page=6&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)
publish
open
open
le-basilic-tropical-messep
2012-01-17 17:15:39
2012-01-17 16:15:39
0
http://www.alicepegie.com/wordpress/wordpress/?p=50
0
post
0
51
1
2012-01-17 17:14:48
2012-01-17 16:14:48
Basilic 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&id_page=6&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)
inherit
open
open
50-revision
2012-01-17 17:14:48
2012-01-17 16:14:48
50
http://www.alicepegie.com/wordpress/wordpress/?p=51
0
revision
0
53
1
2010-01-14 17:15:44
2010-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&vx=1&kat2=3">Source</a></span></span></p>
Les kolas
publish
open
open
les-kolas
2012-01-17 17:16:56
2012-01-17 16:16:56
0
http://www.alicepegie.com/wordpress/wordpress/?p=53
0
post
0
52
1
2012-01-17 17:15:12
2012-01-17 16:15:12
Basilic 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&id_page=6&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)
inherit
open
open
50-revision-2
2012-01-17 17:15:12
2012-01-17 16:15:12
50
http://www.alicepegie.com/wordpress/wordpress/?p=52
0
revision
0
54
1
2012-01-17 17:16:46
2012-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&vx=1&kat2=3">Source</a></span></span></p>
Les kolas
inherit
open
open
53-revision
2012-01-17 17:16:46
2012-01-17 16:16:46
53
http://www.alicepegie.com/wordpress/wordpress/?p=54
0
revision
0
55
1
2010-01-14 17:17:16
2010-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 solutions
publish
open
open
problemes-de-peau-et-solutions
2012-01-18 13:51:42
2012-01-18 12:51:42
0
http://www.alicepegie.com/wordpress/wordpress/?p=55
0
post
0
56
1
2012-01-17 17:17:29
2012-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 solutions
inherit
open
open
55-revision
2012-01-17 17:17:29
2012-01-17 16:17:29
55
http://www.alicepegie.com/wordpress/wordpress/?p=56
0
revision
0
57
1
2010-01-14 17:18:06
2010-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&action=edit&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&action=edit&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&action=edit&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 Cameroun
publish
open
open
un-petit-rappel-de-lhistoire-du-cameroun
2012-01-18 13:52:27
2012-01-18 12:52:27
0
http://www.alicepegie.com/wordpress/wordpress/?p=57
0
post
0
58
1
2012-01-17 17:19:08
2012-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&action=edit&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&action=edit&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&action=edit&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 Cameroun
inherit
open
open
57-revision
2012-01-17 17:19:08
2012-01-17 16:19:08
57
http://www.alicepegie.com/wordpress/wordpress/?p=58
0
revision
0
59
1
2010-01-14 17:19:36
2010-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 Bantous
publish
open
open
les-bantous
2012-01-18 13:52:52
2012-01-18 12:52:52
0
http://www.alicepegie.com/wordpress/wordpress/?p=59
0
post
0
60
1
2012-01-17 17:19:42
2012-01-17 16:19:42
Les Bantous
inherit
open
open
59-revision
2012-01-17 17:19:42
2012-01-17 16:19:42
59
http://www.alicepegie.com/wordpress/wordpress/?p=60
0
revision
0
150
1
2012-01-17 17:22:21
2012-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 : 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).</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 : 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>
<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;" 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 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>
<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 », 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éti
inherit
open
open
63-revision-2
2012-01-17 17:22:21
2012-01-17 16:22:21
63
http://www.alicepegie.com/wordpress/wordpress/?p=150
0
revision
0
61
1
2012-01-17 17:19:19
2012-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&action=edit&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&action=edit&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&action=edit&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 Cameroun
inherit
open
open
57-revision-2
2012-01-17 17:19:19
2012-01-17 16:19:19
57
http://www.alicepegie.com/wordpress/wordpress/?p=61
0
revision
0
62
1
2012-01-17 16:48:39
2012-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&print=1&layout=default&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&template=maniguettebis1&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> <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> </p>
<p> </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> </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> </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
inherit
open
open
24-revision-4
2012-01-17 16:48:39
2012-01-17 15:48:39
24
http://www.alicepegie.com/wordpress/wordpress/?p=62
0
revision
0
63
1
2010-01-14 17:21:41
2010-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éti
publish
open
open
le-peuple-beti
2012-01-18 13:53:20
2012-01-18 12:53:20
0
http://www.alicepegie.com/wordpress/wordpress/?p=63
0
post
0
64
1
2012-01-17 17:21:54
2012-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 : 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).</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 : 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>
<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;" 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 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>
<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 », 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éti
inherit
open
open
63-revision
2012-01-17 17:21:54
2012-01-17 16:21:54
63
http://www.alicepegie.com/wordpress/wordpress/?p=64
0
revision
0
151
1
2010-01-15 13:55:55
2010-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>
<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é
publish
open
open
anne-marie-nzie
2012-01-18 14:02:52
2012-01-18 13:02:52
0
http://www.alicepegie.com/wordpress/wordpress/?p=151
0
post
0
65
1
2010-01-14 17:24:20
2010-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 Camerounaise
publish
open
open
leglise-presbyterienne-camerounaise
2012-01-18 11:29:23
2012-01-18 10:29:23
0
http://www.alicepegie.com/wordpress/wordpress/?p=65
0
post
0
66
1
2012-01-17 17:24:43
2012-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 Camerounaise
inherit
open
open
65-revision
2012-01-17 17:24:43
2012-01-17 16:24:43
65
http://www.alicepegie.com/wordpress/wordpress/?p=66
0
revision
0
67
1
2010-01-14 17:25:39
2010-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>
<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>
<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>
<strong><span style="font-size: 12pt;">Voix de l'Esprit</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/voix_de_lesprit|1||a{/nmap}</span></a>
<strong><span style="font-size: 12pt;">ECHO Du Ciel</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/Echo_du_ciel|1||a{/nmap}</span></a>
Les Chorales
publish
open
open
les-chorales
2012-01-18 11:28:33
2012-01-18 10:28:33
0
http://www.alicepegie.com/wordpress/wordpress/?p=67
0
post
0
68
1
2012-01-17 17:25:53
2012-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 </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> </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> </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> </p>
<p><strong><span style="font-size: 12pt;">Voix de l'Esprit</span></strong></p>
<p> </p>
<p> </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> </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> </p>
<p> </p>
Les Chorales
inherit
open
open
67-revision
2012-01-17 17:25:53
2012-01-17 16:25:53
67
http://www.alicepegie.com/wordpress/wordpress/?p=68
0
revision
0
142
1
2012-01-17 17:25:20
2012-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 Camerounaise
inherit
open
open
65-revision-2
2012-01-17 17:25:20
2012-01-17 16:25:20
65
http://www.alicepegie.com/wordpress/wordpress/?p=142
0
revision
0
69
1
2012-01-17 17:26:14
2012-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 </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> </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> </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> </p>
<p><strong><span style="font-size: 12pt;">Voix de l'Esprit</span></strong></p>
<p> </p>
<p> </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> </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> </p>
<p> </p>
Les Chorales
inherit
open
open
67-revision-2
2012-01-17 17:26:14
2012-01-17 16:26:14
67
http://www.alicepegie.com/wordpress/wordpress/?p=69
0
revision
0
70
1
2010-01-14 17:26:54
2010-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>
<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 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.
<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>
Abakuya
publish
open
open
abakuya
2012-01-20 13:48:39
2012-01-20 12:48:39
0
http://www.alicepegie.com/wordpress/wordpress/?p=70
0
post
0
71
1
2012-01-17 17:27:08
2012-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> </p>
<p><strong><strong>Un voyage rythmique redoutable. </strong></strong></p>
<p> </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> </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> </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>
Abakuya
inherit
open
open
70-revision
2012-01-17 17:27:08
2012-01-17 16:27:08
70
http://www.alicepegie.com/wordpress/wordpress/?p=71
0
revision
0
140
1
2012-01-18 11:28:15
2012-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>
<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>
<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>
<strong><span style="font-size: 12pt;">Voix de l'Esprit</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/voix_de_lesprit|1||a{/nmap}</span></a>
<strong><span style="font-size: 12pt;">ECHO Du Ciel</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/Echo_du_ciel|1||a{/nmap}</span></a>
Les Chorales
inherit
open
open
67-autosave
2012-01-18 11:28:15
2012-01-18 10:28:15
67
http://www.alicepegie.com/wordpress/wordpress/?p=140
0
revision
0
72
1
2012-01-18 11:23:36
2012-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>
<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 Maison
inherit
open
open
17-autosave
2012-01-18 11:23:36
2012-01-18 10:23:36
17
http://www.alicepegie.com/wordpress/wordpress/?p=72
0
revision
0
73
1
2012-01-17 16:45:47
2012-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&print=1&layout=default&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&template=maniguettebis1&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>
<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 Maison
inherit
open
open
17-revision-5
2012-01-17 16:45:47
2012-01-17 15:45:47
17
http://www.alicepegie.com/wordpress/wordpress/?p=73
0
revision
0
81
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
81
2012-01-18 04:30:52
2012-01-18 03:30:52
45
http://www.alicepegie.com/wordpress/wordpress/?p=81
8
nav_menu_item
0
82
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
82
2012-01-18 04:30:52
2012-01-18 03:30:52
45
http://www.alicepegie.com/wordpress/wordpress/?p=82
9
nav_menu_item
0
83
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
83
2012-01-18 04:30:52
2012-01-18 03:30:52
45
http://www.alicepegie.com/wordpress/wordpress/?p=83
10
nav_menu_item
0
84
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
84
2012-01-18 04:30:52
2012-01-18 03:30:52
8
http://www.alicepegie.com/wordpress/wordpress/?p=84
11
nav_menu_item
0
85
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
85
2012-01-18 04:30:52
2012-01-18 03:30:52
8
http://www.alicepegie.com/wordpress/wordpress/?p=85
12
nav_menu_item
0
86
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
86
2012-01-18 04:30:52
2012-01-18 03:30:52
8
http://www.alicepegie.com/wordpress/wordpress/?p=86
13
nav_menu_item
0
87
1
2012-01-18 04:30:52
2012-01-18 03:30:52
publish
open
open
87
2012-01-18 04:30:52
2012-01-18 03:30:52
32
http://www.alicepegie.com/wordpress/wordpress/?p=87
14
nav_menu_item
0
88
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
88
2012-01-18 04:30:53
2012-01-18 03:30:53
32
http://www.alicepegie.com/wordpress/wordpress/?p=88
15
nav_menu_item
0
89
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
89
2012-01-18 04:30:53
2012-01-18 03:30:53
32
http://www.alicepegie.com/wordpress/wordpress/?p=89
16
nav_menu_item
0
90
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
90
2012-01-18 04:30:53
2012-01-18 03:30:53
32
http://www.alicepegie.com/wordpress/wordpress/?p=90
17
nav_menu_item
0
91
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
91
2012-01-18 04:30:53
2012-01-18 03:30:53
32
http://www.alicepegie.com/wordpress/wordpress/?p=91
18
nav_menu_item
0
92
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
92
2012-01-18 04:30:53
2012-01-18 03:30:53
32
http://www.alicepegie.com/wordpress/wordpress/?p=92
19
nav_menu_item
0
93
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
93
2012-01-18 04:30:53
2012-01-18 03:30:53
32
http://www.alicepegie.com/wordpress/wordpress/?p=93
20
nav_menu_item
0
94
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
94
2012-01-18 04:30:53
2012-01-18 03:30:53
8
http://www.alicepegie.com/wordpress/wordpress/?p=94
21
nav_menu_item
0
95
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
95
2012-01-18 04:30:53
2012-01-18 03:30:53
29
http://www.alicepegie.com/wordpress/wordpress/?p=95
22
nav_menu_item
0
96
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
96
2012-01-18 04:30:53
2012-01-18 03:30:53
29
http://www.alicepegie.com/wordpress/wordpress/?p=96
23
nav_menu_item
0
97
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
97
2012-01-18 04:30:53
2012-01-18 03:30:53
29
http://www.alicepegie.com/wordpress/wordpress/?p=97
24
nav_menu_item
0
98
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
98
2012-01-18 04:30:53
2012-01-18 03:30:53
8
http://www.alicepegie.com/wordpress/wordpress/?p=98
25
nav_menu_item
0
99
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
99
2012-01-18 04:30:53
2012-01-18 03:30:53
8
http://www.alicepegie.com/wordpress/wordpress/?p=99
26
nav_menu_item
0
100
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
100
2012-01-18 04:30:53
2012-01-18 03:30:53
8
http://www.alicepegie.com/wordpress/wordpress/?p=100
27
nav_menu_item
0
101
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
101
2012-01-18 04:30:53
2012-01-18 03:30:53
30
http://www.alicepegie.com/wordpress/wordpress/?p=101
28
nav_menu_item
0
102
1
2012-01-18 04:30:53
2012-01-18 03:30:53
publish
open
open
102
2012-01-18 04:30:53
2012-01-18 03:30:53
30
http://www.alicepegie.com/wordpress/wordpress/?p=102
29
nav_menu_item
0
103
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
103
2012-01-18 04:30:54
2012-01-18 03:30:54
30
http://www.alicepegie.com/wordpress/wordpress/?p=103
30
nav_menu_item
0
104
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
104
2012-01-18 04:30:54
2012-01-18 03:30:54
0
http://www.alicepegie.com/wordpress/wordpress/?p=104
31
nav_menu_item
0
105
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
105
2012-01-18 04:30:54
2012-01-18 03:30:54
6
http://www.alicepegie.com/wordpress/wordpress/?p=105
32
nav_menu_item
0
106
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
106
2012-01-18 04:30:54
2012-01-18 03:30:54
6
http://www.alicepegie.com/wordpress/wordpress/?p=106
33
nav_menu_item
0
107
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
107
2012-01-18 04:30:54
2012-01-18 03:30:54
6
http://www.alicepegie.com/wordpress/wordpress/?p=107
34
nav_menu_item
0
108
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
108
2012-01-18 04:30:54
2012-01-18 03:30:54
6
http://www.alicepegie.com/wordpress/wordpress/?p=108
35
nav_menu_item
0
109
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
109
2012-01-18 04:30:54
2012-01-18 03:30:54
6
http://www.alicepegie.com/wordpress/wordpress/?p=109
36
nav_menu_item
0
110
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
110
2012-01-18 04:30:54
2012-01-18 03:30:54
0
http://www.alicepegie.com/wordpress/wordpress/?p=110
37
nav_menu_item
0
111
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
111
2012-01-18 04:30:54
2012-01-18 03:30:54
7
http://www.alicepegie.com/wordpress/wordpress/?p=111
38
nav_menu_item
0
112
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
112
2012-01-18 04:30:54
2012-01-18 03:30:54
7
http://www.alicepegie.com/wordpress/wordpress/?p=112
39
nav_menu_item
0
113
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
113
2012-01-18 04:30:54
2012-01-18 03:30:54
7
http://www.alicepegie.com/wordpress/wordpress/?p=113
40
nav_menu_item
0
114
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
114
2012-01-18 04:30:54
2012-01-18 03:30:54
7
http://www.alicepegie.com/wordpress/wordpress/?p=114
41
nav_menu_item
0
115
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
115
2012-01-18 04:30:54
2012-01-18 03:30:54
7
http://www.alicepegie.com/wordpress/wordpress/?p=115
42
nav_menu_item
0
116
1
2012-01-18 04:30:54
2012-01-18 03:30:54
publish
open
open
116
2012-01-18 04:30:54
2012-01-18 03:30:54
7
http://www.alicepegie.com/wordpress/wordpress/?p=116
43
nav_menu_item
0
117
1
2012-01-18 04:30:54
2012-01-18 03:30:54
Pour Maman & Bébé
publish
open
open
pour-maman-bebe
2012-01-18 04:30:54
2012-01-18 03:30:54
7
http://www.alicepegie.com/wordpress/wordpress/?p=117
44
nav_menu_item
0
118
1
2012-01-18 04:30:55
2012-01-18 03:30:55
publish
open
open
118
2012-01-18 04:30:55
2012-01-18 03:30:55
7
http://www.alicepegie.com/wordpress/wordpress/?p=118
45
nav_menu_item
0
119
1
2012-01-18 04:30:55
2012-01-18 03:30:55
publish
open
open
119
2012-01-18 04:30:55
2012-01-18 03:30:55
0
http://www.alicepegie.com/wordpress/wordpress/?p=119
46
nav_menu_item
0
120
1
2012-01-18 04:30:55
2012-01-18 03:30:55
publish
open
open
120
2012-01-18 04:30:55
2012-01-18 03:30:55
9
http://www.alicepegie.com/wordpress/wordpress/?p=120
47
nav_menu_item
0
121
1
2012-01-18 04:30:55
2012-01-18 03:30:55
publish
open
open
121
2012-01-18 04:30:55
2012-01-18 03:30:55
9
http://www.alicepegie.com/wordpress/wordpress/?p=121
48
nav_menu_item
0
122
1
2012-01-18 04:30:55
2012-01-18 03:30:55
publish
open
open
122
2012-01-18 04:30:55
2012-01-18 03:30:55
9
http://www.alicepegie.com/wordpress/wordpress/?p=122
49
nav_menu_item
0
124
1
1970-01-01 00:00:00
1969-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-Je
publish
open
open
qui-suis-je
2012-01-19 14:50:01
2012-01-19 13:50:01
0
http://www.alicepegie.com/wordpress/wordpress/?p=124
0
post
0
125
1
2012-01-18 04:34:17
2012-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-Je
inherit
open
open
124-revision
2012-01-18 04:34:17
2012-01-18 03:34:17
124
http://www.alicepegie.com/wordpress/wordpress/?p=125
0
revision
0
126
1
2012-01-18 04:36:52
0000-00-00 00:00:00
Accueil
draft
open
open
2012-01-18 04:36:52
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=126
1
nav_menu_item
0
127
1
2012-01-18 04:37:13
0000-00-00 00:00:00
draft
open
open
2012-01-18 04:37:13
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=127
1
nav_menu_item
0
128
1
2012-01-18 04:37:13
0000-00-00 00:00:00
draft
open
open
2012-01-18 04:37:13
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=128
1
nav_menu_item
0
129
1
2012-01-17 11:56:04
2012-01-17 11:56:04
Voici 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 « À Propos » qui les présente aux visiteurs potentiels du site. Vous pourriez y écrire quelque chose de ce tenant :
<blockquote>Bonjour ! 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 :
<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 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 !
Page d’exemple
inherit
open
open
2-revision
2012-01-17 11:56:04
2012-01-17 11:56:04
2
http://www.alicepegie.com/wordpress/wordpress/?p=129
0
revision
0
130
1
2012-01-18 04:39:09
2012-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?
publish
open
open
qui-suis-je
2012-01-18 04:39:09
2012-01-18 03:39:09
0
http://www.alicepegie.com/wordpress/wordpress/?page_id=130
0
page
0
131
1
2012-01-18 04:39:07
2012-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?
inherit
open
open
130-revision
2012-01-18 04:39:07
2012-01-18 03:39:07
130
http://www.alicepegie.com/wordpress/wordpress/?p=131
0
revision
0
132
1
2012-01-18 04:40:07
2012-01-18 03:40:07
publish
open
open
132
2012-01-18 04:40:07
2012-01-18 03:40:07
0
http://www.alicepegie.com/wordpress/wordpress/?p=132
2
nav_menu_item
0
133
1
2012-01-18 04:40:07
2012-01-18 03:40:07
publish
open
open
133
2012-01-18 04:40:07
2012-01-18 03:40:07
0
http://www.alicepegie.com/wordpress/wordpress/?p=133
3
nav_menu_item
0
134
1
2012-01-18 04:40:07
2012-01-18 03:40:07
publish
open
open
134
2012-01-18 04:40:07
2012-01-18 03:40:07
0
http://www.alicepegie.com/wordpress/wordpress/?p=134
4
nav_menu_item
0
135
1
2012-01-18 04:40:07
2012-01-18 03:40:07
Accueil
publish
open
open
accueil
2012-01-18 04:40:07
2012-01-18 03:40:07
0
http://www.alicepegie.com/wordpress/wordpress/?p=135
1
nav_menu_item
0
136
1
2012-01-18 04:29:10
2012-01-18 03:29:10
<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>
<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 Maison
inherit
open
open
17-revision-6
2012-01-18 04:29:10
2012-01-18 03:29:10
17
http://www.alicepegie.com/wordpress/wordpress/?p=136
0
revision
0
138
1
2012-01-17 17:21:13
2012-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&print=1&layout=default&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&template=maniguettebis1&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> <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> </p>
<p> </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> </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> </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'Ananas
inherit
open
open
24-revision-5
2012-01-17 17:21:13
2012-01-17 16:21:13
24
http://www.alicepegie.com/wordpress/wordpress/?p=138
0
revision
0
141
1
2012-01-17 17:26:38
2012-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 </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> </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> </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> </p>
<p><strong><span style="font-size: 12pt;">Voix de l'Esprit</span></strong></p>
<p> </p>
<p> </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> </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> </p>
<p> </p>
Les Chorales
inherit
open
open
67-revision-3
2012-01-17 17:26:38
2012-01-17 16:26:38
67
http://www.alicepegie.com/wordpress/wordpress/?p=141
0
revision
0
143
1
2012-01-18 11:30:26
2012-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 Camerounaise
inherit
open
open
65-autosave
2012-01-18 11:30:26
2012-01-18 10:30:26
65
http://www.alicepegie.com/wordpress/wordpress/?p=143
0
revision
0
145
1
2012-01-17 16:47:38
2012-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érapie
inherit
open
open
31-revision-3
2012-01-17 16:47:38
2012-01-17 15:47:38
31
http://www.alicepegie.com/wordpress/wordpress/?p=145
0
revision
0
144
1
2012-01-18 11:21:58
2012-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>
<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 Maison
inherit
open
open
17-revision-8
2012-01-18 11:21:58
2012-01-18 10:21:58
17
http://www.alicepegie.com/wordpress/wordpress/?p=144
0
revision
0
147
1
2012-01-18 13:51:27
2012-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 solutions
inherit
open
open
55-revision-3
2012-01-18 13:51:27
2012-01-18 12:51:27
55
http://www.alicepegie.com/wordpress/wordpress/?p=147
0
revision
0
148
1
2012-01-17 17:20:50
2012-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&action=edit&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&action=edit&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&action=edit&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 Cameroun
inherit
open
open
57-revision-3
2012-01-17 17:20:50
2012-01-17 16:20:50
57
http://www.alicepegie.com/wordpress/wordpress/?p=148
0
revision
0
149
1
2012-01-17 17:20:21
2012-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 Bantous
inherit
open
open
59-revision-2
2012-01-17 17:20:21
2012-01-17 16:20:21
59
http://www.alicepegie.com/wordpress/wordpress/?p=149
0
revision
0
152
1
2012-01-18 13:56:17
2012-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;"> </p>
<p> </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> </p>
<p> </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> </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é
inherit
open
open
151-revision
2012-01-18 13:56:17
2012-01-18 12:56:17
151
http://www.alicepegie.com/wordpress/wordpress/?p=152
0
revision
0
162
1
2012-01-18 14:03:57
2012-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>
<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é
inherit
open
open
151-autosave
2012-01-18 14:03:57
2012-01-18 13:03:57
151
http://www.alicepegie.com/wordpress/wordpress/?p=162
0
revision
0
153
1
2010-01-15 13:57:20
2010-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>
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.
<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 Essomba
publish
open
open
esso-essomba
2012-01-18 14:02:00
2012-01-18 13:02:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=153
0
post
0
154
1
2012-01-18 13:58:08
2012-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> </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> </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 Essomba
inherit
open
open
153-revision
2012-01-18 13:58:08
2012-01-18 12:58:08
153
http://www.alicepegie.com/wordpress/wordpress/?p=154
0
revision
0
155
1
2010-01-15 13:58:24
2010-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&lang=fr">Source</a>
Georges Seba
publish
open
open
georges-seba
2012-01-18 14:01:14
2012-01-18 13:01:14
0
http://www.alicepegie.com/wordpress/wordpress/?p=155
0
post
0
156
1
2012-01-18 13:58:49
2012-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> </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. 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, 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&lang=fr">Source</a></span></span></span></p>
Georges Seba
inherit
open
open
155-revision
2012-01-18 13:58:49
2012-01-18 12:58:49
155
http://www.alicepegie.com/wordpress/wordpress/?p=156
0
revision
0
158
1
2012-01-18 13:59:38
2012-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&lang=fr">Source</a>
Georges Seba
inherit
open
open
155-revision-3
2012-01-18 13:59:38
2012-01-18 12:59:38
155
http://www.alicepegie.com/wordpress/wordpress/?p=158
0
revision
0
157
1
2012-01-18 13:59:19
2012-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> </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. 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, 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&lang=fr">Source</a></span></span></span></p>
Georges Seba
inherit
open
open
155-revision-2
2012-01-18 13:59:19
2012-01-18 12:59:19
155
http://www.alicepegie.com/wordpress/wordpress/?p=157
0
revision
0
159
1
2012-01-18 14:00:18
2012-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&lang=fr">Source</a>
Georges Seba
inherit
open
open
155-revision-4
2012-01-18 14:00:18
2012-01-18 13:00:18
155
http://www.alicepegie.com/wordpress/wordpress/?p=159
0
revision
0
160
1
2012-01-18 13:58:17
2012-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> </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> </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 Essomba
inherit
open
open
153-revision-2
2012-01-18 13:58:17
2012-01-18 12:58:17
153
http://www.alicepegie.com/wordpress/wordpress/?p=160
0
revision
0
161
1
2012-01-18 13:57:00
2012-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;"> </p>
<p> </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> </p>
<p> </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> </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é
inherit
open
open
151-revision-2
2012-01-18 13:57:00
2012-01-18 12:57:00
151
http://www.alicepegie.com/wordpress/wordpress/?p=161
0
revision
0
163
1
2010-01-15 14:06:22
2010-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>
<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>
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.
<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 Ponce
publish
open
open
lady-ponce
2012-01-18 14:09:55
2012-01-18 13:09:55
0
http://www.alicepegie.com/wordpress/wordpress/?p=163
0
post
0
164
1
2012-01-18 14:06:44
2012-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> </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> </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 Ponce
inherit
open
open
163-revision
2012-01-18 14:06:44
2012-01-18 13:06:44
163
http://www.alicepegie.com/wordpress/wordpress/?p=164
0
revision
0
165
1
2010-01-15 14:07:57
2010-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>
<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ées
publish
open
open
les-tetes-brulees
2012-01-18 14:09:05
2012-01-18 13:09:05
0
http://www.alicepegie.com/wordpress/wordpress/?p=165
0
post
0
166
1
2012-01-18 14:08:59
2012-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}
<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>
<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ées
inherit
open
open
165-revision
2012-01-18 14:08:59
2012-01-18 13:08:59
165
http://www.alicepegie.com/wordpress/wordpress/?p=166
0
revision
0
167
1
2012-01-18 14:07:14
2012-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> </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> </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 Ponce
inherit
open
open
163-revision-2
2012-01-18 14:07:14
2012-01-18 13:07:14
163
http://www.alicepegie.com/wordpress/wordpress/?p=167
0
revision
0
168
1
2012-01-18 14:11:00
2012-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>
<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>
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.
<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 Ponce
inherit
open
open
163-autosave
2012-01-18 14:11:00
2012-01-18 13:11:00
163
http://www.alicepegie.com/wordpress/wordpress/?p=168
0
revision
0
169
1
2010-01-15 14:11:50
2010-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> </p>
<p> </p>
<p> </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&showtime=1&volume=50" /> </p>
Marie Archangelo
publish
open
open
marie-archangelo
2012-01-18 14:12:43
2012-01-18 13:12:43
0
http://www.alicepegie.com/wordpress/wordpress/?p=169
0
post
0
170
1
2012-01-18 14:12:08
2012-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> </p>
<p> </p>
<p> </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&showtime=1&volume=50" /> </p>
Marie Archangelo
inherit
open
open
169-revision
2012-01-18 14:12:08
2012-01-18 13:12:08
169
http://www.alicepegie.com/wordpress/wordpress/?p=170
0
revision
0
171
1
2010-01-15 14:13:00
2010-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, 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 Martin
publish
open
open
messi-martin
2012-01-18 14:14:00
2012-01-18 13:14:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=171
0
post
0
172
1
2012-01-18 14:13:34
2012-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, 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 Martin
inherit
open
open
171-revision
2012-01-18 14:13:34
2012-01-18 13:13:34
171
http://www.alicepegie.com/wordpress/wordpress/?p=172
0
revision
0
173
1
2010-01-15 14:16:14
2010-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" />
<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 ».
Monazang
publish
open
open
monazang
2012-01-18 14:20:00
2012-01-18 13:20:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=173
0
post
0
174
1
2012-01-18 14:16:28
2012-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 : « Subaru », « Tse e nga lende », « E djom dja ba’ale », « Bewo’o bela », « Oba’ale nkanda ».</p>
Monazang
inherit
open
open
173-revision
2012-01-18 14:16:28
2012-01-18 13:16:28
173
http://www.alicepegie.com/wordpress/wordpress/?p=174
0
revision
0
175
1
2010-01-15 14:17:53
2010-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>
<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.
<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 Merengue
publish
open
open
testament-du-merengue
2012-01-18 14:19:04
2012-01-18 13:19:04
0
http://www.alicepegie.com/wordpress/wordpress/?p=175
0
post
0
176
1
2012-01-18 14:18:31
2012-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>
<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.
<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 Merengue
inherit
open
open
175-revision
2012-01-18 14:18:31
2012-01-18 13:18:31
175
http://www.alicepegie.com/wordpress/wordpress/?p=176
0
revision
0
177
1
2012-01-18 14:17:03
2012-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" />
<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 ».
Monazang
inherit
open
open
173-revision-2
2012-01-18 14:17:03
2012-01-18 13:17:03
173
http://www.alicepegie.com/wordpress/wordpress/?p=177
0
revision
0
178
1
2010-01-15 14:20:19
2010-01-15 13:20:19
<img title="zag.jpg" src="images/stories/zangalewa.jpg" alt="zangalewa" width="204" height="203" border="0" />
<!--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.
<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>
Zangalewa
publish
open
open
zangalewa
2012-01-18 14:24:28
2012-01-18 13:24:28
0
http://www.alicepegie.com/wordpress/wordpress/?p=178
0
post
0
179
1
2012-01-18 14:20:46
2012-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.
<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>
Zangalewa
inherit
open
open
178-revision
2012-01-18 14:20:46
2012-01-18 13:20:46
178
http://www.alicepegie.com/wordpress/wordpress/?p=179
0
revision
0
181
1
2012-01-18 14:24:33
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-18 14:24:33
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=181
0
post
0
180
1
2012-01-18 14:21:14
2012-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.
<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>
Zangalewa
inherit
open
open
178-revision-2
2012-01-18 14:21:14
2012-01-18 13:21:14
178
http://www.alicepegie.com/wordpress/wordpress/?p=180
0
revision
0
182
1
2010-01-15 14:24:49
2010-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>
<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>
Charlotte Dipanda
publish
open
open
charlotte-dipanda
2012-01-18 14:26:28
2012-01-18 13:26:28
0
http://www.alicepegie.com/wordpress/wordpress/?p=182
0
post
0
183
1
2012-01-18 14:25:52
2012-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>
<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>
inherit
open
open
182-revision
2012-01-18 14:25:52
2012-01-18 13:25:52
182
http://www.alicepegie.com/wordpress/wordpress/?p=183
0
revision
0
184
1
2012-01-18 14:25:56
2012-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>
<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>
Charlotte Dipanda
inherit
open
open
182-revision-2
2012-01-18 14:25:56
2012-01-18 13:25:56
182
http://www.alicepegie.com/wordpress/wordpress/?p=184
0
revision
0
185
1
2010-01-15 14:28:06
2010-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>
Eriko
publish
open
open
eriko
2012-01-18 15:00:23
2012-01-18 14:00:23
0
http://www.alicepegie.com/wordpress/wordpress/?p=185
0
post
0
186
1
2012-01-18 14:27:44
2012-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>
Eriko
inherit
open
open
185-revision
2012-01-18 14:27:44
2012-01-18 13:27:44
185
http://www.alicepegie.com/wordpress/wordpress/?p=186
0
revision
0
187
1
2010-01-15 14:28:19
2010-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>
Manulo
publish
open
open
manulo
2012-01-19 23:14:23
2012-01-19 22:14:23
0
http://www.alicepegie.com/wordpress/wordpress/?p=187
0
post
0
188
1
2012-01-18 14:28:50
2012-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>
Manulo
inherit
open
open
187-revision
2012-01-18 14:28:50
2012-01-18 13:28:50
187
http://www.alicepegie.com/wordpress/wordpress/?p=188
0
revision
0
189
1
2010-01-15 14:29:20
2010-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 Makossa1
publish
open
open
best-of-makossa1
2012-01-18 14:50:30
2012-01-18 13:50:30
0
http://www.alicepegie.com/wordpress/wordpress/?p=189
0
post
0
190
1
2012-01-18 14:30:52
2012-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 Makossa1
inherit
open
open
189-revision
2012-01-18 14:30:52
2012-01-18 13:30:52
189
http://www.alicepegie.com/wordpress/wordpress/?p=190
0
revision
0
191
1
2010-01-15 14:50:51
2010-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> </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> </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 Decca
publish
open
open
ben-decca
2012-01-18 14:51:33
2012-01-18 13:51:33
0
http://www.alicepegie.com/wordpress/wordpress/?p=191
0
post
0
192
1
2012-01-18 14:51:10
2012-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> </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> </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 Decca
inherit
open
open
191-revision
2012-01-18 14:51:10
2012-01-18 13:51:10
191
http://www.alicepegie.com/wordpress/wordpress/?p=192
0
revision
0
193
1
2010-01-15 14:52:52
2010-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;"> </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 Decca
publish
open
open
grace-decca
2012-01-18 14:53:39
2012-01-18 13:53:39
0
http://www.alicepegie.com/wordpress/wordpress/?p=193
0
post
0
194
1
2012-01-18 14:53:09
2012-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;"> </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 Decca
inherit
open
open
193-revision
2012-01-18 14:53:09
2012-01-18 13:53:09
193
http://www.alicepegie.com/wordpress/wordpress/?p=194
0
revision
0
195
1
2010-01-15 14:56:14
2010-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 ? Tout porte à le croire à l’écoute de sa dernière production, sagement intitulée <em class="spip">C’est magique ! </em>. L’enfant terrible des quartiers chauds de Douala renvoie aux calendes grecques son dégoût de la vie pour magnifier le monde : <em class="spip">Wonderful World</em>, faire une ode aux femmes : <em class="spip">Gloire aux femmes</em>, quémander l’amour : <em class="spip">Give me your love</em>...
<p> </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 !</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>
Douleur
publish
open
open
douleur
2012-01-18 14:57:39
2012-01-18 13:57:39
0
http://www.alicepegie.com/wordpress/wordpress/?p=195
0
post
0
196
1
2012-01-18 14:57:05
2012-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 ? Tout porte à le croire à l’écoute de sa dernière production, sagement intitulée <em class="spip">C’est magique ! </em>. L’enfant terrible des quartiers chauds de Douala renvoie aux calendes grecques son dégoût de la vie pour magnifier le monde : <em class="spip">Wonderful World</em>, faire une ode aux femmes : <em class="spip">Gloire aux femmes</em>, quémander l’amour : <em class="spip">Give me your love</em>...
<p> </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 !</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>
Douleur
inherit
open
open
195-revision
2012-01-18 14:57:05
2012-01-18 13:57:05
195
http://www.alicepegie.com/wordpress/wordpress/?p=196
0
revision
0
197
1
2010-01-15 14:58:03
2010-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>
.
Théo Blaise kounkou
publish
open
open
theo-blaise-kounkou
2012-01-18 15:00:03
2012-01-18 14:00:03
0
http://www.alicepegie.com/wordpress/wordpress/?p=197
0
post
0
198
1
2012-01-18 14:58:18
2012-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> </p>
Théo Blaise kounkou
inherit
open
open
197-revision
2012-01-18 14:58:18
2012-01-18 13:58:18
197
http://www.alicepegie.com/wordpress/wordpress/?p=198
0
revision
0
200
1
2012-01-18 14:28:06
2012-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>
Eriko
inherit
open
open
185-revision-2
2012-01-18 14:28:06
2012-01-18 13:28:06
185
http://www.alicepegie.com/wordpress/wordpress/?p=200
0
revision
0
199
1
2012-01-18 14:58:49
2012-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> </p>
Théo Blaise kounkou
inherit
open
open
197-revision-2
2012-01-18 14:58:49
2012-01-18 13:58:49
197
http://www.alicepegie.com/wordpress/wordpress/?p=199
0
revision
0
201
1
2010-01-15 15:01:36
2010-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>
<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&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>.
Daouda
publish
open
open
daouda
2012-01-18 15:02:30
2012-01-18 14:02:30
0
http://www.alicepegie.com/wordpress/wordpress/?p=201
0
post
0
202
1
2012-01-18 15:02:07
2012-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>
<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&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>.
Daouda
inherit
open
open
201-revision
2012-01-18 15:02:07
2012-01-18 14:02:07
201
http://www.alicepegie.com/wordpress/wordpress/?p=202
0
revision
0
203
1
2012-01-18 16:49:26
2012-01-18 15:49:26
Vous 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 Moi
publish
open
open
vous-aimez-mes-articles
2012-01-18 20:36:09
2012-01-18 19:36:09
0
http://www.alicepegie.com/wordpress/wordpress/?page_id=203
0
page
0
204
1
2012-01-18 15:11:41
2012-01-18 14:11:41
Vous Aimez mes Articles?
inherit
open
open
203-revision
2012-01-18 15:11:41
2012-01-18 14:11:41
203
http://www.alicepegie.com/wordpress/wordpress/?p=204
0
revision
0
205
1
2010-01-15 16:18:25
2010-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 Alice
publish
open
open
le-moelleux-de-la-ste-alice
2012-01-18 16:19:20
2012-01-18 15:19:20
0
http://www.alicepegie.com/wordpress/wordpress/?p=205
0
post
0
207
1
2010-01-15 16:22:44
2010-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 Poisson
publish
open
open
croquettes-de-poisson
2012-01-18 16:41:18
2012-01-18 15:41:18
0
http://www.alicepegie.com/wordpress/wordpress/?p=207
0
post
0
206
1
2012-01-18 16:18:42
2012-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 Alice
inherit
open
open
205-revision
2012-01-18 16:18:42
2012-01-18 15:18:42
205
http://www.alicepegie.com/wordpress/wordpress/?p=206
0
revision
0
208
1
2012-01-18 16:20:42
2012-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 Poisson
inherit
open
open
207-revision
2012-01-18 16:20:42
2012-01-18 15:20:42
207
http://www.alicepegie.com/wordpress/wordpress/?p=208
0
revision
0
209
1
2010-01-15 16:23:05
2010-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 chocolats
publish
open
open
sachertorte-aux-2-chocolats
2012-01-18 16:24:32
2012-01-18 15:24:32
0
http://www.alicepegie.com/wordpress/wordpress/?p=209
0
post
0
210
1
2012-01-18 16:24:07
2012-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 chocolats
inherit
open
open
209-revision
2012-01-18 16:24:07
2012-01-18 15:24:07
209
http://www.alicepegie.com/wordpress/wordpress/?p=210
0
revision
0
211
1
2012-01-18 16:25:36
2012-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 chocolats
inherit
open
open
209-autosave
2012-01-18 16:25:36
2012-01-18 15:25:36
209
http://www.alicepegie.com/wordpress/wordpress/?p=211
0
revision
0
212
1
2010-01-15 16:30:47
2010-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éra
publish
open
open
creme-corps-protectrice-karite-aloe-vera
2012-01-18 16:37:46
2012-01-18 15:37:46
0
http://www.alicepegie.com/wordpress/wordpress/?p=212
0
post
0
213
1
2012-01-18 16:31:37
2012-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éra
inherit
open
open
212-revision
2012-01-18 16:31:37
2012-01-18 15:31:37
212
http://www.alicepegie.com/wordpress/wordpress/?p=213
0
revision
0
214
1
2012-01-18 16:33:29
2012-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éra
inherit
open
open
212-autosave
2012-01-18 16:33:29
2012-01-18 15:33:29
212
http://www.alicepegie.com/wordpress/wordpress/?p=214
0
revision
0
215
1
2012-01-18 16:32:24
2012-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éra
inherit
open
open
212-revision-2
2012-01-18 16:32:24
2012-01-18 15:32:24
212
http://www.alicepegie.com/wordpress/wordpress/?p=215
0
revision
0
216
1
2010-01-15 16:38:04
2010-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 Visage
publish
open
open
creme-eclaircissante-chocolatee-pour-le-visage
2012-01-18 16:39:14
2012-01-18 15:39:14
0
http://www.alicepegie.com/wordpress/wordpress/?p=216
0
post
0
217
1
2012-01-18 16:39:07
2012-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 Visage
inherit
open
open
216-revision
2012-01-18 16:39:07
2012-01-18 15:39:07
216
http://www.alicepegie.com/wordpress/wordpress/?p=217
0
revision
0
218
1
2012-01-18 16:22:44
2012-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 Poisson
inherit
open
open
207-revision-2
2012-01-18 16:22:44
2012-01-18 15:22:44
207
http://www.alicepegie.com/wordpress/wordpress/?p=218
0
revision
0
219
1
2012-01-18 16:46:53
2012-01-18 15:46:53
news2
inherit
open
open
news2
2012-01-18 16:46:53
2012-01-18 15:46:53
203
http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/news2.jpg
0
attachment
image/jpeg
0
220
1
2012-01-18 16:47:55
2012-01-18 15:47:55
facebook
inherit
open
open
facebook-icone-9714-32
2012-01-18 16:47:55
2012-01-18 15:47:55
203
http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/facebook-icone-9714-32.png
0
attachment
image/png
0
221
1
2012-01-18 16:48:19
2012-01-18 15:48:19
twitter
inherit
open
open
twitter-icone-8387-321
2012-01-18 16:48:19
2012-01-18 15:48:19
203
http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/twitter-icone-8387-321.png
0
attachment
image/png
0
222
1
2012-01-18 16:48:45
2012-01-18 15:48:45
rss
inherit
open
open
rss-picto-flux-format-18-icone-6712-32
2012-01-18 16:48:45
2012-01-18 15:48:45
203
http://www.alicepegie.com/wordpress/wordpress/wp-content/uploads/2012/01/rss-picto-flux-format-18-icone-6712-32.png
0
attachment
image/png
0
223
1
2012-01-18 15:12:16
2012-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&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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-2
2012-01-18 15:12:16
2012-01-18 14:12:16
203
http://www.alicepegie.com/wordpress/wordpress/?p=223
0
revision
0
229
1
2012-01-18 16:57:26
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-7
2012-01-18 16:57:26
2012-01-18 15:57:26
203
http://www.alicepegie.com/wordpress/wordpress/?p=229
0
revision
0
226
1
2012-01-18 16:51:41
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-5
2012-01-18 16:51:41
2012-01-18 15:51:41
203
http://www.alicepegie.com/wordpress/wordpress/?p=226
0
revision
0
224
1
2012-01-18 16:49:26
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-3
2012-01-18 16:49:26
2012-01-18 15:49:26
203
http://www.alicepegie.com/wordpress/wordpress/?p=224
0
revision
0
225
1
2012-01-18 16:49:26
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-4
2012-01-18 16:49:26
2012-01-18 15:49:26
203
http://www.alicepegie.com/wordpress/wordpress/?p=225
0
revision
0
227
1
2012-01-18 17:15:47
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-autosave
2012-01-18 17:15:47
2012-01-18 16:15:47
203
http://www.alicepegie.com/wordpress/wordpress/?p=227
0
revision
0
236
1
2010-01-15 17:18:29
2010-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 AHA
publish
open
open
creme-de-jour-lissante-a-la-mangue-et-aux-aha
2012-01-18 17:19:43
2012-01-18 16:19:43
0
http://www.alicepegie.com/wordpress/wordpress/?p=236
0
post
0
228
1
2012-01-18 16:51:41
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-6
2012-01-18 16:51:41
2012-01-18 15:51:41
203
http://www.alicepegie.com/wordpress/wordpress/?p=228
0
revision
0
230
1
2012-01-18 16:57:26
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-8
2012-01-18 16:57:26
2012-01-18 15:57:26
203
http://www.alicepegie.com/wordpress/wordpress/?p=230
0
revision
0
231
1
2012-01-18 16:58:06
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-9
2012-01-18 16:58:06
2012-01-18 15:58:06
203
http://www.alicepegie.com/wordpress/wordpress/?p=231
0
revision
0
232
1
2012-01-18 16:58:06
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-10
2012-01-18 16:58:06
2012-01-18 15:58:06
203
http://www.alicepegie.com/wordpress/wordpress/?p=232
0
revision
0
233
1
2012-01-18 17:00:35
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-11
2012-01-18 17:00:35
2012-01-18 16:00:35
203
http://www.alicepegie.com/wordpress/wordpress/?p=233
0
revision
0
234
1
2012-01-18 17:00:35
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-12
2012-01-18 17:00:35
2012-01-18 16:00:35
203
http://www.alicepegie.com/wordpress/wordpress/?p=234
0
revision
0
258
1
2012-01-18 17:28:11
2012-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;"><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;"><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;"><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;"><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 & AHA
inherit
open
open
246-revision-2
2012-01-18 17:28:11
2012-01-18 16:28:11
246
http://www.alicepegie.com/wordpress/wordpress/?p=258
0
revision
0
235
1
2012-01-18 17:02:35
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-13
2012-01-18 17:02:35
2012-01-18 16:02:35
203
http://www.alicepegie.com/wordpress/wordpress/?p=235
0
revision
0
237
1
2012-01-18 17:19:02
2012-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 AHA
inherit
open
open
236-revision
2012-01-18 17:19:02
2012-01-18 16:19:02
236
http://www.alicepegie.com/wordpress/wordpress/?p=237
0
revision
0
238
1
2010-01-15 17:20:56
2010-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'Afrique
publish
open
open
mon-savon-noir-dafrique
2012-01-18 17:21:52
2012-01-18 16:21:52
0
http://www.alicepegie.com/wordpress/wordpress/?p=238
0
post
0
239
1
2012-01-18 17:21:39
2012-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'Afrique
inherit
open
open
238-revision
2012-01-18 17:21:39
2012-01-18 16:21:39
238
http://www.alicepegie.com/wordpress/wordpress/?p=239
0
revision
0
240
1
2010-01-15 17:22:04
2010-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&view=article&id=206:mon-savon-noir-dafrique&catid=59&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 Rooibos
publish
open
open
savon-extra-doux-rooibos
2012-01-18 17:23:06
2012-01-18 16:23:06
0
http://www.alicepegie.com/wordpress/wordpress/?p=240
0
post
0
241
1
2012-01-18 17:22:35
2012-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&view=article&id=206:mon-savon-noir-dafrique&catid=59&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 Rooibos
inherit
open
open
240-revision
2012-01-18 17:22:35
2012-01-18 16:22:35
240
http://www.alicepegie.com/wordpress/wordpress/?p=241
0
revision
0
242
1
2010-01-15 17:23:23
2010-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 Miel
publish
open
open
barre-shampooing-karite-et-miel
2012-01-18 17:24:38
2012-01-18 16:24:38
0
http://www.alicepegie.com/wordpress/wordpress/?p=242
0
post
0
243
1
2012-01-18 17:24:14
2012-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 Miel
inherit
open
open
242-revision
2012-01-18 17:24:14
2012-01-18 16:24:14
242
http://www.alicepegie.com/wordpress/wordpress/?p=243
0
revision
0
244
1
2010-01-15 17:25:10
2010-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 Corps
publish
open
open
creme-de-soin-choco-pour-le-corps
2012-01-18 17:26:25
2012-01-18 16:26:25
0
http://www.alicepegie.com/wordpress/wordpress/?p=244
0
post
0
245
1
2012-01-18 17:26:12
2012-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 Corps
inherit
open
open
244-revision
2012-01-18 17:26:12
2012-01-18 16:26:12
244
http://www.alicepegie.com/wordpress/wordpress/?p=245
0
revision
0
246
1
2010-01-15 17:26:54
2010-01-15 16:26:54
<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;"><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;"><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;"><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;"><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 & AHA
publish
open
open
creme-corps-unifiante-au-miel-aha
2012-01-18 20:55:32
2012-01-18 19:55:32
0
http://www.alicepegie.com/wordpress/wordpress/?p=246
0
post
0
247
1
2012-01-18 17:27:56
2012-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;"><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;"><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;"><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;"><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 & AHA
inherit
open
open
246-revision
2012-01-18 17:27:56
2012-01-18 16:27:56
246
http://www.alicepegie.com/wordpress/wordpress/?p=247
0
revision
0
248
1
2010-01-15 17:28:29
2010-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>
<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 Noisette
publish
open
open
creme-tendresse-pour-peau-noisette
2012-01-18 17:29:49
2012-01-18 16:29:49
0
http://www.alicepegie.com/wordpress/wordpress/?p=248
0
post
0
249
1
2012-01-18 17:29:31
2012-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>
<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 Noisette
inherit
open
open
248-revision
2012-01-18 17:29:31
2012-01-18 16:29:31
248
http://www.alicepegie.com/wordpress/wordpress/?p=249
0
revision
0
250
1
2010-01-15 17:30:54
2010-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 Choco
publish
open
open
creme-main-tout-choco
2012-01-18 17:31:54
2012-01-18 16:31:54
0
http://www.alicepegie.com/wordpress/wordpress/?p=250
0
post
0
251
1
2012-01-18 17:31:27
2012-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 Choco
inherit
open
open
250-revision
2012-01-18 17:31:27
2012-01-18 16:31:27
250
http://www.alicepegie.com/wordpress/wordpress/?p=251
0
revision
0
252
1
2010-01-15 17:32:07
2010-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 bouclettes
publish
open
open
apres-shampooing-en-barre-pour-jolies-bouclettes
2012-01-18 17:33:05
2012-01-18 16:33:05
0
http://www.alicepegie.com/wordpress/wordpress/?p=252
0
post
0
253
1
2012-01-18 17:32:44
2012-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 bouclettes
inherit
open
open
252-revision
2012-01-18 17:32:44
2012-01-18 16:32:44
252
http://www.alicepegie.com/wordpress/wordpress/?p=253
0
revision
0
254
1
2010-01-15 17:34:11
2010-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és
publish
open
open
huile-de-soin-capillaire-protectrice-pour-cheveux-sensibilises
2012-01-18 17:35:05
2012-01-18 16:35:05
0
http://www.alicepegie.com/wordpress/wordpress/?p=254
0
post
0
255
1
2012-01-18 17:34:17
2012-01-18 16:34:17
Huile de soin capillaire protectrice pour cheveux sensibilisés
inherit
open
open
254-revision
2012-01-18 17:34:17
2012-01-18 16:34:17
254
http://www.alicepegie.com/wordpress/wordpress/?p=255
0
revision
0
257
1
2012-01-18 17:02:35
2012-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&type=rss"><span style="color: #000000;"> RSS
</span></a></strong></span></li>
</ul>
Vous Aimez mes Articles?
inherit
open
open
203-revision-14
2012-01-18 17:02:35
2012-01-18 16:02:35
203
http://www.alicepegie.com/wordpress/wordpress/?p=257
0
revision
0
259
1
0209-01-18 21:09:37
1969-12-31 23:00:00
Le 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
publish
open
open
httpwww-alicepegie-comwordpresswordpresspage_id130
2012-01-20 13:58:27
2012-01-20 12:58:27
0
http://www.alicepegie.com/wordpress/wordpress/?p=259
0
post
0
260
1
2012-01-18 21:08:45
2012-01-18 20:08:45
Le 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=130
inherit
open
open
259-revision
2012-01-18 21:08:45
2012-01-18 20:08:45
259
http://www.alicepegie.com/wordpress/wordpress/?p=260
0
revision
0
261
1
2012-01-18 21:09:37
2012-01-18 20:09:37
Le 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=130
inherit
open
open
259-revision-2
2012-01-18 21:09:37
2012-01-18 20:09:37
259
http://www.alicepegie.com/wordpress/wordpress/?p=261
0
revision
0
262
1
2010-01-16 12:34:10
2010-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èmes
publish
open
open
lotion-tonique-purifiante-et-matifiante-pour-peaux-a-problemes
2012-01-19 12:36:12
2012-01-19 11:36:12
0
http://www.alicepegie.com/wordpress/wordpress/?p=262
0
post
0
263
1
2012-01-19 12:36:12
2012-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èmes
inherit
open
open
262-revision
2012-01-19 12:36:12
2012-01-19 11:36:12
262
http://www.alicepegie.com/wordpress/wordpress/?p=263
0
revision
0
264
1
2010-01-16 12:36:17
2010-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 framboise
publish
open
open
stick-levres-nourrissant-et-protecteur-a-la-framboise
2012-01-19 12:40:13
2012-01-19 11:40:13
0
http://www.alicepegie.com/wordpress/wordpress/?p=264
0
post
0
265
1
2012-01-19 12:36:44
2012-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 framboise
inherit
open
open
264-revision
2012-01-19 12:36:44
2012-01-19 11:36:44
264
http://www.alicepegie.com/wordpress/wordpress/?p=265
0
revision
0
267
1
2010-01-16 12:37:53
2010-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"
publish
open
open
spray-halte-aux-poux
2012-01-19 12:39:21
2012-01-19 11:39:21
0
http://www.alicepegie.com/wordpress/wordpress/?p=267
0
post
0
266
1
2012-01-19 12:37:15
2012-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 framboise
inherit
open
open
264-revision-2
2012-01-19 12:37:15
2012-01-19 11:37:15
264
http://www.alicepegie.com/wordpress/wordpress/?p=266
0
revision
0
268
1
2012-01-19 12:38:56
2012-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"
inherit
open
open
267-revision
2012-01-19 12:38:56
2012-01-19 11:38:56
267
http://www.alicepegie.com/wordpress/wordpress/?p=268
0
revision
0
269
1
2012-01-19 12:37:37
2012-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 framboise
inherit
open
open
264-revision-3
2012-01-19 12:37:37
2012-01-19 11:37:37
264
http://www.alicepegie.com/wordpress/wordpress/?p=269
0
revision
0
270
1
2010-01-16 12:40:29
2010-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 Spa
publish
open
open
savon-spa
2012-01-19 12:42:06
2012-01-19 11:42:06
0
http://www.alicepegie.com/wordpress/wordpress/?p=270
0
post
0
271
1
2012-01-19 12:40:59
2012-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 Spa
inherit
open
open
270-revision
2012-01-19 12:40:59
2012-01-19 11:40:59
270
http://www.alicepegie.com/wordpress/wordpress/?p=271
0
revision
0
273
1
2010-01-16 12:42:43
2010-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&view=article&id=206:mon-savon-noir-dafrique&catid=59&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&view=article&id=1955:shampooing-gloss&catid=368&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é
publish
open
open
savon-noir-fouette
2012-01-19 12:43:28
2012-01-19 11:43:28
0
http://www.alicepegie.com/wordpress/wordpress/?p=273
0
post
0
272
1
2012-01-19 12:41:36
2012-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 Spa
inherit
open
open
270-revision-2
2012-01-19 12:41:36
2012-01-19 11:41:36
270
http://www.alicepegie.com/wordpress/wordpress/?p=272
0
revision
0
274
1
2012-01-19 12:42:58
2012-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&view=article&id=206:mon-savon-noir-dafrique&catid=59&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&view=article&id=1955:shampooing-gloss&catid=368&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é
inherit
open
open
273-revision
2012-01-19 12:42:58
2012-01-19 11:42:58
273
http://www.alicepegie.com/wordpress/wordpress/?p=274
0
revision
0
275
1
2010-01-16 12:44:07
2010-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&view=article&id=1955:shampooing-gloss&catid=368&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 Reequilibrant
publish
open
open
savon-reequilibrant
2012-01-19 12:45:35
2012-01-19 11:45:35
0
http://www.alicepegie.com/wordpress/wordpress/?p=275
0
post
0
277
1
2010-01-16 12:45:47
2010-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 expresse
publish
open
open
creme-de-soin-exfoliante-manucure-expresse
2012-01-19 12:53:27
2012-01-19 11:53:27
0
http://www.alicepegie.com/wordpress/wordpress/?p=277
0
post
0
276
1
2012-01-19 12:44:22
2012-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&view=article&id=1955:shampooing-gloss&catid=368&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 Reequilibrant
inherit
open
open
275-revision
2012-01-19 12:44:22
2012-01-19 11:44:22
275
http://www.alicepegie.com/wordpress/wordpress/?p=276
0
revision
0
278
1
2012-01-19 12:46:17
2012-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 expresse
inherit
open
open
277-revision
2012-01-19 12:46:17
2012-01-19 11:46:17
277
http://www.alicepegie.com/wordpress/wordpress/?p=278
0
revision
0
281
1
2012-01-19 12:57:59
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-19 12:57:59
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?page_id=281
0
page
0
279
1
2012-01-19 12:52:54
2012-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 expresse
inherit
open
open
277-autosave
2012-01-19 12:52:54
2012-01-19 11:52:54
277
http://www.alicepegie.com/wordpress/wordpress/?p=279
0
revision
0
280
1
2012-01-19 12:46:51
2012-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 expresse
inherit
open
open
277-revision-2
2012-01-19 12:46:51
2012-01-19 11:46:51
277
http://www.alicepegie.com/wordpress/wordpress/?p=280
0
revision
0
282
1
2012-01-19 13:13:45
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-19 13:13:45
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?page_id=282
0
page
0
283
1
2010-01-16 13:18:37
2010-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 Gloss
publish
open
open
shampooing-gloss
2012-01-19 13:20:24
2012-01-19 12:20:24
0
http://www.alicepegie.com/wordpress/wordpress/?p=283
0
post
0
284
1
2012-01-19 13:18:37
2012-01-19 12:18:37
Brouillon auto
inherit
open
open
283-revision
2012-01-19 13:18:37
2012-01-19 12:18:37
283
http://www.alicepegie.com/wordpress/wordpress/?p=284
0
revision
0
285
1
2010-01-16 13:21:35
2010-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&view=article&id=1955:shampooing-gloss&catid=368&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!!
publish
open
open
mangue-de-bain-miam-miam
2012-01-19 13:23:00
2012-01-19 12:23:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=285
0
post
0
287
1
2012-01-19 14:32:55
2012-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!!!
trash
open
open
abonnez-vous
2012-01-20 00:20:40
2012-01-19 23:20:40
0
http://www.alicepegie.com/wordpress/wordpress/?page_id=287
0
page
0
286
1
2012-01-19 13:22:02
2012-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&view=article&id=1955:shampooing-gloss&catid=368&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!!
inherit
open
open
285-revision
2012-01-19 13:22:02
2012-01-19 12:22:02
285
http://www.alicepegie.com/wordpress/wordpress/?p=286
0
revision
0
288
1
2006-01-01 14:09:53
2006-01-01 13:09:53
Mes 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&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!!!
publish
open
open
abonnez-vous
http://www.alicepegie.com/wordpress/wordpress/?page_id=354
2012-01-20 01:24:17
2012-01-20 00:24:17
0
http://www.alicepegie.com/wordpress/wordpress/?p=288
0
post
0
289
1
2012-01-19 14:11:39
2012-01-19 13:11:39
Mes 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&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!!!
inherit
open
open
288-revision
2012-01-19 14:11:39
2012-01-19 13:11:39
288
http://www.alicepegie.com/wordpress/wordpress/?p=289
0
revision
0
290
1
2012-01-19 14:11:52
2012-01-19 13:11:52
Mes 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&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!!!
inherit
open
open
288-revision-2
2012-01-19 14:11:52
2012-01-19 13:11:52
288
http://www.alicepegie.com/wordpress/wordpress/?p=290
0
revision
0
291
1
2012-01-19 14:32:28
2012-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>
inherit
open
open
287-revision
2012-01-19 14:32:28
2012-01-19 13:32:28
287
http://www.alicepegie.com/wordpress/wordpress/?p=291
0
revision
0
292
1
2012-01-19 14:32:55
2012-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!!!
inherit
open
open
287-revision-2
2012-01-19 14:32:55
2012-01-19 13:32:55
287
http://www.alicepegie.com/wordpress/wordpress/?p=292
0
revision
0
295
1
2012-01-19 14:35:00
2012-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!!!
inherit
open
open
287-revision-4
2012-01-19 14:35:00
2012-01-19 13:35:00
287
http://www.alicepegie.com/wordpress/wordpress/?p=295
0
revision
0
293
1
2012-01-19 14:47:54
2012-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!!!
inherit
open
open
287-autosave
2012-01-19 14:47:54
2012-01-19 13:47:54
287
http://www.alicepegie.com/wordpress/wordpress/?p=293
0
revision
0
294
1
2012-01-19 14:32:55
2012-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!!!
inherit
open
open
287-revision-3
2012-01-19 14:32:55
2012-01-19 13:32:55
287
http://www.alicepegie.com/wordpress/wordpress/?p=294
0
revision
0
296
1
2012-01-19 14:35:00
2012-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!!!
inherit
open
open
287-revision-5
2012-01-19 14:35:00
2012-01-19 13:35:00
287
http://www.alicepegie.com/wordpress/wordpress/?p=296
0
revision
0
297
1
2012-01-19 14:38:28
2012-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!!!
inherit
open
open
287-revision-6
2012-01-19 14:38:28
2012-01-19 13:38:28
287
http://www.alicepegie.com/wordpress/wordpress/?p=297
0
revision
0
298
1
2012-01-19 14:38:28
2012-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!!!
inherit
open
open
287-revision-7
2012-01-19 14:38:28
2012-01-19 13:38:28
287
http://www.alicepegie.com/wordpress/wordpress/?p=298
0
revision
0
299
1
2012-01-19 14:39:38
2012-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!!!
inherit
open
open
287-revision-8
2012-01-19 14:39:38
2012-01-19 13:39:38
287
http://www.alicepegie.com/wordpress/wordpress/?p=299
0
revision
0
300
1
2012-01-19 14:39:38
2012-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!!!
inherit
open
open
287-revision-9
2012-01-19 14:39:38
2012-01-19 13:39:38
287
http://www.alicepegie.com/wordpress/wordpress/?p=300
0
revision
0
301
1
2012-01-19 14:41:46
2012-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!!!
inherit
open
open
287-revision-10
2012-01-19 14:41:46
2012-01-19 13:41:46
287
http://www.alicepegie.com/wordpress/wordpress/?p=301
0
revision
0
302
1
2012-01-19 14:41:46
2012-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!!!
inherit
open
open
287-revision-11
2012-01-19 14:41:46
2012-01-19 13:41:46
287
http://www.alicepegie.com/wordpress/wordpress/?p=302
0
revision
0
314
1
2012-01-19 15:05:33
2012-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!!!
inherit
open
open
287-revision-14
2012-01-19 15:05:33
2012-01-19 14:05:33
287
http://www.alicepegie.com/wordpress/wordpress/?p=314
0
revision
0
303
1
2012-01-19 14:43:32
2012-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!!!
inherit
open
open
287-revision-12
2012-01-19 14:43:32
2012-01-19 13:43:32
287
http://www.alicepegie.com/wordpress/wordpress/?p=303
0
revision
0
304
1
2012-01-18 04:35:13
2012-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-Je
inherit
open
open
124-revision-2
2012-01-18 04:35:13
2012-01-18 03:35:13
124
http://www.alicepegie.com/wordpress/wordpress/?p=304
0
revision
0
305
1
2012-01-20 01:25:24
2012-01-20 00:25:24
Mes 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&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!!!
inherit
open
open
288-autosave
2012-01-20 01:25:24
2012-01-20 00:25:24
288
http://www.alicepegie.com/wordpress/wordpress/?p=305
0
revision
0
306
1
2012-01-19 14:11:52
2012-01-19 13:11:52
Mes 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&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!!!
inherit
open
open
288-revision-3
2012-01-19 14:11:52
2012-01-19 13:11:52
288
http://www.alicepegie.com/wordpress/wordpress/?p=306
0
revision
0
307
1
2012-01-19 14:54:23
2012-01-19 13:54:23
Mes 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&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&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!!!
inherit
open
open
288-revision-4
2012-01-19 14:54:23
2012-01-19 13:54:23
288
http://www.alicepegie.com/wordpress/wordpress/?p=307
0
revision
0
311
1
2012-01-19 14:58:50
2012-01-19 13:58:50
Mes 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&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&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!!!
inherit
open
open
288-revision-8
2012-01-19 14:58:50
2012-01-19 13:58:50
288
http://www.alicepegie.com/wordpress/wordpress/?p=311
0
revision
0
310
1
2012-01-19 14:55:59
2012-01-19 13:55:59
Mes 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&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!!!
inherit
open
open
288-revision-7
2012-01-19 14:55:59
2012-01-19 13:55:59
288
http://www.alicepegie.com/wordpress/wordpress/?p=310
0
revision
0
308
1
2012-01-19 14:54:23
2012-01-19 13:54:23
Mes 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&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!!!
inherit
open
open
288-revision-5
2012-01-19 14:54:23
2012-01-19 13:54:23
288
http://www.alicepegie.com/wordpress/wordpress/?p=308
0
revision
0
309
1
2012-01-19 14:55:58
2012-01-19 13:55:58
Mes 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&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&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!!!
inherit
open
open
288-revision-6
2012-01-19 14:55:58
2012-01-19 13:55:58
288
http://www.alicepegie.com/wordpress/wordpress/?p=309
0
revision
0
312
1
2012-01-19 14:59:40
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-19 14:59:40
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=312
0
post
0
313
1
2012-01-19 14:43:32
2012-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!!!
inherit
open
open
287-revision-13
2012-01-19 14:43:32
2012-01-19 13:43:32
287
http://www.alicepegie.com/wordpress/wordpress/?p=313
0
revision
0
315
1
2012-01-19 15:46:09
2012-01-19 14:46:09
[wysija_page]
Confirmé?
publish
open
open
subscriptions
2012-01-19 15:46:09
2012-01-19 14:46:09
0
http://www.alicepegie.com/wordpress/wordpress/?wysijap=subscriptions
0
wysijap
0
316
1
2012-01-18 11:25:11
2012-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" />
<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>
<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>
<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'Ananas
inherit
open
open
24-revision-6
2012-01-18 11:25:11
2012-01-18 10:25:11
24
http://www.alicepegie.com/wordpress/wordpress/?p=316
0
revision
0
317
1
2012-01-18 12:19:30
2012-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>
<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 Maison
inherit
open
open
17-revision-9
2012-01-18 12:19:30
2012-01-18 11:19:30
17
http://www.alicepegie.com/wordpress/wordpress/?p=317
0
revision
0
318
1
2011-12-21 19:25:52
2011-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 Yassa
publish
open
open
poulet-yassa
2012-01-19 19:28:12
2012-01-19 18:28:12
0
http://www.alicepegie.com/wordpress/wordpress/?p=318
0
post
0
319
1
2012-01-19 19:28:00
2012-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 Yassa
inherit
open
open
318-revision
2012-01-19 19:28:00
2012-01-19 18:28:00
318
http://www.alicepegie.com/wordpress/wordpress/?p=319
0
revision
0
320
1
2011-12-20 19:28:18
2011-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 Gingembre
publish
open
open
gambas-sautees-a-lananas-au-gingembre
2012-01-19 19:30:13
2012-01-19 18:30:13
0
http://www.alicepegie.com/wordpress/wordpress/?p=320
0
post
0
321
1
2012-01-19 19:29:00
2012-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 Gingembre
inherit
open
open
320-revision
2012-01-19 19:29:00
2012-01-19 18:29:00
320
http://www.alicepegie.com/wordpress/wordpress/?p=321
0
revision
0
322
1
2011-12-19 19:30:25
2011-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&view=article&id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&catid=83:viande&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&view=article&id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&catid=83:viande&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é
publish
open
open
bouchees-de-foie-gras-a-la-mangue-au-plantain-grille
2012-01-19 22:55:40
2012-01-19 21:55:40
0
http://www.alicepegie.com/wordpress/wordpress/?p=322
0
post
0
323
1
2012-01-19 19:32:27
2012-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&view=article&id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&catid=83:viande&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&view=article&id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&catid=83:viande&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é
inherit
open
open
322-revision
2012-01-19 19:32:27
2012-01-19 18:32:27
322
http://www.alicepegie.com/wordpress/wordpress/?p=323
0
revision
0
324
1
2011-12-16 19:33:17
2011-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 palme
publish
open
open
coq-au-vin-de-palme
2012-01-19 19:35:50
2012-01-19 18:35:50
0
http://www.alicepegie.com/wordpress/wordpress/?p=324
0
post
0
325
1
2012-01-19 19:35:20
2012-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 palme
inherit
open
open
324-revision
2012-01-19 19:35:20
2012-01-19 18:35:20
324
http://www.alicepegie.com/wordpress/wordpress/?p=325
0
revision
0
326
1
2011-12-15 19:36:06
2011-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&view=article&id=3051:brownies1&catid=111:gateaux&Itemid=489">brownie au chocolat</a> (son préféré) recouvert de <a href="index.php?option=com_content&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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&view=article&id=3051:brownies1&catid=111:gateaux&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&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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" />
Un Gâteau de princesse pour ma princesse!
publish
open
open
un-gateau-de-princesse-pour-ma-princesse
2012-01-19 20:42:18
2012-01-19 19:42:18
0
http://www.alicepegie.com/wordpress/wordpress/?p=326
0
post
0
327
1
2012-01-19 19:47:09
2012-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&view=article&id=3051:brownies1&catid=111:gateaux&Itemid=489">brownie au chocolat</a> (son préféré) recouvert de <a href="index.php?option=com_content&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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&view=article&id=3051:brownies1&catid=111:gateaux&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&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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" />
Un Gâteau de princesse pour ma princesse!
inherit
open
open
326-revision
2012-01-19 19:47:09
2012-01-19 18:47:09
326
http://www.alicepegie.com/wordpress/wordpress/?p=327
0
revision
0
328
1
2012-01-19 20:42:13
2012-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&view=article&id=3051:brownies1&catid=111:gateaux&Itemid=489">brownie au chocolat</a> (son préféré) recouvert de <a href="index.php?option=com_content&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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&view=article&id=3051:brownies1&catid=111:gateaux&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&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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" />
Un Gâteau de princesse pour ma princesse!
inherit
open
open
326-autosave
2012-01-19 20:42:13
2012-01-19 19:42:13
326
http://www.alicepegie.com/wordpress/wordpress/?p=328
0
revision
0
329
1
2012-01-19 20:41:09
2012-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&view=article&id=3051:brownies1&catid=111:gateaux&Itemid=489">brownie au chocolat</a> (son préféré) recouvert de <a href="index.php?option=com_content&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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&view=article&id=3051:brownies1&catid=111:gateaux&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&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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&view=article&id=3055:creme-au-beurre-maison&catid=118:ingredientsbases&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" />
Un Gâteau de princesse pour ma princesse!
inherit
open
open
326-revision-2
2012-01-19 20:41:09
2012-01-19 19:41:09
326
http://www.alicepegie.com/wordpress/wordpress/?p=329
0
revision
0
330
1
2011-12-14 20:42:39
2011-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 blanc
publish
open
open
caramel-au-chocolat-blanc
2012-01-19 20:54:04
2012-01-19 19:54:04
0
http://www.alicepegie.com/wordpress/wordpress/?p=330
0
post
0
331
1
2012-01-19 20:43:42
2012-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. </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 blanc
inherit
open
open
330-revision
2012-01-19 20:43:42
2012-01-19 19:43:42
330
http://www.alicepegie.com/wordpress/wordpress/?p=331
0
revision
0
333
1
2011-12-13 22:51:46
2011-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>
<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>
Foie Gras Maison au Poivre de Penja et Vin de Palme
publish
open
open
foie-gras-maison-au-poivre-de-penja-et-vin-de-palme
2012-01-19 22:54:55
2012-01-19 21:54:55
0
http://www.alicepegie.com/wordpress/wordpress/?p=333
0
post
0
332
1
2012-01-19 20:45:10
2012-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. </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 blanc
inherit
open
open
330-revision-2
2012-01-19 20:45:10
2012-01-19 19:45:10
330
http://www.alicepegie.com/wordpress/wordpress/?p=332
0
revision
0
334
1
2012-01-19 22:52:46
2012-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>
<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>
Foie Gras Maison au Poivre de Penja et Vin de Palme
inherit
open
open
333-revision
2012-01-19 22:52:46
2012-01-19 21:52:46
333
http://www.alicepegie.com/wordpress/wordpress/?p=334
0
revision
0
335
1
2012-01-19 19:32:55
2012-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&view=article&id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&catid=83:viande&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&view=article&id=3056:foie-gras-maison-au-poivre-de-penja-et-vin-de-palme&catid=83:viande&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é
inherit
open
open
322-revision-2
2012-01-19 19:32:55
2012-01-19 18:32:55
322
http://www.alicepegie.com/wordpress/wordpress/?p=335
0
revision
0
336
1
2011-12-12 22:56:15
2011-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 maison
publish
open
open
creme-au-beurre-maison
2012-01-19 22:57:53
2012-01-19 21:57:53
0
http://www.alicepegie.com/wordpress/wordpress/?p=336
0
post
0
337
1
2012-01-19 22:57:17
2012-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>
inherit
open
open
336-revision
2012-01-19 22:57:17
2012-01-19 21:57:17
336
http://www.alicepegie.com/wordpress/wordpress/?p=337
0
revision
0
338
1
2012-01-19 22:58:04
2012-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 maison
inherit
open
open
336-autosave
2012-01-19 22:58:04
2012-01-19 21:58:04
336
http://www.alicepegie.com/wordpress/wordpress/?p=338
0
revision
0
339
1
2011-12-07 22:58:23
2011-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&view=article&id=2732:cookies-au-sucres-colores-et-vanille&catid=111:gateaux&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>
Les brookies
publish
open
open
les-brookies
2012-01-19 22:59:53
2012-01-19 21:59:53
0
http://www.alicepegie.com/wordpress/wordpress/?p=339
0
post
0
340
1
2012-01-19 22:59:01
2012-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&view=article&id=2732:cookies-au-sucres-colores-et-vanille&catid=111:gateaux&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>
Les brookies
inherit
open
open
339-revision
2012-01-19 22:59:01
2012-01-19 21:59:01
339
http://www.alicepegie.com/wordpress/wordpress/?p=340
0
revision
0
341
1
2011-12-06 23:00:47
2011-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&view=article&catid=132&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&view=article&catid=130&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 cuir
publish
open
open
baume-nettoyant-detachant-pour-cuir
2012-01-19 23:02:06
2012-01-19 22:02:06
0
http://www.alicepegie.com/wordpress/wordpress/?p=341
0
post
0
342
1
2012-01-19 23:01:24
2012-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&view=article&catid=132&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&view=article&catid=130&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 cuir
inherit
open
open
341-revision
2012-01-19 23:01:24
2012-01-19 22:01:24
341
http://www.alicepegie.com/wordpress/wordpress/?p=342
0
revision
0
343
1
2011-12-05 23:02:47
2011-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 chocolat
publish
open
open
brownies-au-chocolat
2012-01-19 23:05:12
2012-01-19 22:05:12
0
http://www.alicepegie.com/wordpress/wordpress/?p=343
0
post
0
344
1
2012-01-19 23:04:50
2012-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 chocolat
inherit
open
open
343-revision
2012-01-19 23:04:50
2012-01-19 22:04:50
343
http://www.alicepegie.com/wordpress/wordpress/?p=344
0
revision
0
345
1
2012-01-19 23:07:59
2012-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 chocolat
inherit
open
open
343-autosave
2012-01-19 23:07:59
2012-01-19 22:07:59
343
http://www.alicepegie.com/wordpress/wordpress/?p=345
0
revision
0
346
1
2011-12-01 23:08:28
2011-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 SIDA
publish
open
open
journee-mondiale-contre-le-sida
2012-01-20 13:47:03
2012-01-20 12:47:03
0
http://www.alicepegie.com/wordpress/wordpress/?p=346
0
post
0
347
1
2012-01-19 23:09:29
2012-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 SIDA
inherit
open
open
346-revision
2012-01-19 23:09:29
2012-01-19 22:09:29
346
http://www.alicepegie.com/wordpress/wordpress/?p=347
0
revision
0
348
1
2012-01-18 14:29:10
2012-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>
Manulo
inherit
open
open
187-revision-2
2012-01-18 14:29:10
2012-01-18 13:29:10
187
http://www.alicepegie.com/wordpress/wordpress/?p=348
0
revision
0
349
1
2012-01-19 23:13:36
2012-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>
Manulo
inherit
open
open
187-autosave
2012-01-19 23:13:36
2012-01-19 22:13:36
187
http://www.alicepegie.com/wordpress/wordpress/?p=349
0
revision
0
350
1
2012-01-19 23:12:33
2012-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>
Manulo
inherit
open
open
187-revision-3
2012-01-19 23:12:33
2012-01-19 22:12:33
187
http://www.alicepegie.com/wordpress/wordpress/?p=350
0
revision
0
351
1
2012-01-20 00:09:26
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-20 00:09:26
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=351
0
post
0
352
1
2012-01-20 00:20:04
2012-01-19 23:20:04
publish
open
open
352
2012-01-20 00:20:04
2012-01-19 23:20:04
0
http://www.alicepegie.com/wordpress/wordpress/?p=352
1
nav_menu_item
0
353
1
2012-01-19 15:05:34
2012-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!!!
inherit
open
open
287-revision-15
2012-01-19 15:05:34
2012-01-19 14:05:34
287
http://www.alicepegie.com/wordpress/wordpress/?p=353
0
revision
0
354
1
2012-01-20 00:26:02
2012-01-19 23:26:02
Mes 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>
Newsletter
publish
open
open
recherche
2012-01-20 00:47:49
2012-01-19 23:47:49
0
http://www.alicepegie.com/wordpress/wordpress/?page_id=354
1
page
0
355
1
2012-01-20 00:25:49
2012-01-19 23:25:49
Recherche
inherit
open
open
354-revision
2012-01-20 00:25:49
2012-01-19 23:25:49
354
http://www.alicepegie.com/wordpress/wordpress/?p=355
0
revision
0
356
1
2012-01-20 00:47:10
2012-01-19 23:47:10
Mes 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>
Newsletter
inherit
open
open
354-autosave
2012-01-20 00:47:10
2012-01-19 23:47:10
354
http://www.alicepegie.com/wordpress/wordpress/?p=356
0
revision
0
362
1
2012-01-20 00:46:07
2012-01-19 23:46:07
Mes 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>
Newsletter
inherit
open
open
354-revision-6
2012-01-20 00:46:07
2012-01-19 23:46:07
354
http://www.alicepegie.com/wordpress/wordpress/?p=362
0
revision
0
361
1
2012-01-20 00:37:36
2012-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>
</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[
/* <![CDATA[ */
var wysijaAJAX = {"action":"wysija_ajax","controller":"subscribers","ajaxurl":"http:\/\/www.alicepegie.com\/wordpress\/wordpress\/wp-admin\/admin-ajax.php","loadingTrans":"Loading...","wysilog":"1"};
/* ]]> */
// ]]></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>
// ]]>
Newsletter
inherit
open
open
354-revision-5
2012-01-20 00:37:36
2012-01-19 23:37:36
354
http://www.alicepegie.com/wordpress/wordpress/?p=361
0
revision
0
357
1
2012-01-20 00:26:02
2012-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>
Recherche
inherit
open
open
354-revision-2
2012-01-20 00:26:02
2012-01-19 23:26:02
354
http://www.alicepegie.com/wordpress/wordpress/?p=357
0
revision
0
363
1
2012-01-20 00:50:52
0000-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>
draft
open
open
2012-01-20 00:50:52
2012-01-19 23:50:52
0
http://www.alicepegie.com/wordpress/wordpress/?page_id=363
0
page
0
358
1
2012-01-20 00:33:51
2012-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>
</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">
/* <![CDATA[ */
var wysijaAJAX = {"action":"wysija_ajax","controller":"subscribers","ajaxurl":"http:\/\/www.alicepegie.com\/wordpress\/wordpress\/wp-admin\/admin-ajax.php","loadingTrans":"Loading...","wysilog":"1"};
/* ]]> */
// ]]></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"/>
// ]]>
Newsletter
inherit
open
open
354-revision-3
2012-01-20 00:33:51
2012-01-19 23:33:51
354
http://www.alicepegie.com/wordpress/wordpress/?p=358
0
revision
0
359
1
2012-01-20 00:37:08
2012-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>
</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[
/* <![CDATA[ */
var wysijaAJAX = {"action":"wysija_ajax","controller":"subscribers","ajaxurl":"http:\/\/www.alicepegie.com\/wordpress\/wordpress\/wp-admin\/admin-ajax.php","loadingTrans":"Loading...","wysilog":"1"};
/* ]]> */
// ]]></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>
// ]]>
Newsletter
inherit
open
open
354-revision-4
2012-01-20 00:37:08
2012-01-19 23:37:08
354
http://www.alicepegie.com/wordpress/wordpress/?p=359
0
revision
0
360
1
2012-01-20 00:41:03
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-20 00:41:03
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?page_id=360
0
page
0
364
1
2012-01-20 00:52:51
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-20 00:52:51
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?page_id=364
0
page
0
365
1
2012-01-18 11:25:46
2012-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>
<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 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.
<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>
Abakuya
inherit
open
open
70-revision-3
2012-01-18 11:25:46
2012-01-18 10:25:46
70
http://www.alicepegie.com/wordpress/wordpress/?p=365
0
revision
0
367
1
2012-01-20 01:23:35
2012-01-20 00:23:35
Mes 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&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!!!
inherit
open
open
288-revision-10
2012-01-20 01:23:35
2012-01-20 00:23:35
288
http://www.alicepegie.com/wordpress/wordpress/?p=367
0
revision
0
368
1
2012-01-20 01:23:35
2012-01-20 00:23:35
Mes 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&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!!!
inherit
open
open
288-revision-11
2012-01-20 01:23:35
2012-01-20 00:23:35
288
http://www.alicepegie.com/wordpress/wordpress/?p=368
0
revision
0
369
1
2012-01-20 01:24:17
2012-01-20 00:24:17
Mes 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&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!!!
inherit
open
open
288-revision-12
2012-01-20 01:24:17
2012-01-20 00:24:17
288
http://www.alicepegie.com/wordpress/wordpress/?p=369
0
revision
0
370
1
2012-01-20 13:44:52
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-20 13:44:52
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=370
0
post
0
371
1
2012-01-19 23:10:07
2012-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 SIDA
inherit
open
open
346-revision-2
2012-01-19 23:10:07
2012-01-19 22:10:07
346
http://www.alicepegie.com/wordpress/wordpress/?p=371
0
revision
0
372
1
2012-01-20 01:20:42
2012-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>
<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 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.
<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>
Abakuya
inherit
open
open
70-revision-4
2012-01-20 01:20:42
2012-01-20 00:20:42
70
http://www.alicepegie.com/wordpress/wordpress/?p=372
0
revision
0
373
1
2011-11-30 13:49:15
2011-11-30 12:49:15
<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&view=article&catid=118&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ée
publish
open
open
la-pate-sablee
2012-01-20 13:50:34
2012-01-20 12:50:34
0
http://www.alicepegie.com/wordpress/wordpress/?p=373
0
post
0
374
1
2012-01-20 13:50:19
2012-01-20 12:50:19
<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&view=article&catid=118&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>
inherit
open
open
373-revision
2012-01-20 13:50:19
2012-01-20 12:50:19
373
http://www.alicepegie.com/wordpress/wordpress/?p=374
0
revision
0
375
1
2011-11-29 13:50:48
2011-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-Coco
publish
open
open
savon-alep-coco
2012-01-20 13:53:00
2012-01-20 12:53:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=375
0
post
0
376
1
2012-01-20 13:50:55
2012-01-20 12:50:55
Savon Alep-Coco
inherit
open
open
375-revision
2012-01-20 13:50:55
2012-01-20 12:50:55
375
http://www.alicepegie.com/wordpress/wordpress/?p=376
0
revision
0
377
1
2012-01-20 13:52:52
2012-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-Coco
inherit
open
open
375-autosave
2012-01-20 13:52:52
2012-01-20 12:52:52
375
http://www.alicepegie.com/wordpress/wordpress/?p=377
0
revision
0
378
1
2012-01-20 13:51:48
2012-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-Coco
inherit
open
open
375-revision-2
2012-01-20 13:51:48
2012-01-20 12:51:48
375
http://www.alicepegie.com/wordpress/wordpress/?p=378
0
revision
0
379
1
2011-10-28 13:53:05
2011-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 Gingembre
publish
open
open
confiture-de-figues-de-barbarie-au-gingembre
2012-01-20 13:54:21
2012-01-20 12:54:21
0
http://www.alicepegie.com/wordpress/wordpress/?p=379
0
post
0
380
1
2012-01-20 13:54:08
2012-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 Gingembre
inherit
open
open
379-revision
2012-01-20 13:54:08
2012-01-20 12:54:08
379
http://www.alicepegie.com/wordpress/wordpress/?p=380
0
revision
0
381
1
2012-01-20 13:55:40
2012-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 Gingembre
inherit
open
open
379-autosave
2012-01-20 13:55:40
2012-01-20 12:55:40
379
http://www.alicepegie.com/wordpress/wordpress/?p=381
0
revision
0
382
1
2007-01-27 13:55:50
2007-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
publish
open
open
conditions-generales-dutilisation
2012-01-20 13:57:10
2012-01-20 12:57:10
0
http://www.alicepegie.com/wordpress/wordpress/?p=382
0
post
0
383
1
2012-01-20 13:56:29
2012-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
inherit
open
open
382-revision
2012-01-20 13:56:29
2012-01-20 12:56:29
382
http://www.alicepegie.com/wordpress/wordpress/?p=383
0
revision
0
384
1
2012-01-20 13:57:16
0000-00-00 00:00:00
Brouillon auto
auto-draft
open
open
2012-01-20 13:57:16
0000-00-00 00:00:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=384
0
post
0
385
1
2012-01-18 21:10:15
2012-01-18 20:10:15
Le 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
inherit
open
open
259-revision-3
2012-01-18 21:10:15
2012-01-18 20:10:15
259
http://www.alicepegie.com/wordpress/wordpress/?p=385
0
revision
0
386
1
2011-11-26 13:58:31
2011-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!
<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"
publish
open
open
pasto-cecile
2012-01-21 07:53:00
2012-01-21 06:53:00
0
http://www.alicepegie.com/wordpress/wordpress/?p=386
0
post
0
387
1
2012-01-20 13:59:24
2012-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!
<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"
inherit
open
open
386-revision
2012-01-20 13:59:24
2012-01-20 12:59:24
386
http://www.alicepegie.com/wordpress/wordpress/?p=387
0
revision
0
388
1
2011-11-25 14:00:28
2011-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&view=article&id=2399:pizza-maison&catid=118:ingredientsbases&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 Crevettes
publish
open
open
pizza-aux-crevettes
2012-01-21 07:53:18
2012-01-21 06:53:18
0
http://www.alicepegie.com/wordpress/wordpress/?p=388
0
post
0
389
1
2012-01-20 14:01:14
2012-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&view=article&id=2399:pizza-maison&catid=118:ingredientsbases&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 Crevettes
inherit
open
open
388-revision
2012-01-20 14:01:14
2012-01-20 13:01:14
388
http://www.alicepegie.com/wordpress/wordpress/?p=389
0
revision
0
390
1
2011-11-24 14:02:51
2011-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 coco
publish
open
open
creme-beaute-des-mains-fou-de-coco
2012-01-21 07:53:32
2012-01-21 06:53:32
0
http://www.alicepegie.com/wordpress/wordpress/?p=390
0
post
0
391
1
2012-01-20 14:03:54
2012-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 coco
inherit
open
open
390-revision
2012-01-20 14:03:54
2012-01-20 13:03:54
390
http://www.alicepegie.com/wordpress/wordpress/?p=391
0
revision
0
392
1
2011-11-23 14:04:26
2011-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&view=article&catid=118&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&view=article&id=2796:la-pate-brisee&catid=118:ingredientsbases&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ée
publish
open
open
tarte-au-citron-meringuee
2012-01-21 07:53:46
2012-01-21 06:53:46
0
http://www.alicepegie.com/wordpress/wordpress/?p=392
0
post
0
393
1
2012-01-20 14:05:29
2012-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&view=article&catid=118&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&view=article&id=2796:la-pate-brisee&catid=118:ingredientsbases&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ée
inherit
open
open
392-revision
2012-01-20 14:05:29
2012-01-20 13:05:29
392
http://www.alicepegie.com/wordpress/wordpress/?p=393
0
revision
0
394
1
2011-11-22 14:06:25
2011-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 coco
publish
open
open
creme-corporelle-fou-de-coco
2012-01-20 14:08:30
2012-01-20 13:08:30
0
http://www.alicepegie.com/wordpress/wordpress/?p=394
0
post
0
395
1
2012-01-20 14:07:27
2012-01-20 13:07: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/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 coco
inherit
open
open
394-revision
2012-01-20 14:07:27
2012-01-20 13:07:27
394
http://www.alicepegie.com/wordpress/wordpress/?p=395
0
revision
0
396
1
2012-01-20 14:08:17
2012-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 coco
inherit
open
open
394-revision-2
2012-01-20 14:08:17
2012-01-20 13:08:17
394
http://www.alicepegie.com/wordpress/wordpress/?p=396
0
revision
0
397
1
2011-11-21 14:08:58
2011-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>
Beignets à la Pâte de Spéculoos
publish
open
open
beignets-a-la-pate-de-speculoos
2012-01-20 14:10:08
2012-01-20 13:10:08
0
http://www.alicepegie.com/wordpress/wordpress/?p=397
0
post
0
398
1
2012-01-20 14:09:32
2012-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>
Beignets à la Pâte de Spéculoos
inherit
open
open
397-revision
2012-01-20 14:09:32
2012-01-20 13:09:32
397
http://www.alicepegie.com/wordpress/wordpress/?p=398
0
revision
0
399
1
2011-11-20 14:10:26
2011-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 Conduire
publish
open
open
jean-miche-kankan-le-permis-de-conduire
2012-01-20 14:12:03
2012-01-20 13:12:03
0
http://www.alicepegie.com/wordpress/wordpress/?p=399
0
post
0
400
1
2012-01-20 14:10:57
2012-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 Conduire
inherit
open
open
399-revision
2012-01-20 14:10:57
2012-01-20 13:10:57
399
http://www.alicepegie.com/wordpress/wordpress/?p=400
0
revision
0
401
1
2011-11-19 14:12:22
2011-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&view=article&catid=118&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&view=article&id=2789:la-mniguette-le-bongogo&catid=118:ingredientsbases&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&view=article&id=2789:la-mniguette-le-bongogo&catid=118:ingredientsbases&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 maniguette
publish
open
open
bouillon-de-poulet-fume-a-la-maniguette
2012-01-20 14:13:56
2012-01-20 13:13:56
0
http://www.alicepegie.com/wordpress/wordpress/?p=401
0
post
0
402
1
2012-01-20 14:13:26
2012-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&view=article&catid=118&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&view=article&id=2789:la-mniguette-le-bongogo&catid=118:ingredientsbases&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&view=article&id=2789:la-mniguette-le-bongogo&catid=118:ingredientsbases&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 maniguette
inherit
open
open
401-revision
2012-01-20 14:13:26
2012-01-20 13:13:26
401
http://www.alicepegie.com/wordpress/wordpress/?p=402
0
revision
0
403
1
2011-11-17 14:14:21
2011-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&view=article&catid=77&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 pousse
publish
open
open
creme-capillaire-repartrice-coup-de-pousse
2012-01-20 14:15:38
2012-01-20 13:15:38
0
http://www.alicepegie.com/wordpress/wordpress/?p=403
0
post
0
404
1
2012-01-20 14:15:20
2012-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&view=article&catid=77&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 pousse
inherit
open
open
403-revision
2012-01-20 14:15:20
2012-01-20 13:15:20
403
http://www.alicepegie.com/wordpress/wordpress/?p=404
0
revision
0
405
1
2011-11-16 14:16:02
2011-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ée
publish
open
open
la-pate-brisee
2012-01-21 07:53:56
2012-01-21 06:53:56
0
http://www.alicepegie.com/wordpress/wordpress/?p=405
0
post
0
406
1
2012-01-20 14:17:05
2012-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ée
inherit
open
open
405-revision
2012-01-20 14:17:05
2012-01-20 13:17:05
405
http://www.alicepegie.com/wordpress/wordpress/?p=406
0
revision
0
407
1
2011-11-15 14:17:36
2011-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&view=article&catid=131&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&view=article&catid=125&id=2791">Crème purifiante & apaisante coco & 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 pousse
publish
open
open
masque-capillaire-coup-de-pousse
2012-01-21 07:54:08
2012-01-21 06:54:08
0
http://www.alicepegie.com/wordpress/wordpress/?p=407
0
post
0
408
1
2012-01-20 14:17:53
2012-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 <a href="index.php?option=com_content&view=article&catid=131&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&view=article&catid=125&id=2791">Crème purifiante & apaisante coco & 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.<hr id="system-readmore" /></span></p>
<p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 100g env. :</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 !!)</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>
<p><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;"></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;"> 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 :</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 : disponibles chez AZ<br /></span></strong></p>
<p><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></p>
<p><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></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 pousse
inherit
open
open
407-revision
2012-01-20 14:17:53
2012-01-20 13:17:53
407
http://www.alicepegie.com/wordpress/wordpress/?p=408
0
revision
0
410
1
2011-11-14 14:19:02
2011-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&view=article&catid=118&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 chocolat
publish
open
open
eclairs-gressins-au-chocolat
2012-01-20 14:20:26
2012-01-20 13:20:26
0
http://www.alicepegie.com/wordpress/wordpress/?p=410
0
post
0
409
1
2012-01-20 14:18:26
2012-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 <a href="index.php?option=com_content&view=article&catid=131&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&view=article&catid=125&id=2791">Crème purifiante & apaisante coco & 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.<hr id="system-readmore" /></span></p>
<p><strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Ingrédients pour 100g env. :</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 !!)</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>
<p><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;"></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;"> 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 :</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 : disponibles chez AZ<br /></span></strong></p>
<p><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></p>
<p><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></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 pousse
inherit
open
open
407-revision-2
2012-01-20 14:18:26
2012-01-20 13:18:26
407
http://www.alicepegie.com/wordpress/wordpress/?p=409
0
revision
0
411
1
2012-01-20 14:19:44
2012-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&view=article&catid=118&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 chocolat
inherit
open
open
410-revision
2012-01-20 14:19:44
2012-01-20 13:19:44
410
http://www.alicepegie.com/wordpress/wordpress/?p=411
0
revision
0
412
1
2011-11-13 14:20:46
2011-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>
<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>
<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 Bel
publish
open
open
tabu-ley-mbilia-bel
2012-01-20 14:21:46
2012-01-20 13:21:46
0
http://www.alicepegie.com/wordpress/wordpress/?p=412
0
post
0
414
1
2011-11-11 14:22:01
2011-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és
publish
open
open
des-de-manioc-cuit-trempes
2012-01-21 07:54:19
2012-01-21 06:54:19
0
http://www.alicepegie.com/wordpress/wordpress/?p=414
0
post
0
413
1
2012-01-20 14:21:02
2012-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>
<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>
<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 Bel
inherit
open
open
412-revision
2012-01-20 14:21:02
2012-01-20 13:21:02
412
http://www.alicepegie.com/wordpress/wordpress/?p=413
0
revision
0
415
1
2012-01-20 14:23:03
2012-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és
inherit
open
open
414-revision
2012-01-20 14:23:03
2012-01-20 13:23:03
414
http://www.alicepegie.com/wordpress/wordpress/?p=415
0
revision
0
416
1
2011-11-10 14:23:45
2011-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&view=article&id=2788:sels-de-bain-apaisants-fou-de-coco&catid=131:pour-le-bain&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 & riz
publish
open
open
creme-purifiante-apaisante-coco-riz
2012-01-20 14:25:33
2012-01-20 13:25:33
0
http://www.alicepegie.com/wordpress/wordpress/?p=416
0
post
0
417
1
2012-01-20 14:24:48
2012-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&view=article&id=2788:sels-de-bain-apaisants-fou-de-coco&catid=131:pour-le-bain&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 & riz
inherit
open
open
416-revision
2012-01-20 14:24:48
2012-01-20 13:24:48
416
http://www.alicepegie.com/wordpress/wordpress/?p=417
0
revision
0
418
1
2011-11-09 14:25:52
2011-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)
publish
open
open
la-maniguette-le-bongo
2012-01-20 14:27:11
2012-01-20 13:27:11
0
http://www.alicepegie.com/wordpress/wordpress/?p=418
0
post
0
419
1
2012-01-20 14:26:54
2012-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>
inherit
open
open
418-revision
2012-01-20 14:26:54
2012-01-20 13:26:54
418
http://www.alicepegie.com/wordpress/wordpress/?p=419
0
revision
0
420
1
2011-11-08 14:27:48
2011-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 Coco
publish
open
open
sels-de-bain-apaisants-fou-de-coco
2012-01-21 07:54:29
2012-01-21 06:54:29
0
http://www.alicepegie.com/wordpress/wordpress/?p=420
0
post
0
421
1
2012-01-20 14:28:51
2012-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 Coco
inherit
open
open
420-revision
2012-01-20 14:28:51
2012-01-20 13:28:51
420
http://www.alicepegie.com/wordpress/wordpress/?p=421
0
revision
0
422
1
2011-11-07 14:29:33
2011-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&view=article&id=1906:mes-speculoos&catid=107:biscuits&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&view=article&id=1906:mes-speculoos&catid=107:biscuits&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 maison
publish
open
open
pate-de-speculoos-maison
2012-01-21 07:54:39
2012-01-21 06:54:39
0
http://www.alicepegie.com/wordpress/wordpress/?p=422
0
post
0
423
1
2012-01-20 14:30:10
2012-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&view=article&id=1906:mes-speculoos&catid=107:biscuits&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&view=article&id=1906:mes-speculoos&catid=107:biscuits&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 maison
inherit
open
open
422-revision
2012-01-20 14:30:10
2012-01-20 13:30:10
422
http://www.alicepegie.com/wordpress/wordpress/?p=423
0
revision
0
424
1
2011-11-03 14:31:09
2011-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&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 »!
publish
open
open
cameroun-equitable-est-mort-vive-une-graine-de-maniguette
2012-01-20 14:32:17
2012-01-20 13:32:17
0
http://www.alicepegie.com/wordpress/wordpress/?p=424
0
post
0
425
1
2012-01-20 14:31:53
2012-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&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 »!
inherit
open
open
424-revision
2012-01-20 14:31:53
2012-01-20 13:31:53
424
http://www.alicepegie.com/wordpress/wordpress/?p=425
0
revision
0
426
1
2011-10-05 14:32:53
2011-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&view=article&id=2629:sirop-contre-la-toux&catid=61:remedes&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 Maison
publish
open
open
miel-de-thym-maison
2012-01-20 14:34:30
2012-01-20 13:34:30
0
http://www.alicepegie.com/wordpress/wordpress/?p=426
0
post
0
427
1
2012-01-20 14:33:56
2012-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&view=article&id=2629:sirop-contre-la-toux&catid=61:remedes&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 Maison
inherit
open
open
426-revision
2012-01-20 14:33:56
2012-01-20 13:33:56
426
http://www.alicepegie.com/wordpress/wordpress/?p=427
0
revision
0
428
1
2011-10-05 14:34:49
2011-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 Maison
publish
open
open
liquide-vaisselle-maison
2012-01-20 14:35:58
2012-01-20 13:35:58
0
http://www.alicepegie.com/wordpress/wordpress/?p=428
0
post
0
429
1
2012-01-20 14:35:17
2012-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 Maison
inherit
open
open
428-revision
2012-01-20 14:35:17
2012-01-20 13:35:17
428
http://www.alicepegie.com/wordpress/wordpress/?p=429
0
revision
0
430
1
2011-10-03 14:36:19
2011-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ée
publish
open
open
baguette-briochee
2012-01-20 14:38:17
2012-01-20 13:38:17
0
http://www.alicepegie.com/wordpress/wordpress/?p=430
0
post
0
431
1
2012-01-20 14:37:22
2012-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ée
inherit
open
open
430-revision
2012-01-20 14:37:22
2012-01-20 13:37:22
430
http://www.alicepegie.com/wordpress/wordpress/?p=431
0
revision
0
432
1
2011-10-02 14:38:38
2011-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 International
publish
open
open
jean-miche-kankan-leleve-international
2012-01-20 14:39:29
2012-01-20 13:39:29
0
http://www.alicepegie.com/wordpress/wordpress/?p=432
0
post
0
433
1
2012-01-20 14:38:57
2012-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 International
inherit
open
open
432-revision
2012-01-20 14:38:57
2012-01-20 13:38:57
432
http://www.alicepegie.com/wordpress/wordpress/?p=433
0
revision
0
434
1
2011-09-30 14:39:47
2011-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&view=article&catid=118&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
publish
open
open
pizza-a-la-sardine-gingembre
2012-01-20 14:40:53
2012-01-20 13:40:53
0
http://www.alicepegie.com/wordpress/wordpress/?p=434
0
post
0
435
1
2012-01-20 14:40:13
2012-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&view=article&catid=118&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
inherit
open
open
434-revision
2012-01-20 14:40:13
2012-01-20 13:40:13
434
http://www.alicepegie.com/wordpress/wordpress/?p=435
0
revision
0
436
1
2012-01-20 14:00:25
2012-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!
<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"
inherit
open
open
386-revision-2
2012-01-20 14:00:25
2012-01-20 13:00:25
386
http://www.alicepegie.com/wordpress/wordpress/?p=436
0
revision
0
437
1
2012-01-20 14:01:44
2012-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&view=article&id=2399:pizza-maison&catid=118:ingredientsbases&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 Crevettes
inherit
open
open
388-revision-2
2012-01-20 14:01:44
2012-01-20 13:01:44
388
http://www.alicepegie.com/wordpress/wordpress/?p=437
0
revision
0
438
1
2012-01-20 14:04:10
2012-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 coco
inherit
open
open
390-revision-2
2012-01-20 14:04:10
2012-01-20 13:04:10
390
http://www.alicepegie.com/wordpress/wordpress/?p=438
0
revision
0
439
1
2012-01-20 14:05:45
2012-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&view=article&catid=118&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&view=article&id=2796:la-pate-brisee&catid=118:ingredientsbases&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ée
inherit
open
open
392-revision-2
2012-01-20 14:05:45
2012-01-20 13:05:45
392
http://www.alicepegie.com/wordpress/wordpress/?p=439
0
revision
0
440
1
2012-01-20 14:17:12
2012-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ée
inherit
open
open
405-revision-2
2012-01-20 14:17:12
2012-01-20 13:17:12
405
http://www.alicepegie.com/wordpress/wordpress/?p=440
0
revision
0
441
1
2012-01-20 14:18:41
2012-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&view=article&catid=131&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&view=article&catid=125&id=2791">Crème purifiante & apaisante coco & 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 pousse
inherit
open
open
407-revision-3
2012-01-20 14:18:41
2012-01-20 13:18:41
407
http://www.alicepegie.com/wordpress/wordpress/?p=441
0
revision
0
442
1
2012-01-20 14:23:27
2012-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és
inherit
open
open
414-revision-2
2012-01-20 14:23:27
2012-01-20 13:23:27
414
http://www.alicepegie.com/wordpress/wordpress/?p=442
0
revision
0
443
1
2012-01-20 14:29:09
2012-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 Coco
inherit
open
open
420-revision-2
2012-01-20 14:29:09
2012-01-20 13:29:09
420
http://www.alicepegie.com/wordpress/wordpress/?p=443
0
revision
0
444
1
2012-01-20 14:30:54
2012-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&view=article&id=1906:mes-speculoos&catid=107:biscuits&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&view=article&id=1906:mes-speculoos&catid=107:biscuits&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 maison
inherit
open
open
422-revision-2
2012-01-20 14:30:54
2012-01-20 13:30:54
422
http://www.alicepegie.com/wordpress/wordpress/?p=444
0
revision
0
445
1
2011-09-29 07:54:50
2011-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 banane
publish
open
open
savon-tout-doux-a-la-banane
2012-01-21 07:56:35
2012-01-21 06:56:35
0
http://www.alicepegie.com/wordpress/wordpress/?p=445
0
post
0
447
1
2011-09-28 07:56:41
2011-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épices
publish
open
open
le-pain-depices
2012-01-21 07:59:07
2012-01-21 06:59:07
0
http://www.alicepegie.com/wordpress/wordpress/?p=447
0
post
0
446
1
2012-01-21 07:55:53
2012-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';"> </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';"> </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';"> <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>
<hr id="system-readmore" />
<p><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';"> </span></p>
<p><strong><span style="font-size: 10pt; line-height: 115%; font-family: 'Arial','sans-serif';">Méthode : 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';"> </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" 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';"> <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" 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';"> <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';"> <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';"> <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';"> <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 banane
inherit
open
open
445-revision
2012-01-21 07:55:53
2012-01-21 06:55:53
445
http://www.alicepegie.com/wordpress/wordpress/?p=446
0
revision
0
448
1
2012-01-21 07:58:44
2012-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>
inherit
open
open
447-revision
2012-01-21 07:58:44
2012-01-21 06:58:44
447
http://www.alicepegie.com/wordpress/wordpress/?p=448
0
revision
0
449
1
2011-09-27 07:59:23
2011-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> :
<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>
<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" />
<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é
publish
open
open
lait-hydratant-au-karite
2012-01-21 08:00:38
2012-01-21 07:00:38
0
http://www.alicepegie.com/wordpress/wordpress/?p=449
0
post
0
450
1
2012-01-21 08:00:14
2012-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> :
<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>
<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" />
<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é
inherit
open
open
449-revision
2012-01-21 08:00:14
2012-01-21 07:00:14
449
http://www.alicepegie.com/wordpress/wordpress/?p=450
0
revision
0
451
1
2011-09-26 08:01:01
2011-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>
Govinal Ndzinga Essomba
publish
open
open
govinal-ndzinga-essomba
2012-01-21 08:02:21
2012-01-21 07:02:21
0
http://www.alicepegie.com/wordpress/wordpress/?p=451
0
post
0
452
1
2012-01-21 08:02:03
2012-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>
Govinal Ndzinga Essomba
inherit
open
open
451-revision
2012-01-21 08:02:03
2012-01-21 07:02:03
451
http://www.alicepegie.com/wordpress/wordpress/?p=452
0
revision
0
453
1
2012-01-21 08:03:24
2012-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>
Govinal Ndzinga Essomba
inherit
open
open
451-autosave
2012-01-21 08:03:24
2012-01-21 07:03:24
451
http://www.alicepegie.com/wordpress/wordpress/?p=453
0
revision
0
454
1
2011-09-22 08:03:25
2011-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&view=article&id=2049:le-manioc&catid=377:bases&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&view=article&id=2179:frites-de-manioc&catid=376:accompagnements&Itemid=133">frites</a>, <a href="index.php?option=com_content&view=article&id=2581:manioc-grille&catid=376:accompagnements&Itemid=133">grillé</a>, en <a href="index.php?option=com_content&view=article&id=1890:fufu-foufou-de-manioc&catid=376:accompagnements&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&view=article&id=2238:feuilles-de-manioc-kpwem-au-suc-de-palme&catid=363:plats&Itemid=121">feuilles </a>comme <a href="index.php?option=com_content&view=article&id=2743:sauce-de-feuilles-de-manioc&catid=363:plats&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&view=article&id=2049:le-manioc&catid=377:bases&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&view=article&id=2049:le-manioc&catid=377:bases&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 Bouilli
publish
open
open
le-manioc-bouilli
2012-01-21 08:11:37
2012-01-21 07:11:37
0
http://www.alicepegie.com/wordpress/wordpress/?p=454
0
post
0
455
1
2012-01-21 08:04:27
2012-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&view=article&id=2049:le-manioc&catid=377:bases&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&view=article&id=2179:frites-de-manioc&catid=376:accompagnements&Itemid=133">frites</a>, <a href="index.php?option=com_content&view=article&id=2581:manioc-grille&catid=376:accompagnements&Itemid=133">grillé</a>, en <a href="index.php?option=com_content&view=article&id=1890:fufu-foufou-de-manioc&catid=376:accompagnements&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&view=article&id=2238:feuilles-de-manioc-kpwem-au-suc-de-palme&catid=363:plats&Itemid=121">feuilles </a>comme <a href="index.php?option=com_content&view=article&id=2743:sauce-de-feuilles-de-manioc&catid=363:plats&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&view=article&id=2049:le-manioc&catid=377:bases&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&view=article&id=2049:le-manioc&catid=377:bases&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 Bouilli
inherit
open
open
454-revision
2012-01-21 08:04:27
2012-01-21 07:04:27
454
http://www.alicepegie.com/wordpress/wordpress/?p=455
0
revision
0
456
1
2011-09-23 08:05:34
2011-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 & mimosa
publish
open
open
mousse-de-nuit-regenerante-rose-mimosa
2012-01-21 08:07:10
2012-01-21 07:07:10
0
http://www.alicepegie.com/wordpress/wordpress/?p=456
0
post
0
457
1
2012-01-21 08:06:35
2012-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 & mimosa
inherit
open
open
456-revision
2012-01-21 08:06:35
2012-01-21 07:06:35
456
http://www.alicepegie.com/wordpress/wordpress/?p=457
0
revision
0
458
1
2011-09-21 08:07:30
2011-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 à Choux
publish
open
open
la-pate-a-choux
2012-01-21 08:10:29
2012-01-21 07:10:29
0
http://www.alicepegie.com/wordpress/wordpress/?p=458
0
post
0
459
1
2012-01-21 08:08:40
2012-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 à Choux
inherit
open
open
458-revision
2012-01-21 08:08:40
2012-01-21 07:08:40
458
http://www.alicepegie.com/wordpress/wordpress/?p=459
0
revision
0
460
1
2012-01-21 08:04:58
2012-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&view=article&id=2049:le-manioc&catid=377:bases&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&view=article&id=2179:frites-de-manioc&catid=376:accompagnements&Itemid=133">frites</a>, <a href="index.php?option=com_content&view=article&id=2581:manioc-grille&catid=376:accompagnements&Itemid=133">grillé</a>, en <a href="index.php?option=com_content&view=article&id=1890:fufu-foufou-de-manioc&catid=376:accompagnements&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&view=article&id=2238:feuilles-de-manioc-kpwem-au-suc-de-palme&catid=363:plats&Itemid=121">feuilles </a>comme <a href="index.php?option=com_content&view=article&id=2743:sauce-de-feuilles-de-manioc&catid=363:plats&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&view=article&id=2049:le-manioc&catid=377:bases&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&view=article&id=2049:le-manioc&catid=377:bases&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 Bouilli
inherit
open
open
454-revision-2
2012-01-21 08:04:58
2012-01-21 07:04:58
454
http://www.alicepegie.com/wordpress/wordpress/?p=460
0
revision
0
461
1
2012-01-21 08:11:05
2012-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&view=article&id=2049:le-manioc&catid=377:bases&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&view=article&id=2179:frites-de-manioc&catid=376:accompagnements&Itemid=133">frites</a>, <a href="index.php?option=com_content&view=article&id=2581:manioc-grille&catid=376:accompagnements&Itemid=133">grillé</a>, en <a href="index.php?option=com_content&view=article&id=1890:fufu-foufou-de-manioc&catid=376:accompagnements&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&view=article&id=2238:feuilles-de-manioc-kpwem-au-suc-de-palme&catid=363:plats&Itemid=121">feuilles </a>comme <a href="index.php?option=com_content&view=article&id=2743:sauce-de-feuilles-de-manioc&catid=363:plats&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&view=article&id=2049:le-manioc&catid=377:bases&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&view=article&id=2049:le-manioc&catid=377:bases&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 Bouilli
inherit
open
open
454-revision-3
2012-01-21 08:11:05
2012-01-21 07:11:05
454
http://www.alicepegie.com/wordpress/wordpress/?p=461
0
revision
0
462
1
2011-09-20 08:11:43
2011-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>
<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és
publish
open
open
beurre-capillaire-pour-cheveux-abimes-et-cuirs-chevelus-irrites
2012-01-21 08:13:54
2012-01-21 07:13:54
0
http://www.alicepegie.com/wordpress/wordpress/?p=462
0
post
0
463
1
2012-01-21 08:13:46
2012-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>
<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és
inherit
open
open
462-revision
2012-01-21 08:13:46
2012-01-21 07:13:46
462
http://www.alicepegie.com/wordpress/wordpress/?p=463
0
revision
0
464
1
2011-09-17 08:14:32
2011-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>
Mbarga Soukous
publish
open
open
mbarga-soukous
2012-01-21 08:16:03
2012-01-21 07:16:03
0
http://www.alicepegie.com/wordpress/wordpress/?p=464
0
post
0
465
1
2012-01-21 08:15:10
2012-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>
Mbarga Soukous
inherit
open
open
464-revision
2012-01-21 08:15:10
2012-01-21 07:15:10
464
http://www.alicepegie.com/wordpress/wordpress/?p=465
0
revision
0
466
1
2011-09-16 08:16:26
2011-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>
<strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation</span></strong>
<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 papillote
publish
open
open
poisson-en-papillote
2012-01-21 08:17:58
2012-01-21 07:17:58
0
http://www.alicepegie.com/wordpress/wordpress/?p=466
0
post
0
467
1
2012-01-21 08:17:29
2012-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>
<strong><span style="font-family: arial,helvetica,sans-serif; font-size: 10pt;">Préparation</span></strong>
<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 papillote
inherit
open
open
466-revision
2012-01-21 08:17:29
2012-01-21 07:17:29
466
http://www.alicepegie.com/wordpress/wordpress/?p=467
0
revision
0
468
1
2011-09-15 08:18:20
2011-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>
<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>
<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èmes
publish
open
open
lotion-micellaire-pour-peaux-a-problemes
2012-01-21 08:19:48
2012-01-21 07:19:48
0
http://www.alicepegie.com/wordpress/wordpress/?p=468
0
post
0
470
1
2011-09-14 08:20:39
2011-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 & mangue
publish
open
open
salade-de-crevettes-mangue
2012-01-21 08:23:18
2012-01-21 07:23:18
0
http://www.alicepegie.com/wordpress/wordpress/?p=470
0
post
0
469
1
2012-01-21 08:19:16
2012-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>
<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>
<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èmes
inherit
open
open
468-revision
2012-01-21 08:19:16
2012-01-21 07:19:16
468
http://www.alicepegie.com/wordpress/wordpress/?p=469
0
revision
0
471
1
2012-01-21 08:21:41
2012-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" />
inherit
open
open
470-revision
2012-01-21 08:21:41
2012-01-21 07:21:41
470
http://www.alicepegie.com/wordpress/wordpress/?p=471
0
revision
0
472
1
2011-09-13 08:23:35
2011-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>
<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és
publish
open
open
gelee-hydratante-pour-cheveux-secs-abimes
2012-01-21 08:25:29
2012-01-21 07:25:29
0
http://www.alicepegie.com/wordpress/wordpress/?p=472
0
post
0
473
1
2012-01-21 08:24:38
2012-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>
<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és
inherit
open
open
472-revision
2012-01-21 08:24:38
2012-01-21 07:24:38
472
http://www.alicepegie.com/wordpress/wordpress/?p=473
0
revision
0
474
1
2011-09-12 08:25:55
2011-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&view=article&id=1972:le-gingembre&catid=56:soins-naturels&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&view=article&id=2020:les-vertus-incroyables-du-the-vert&catid=56:soins-naturels&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&view=article&id=1920:jus-de-gingembre-njijer-recette-camerounaise&catid=373:boissons&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&view=article&id=1920:jus-de-gingembre-njijer-recette-camerounaise&catid=373:boissons&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 Gingembre
publish
open
open
the-vert-au-gingembre
2012-01-21 08:27:27
2012-01-21 07:27:27
0
http://www.alicepegie.com/wordpress/wordpress/?p=474
0
post
0
475
1
2012-01-21 08:26:58
2012-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&view=article&id=1972:le-gingembre&catid=56:soins-naturels&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&view=article&id=2020:les-vertus-incroyables-du-the-vert&catid=56:soins-naturels&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&view=article&id=1920:jus-de-gingembre-njijer-recette-camerounaise&catid=373:boissons&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&view=article&id=1920:jus-de-gingembre-njijer-recette-camerounaise&catid=373:boissons&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" />
inherit
open
open
474-revision
2012-01-21 08:26:58
2012-01-21 07:26:58
474
http://www.alicepegie.com/wordpress/wordpress/?p=475
0
revision
0
476
1
2011-09-11 08:27:43
2011-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>
Donny Elwood
publish
open
open
donny-elwood
2012-01-21 08:30:41
2012-01-21 07:30:41
0
http://www.alicepegie.com/wordpress/wordpress/?p=476
0
post
0
477
1
2012-01-21 08:29:45
2012-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>
Donny Elwood
inherit
open
open
476-revision
2012-01-21 08:29:45
2012-01-21 07:29:45
476
http://www.alicepegie.com/wordpress/wordpress/?p=477
0
revision
0
478
1
2012-01-21 08:30:19
2012-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>
Donny Elwood
inherit
open
open
476-revision-2
2012-01-21 08:30:19
2012-01-21 07:30:19
476
http://www.alicepegie.com/wordpress/wordpress/?p=478
0
revision
0
479
1
2011-09-10 08:30:46
2011-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 Manioc
publish
open
open
sauce-de-feuilles-de-manioc
2012-01-21 08:32:25
2012-01-21 07:32:25
0
http://www.alicepegie.com/wordpress/wordpress/?p=479
0
post
0
480
1
2012-01-21 08:31:28
2012-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 Manioc
inherit
open
open
479-revision
2012-01-21 08:31:28
2012-01-21 07:31:28
479
http://www.alicepegie.com/wordpress/wordpress/?p=480
0
revision
0
481
1
2011-09-08 08:32:45
2011-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 nourissant
publish
open
open
baume-cremeux-nourissant
2012-01-21 08:34:34
2012-01-21 07:34:34
0
http://www.alicepegie.com/wordpress/wordpress/?p=481
0
post
0
482
1
2012-01-21 08:33:34
2012-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 nourissant
inherit
open
open
481-revision
2012-01-21 08:33:34
2012-01-21 07:33:34
481
http://www.alicepegie.com/wordpress/wordpress/?p=482
0
revision
0
483
1
2012-01-21 08:34:02
2012-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 nourissant
inherit
open
open
481-revision-2
2012-01-21 08:34:02
2012-01-21 07:34:02
481
http://www.alicepegie.com/wordpress/wordpress/?p=483
0
revision
0
484
1
2011-09-07 08:34:54
2011-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)
publish
open
open
le-dartrier-cassia-alata
2012-01-21 08:36:21
2012-01-21 07:36:21
0
http://www.alicepegie.com/wordpress/wordpress/?p=484
0
post
0
486
1
2011-09-06 08:36:47
2011-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>
<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)
publish
open
open
eau-de-fruit-de-citron-vert-hydrolat-maison
2012-01-21 08:38:29
2012-01-21 07:38:29
0
http://www.alicepegie.com/wordpress/wordpress/?p=486
0
post
0
485
1
2012-01-21 08:35:56
2012-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)
inherit
open
open
484-revision
2012-01-21 08:35:56
2012-01-21 07:35:56
484
http://www.alicepegie.com/wordpress/wordpress/?p=485
0
revision
0
488
1
2011-09-05 08:39:04
2011-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és
publish
open
open
pains-brioches-grilles
2012-01-21 08:41:23
2012-01-21 07:41:23
0
http://www.alicepegie.com/wordpress/wordpress/?p=488
0
post
0
487
1
2012-01-21 08:37:33
2012-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)
inherit
open
open
486-revision
2012-01-21 08:37:33
2012-01-21 07:37:33
486
http://www.alicepegie.com/wordpress/wordpress/?p=487
0
revision
0
489
1
2012-01-21 08:41:07
2012-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>
inherit
open
open
488-revision
2012-01-21 08:41:07
2012-01-21 07:41:07
488
http://www.alicepegie.com/wordpress/wordpress/?p=489
0
revision
0
490
1
2011-06-28 08:41:46
2011-06-28 07:41:46
suite à 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 à tous
Vacances
publish
open
open
vacances
2012-01-21 08:42:53
2012-01-21 07:42:53
0
http://www.alicepegie.com/wordpress/wordpress/?p=490
0
post
0
491
1
2012-01-21 08:42:49
2012-01-21 07:42:49
suite à 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 à tous
inherit
open
open
490-revision
2012-01-21 08:42:49
2012-01-21 07:42:49
490
http://www.alicepegie.com/wordpress/wordpress/?p=491
0
revision
0
3
Catégories
categories
0
4
Syndication
syndication
0
5
Menu Horizontal
menu-horizontal
0
7
Mes Cosmétiques
cosmetiques
0
9
Mon Cameroun
mon-cameroun
0
11
Liens Favoris
liens-favoris
0
12
Index Musique
index-musique
0
14
Du Centre Sud
du-centre-sud
0
15
Kmer en Vrac
kmer-en-vrac
0
17
Religieuse
religieuse
0
19
Index Cosmétiques
index-cosmetiques
0
20
Pour le Corps
pour-le-corps
0
21
Pour le Visage
pour-le-visage
0
22
Pour les Cheveux
pour-les-cheveux
0
23
Pour Maman & Bébé
pour-maman-bebe
0
24
Pour la Maison
pour-la-maison
0
25
Savonnerie
savonnerie
0
26
Douce Nature
douce-nature
0
27
Remèdes Maison
remedes-maison
0
28
Index Cuisine
index-cuisine
0
31
Accompagnements
accompagnements
0
35
Ingredients/Bases
ingredientsbases
0
43
Soupe/Potage
soupepotage
0
44
Féculents/Légumes
feculentslegumes
0
46
Grignotage
grignotage
0
47
Poisson
poisson-aperitifs
0
50
Tartes/Pizza
tartespizza
0
51
Viande
viande-aperitifs
0
53
Gateaux
gateaux-plats
0
54
Poisson
poisson-plats
0
56
Féculents/Légumes
feculentslegumes-plats
0
57
Tartes/Pizza
tartespizza-plats
0
58
Yaourts Maison
yaourts-maison
0
60
Confitures, Sauces
confitures-sauces
0
61
Crèpes, Gauffres
crepes-gauffres
0
62
Gateaux
gateaux-desserts
0
66
Tartes/Pizza
tartespizza-desserts
0
70
l'hydrolathérapie
lhydrolatherapie
0
72
savonnerie
savonnerie-2
0
79
phytothérapie
phytotherapie
0
97
pigmentation
pigmentation
0
104
presbytérienne
presbyterienne
0
106
camerounaise
camerounaise
0
110
Alicepégie
alicepegie
0
112
Communauté
communaute
0
113
post-format-gallery
post-format-gallery
0
126
archangelo
archangelo
0
131
testament
testament
0
132
zangalewa
zangalewa
0
135
charlotte
charlotte
0
160
croquettes
croquettes
0
161
sachertotrte
sachertotrte
0
165
aloé véra
aloe-vera
0
171
busserole
busserole
0
172
éclaircissant
eclaircissant
0
182
shampooing
shampooing
0
186
unifiante
unifiante
0
188
calendula
calendula
0
189
Pour les Mains, Pieds & Bouche
pour-les-mains-pieds-bouche
0
191
amande douce
amande-douce
0
192
après-shampooing
apres-shampooing
0
197
capillaire
capillaire
0
199
sensibilisés
sensibilises
0
202
matifiante
matifiante
0
203
purifiante
purifiante
0
207
framboise
framboise
0
208
nourrissant
nourrissant
0
209
protecteur
protecteur
0
221
essentielles
essentielles
0
222
reequilibrant
reequilibrant
0
223
exfoliante
exfoliante
0
228
shampoing
shampoing
0
230
pour le Bain
pour-le-bain
0
246
anniversaire
anniversaire
0
247
princesse
princesse
0
250
Confiseries
confiseries
0
261
nettoyant
nettoyant
0
262
régénérant
regenerant
0
263
détachant
detachant
0
268
confiture
confiture
0
271
crevettes
crevettes
0
279
spéculoos
speculoos
0
292
chouquette
chouquette
0
299
africaine
africaine-2
0
303
apaisante
apaisante
0
305
maniguette
maniguette
0
312
Equitable
equitable
0
314
Une Graine
une-graine
0
317
Vaisselle
vaisselle
0
322
Internationa
internationa
0
331
hydratant
hydratant
0
335
bikusti beti
bikusti-beti
0
340
régénérante
regenerante
0
342
chouquettes
chouquettes
0
351
papillote
papillote
0
353
Micellaire
micellaire
0
358
hydratante
hydratante
0
376
ngom ntangan
ngom-ntangan
0
113
113
post_format
0
106
6
1
comment_shortcuts
false
9
1
show_admin_bar_front
true
10
1
wp_capabilities
a:1:{s:13:"administrator";s:1:"1";}
12
1
dismissed_wp_pointers
wp330_toolbar,wp330_media_uploader,wp330_saving_widgets
13
1
show_welcome_panel
1
14
1
wp_user-settings
uploader=1&editor=tinymce&hidetb=1
15
1
wp_user-settings-time
1327066849
16
1
wp_dashboard_quick_press_last_post_id
3
17
1
managenav-menuscolumnshidden
a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}
18
1
metaboxhidden_nav-menus
a:2:{i:0;s:8:"add-post";i:1;s:12:"add-post_tag";}
19
1
nav_menu_recently_edited
4
20
1
closedpostboxes_nav-menus
a:0:{}
21
1
wysija_pref
YToxOntzOjE4OiJ3eXNpamFfc3Vic2NyaWJlcnMiO2E6MTp7czo3OiJkZWZhdWx0IjthOjE6e3M6ODoibGltaXRfcHAiO3M6MzoiMTAwIjt9fX0=
1
alicepegie
$P$BHqnH.xuPsDka1id9in2q9IIW.1bm0.
alicepegie
webmaster@alicepegie.com
2012-01-17 11:56:04
mbpQ2M0QJnoZTHFKbEyp
0
alicepegie
1
1
Un 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;"> </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&view=article&id=206:mon-savon-noir-dafrique&catid=59&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;"> </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>
1326984369
NULL
webmaster@alicepegie.com
alicepegie
webmaster@alicepegie.com
alicepegie
2
1
0
1
0
0
0
0
YToxOntzOjE0OiJxdWlja3NlbGVjdGlvbiI7YTo3OntzOjY6IndwLTMwMSI7YTo4OntzOjEwOiJpZGVudGlmaWVyIjtzOjY6IndwLTMwMSI7czo1OiJ3aWR0aCI7czozOiIyODEiO3M6NjoiaGVpZ2h0IjtzOjM6IjE5MCI7czozOiJ1cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMDcucG5nIjtzOjk6InRodW1iX3VybCI7czoxNDI6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMDctMTUweDE1MC5wbmciO3M6NzoiSVNfUEFJUiI7aTowO3M6NzoiSVNfTEFTVCI7YjowO3M6ODoiSVNfRklSU1QiO2I6MDt9czo2OiJ3cC0zMDIiO2E6ODp7czoxMDoiaWRlbnRpZmllciI7czo2OiJ3cC0zMDIiO3M6NToid2lkdGgiO3M6MzoiNDgyIjtzOjY6ImhlaWdodCI7czoyOiIzMCI7czozOiJ1cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMTAucG5nIjtzOjk6InRodW1iX3VybCI7czoxNDE6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMTAtMTUweDMwLnBuZyI7czo3OiJJU19QQUlSIjtpOjE7czo3OiJJU19MQVNUIjtiOjA7czo4OiJJU19GSVJTVCI7YjowO31zOjY6IndwLTMwMyI7YTo4OntzOjEwOiJpZGVudGlmaWVyIjtzOjY6IndwLTMwMyI7czo1OiJ3aWR0aCI7czoyOiI1MiI7czo2OiJoZWlnaHQiO3M6MjoiNDUiO3M6MzoidXJsIjtzOjEzOToiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzL3dwLWNvbnRlbnQvcGx1Z2lucy93eXNpamEtbmV3c2xldHRlcnMvaW1nL2RlZmF1bHQtbmV3c2xldHRlci9mdWxsL3NhbXBsZS1uZXdzbGV0dGVyLTAxXzE0LnBuZyI7czo5OiJ0aHVtYl91cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMTQucG5nIjtzOjc6IklTX1BBSVIiO2k6MDtzOjc6IklTX0xBU1QiO2I6MDtzOjg6IklTX0ZJUlNUIjtiOjA7fXM6Njoid3AtMzA0IjthOjg6e3M6MTA6ImlkZW50aWZpZXIiO3M6Njoid3AtMzA0IjtzOjU6IndpZHRoIjtzOjI6IjcwIjtzOjY6ImhlaWdodCI7czoyOiI0MiI7czozOiJ1cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMTYucG5nIjtzOjk6InRodW1iX3VybCI7czoxMzk6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvZnVsbC9zYW1wbGUtbmV3c2xldHRlci0wMV8xNi5wbmciO3M6NzoiSVNfUEFJUiI7aToxO3M6NzoiSVNfTEFTVCI7YjowO3M6ODoiSVNfRklSU1QiO2I6MDt9czo2OiJ3cC0zMDUiO2E6ODp7czoxMDoiaWRlbnRpZmllciI7czo2OiJ3cC0zMDUiO3M6NToid2lkdGgiO3M6MzoiNTQ2IjtzOjY6ImhlaWdodCI7czoyOiIxNiI7czozOiJ1cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMjEucG5nIjtzOjk6InRodW1iX3VybCI7czoxNDE6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMjEtMTUweDE2LnBuZyI7czo3OiJJU19QQUlSIjtpOjA7czo3OiJJU19MQVNUIjtiOjA7czo4OiJJU19GSVJTVCI7YjowO31zOjY6IndwLTMwNiI7YTo4OntzOjEwOiJpZGVudGlmaWVyIjtzOjY6IndwLTMwNiI7czo1OiJ3aWR0aCI7czozOiIzMjEiO3M6NjoiaGVpZ2h0IjtzOjM6IjIzNiI7czozOiJ1cmwiO3M6MTM5OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL2Z1bGwvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMjUucG5nIjtzOjk6InRodW1iX3VybCI7czoxNDI6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvc2FtcGxlLW5ld3NsZXR0ZXItMDFfMjUtMTUweDE1MC5wbmciO3M6NzoiSVNfUEFJUiI7aToxO3M6NzoiSVNfTEFTVCI7YjowO3M6ODoiSVNfRklSU1QiO2I6MDt9czo2OiJ3cC0zMDciO2E6ODp7czoxMDoiaWRlbnRpZmllciI7czo2OiJ3cC0zMDciO3M6NToid2lkdGgiO3M6MzoiMTQwIjtzOjY6ImhlaWdodCI7czozOiIxNDAiO3M6MzoidXJsIjtzOjEzMjoiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzL3dwLWNvbnRlbnQvcGx1Z2lucy93eXNpamEtbmV3c2xldHRlcnMvaW1nL2RlZmF1bHQtbmV3c2xldHRlci9mdWxsL3doaXRlLWxhYmVsLWxvZ28ucG5nIjtzOjk6InRodW1iX3VybCI7czoxMzI6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy93cC1jb250ZW50L3BsdWdpbnMvd3lzaWphLW5ld3NsZXR0ZXJzL2ltZy9kZWZhdWx0LW5ld3NsZXR0ZXIvZnVsbC93aGl0ZS1sYWJlbC1sb2dvLnBuZyI7czo3OiJJU19QQUlSIjtpOjA7czo3OiJJU19MQVNUIjtiOjE7czo4OiJJU19GSVJTVCI7YjowO319fQ==
YTozOntzOjc6InZlcnNpb24iO3M6NToiMS4wLjAiO3M6NjoiaGVhZGVyIjthOjU6e3M6NDoidGV4dCI7TjtzOjU6ImltYWdlIjthOjU6e3M6Mzoic3JjIjtzOjEwMzoiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzL3dwLWNvbnRlbnQvcGx1Z2lucy93eXNpamEtbmV3c2xldHRlcnMvaW1nL3RyYW5zcGFyZW50LnBuZyI7czo1OiJ3aWR0aCI7aTo2MDA7czo2OiJoZWlnaHQiO2k6ODY7czo5OiJhbGlnbm1lbnQiO3M6NjoiY2VudGVyIjtzOjY6InN0YXRpYyI7YjoxO31zOjk6ImFsaWdubWVudCI7czo2OiJjZW50ZXIiO3M6Njoic3RhdGljIjtiOjE7czo0OiJ0eXBlIjtzOjY6ImhlYWRlciI7fXM6NDoiYm9keSI7YTo5OntzOjc6ImJsb2NrLTEiO2E6Njp7czo0OiJ0ZXh0IjthOjE6e3M6NToidmFsdWUiO3M6NDg0OiJQR2d4UGt4aElFSnB3Nmh5WlNCaGRTQkhhVzVuWlcxaWNtVWdUV0ZwYzI5dVBDOW9NVDQ4Y0Q1V2IybGphU0IxYm1VZ2NtVmpaWFIwWlNCa1pTQmlhY09vY21VZ2JXRnBjMjl1TENCTVlTQnlaV05sZEhSbElIQmhjbVpoYVhSbElIQnZkWElnWTJWMWVDQnhkV2tnWVdsdFpTQnNaU0JuYVc1blpXMWljbVV1SUVWc2JHVWdZV05qYjIxd1lXZHVaWEpoSUhadmRISmxJRTFsYm5VZ1pHVWdac09xZEdWeklHVjBJR1pwYm1seVlTQms0b0NadzZsd1lYUmxjaUIyYjNNZ2FXNTJhWFREcVhNdUlFTW5aWE4wSUhWdUlHVERxV3hwWTJVZ1lYWmxZeUJrWlhNZ1ltbHpZM1ZwZEhNZ1lYVWdaMmx1WjJWdFluSmxMand2Y0Q0OGFETStQSE4wY205dVp6NDhZU0JvY21WbVBTSm9kSFJ3T2k4dmQzZDNMbUZzYVdObGNHVm5hV1V1WTI5dEwzZHZjbVJ3Y21WemN5OTNiM0prY0hKbGMzTXZQM0E5TVRjaVBreHBjbVVnYkdFZ2MzVnBkR1V1UEM5aFBqd3ZjM1J5YjI1blBqd3ZhRE0rIjt9czo1OiJpbWFnZSI7YTo2OntzOjM6InNyYyI7czoyODoiL2ltYWdlcy9zdG9yaWVzL0JJRVJSRS8xLkpQRyI7czo1OiJ3aWR0aCI7aTozMjM7czo2OiJoZWlnaHQiO2k6NDAwO3M6MzoidXJsIjtzOjUxOiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3MvP3A9MTciO3M6OToiYWxpZ25tZW50IjtzOjQ6ImxlZnQiO3M6Njoic3RhdGljIjtiOjA7fXM6OToiYWxpZ25tZW50IjtzOjQ6ImxlZnQiO3M6Njoic3RhdGljIjtiOjA7czo4OiJwb3NpdGlvbiI7czoxOiIxIjtzOjQ6InR5cGUiO3M6NzoiY29udGVudCI7fXM6NzoiYmxvY2stMiI7YTo2OntzOjQ6InRleHQiO2E6MTp7czo1OiJ2YWx1ZSI7czo0NDg6IlBHZ3hQa0xEdTJOb1pTQmtaU0JPYjhPcmJDRERvQ0JzSjBGdVlXNWhjend2YURFK1BIQStTdUtBbVdGcElHTnZiVzFsYm1QRHFTRERvQ0J0NG9DWlpYaGxjbU5sY2lERG9DQm1ZV2x5WlNCa1pYTWdZblZqYUdWeklHMWhhWE52YmlCczRvQ1pZVzV1dzZsbElHUmxjbTVwdzZoeVpTNGdUR1VnY3NPcGMzVnNkR0YwSU1PcGRHRnBkQ0J3YkhWMHc3UjBJR052Ym1Oc2RXRnVkQ0JoYkc5eWN5QnE0b0NaWVdrZ1pNT3BZMmxrdzZrZ1pHVWdjc09wYVhURHFYSmxjaUJqWlhSMFpTQmhibTdEcVdVZ1lYWmxZeUJqWlhSMFpTQmlkV05vWlNCc3c2bG53Nmh5WlNCbGRDQm1jblZwZE1PcFpTNDhMM0ErUEhBK1BHRWdhSEpsWmowaWFIUjBjRG92TDNkM2R5NWhiR2xqWlhCbFoybGxMbU52YlM5M2IzSmtjSEpsYzNNdmQyOXlaSEJ5WlhOekx6OXdQVEkwSWo1TWFYSmxJR3hoSUhOMWFYUmxMand2WVQ0OEwzQSsiO31zOjU6ImltYWdlIjthOjY6e3M6Mzoic3JjIjtzOjM2OiIvaW1hZ2VzL3N0b3JpZXMvYnVjaGUlMjBhbmFuYXMvMS5KUEciO3M6NToid2lkdGgiO2k6MzIzO3M6NjoiaGVpZ2h0IjtpOjE0NjtzOjM6InVybCI7czo1MToiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzLz9wPTI0IjtzOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO31zOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO3M6ODoicG9zaXRpb24iO3M6MToiMiI7czo0OiJ0eXBlIjtzOjc6ImNvbnRlbnQiO31zOjc6ImJsb2NrLTMiO2E6Njp7czo0OiJ0ZXh0IjthOjE6e3M6NToidmFsdWUiO3M6NTY0OiJQR2d4UGsxaGJtZDFaU0JrWlNCaVlXbHVJRTFwWVcwZ1RXbGhiU0VoUEM5b01UNDhjRDVNWVNCdFlXNW5kV1VnWlhOMElHd25kVzRnWkdWeklHWnlkV2wwY3lCeGRXVWdhbVVnY0hMRHFXYkRxSEpsTENCbGRDQkJXaUJoSUhWdUlHVjRkSEpoYVhRZ1lYSnZiV0YwYVhGMVpTQmtaU0J0WVc1bmRXVWdjWFZwSUcxbElHUnZibTVsSUdWdWRtbGxJR1JsSUhacFpHVnlJR3hoSUdKdmRYUmxhV3hzWlNCa1lXNXpJRzFoSUdKdmRXTm9aU0REb0NCamFHRnhkV1VnWm05cGN5d2dkRzkxYW05MWNuTWdaVzRnY0hMRHFYQmhjbUYwYVc5dUlHUjFJR05oWkdWaGRTQmtKMkZ1Ym1sMklNT2dJSFpsYm1seUxDQjJiMmxqYVNCMWJtVWdjR1YwYVhSbElHMWhibWQxWlNCbWIzVmxkSFREcVdVc0lIQmhjeUIwY3NPb2N5QnNhWE56WlN3Z2JXRnBjeUJ4ZFdrZ2MyVnVkQ0JqY204Z1kzSnZJR0p2YmlFOEwzQStQSEErUEdFZ2FISmxaajBpYUhSMGNEb3ZMM2QzZHk1aGJHbGpaWEJsWjJsbExtTnZiUzkzYjNKa2NISmxjM012ZDI5eVpIQnlaWE56THo5d1BUSTROU0krVEdseVpTQnNZU0J6ZFdsMFpTNDhMMkUrUEM5d1BnPT0iO31zOjU6ImltYWdlIjthOjY6e3M6Mzoic3JjIjtzOjY1OiJodHRwOi8vczEuZS1tb25zaXRlLmNvbS8yMDA5LzEwLzE0LzExLzEwNTAyMzA5c2F2b24tbWFuZ28tanBnLmpwZyI7czo1OiJ3aWR0aCI7aTozMjM7czo2OiJoZWlnaHQiO2k6MjM1O3M6MzoidXJsIjtzOjUyOiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3MvP3A9Mjg1IjtzOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO31zOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO3M6ODoicG9zaXRpb24iO3M6MToiMyI7czo0OiJ0eXBlIjtzOjc6ImNvbnRlbnQiO31zOjc6ImJsb2NrLTQiO2E6Mzp7czo3OiJkaXZpZGVyIjthOjM6e3M6Mzoic3JjIjtOO3M6NToid2lkdGgiO047czo2OiJoZWlnaHQiO047fXM6ODoicG9zaXRpb24iO3M6MToiNCI7czo0OiJ0eXBlIjtzOjc6ImRpdmlkZXIiO31zOjc6ImJsb2NrLTUiO2E6Njp7czo0OiJ0ZXh0IjthOjE6e3M6NToidmFsdWUiO3M6MzQ4OiJQR2d4UGtOeXc2aHRaU0JrWlNCemIybHVJRVY0Wm05c2FXRnVkR1VnVFdGdWRXTjFjbVVnWlhod2NtVnpjMlU4TDJneFBqeHdQbEJ2ZFhJZ1pHVnpJRzFoYVc1eklIUnl3Nmh6SUhOdmRYWmxiblFnYldGc2RISmhhWFREcVdWekxDQldiMmxqYVNCMWJtVWdZM0xEcUcxbElHUmxJRHhsYlQ1VGIybHVJSEJ2ZFhJZ1RUd3ZaVzArWVc1MVkzVnlaU0JsZUhCeVpYTnpaU0JsZENCdVlYUjFjbVZzYkdVdVBDOXdQanh3UGp4aElHaHlaV1k5SW1oMGRIQTZMeTkzZDNjdVlXeHBZMlZ3WldkcFpTNWpiMjB2ZDI5eVpIQnlaWE56TDNkdmNtUndjbVZ6Y3k4L2NEMHlOemNpUGt4cGNtVWdiR0VnYzNWcGRHVXVQQzloUGp3dmNEND0iO31zOjU6ImltYWdlIjthOjY6e3M6Mzoic3JjIjtzOjYyOiJodHRwOi8vczEuZS1tb25zaXRlLmNvbS8yMDA5LzEwLzEyLzA5LzQyMDAyNjYzbWFudWN1cmUtanBnLmpwZyI7czo1OiJ3aWR0aCI7aTozMjM7czo2OiJoZWlnaHQiO2k6MjM2O3M6MzoidXJsIjtzOjUyOiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3MvP3A9Mjc3IjtzOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO31zOjk6ImFsaWdubWVudCI7czo0OiJsZWZ0IjtzOjY6InN0YXRpYyI7YjowO3M6ODoicG9zaXRpb24iO3M6MToiNSI7czo0OiJ0eXBlIjtzOjc6ImNvbnRlbnQiO31zOjc6ImJsb2NrLTYiO2E6Njp7czo0OiJ0ZXh0IjthOjE6e3M6NToidmFsdWUiO3M6ODg0OiJQR2d4UGxOaGRtOXVJRTV2YVhJZ1JtOTFaWFIwdzZrOEwyZ3hQanh3UGtWb0lHSnBaVzRoSUUxdmJpQndjbVZ0YVdWeUlHVnpjMkZwWlNCa1pTQnpZWFp2YmlCbWIzVmxkSFREcVNCelpXMWliR1VnY3NPcGRYTnphU0JrZFNCamIzVndJR29uWVdrZ1pYVWdaVzUyYVdVZ1pHVWdZMjl1ZEdsdWRXVnlMQ0JoYkc5eWN5QnFKMkZwSUdURHFXTnBaTU9wSUdSbElHWnZkV1YwZEdWeUlHeGxJRTV2YVhJZ0tHeHZiQ2tnUlhRZ2RtOXBZMmtnZFc1bElHNXZkWFpsYkd4bElNT3BaR2wwYVc5dUlHUmxJRzF2YmlCemFTQmliMjRnUEdFZ2FISmxaajBpWW14dlp5eHRiMjR0YzJGMmIyNHRibTlwY2kxa0xXRm1jbWx4ZFdVc01UWTVPVGt6TG1oMGJXd2pjM1ZwZEdVaVBuTmhkbTl1SUc1dmFUd3ZZVDQ4WVNCb2NtVm1QU0pwYm1SbGVDNXdhSEEvYjNCMGFXOXVQV052YlY5amIyNTBaVzUwSm1GdGNEdDJhV1YzUFdGeWRHbGpiR1VtWVcxd08ybGtQVEl3TmpwdGIyNHRjMkYyYjI0dGJtOXBjaTFrWVdaeWFYRjFaU1poYlhBN1kyRjBhV1E5TlRrbVlXMXdPMGwwWlcxcFpEMDRNaUkrY2p3dllUNHNJRzF2YmlCd2NzT3Bac09wY3NPcExDQmpaWFIwWlNCbWIybHpJR2xzSUc1bElITmxjbUVnY0dGeklHVjRabTlzYVdWdWRDNDhMM0ErUEhBK1kyL0R1M1FnY0c5MWNpQXhNREJuSURJdU9URGlncXc4TDNBK1BIQStWR1Z0Y0hNZ1pHVWdjc09wWVd4cGMyRjBhVzl1SUdWdWRpQXpNRzF1SUdGd2NzT29jeUJ5WldaeWIybGthWE56WlcxbGJuUWdaR1Z6SUVKbGRYSnlaWE04TDNBK1BIQStQR0VnYUhKbFpqMGlhSFIwY0RvdkwzZDNkeTVoYkdsalpYQmxaMmxsTG1OdmJTOTNiM0prY0hKbGMzTXZkMjl5WkhCeVpYTnpMejl3UFRJM015SStUR2x5WlNCc1lTQnpkV2wwWlM0OEwyRStQQzl3UGc9PSI7fXM6NToiaW1hZ2UiO2E6Njp7czozOiJzcmMiO3M6NjI6Imh0dHA6Ly9zMS5lLW1vbnNpdGUuY29tLzIwMDkvMTAvMTEvMDQvNjE4ODg1NTlzbnYzMjQ0Ni1qcGcuanBnIjtzOjU6IndpZHRoIjtpOjMyMztzOjY6ImhlaWdodCI7aTozMjM7czozOiJ1cmwiO3M6NTI6Imh0dHA6Ly93d3cuYWxpY2VwZWdpZS5jb20vd29yZHByZXNzL3dvcmRwcmVzcy8/cD0yNzMiO3M6OToiYWxpZ25tZW50IjtzOjQ6ImxlZnQiO3M6Njoic3RhdGljIjtiOjA7fXM6OToiYWxpZ25tZW50IjtzOjQ6ImxlZnQiO3M6Njoic3RhdGljIjtiOjA7czo4OiJwb3NpdGlvbiI7czoxOiI2IjtzOjQ6InR5cGUiO3M6NzoiY29udGVudCI7fXM6NzoiYmxvY2stNyI7YTo2OntzOjQ6InRleHQiO2E6MTp7czo1OiJ2YWx1ZSI7czo3MjA6IlBHZ3hQbE53Y21GNUlDSklZV3gwWlNCaGRYZ2djRzkxZUNJOEwyZ3hQanh3UGtOaElIa2daWE4wSUVMRHFXTERxU0JsYzNRZ1pXNTBjc09wWlNERG9DQnNKOE9wWTI5c1pTd2daWFFnYzI5MWRtVnVkQ0J4ZFdGdVpDQnFKMkZ1Ym05dVkyVWdkRzkxZENCbWFjT29jbVZ0Wlc1MElHTmxkSFJsSUdkeVlXNWtaU0J1YjNWMlpXeHNaU0REb0NCeGRXVnNjWFVuZFc0c0lHTmhJR1pwYm1rZ2MyOTFkbVZ1ZENCd1lYSWdZV2xsSUdGcFpTQmhkSFJsYm5ScGIyNGdZWFY0SUhCdmRYZ3VJRVYwSUdOdmJXMWxJR3BsSUhOMWFYTWdaQ2QxYmlCdVlYUjFjbVZzSUhCeXc2bDJaVzUwYVdZZ2FpZGhhU0JqYUdWeVkyakRxU0IxYm1VZ2NtVmpaWFIwWlNCeGRXa2djRzkxZG5KeVlXbDBJR1Z0Y01PcVkyaGxjaUJ4ZFdVZ1kyVnNZU0J1SjJGeWNtbDJaU0JsZENCcUoyRnBJSFJ5YjNWMnc2a2dQR0VnYUhKbFpqMGlhSFIwY0RvdkwzZDNkeTVoY205dFlTMTZiMjVsTG1OdmJTOWhjbTl0WVM5bWFXTm9aV3hoZG1GdVpHVjJjbUZwWlVKSlR5NWhjM0FqYzNCeVlYbGZjRzkxZUNJK1kyVjBkR1VnY21WalpYUjBaU0JrSjBGYUxqd3ZZVDQ4TDNBK1BHZ3lQanh6ZEhKdmJtYytQR0VnYUhKbFpqMGlhSFIwY0RvdkwzZDNkeTVoYkdsalpYQmxaMmxsTG1OdmJTOTNiM0prY0hKbGMzTXZkMjl5WkhCeVpYTnpMejl3UFRJMk55SStUR2x5WlNCc1lTQnpkV2wwWlM0OEwyRStQQzl6ZEhKdmJtYytQQzlvTWo0PSI7fXM6NToiaW1hZ2UiO2E6Njp7czozOiJzcmMiO3M6Nzk6Imh0dHA6Ly9zMS5lLW1vbnNpdGUuY29tLzIwMDkvMTAvMTAvMDcvNjc1NDE2MDBzcHJheS1wcmV2ZW50aWYtcG91eG9wdDQwLWpwZy5qcGciO3M6NToid2lkdGgiO2k6MzIzO3M6NjoiaGVpZ2h0IjtpOjMyMztzOjM6InVybCI7czo1MjoiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzLz9wPTI2NyI7czo5OiJhbGlnbm1lbnQiO3M6NDoibGVmdCI7czo2OiJzdGF0aWMiO2I6MDt9czo5OiJhbGlnbm1lbnQiO3M6NDoibGVmdCI7czo2OiJzdGF0aWMiO2I6MDtzOjg6InBvc2l0aW9uIjtzOjE6IjciO3M6NDoidHlwZSI7czo3OiJjb250ZW50Ijt9czo3OiJibG9jay04IjthOjM6e3M6NzoiZGl2aWRlciI7YTozOntzOjM6InNyYyI7TjtzOjU6IndpZHRoIjtOO3M6NjoiaGVpZ2h0IjtOO31zOjg6InBvc2l0aW9uIjtzOjE6IjgiO3M6NDoidHlwZSI7czo3OiJkaXZpZGVyIjt9czo3OiJibG9jay05IjthOjY6e3M6NDoidGV4dCI7TjtzOjU6ImltYWdlIjthOjU6e3M6Mzoic3JjIjtzOjEzOToiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzL3dwLWNvbnRlbnQvcGx1Z2lucy93eXNpamEtbmV3c2xldHRlcnMvaW1nL2RlZmF1bHQtbmV3c2xldHRlci9mdWxsL3NhbXBsZS1uZXdzbGV0dGVyLTAxXzIxLnBuZyI7czo1OiJ3aWR0aCI7aTo1Nzg7czo2OiJoZWlnaHQiO2k6MTc7czo5OiJhbGlnbm1lbnQiO3M6NjoiY2VudGVyIjtzOjY6InN0YXRpYyI7YjowO31zOjk6ImFsaWdubWVudCI7czo2OiJjZW50ZXIiO3M6Njoic3RhdGljIjtiOjA7czo4OiJwb3NpdGlvbiI7czoxOiI5IjtzOjQ6InR5cGUiO3M6NzoiY29udGVudCI7fX19
YTo5OntzOjQ6ImJvZHkiO2E6NDp7czo1OiJjb2xvciI7czo2OiIwMDAwMDAiO3M6NjoiZmFtaWx5IjtzOjU6IkFyaWFsIjtzOjQ6InNpemUiO3M6MjoiMTIiO3M6MTA6ImJhY2tncm91bmQiO3M6NjoiRkFFRUREIjt9czoyOiJoMSI7YTozOntzOjU6ImNvbG9yIjtzOjY6IkJFQUVBMCI7czo2OiJmYW1pbHkiO3M6NToiQXJpYWwiO3M6NDoic2l6ZSI7czoyOiIzMCI7fXM6MjoiaDIiO2E6Mzp7czo1OiJjb2xvciI7czo2OiJCRUFFQTAiO3M6NjoiZmFtaWx5IjtzOjU6IkFyaWFsIjtzOjQ6InNpemUiO3M6MjoiMjgiO31zOjI6ImgzIjthOjM6e3M6NToiY29sb3IiO3M6NjoiQkVBRUEwIjtzOjY6ImZhbWlseSI7czo1OiJBcmlhbCI7czo0OiJzaXplIjtzOjI6IjI2Ijt9czoxOiJhIjthOjQ6e3M6NToiY29sb3IiO3M6NjoiQTA1ODNEIjtzOjY6ImZhbWlseSI7czo1OiJBcmlhbCI7czo0OiJzaXplIjtzOjI6IjE0IjtzOjk6InVuZGVybGluZSI7aTotMTt9czo2OiJmb290ZXIiO2E6NDp7czo1OiJjb2xvciI7czo2OiJGQUVFREQiO3M6NjoiZmFtaWx5IjtzOjU6IkFyaWFsIjtzOjQ6InNpemUiO3M6MjoiMTIiO3M6MTA6ImJhY2tncm91bmQiO3M6NjoiQkVBRUEwIjt9czo2OiJoZWFkZXIiO2E6MTp7czoxMDoiYmFja2dyb3VuZCI7czo2OiJCRUFFQTAiO31zOjQ6Imh0bWwiO2E6MTp7czoxMDoiYmFja2dyb3VuZCI7czo2OiJCRUFFQTAiO31zOjc6ImRpdmlkZXIiO2E6MTp7czo2OiJib3JkZXIiO2E6Mzp7czo1OiJjb2xvciI7czo2OiJCRUFFQTAiO3M6NToic3R5bGUiO3M6NjoiZGFzaGVkIjtzOjQ6InNpemUiO3M6MToiMSI7fX19
2
0
Confirmez votre abonnement à Une Graine de Maniguette
Bonjour!
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!
1326984370
NULL
webmaster@alicepegie.com
Une Graine de Maniguette
webmaster@alicepegie.com
Une Graine de Maniguette
1
0
0
0
0
0
0
0
NULL
NULL
3
2
news1
<!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>
1326986871
NULL
webmaster@alicepegie.com
Une Graine de Maniguette
webmaster@alicepegie.com
AlicePégie
0
1
0
0
0
0
0
0
YToxOntzOjE0OiJxdWlja3NlbGVjdGlvbiI7YToxOntzOjY6IndwLTMwMSI7YTo1OntzOjEwOiJpZGVudGlmaWVyIjtzOjY6IndwLTMwMSI7czo1OiJ3aWR0aCI7aToyODE7czo2OiJoZWlnaHQiO2k6MTkwO3M6MzoidXJsIjtzOjEzOToiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzL3dwLWNvbnRlbnQvcGx1Z2lucy93eXNpamEtbmV3c2xldHRlcnMvaW1nL2RlZmF1bHQtbmV3c2xldHRlci9mdWxsL3NhbXBsZS1uZXdzbGV0dGVyLTAxXzA3LnBuZyI7czo5OiJ0aHVtYl91cmwiO3M6MTQyOiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC9wbHVnaW5zL3d5c2lqYS1uZXdzbGV0dGVycy9pbWcvZGVmYXVsdC1uZXdzbGV0dGVyL3NhbXBsZS1uZXdzbGV0dGVyLTAxXzA3LTE1MHgxNTAucG5nIjt9fX0=
YTozOntzOjc6InZlcnNpb24iO3M6NToiMS4wLjAiO3M6NjoiaGVhZGVyIjthOjU6e3M6NDoidGV4dCI7TjtzOjU6ImltYWdlIjthOjU6e3M6Mzoic3JjIjtzOjk4OiJodHRwOi8vd3d3LmFsaWNlcGVnaWUuY29tL3dvcmRwcmVzcy93b3JkcHJlc3Mvd3AtY29udGVudC91cGxvYWRzL3d5c2lqYS90ZW1wbGF0ZXMvaGVhZGVyLXl1bW1pLnBuZyI7czo1OiJ3aWR0aCI7aTo2MDA7czo2OiJoZWlnaHQiO2k6MzA1O3M6OToiYWxpZ25tZW50IjtzOjY6ImNlbnRlciI7czo2OiJzdGF0aWMiO2I6MDt9czo5OiJhbGlnbm1lbnQiO3M6NjoiY2VudGVyIjtzOjY6InN0YXRpYyI7YjowO3M6NDoidHlwZSI7czo2OiJoZWFkZXIiO31zOjQ6ImJvZHkiO2E6MTp7czo3OiJibG9jay0xIjthOjY6e3M6NDoidGV4dCI7YToxOntzOjU6InZhbHVlIjtzOjQ2MDoiUEdneFBreGhJRUpwdzZoeVpTQmhkU0JIYVc1blpXMWljbVVnVFdGcGMyOXVQQzlvTVQ0OGNENVdiMmxqYVNCMWJtVWdjbVZqWlhSMFpTQmtaU0JpYWNPb2NtVWdiV0ZwYzI5dUxDQk1ZU0J5WldObGRIUmxJSEJoY21aaGFYUmxJSEJ2ZFhJZ1kyVjFlQ0J4ZFdrZ1lXbHRaU0JzWlNCbmFXNW5aVzFpY21VdUlFVnNiR1VnWVdOamIyMXdZV2R1WlhKaElIWnZkSEpsSUUxbGJuVWdaR1VnWnNPcWRHVnpJR1YwSUdacGJtbHlZU0JrNG9DWnc2bHdZWFJsY2lCMmIzTWdhVzUyYVhURHFYTXVJRU1uWlhOMElIVnVJR1REcVd4cFkyVWdZWFpsWXlCa1pYTWdZbWx6WTNWcGRITWdZWFVnWjJsdVoyVnRZbkpsTGp3dmNENDhjRDQ4WVNCb2NtVm1QU0pvZEhSd09pOHZkM2QzTG1Gc2FXTmxjR1ZuYVdVdVkyOXRMM2R2Y21Sd2NtVnpjeTkzYjNKa2NISmxjM012UDNBOU1UY2lQa3hwY21VZ2JHRWdjM1ZwZEdVdVBDOWhQand2Y0Q0PSI7fXM6NToiaW1hZ2UiO2E6Njp7czozOiJzcmMiO3M6Mjg6Ii9pbWFnZXMvc3Rvcmllcy9CSUVSUkUvMS5KUEciO3M6NToid2lkdGgiO2k6MzIzO3M6NjoiaGVpZ2h0IjtpOjQwMDtzOjM6InVybCI7czo1MToiaHR0cDovL3d3dy5hbGljZXBlZ2llLmNvbS93b3JkcHJlc3Mvd29yZHByZXNzLz9wPTE3IjtzOjk6ImFsaWdubWVudCI7czo2OiJjZW50ZXIiO3M6Njoic3RhdGljIjtiOjA7fXM6OToiYWxpZ25tZW50IjtzOjY6ImNlbnRlciI7czo2OiJzdGF0aWMiO2I6MDtzOjg6InBvc2l0aW9uIjtzOjE6IjEiO3M6NDoidHlwZSI7czo3OiJjb250ZW50Ijt9fX0=
YTo5OntzOjQ6ImJvZHkiO2E6NDp7czo1OiJjb2xvciI7czo2OiI3QTdBN0EiO3M6NjoiZmFtaWx5IjtzOjU6IkFyaWFsIjtzOjQ6InNpemUiO3M6MjoiMTIiO3M6MTA6ImJhY2tncm91bmQiO3M6NjoiRkZGRkZGIjt9czoyOiJoMSI7YTozOntzOjU6ImNvbG9yIjtzOjY6IkM4REUzMSI7czo2OiJmYW1pbHkiO3M6NToiQXJpYWwiO3M6NDoic2l6ZSI7czoyOiIzMCI7fXM6MjoiaDIiO2E6Mzp7czo1OiJjb2xvciI7czo2OiJDOERFMzEiO3M6NjoiZmFtaWx5IjtzOjU6IkFyaWFsIjtzOjQ6InNpemUiO3M6MjoiMjgiO31zOjI6ImgzIjthOjM6e3M6NToiY29sb3IiO3M6NjoiQzhERTMxIjtzOjY6ImZhbWlseSI7czo1OiJBcmlhbCI7czo0OiJzaXplIjtzOjI6IjI0Ijt9czoxOiJhIjthOjQ6e3M6NToiY29sb3IiO3M6NjoiQzhERTMxIjtzOjY6ImZhbWlseSI7czo1OiJBcmlhbCI7czo0OiJzaXplIjtzOjI6IjEyIjtzOjk6InVuZGVybGluZSI7czoxOiIxIjt9czo2OiJmb290ZXIiO2E6NDp7czo1OiJjb2xvciI7czo2OiJGRkZGRkYiO3M6NjoiZmFtaWx5IjtzOjc6IlZlcmRhbmEiO3M6NDoic2l6ZSI7czoyOiIxMiI7czoxMDoiYmFja2dyb3VuZCI7czo2OiJFMDRDNjUiO31zOjY6ImhlYWRlciI7YToxOntzOjEwOiJiYWNrZ3JvdW5kIjtzOjY6IkZGRkZGRiI7fXM6NDoiaHRtbCI7YToxOntzOjEwOiJiYWNrZ3JvdW5kIjtzOjY6IkUwNEM2NSI7fXM6NzoiZGl2aWRlciI7YToxOntzOjY6ImJvcmRlciI7YTozOntzOjU6ImNvbG9yIjtzOjY6IkIzQjNCMyI7czo1OiJzdHlsZSI7czo1OiJzb2xpZCI7czo0OiJzaXplIjtzOjE6IjEiO319fQ==
1
1
1326986254
1326986268
1
1
Ma première liste
Cette liste a été créée automatiquement lors de l'installation.
0
0
1
1326984369
0
2
Synchronisé WordPress
La liste "WordPress créée automatiquement suite à l'importation.
0
0
0
1326984369
0
1
1
webmaster@alicepegie.com
alicepegie
a05c74609e61e3a058bbd4a98bcd19fa
1326984369
1
2
0
wescelest@yahoo.fr
serg célestin
1326985763
1
3
0
didouche80@yahoo.fr
nadia
1326985763
1
4
0
kang2ju@gmail.com
Cornélie
1326985763
1
5
0
onadjaserge@gmail.com
onadja
1326985763
1
6
0
atangofoot@gmail.com
Atango
1326985763
1
7
0
lola-_-porchet@live.com
lola porchet
1326985763
1
8
0
kaoizaki33@hotmail.fr
cuestas
1326985763
1
9
0
mespoussieresdetoiles@gmail.com
Bel
1326985763
1
10
0
poussieresdetoiles@gmail.com
Eva
1326985763
1
11
0
cardoakarasisp@yahoo.fr
cardinal
1326985763
1
12
0
erik.meunier@orange.fr
ERIK
1326985763
1
13
0
liliane20022003@yahoo.fr
Lili
1326985763
1
14
0
princess97.2@live.fr
princess
1326985763
1
15
0
steciep@gmail.com
Stess
1326985763
1
16
0
tabehenri@yahoo.fr
tabekam kuate henri joel
1326985763
1
17
0
noumbeatrice@yahoo.fr
gwladys
1326985763
1
18
0
mhkenmogne@yahoo.fr
maggie
1326985763
1
19
0
akstar53@yahoo.com
cookey
1326985763
1
20
0
faratheo@yahoo.fr
Theophile Awana
1326985763
1
21
0
l.cuisinedetheorine@yahoo.fr
ESSIANE
1326985763
1
22
0
melaindora@yahoo.fr
doramel
1326985763
1
23
0
melainedora@yahoo.fr
Mbakob
1326985763
1
24
0
lorenza.david@wanadoo.fr
lorenza
1326985763
1
25
0
lkogaing@yahoo.fr
KOGAING DJOKO Huguette Laure
1326985763
1
26
0
mks@hotmail.fr
mimi
1326985763
1
27
0
iboudec1969@yahoo.fr
ibrahima Faye
1326985763
1
28
0
fouda_eloundou@yahoo.fr
fouda
1326985763
1
29
0
steffymegnedou@yahoo.fr
steffy
1326985763
1
30
0
foudaabega@yahoo.fr
FOUDA
1326985763
1
31
0
guy.ngono@yahoo.fr
NGONO NTONGA GUY
1326985763
1
32
0
webmaster1@alicepegie.com
infomaniak
1326985763
1
33
0
eboundaneericfranois@yahoo.fr
Eboundane Eric François
1326985763
1
34
0
william.tedom@yahoo.fr
william
1326985763
1
35
0
crouzetnathalie@free.fr
nath.
1326985763
1
36
0
selvigej@gmail.com
Julie
1326985763
1
37
0
hafedh_001@yahoo.fr
hafedh
1326985763
1
38
0
fnjinkwe@yahoo.com
fracine
1326985763
1
39
0
lilianbitini@yahoo.fr
Margaret KONUYI
1326985763
1
40
0
hnyakangako@yahoo.co.uk
hortense
1326985763
1
41
0
henriettebiloa@yahoo.fr
henriette
1326985763
1
42
0
esmeralchoun@live.fr
staybaby
1326985763
1
43
0
nadettematena@yahoo.fr
matena
1326985763
1
44
0
carobrl@msn.com
caroline
1326985763
1
45
0
jeanonguen@yahoo.fr
onguené
1326985763
1
46
0
aichadk@live.fr
aicha
1326985763
1
47
0
konanvincy@yahoo.fr
vincent konan
1326985763
1
48
0
bahipoline@yahoo.fr
sabinepatience
1326985763
1
49
0
mandoua@yahoo.fr
mandou
1326985763
1
50
0
mjmyrthil@hotmail.com
MARIE
1326985763
1
51
0
farah.luccin@gmail.com
Farah
1326985763
1
52
0
ngahorty@yahoo.fr
la douce zang
1326985763
1
53
0
myda1988@yahoo.fr
audrey yomgne
1326985763
1
54
0
marceau.36@hotmail.fr
marboeur
1326985763
1
55
0
urbainyebe@yahoo.fr
yebe eyegue J urbain
1326985763
1
56
0
masskokola@yahoo.fr
ASSAMOI
1326985763
1
57
0
n.sewa@yahoo.fr
michel
1326985763
1
58
0
raissamegane@yahoo.fr
raissa
1326985763
1
59
0
marijoyce971@hotmail.com
mary
1326985763
1
60
0
floremoniqueewenza@yahoo.fr
flore monique
1326985763
1
61
0
fidakif@yahoo.fr
akif
1326985763
1
62
0
lemageorges84@yahoo.fr
Georges
1326985763
1
63
0
aneth723@hotmail.com
Belobo Beyala
1326985763
1
64
0
tochiemarthe@yahoo.fr
simopat
1326985763
1
65
0
christiandedi@yahoo.fr
ndedi ewane christian
1326985763
1
66
0
k_gilliane@yahoo.fr
gille
1326985763
1
67
0
maria.tidoudou@hotmail.fr
marie
1326985763
1
68
0
assalova5@yahoo.fr
assana
1326985763
1
69
0
batelaurel@ymail.com
laurel
1326985763
1
70
0
mbaidetin@yahoo.fr
norbert
1326985763
1
71
0
charlys089@yahoo.fr
charlys
1326985763
1
72
0
viaud.michel@gmail.com
viaud
1326985763
1
73
0
kmetycy@yahoo.fr
kouame maimounan
1326985763
1
74
0
k1frigril@hotmail.fr
le molaire
1326985763
1
75
0
meyieyvette@yahoo.fr
yvette
1326985763
1
76
0
gilokio@yahoo.fr
gisèle
1326985763
1
77
0
.jeanbaptiste.atangana@yahoo.frfr
Jean-Baptiste Otto Faustin ATANGANA
1326985763
1
78
0
jeanbaptiste.ataangana@yahoo.fr
Jean-Baptiste Otto Faustin ATANGANA
1326985763
1
79
0
jeanbaptiste.atangana@yahoo.fr
Jean-Baptiste Otto Faustin ATANGANA
1326985763
1
80
0
janyloveji@yahoo.fr
MBOUROU MJ
1326985763
1
81
0
josuetinwa@yahoo.fr
Joshua Tinwa
1326985763
1
82
0
thodorendenghandengha@yahoo.fr
Ndengha Ndengha Théodore
1326985763
1
83
0
benoitbaptiste5@hotmail.com
benoit
1326985763
1
84
0
benoitbaptiste5@hotmail.comoo
benoit
1326985763
1
85
0
mbandjoun@yahoo.fr
mbandjoun
1326985763
1
86
0
ririq41@aol.com
regerat
1326985763
1
87
0
thrseeyango@yahoo.fr
Thérèse EYANGO
1326985763
1
88
0
doguiller@laposte.net
guiller fany
1326985763
1
89
0
fb816948@skynet.be
LECROMBS
1326985763
1
90
0
nickitankou@yahoo.fr
nicaise
1326985763
1
91
0
youmbijakarta@yahoo.fr
Rosine
1326985763
1
92
0
btissoh@yahoo.fr
tissoh boniface
1326985763
1
93
0
christelle_ngadi@yahoo.fr
christelle ngadi
1326985763
1
94
0
jjpigha@yahoo.fr
gaëlle
1326985763
1
95
0
ynviviane@gmail.com
Manou
1326985763
1
96
0
sylviesado@yahoo.fr
sylvie
1326985763
1
97
0
supernf@gmail.com
Juan Ndong
1326985763
1
98
0
biroungnina@yahoo.fr
Biroung Nina
1326985763
1
99
0
takoubory@yahoo.fr
takou
1326985763
1
100
0
pop0033@gmail.com
pop0033
1326985763
1
101
0
tity1920@hotmail.com
fatima
1326985763
1
102
0
ycarecarlos@yahoo.fr
carlos
1326985906
1
103
0
fabanne@hotmail.com
njom
1326985906
1
104
0
gloriantondele@yahoo.fr
gloria
1326985906
1
105
0
foudasony@yahoo.fr
nnomo sonia
1326985906
1
106
0
christian.delgobe@yahoo.fr
Delgobe
1326985906
1
107
0
florelleceliak@yahoo.fr
Kpotin célia
1326985906
1
108
0
limoges516@orange.fr
bilogue
1326985906
1
109
0
bsiaka1@yahoo.fr
Bamba siaka
1326985906
1
110
0
gillesm007@yahoo.fr
gillesm007
1326985906
1
111
0
charadjepit@yahoo.fr
adjeme charles pascal
1326985906
1
112
0
andrianasolofalinirina@yahoo.fr
ANDRIANASOLO Falinirina
1326985906
1
113
0
ja.cazaubon@cegetel.net
Cazaubon
1326985906
1
114
0
bmessanga@yahoo.fr
MESSANGA
1326985906
1
115
0
casimirmbop@yahoo.fr
mbopda
1326985906
1
116
0
reginegina@yahoo.fr
edjo
1326985906
1
117
0
edjokapasa@yahoo.fr
edjo
1326985906
1
118
0
dpossi@yahoo.fr
possi
1326985906
1
119
0
vaillantlegrand@yahoo.fr
MOUDOUROU NKOUNGOUROU Vaillant
1326985906
1
120
0
emilie_malembe@yahoo.fr
malembe mbo
1326985906
1
121
0
fcbeine@yahoo.fr
fatimetou
1326985906
1
122
0
ambomofaustin@yahoo.fr
Ambomo Faustin
1326985906
1
123
0
francinenana2000@yahoo.fr
claude francine
1326985906
1
124
0
lysisca.blog@gmail.com
Lysisca
1326985906
1
125
0
lololia24@gmail.com
soleya
1326985906
1
126
0
soleilsourire90@hotmail.com
soleilsourire
1326985906
1
127
0
florettedemano@yahoo.fr
florettedemano
1326985906
1
128
0
athenisbis@voila.fr
isabelle
1326985906
1
129
0
kamahamurielle@yahoo.fr
kamaha
1326985906
1
130
0
ginettekenny@globetrotter.net
Ginette
1326985906
1
131
0
yossaraoul@yahoo.fr
RAOUL
1326985906
1
132
0
christianmbiafeu@yahoo.fr
christian
1326985906
1
133
0
justinezogang@hotmail.com
Justine
1326985906
1
134
0
bekuy@hotmail.fr
jose ramon bekuy makina mibuy
1326985906
1
135
0
h-kaced2009@live.fr
hakima
1326985906
1
136
0
ngohmotto@yahoo.fr
Ngoh Motto Ebénézer
1326985906
1
137
0
cajmanfo@yahoo.fr
Christiane Manfo
1326985906
1
138
0
ouertatanich@yahoo.fr
chaouki
1326985906
1
139
0
francinitakouambo@yahoo.fr
m vanessa
1326985906
1
140
0
math.y@hotmail.fr
martha
1326985906
1
141
0
delorisd2005@yahoo.fr
deloris
1326985906
1
142
0
jkthelondon@yahoo.fr
kandala jose
1326985906
1
143
0
patrick.deffo@yahoo.fr
patdef
1326985906
1
144
0
liorie79@hotmail.com
liorica
1326985906
1
145
0
tsogo_nicole@hotmail.com
nicole
1326985906
1
146
0
mendjamarthe@yahoo.fr
mendja marthe
1326985906
1
147
0
tchoukio2@hotmail.fr
tovar
1326985906
1
148
0
t.daniel16@voila.fr
Daniel
1326985906
1
149
0
mamjosette@gmail.fr
guillon
1326985906
1
150
0
mel_javelot@yahoo.fr
mel
1326985906
1
151
0
cafeolait33@free.fr
cafeolait33
1326985906
1
152
0
jeannoatiokeng@yahoo.fr
Atiokeng paul
1326985906
1
153
0
mounsande@yahoo.fr
MOUNSANDE
1326985906
1
154
0
daoudboubakar@yahoo.fr
Daoud Boubakar
1326985906
1
155
0
knourima@yahoo.fr
Mariama
1326985906
1
156
0
oumati86@yahoo.fr
kaltouma
1326985906
1
157
0
hocanspaulin@yahoo.fr
Paulin
1326985906
1
158
0
luemba.celestin@gmail.com
Celestin
1326985906
1
159
0
eyingaeric@yahoo.fr
akono eyinga eric
1326985906
1
160
0
gskyconstantin@yahoo.fr
gnagne
1326985906
1
161
0
orlane.stewenson@orange.fr
orlane
1326985906
1
162
0
theresefon@bluewin.ch
Fontolliet thérèse
1326985906
1
163
0
mmiss86@hotmail.fr
MMISS
1326985906
1
164
0
sandraestival@orange.fr
sandra
1326985906
1
165
0
claire.onana@yahoo.fr
Claire Yona
1326985906
1
166
0
jpmfouda@yahoo.fr
owona
1326985906
1
167
0
abma06@yahoo.fr
ndengue
1326985906
1
168
0
marie@yahoo.fr
marie
1326985906
1
169
0
alain.borisse@yahoo.fr
Alain borisse
1326985906
1
170
0
tsapigracien@yahoo.fr
Graciano
1326985906
1
171
0
kadidjasanogo@live.fr
kadidja sanogo
1326985906
1
172
0
the-nice-nana@hotmail.fr
oumaima
1326985906
1
173
0
audelara@yahoo.fr
aude-lara
1326985906
1
174
0
noumou_charlie@yahoo.fr
Noumou charlie
1326985906
1
175
0
florentinemafo@yahoo.fr
florentine
1326985906
1
176
0
floendjilo@yahoo.fr
Florette
1326985906
1
177
0
andre.urbain@skynet.be
urbain
1326985906
1
178
0
calistchogna@yahoo.fr
caliso
1326985906
1
179
0
atanganaky@yahoo.fr
atangana tsimi jacqueline
1326985906
1
180
0
noutenay@yahoo.fr
doumbia
1326985906
1
181
0
mhurault@orange.fr
hurault
1326985906
1
182
0
fabyrolin@yahoo.fr
faby
1326985906
1
183
0
roza-z@hotmail.com
ROZA ZERRAF
1326985906
1
184
0
adamousafiou@yahoo.fr
adamou
1326985906
1
185
0
lekoubou_leon@yahoo.fr
leon hugues
1326985906
1
186
0
soazic.g@hotmail.fr
soaz
1326985906
1
187
0
kbasilin@yahoo.fr
basilin
1326985906
1
188
0
amour000x@yahoo.de
marie
1326985906
1
189
0
charlesborromeeeyebe@ymail.com
eyebe charles
1326985906
1
190
0
yvonne.brazard@yahoo.fr
brazard yvonne
1326985906
1
191
0
oliandre2003@yahoo.com
andree mbezele
1326985906
1
192
0
sweetornelia@hotmail.com
ornelia
1326985906
1
193
0
spip123@yahoo.fr
Detournay
1326985906
1
194
0
nngotom@yahoo.fr
Charlotte ABADOMA
1326985906
1
195
0
adjaavi2006@yahoo.com
Adja
1326985906
1
196
0
karen.esthetique@gmail.com
karen
1326985906
1
197
0
alaintebeni@yahoo.fr
alain patrice
1326985906
1
198
0
tonyfree01@yahoo.fr
antoine
1326985906
1
199
0
amighazi@yahoo.fr
EL GHAZI amina
1326985906
1
200
0
titounne61@hotmail.com
loulou
1326985906
1
201
0
rinelclorel@yahoo.fr
atangana
1326985906
1
202
0
adrien@example.com
Adrien
1326985926
1
203
0
john@example.com
John
1326985926
1
204
0
karineb1980@hotmail.fr
KarineB
1326985926
1
205
0
moulareceline@hotmail.com
Céline
1326985926
1
206
0
popion@hotmail.fr
popion
1326985926
1
207
0
guillemette33@msn.com
guillemette
1326985926
1
208
0
clarissegnokam@yahoo.fr
clarisse
1326985926
1
209
0
nnkede@yahoo.it
Nkede
1326985926
1
210
0
ebangmbassi@yahoo.fr
Ebang Mbassi
1326985926
1
211
0
ezabot@yahoo.fr
Dams
1326985926
1
212
0
magicalbbgun@gmail.com
clubpenguincheat
1326985926
1
213
0
jo.h.n.c.ser@gmail.com
Tyncnuapy
1326985926
1
214
0
sallyec@gmail.com
jefflily
1326985926
1
215
0
yougangfrieda@yahoo.fr
frieda
1326985926
1
216
0
sabpullicino@gmail.com
FéeSabBio
1326985926
1
217
0
vlumbroso@sfr.fr
Viviane
1326985926
1
218
0
candidaturegentiane@gmail.com
chrisdeparis
1326985926
1
219
0
nakkazipauline@yahoo.fr
Mfona
1326985926
1
220
0
stella-36@hotmail.fr
stella
1326985926
1
221
0
20@scottsdaleazwindshieldrepair.com
Inolargereobe
1326985926
1
222
0
leacanelle@sfr.fr
nathalie
1326985926
1
223
0
ndjofangdora@yahoo.fr
ndjiotcho
1326985926
1
224
0
caspat4@gmail.com
patricia
1326985926
1
225
0
isabaraujo@sapo.pt
isabel
1326985926
1
226
0
yan.tamalet@menugourmet.com
Yan
1326985926
1
227
0
abellemoussavou@yahoo.fr
moussavou isabelle
1326985926
1
228
0
joelle045@hotmail.com
daliane
1326985926
1
229
0
johnmovuli@yahoo.fr
john movuli kieweme
1326985926
1
230
0
goussopoulos@gmail.com
eva
1326985926
1
231
0
leilaazri@yahoo.fr
leila
1326985926
1
232
0
yannicknawezi1@yahoo.fr
yannick
1326985926
1
233
0
minettemajoli@yahoo.fr
minette
1326985926
1
234
0
bebylydvine@ymail.com
lydvine
1326985926
1
235
0
jekaprince@yahoo.fr
Kana Charles Jésus
1326985926
1
236
0
melvicedione@yahoo.com
Melvice
1326985926
1
237
0
kans5719@free.fr
Kans
1326985926
1
238
0
theo.cc@wanadoo.fr
dumont
1326985926
1
239
0
hadilaye@gmail.com
abdoulaye
1326985926
1
240
0
emanejeandaniel@hotmail.fr
emane jean daniel
1326985926
1
241
0
mdongmo@yahoo.fr
dongmo micheline
1326985926
1
242
0
salvadorenor_05@yahoo.fr
salvador
1326985926
1
243
0
aliasba@gmail.com
bak
1326985926
1
244
0
mdaniellecarine@yahoo.fr
makamwe
1326985926
1
245
0
deubeda.mariefrance@neuf.fr
mf
1326985926
1
246
0
kingvirgile@hotmail.com
Virgile Momo
1326985926
1
247
0
lagrace5@yahoo.fr
DANG COLETTE
1326985926
1
248
0
nofear972000@yahoo.fr
Abdelaziz
1326985926
1
249
0
magnang2007@yahoo.fr
Dupont
1326985926
1
250
0
levitakarlha@yahoo.fr
SIATOU
1326985926
1
251
0
seanchristopher5@yahoo.fr
sean kris
1326985926
1
252
0
mbilaura@yahoo.fr
laura
1326985926
1
253
0
didiouatr@gmail.com
didier ouattara
1326985926
1
254
0
zeon.guen@yahoo.fr
ze onguene
1326985926
1
255
0
donaldsonys@yahoo.fr
Mano
1326985926
1
256
0
nkr@voila.fr
NKOMBA
1326985926
1
257
0
rush_mk@hotmail.fr
macoway
1326985926
1
258
0
zinzindohous@yahoo.fr
zinzindohoué salomon
1326985926
1
259
0
valou.36@live.fr
valou
1326985926
1
260
0
jafogoum@gmail.com
FOGOUM JustinAimé
1326985926
1
261
0
partivertdc@gmail.com
Parti vert pour la Démovratie au Cameroun
1326985926
1
262
0
rajabesbes1@yahoo.fr
besbes raja
1326985926
1
263
0
sevnanga@yahoo.fr
nanga
1326985926
1
264
0
miaichami@yahoo.fr
Mimi
1326985926
1
265
0
johnstarks@gawab.com
asypesasiavok
1326985926
1
266
0
grospico@yahoo.ca
Chantale
1326985926
1
267
0
aubierge_s@yahoo.fr
Aubiluxe
DINGOM
1326985926
1
268
0
mchristy74@gmail.com
Mengue Nelly
1326985926
1
269
0
bimualaeme@yahoo.fr
Emé
1326985926
1
270
0
h-sara@live.fr
mohamed
1326985926
1
271
0
babetoune318@yahoo.fr
cannella
1326985926
1
272
0
liliole@yahoo.fr
liliole
1326985926
1
273
0
beyoncedivas@yahoo.fr
blede
1326985926
1
274
0
tchoukio2@hotmail.com
tovar
1326985926
1
275
0
Tchouio2@hotmail.com
tovar
1326985926
1
276
0
d.khadiawa@hotmail.fr
kadi
1326985926
1
277
0
marynyemb@yahoo.fr
ngo nyemb marie jeanine
1326985926
1
278
0
abeibytanwa1@hotmail.com
katherine
1326985926
1
279
0
msoniarc@hotmail.fr
sonia
1326985926
1
280
0
lokitok@yahoo.de
lokito
1326985926
1
281
0
fleurderhum972@hotmail.com
dela
1326985926
1
282
0
bipakila@yahoo.fr
BIPAKILA Jean Noel
1326985926
1
283
0
nadine.postic@gmail.com
postic
1326985926
1
284
0
kremkoua@yahoo.fr
kreman
1326985926
1
285
0
marialitran@yahoo.com
elekhtre
1326985926
1
286
0
aubinal2001@yahoo.fr
aubino
1326985926
1
287
0
taroum_5@hotmail.com
taroum
1326985926
1
288
0
kpricemick@yahoo.fr
MICKALA
1326985926
1
289
0
fleche.brune@hotmail.com
miomi72
1326985926
1
1
Prénom
firstname
0
0
Prénom
2
Nom
lastname
0
0
Nom de famille