multiple-art-days
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

index.html
text/html

Download raw (42.2 KB)

<html>
    <head>
        <meta charset="UTF-8" />
        <title>Multiple Art Days</title>
        <link rel="stylesheet" href="assets/css/style3.css" type="text/css" media="all" />
        <style type="text/css">
        </style>
        <script src="assets/js/jquery-1.11.1.min.js"></script>
        <script type="text/javascript">
            $(document).ready(function() {
                'use strict';

                var cache = [];
                var addressRegex = new RegExp('([^/]+)/(en|fr).html');

                function getName (address) {
                    if (addressRegex.test(address)) {
                        return addressRegex.exec(address)[1];
                    } else {
                        throw(new Error("getName requires a valid address. Was given: "  + address));
                    }
                }

                function loadExhibitor (address) {
                    var name = getName(address);

                    if (name in cache) {
                        showExhibitor(cache[name])
                    } else {
                        $.ajax({
                            url:address,
                            method: 'get',
                        }).done(function (data) {
                            handleExhibitor(name, data);
                        });
                    }
                }

                function handleExhibitor (name, data) {
                    cache[name] = data;
                    showExhibitor(data);
                }

                function showExhibitor(result) {
                    var exhibitorContainerSelector = '#exhibitorsExtended';

                    if ($('body').hasClass('french')) {
                        var container = $('#french .secondary_content .content_wrapper');
                    } else {
                        var container = $('#english .secondary_content .content_wrapper');
                    }
                    
                    var child = $('<div class="exhibitor_details"></div').append(result);
                    child.find('.back').click(function (e) { e.preventDefault(); hideExhibitors(); });
                    child.css('top', $(window).scrollTop());
                    
                    container.empty();
                    container.append(child);
                    
                    showExhibitors();
                }
                
                var showExhibitors = function () {
                    $("body").addClass("secondary");
                }
                
                var hideExhibitors = function () {
                    $("body").removeClass("secondary");
                }

                $('.exposants li a').click(function (e) {
                    e.preventDefault();
                    var address = $(this).attr('href');
                    loadExhibitor(address);
                });
            });
        </script>
        <script type="text/javascript">
            $(document).ready(function () {
                'use strict';

                var selectEnglish = function () {
                    $("body").removeClass('french').removeClass('secondary').addClass('english');
                };

                var selectFrench = function () {
                    $("body").removeClass('english').removeClass('secondary').addClass('french');
                };

                $("#selectFrench").click(function (e) {
                    e.preventDefault();
                    $("#entry").detach();
                    $('body').removeClass('entry');
                    selectFrench();
                });

                $("#selectEnglish").click(function (e) {
                    e.preventDefault();
                    $("#entry").detach();
                    $('body').removeClass('entry');
                    selectEnglish();
                });

                $("#toEnglish").click(function(e) {
                    e.preventDefault();
                    selectEnglish();
                });

                $("#toFrench").click(function(e) {
                    e.preventDefault();
                    selectFrench();
                });

                // $(".exposants li a").click(function (e) {
                //     e.preventDefault();
                //     showExhibitors();
                // });

/*
                $("#selectEnglishSecondary").click(function(e) {
                    e.preventDefault();
                    selectEnglishSecondary();
                });

                $("#selectFrenchSecondary").click(function(e) {
                    e.preventDefault();
                    selectFrenchSecondary();
                });

*/


                // var selectEnglishSecondary = function () {
                //     $("body").removeClass('english').addClass('english_secondary')
                // }

                // var selectFrenchSecondary = function () {
                //     $("body").removeClass('french').addClass('french_secondary')
                // }

                var panelClasses = ['one', 'two', 'three', 'four'];

                $(window).scroll(function (e) {
                    if (e) {
                        e.preventDefault();
                    }

                    var body = window.document.body;
                    var totalHeight = body.scrollHeight;
                    var panelHeight = totalHeight / panelClasses.length;
                    var offset = body.scrollTop;

                    var panel = Math.round(offset / panelHeight);
                    var className = panelClasses[panel]

                    $('body').removeClass(panelClasses.join(' '));
                    $('body').addClass(className);
                });
            });
        </script>
    </head>
    <body class="entry">
        <a name="francais" />
        <div id="french" class="language_container">
            <a href="#english" id="toEnglish" class="languageSwitch">English</a>
            <div class="container main_content">
                <div class="content_wrapper">
                    <div id="practical">
                       <div class="logo">
                            <img src="assets/logos/mad.png">
                        </div>
                        <div class="infos">
                            <h4>22, 23, 24 mai 2015</h4>

<h5>12h00 à 19h00</h5>

<h4>La Maison Rouge</h4>

<h5>10 Boulevard de la Bastille, 75012&nbsp;Paris</h5>

                        </div>
                    </div>
                    <div class="menu">
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#a-propos">About</a></h4>
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#exposants">Exposants</a></h4>
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#infos-visiteur">Infos visiteurs</a></h4>
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#evenements">Evénements</a></h4>
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#partenaires">Partenaires</a></h4>
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#credits">Crédits</a></h4>
                    </div>
                    <div class="partners">
                        <div class="partners-logos">
                            <div id="cneai">
                                <a href="http://www.cneai.com">
                                <img src="assets/logos/cneai.png"/>
                                Centre&nbsp;National<br />Edition&nbsp;Art&nbsp;Image
                                </a>
                            </div>
                            <div id="maisonrouge">
                                <a href="http://www.lamaisonrouge.org/">
                                <img src="assets/logos/maisonrouge.png"/>
                                La&nbsp;Maison&nbsp;Rouge
                                Fondation&nbsp;Antoine&nbsp;de&nbsp;Galbert
                                </a>
                            </div>
                        </div>
                    </div>
                    <div id="a-propos" class="introduction">
                        <h4>Le salon des pratiques éditoriales</h4>

<p>Nouveau grand rendez-vous annuel centré sur la figure de l’éditeur, le MAD offre pendant 3 jours un panorama des pratiques éditoriales contemporaines, de l'édition fanzine aux œuvres rares : prints, multiples, livres, films et disques d'artistes...</p>

<p>Investissant l’ensemble des espaces d’un des lieux emblématiques des collectionneurs et amateur d'art contemporain, le MAD réunira une centaine de producteurs internationaux qui ont pour point commun la qualité curatoriale de leurs propositions.</p>

<p>Bien plus qu'un salon, MAD expose la figure de l’éditeur, l’acteur le plus indépendant mais aussi le plus polyvalent du monde de l’art.</p>

<p>Ces journées seront accompagnées d’une série de rencontres, performances artistiques et débats sur la pratique éditoriale dans l’art contemporain avec les artistes, graphistes, responsables de collections publiques, éditeurs, collectionneurs, chercheurs et libraires venus du monde entier.</p>

<p>Au plaisir de vous recevoir au MAD !</p>

                    </div>

                    <div id="exposants" class="exposants">
                        <h4>Exposants</h4>

<ul>
<li><a href="exposants/ah-ah-ah-editions/fr.html">AH AH AH éditions <sup>FR</sup></a></li>
<li><a href="exposants/atelier-boba/fr.html">Atelier Boba <sup>FR</sup></a></li>
<li><a href="exposants/bernard-chauveau-editeur/fr.html">Bernard Chauveau éditeur <sup>FR</sup></a></li>
<li><a href="exposants/cneai/fr.html">Cneai = <sup>FR</sup></a></li>
<li><a href="exposants/cent-pages/fr.html">Cent pages <sup>FR</sup></a></li>
<li><a href="exposants/the-drawer/fr.html">The Drawer <sup>FR</sup></a></li>
<li><a href="exposants/editions-dilecta/fr.html">Editions Dilecta <sup>FR</sup></a></li>
<li><a href="exposants/editions-du-detail/fr.html">Editions du détail <sup>FR</sup></a></li>
<li><a href="exposants/editions-incertain-sens/fr.html">Editions Incertain Sens <sup>FR</sup></a></li>
<li><a href="exposants/florence-loewy/fr.html">Florence Loewy <sup>FR</sup></a></li>
<li><a href="exposants/friville-editions/fr.html">Friville éditions <sup>FR</sup></a></li>
<li><a href="exposants/galerie-alain-gutharc/fr.html">Galerie Alain Gutharc <sup>FR</sup></a></li>
<li><a href="exposants/galerie-allen/fr.html">Galerie Allen <sup>FR</sup></a></li>
<li><a href="exposants/galerie-catherine-putman/fr.html">Galerie Catherine Putman <sup>FR</sup></a></li>
<li><a href="exposants/galerie-gabrielle-maubrie/fr.html">Galerie Gabrielle Maubrie <sup>FR</sup></a></li>
<li><a href="exposants/galerie-jocelyn-wolff/fr.html">Galerie Jocelyn Wolff <sup>FR</sup></a></li>
<li><a href="exposants/galerie-loevenbruck/fr.html">Galerie Loevenbruck <sup>FR</sup></a></li>
<li><a href="exposants/galerie-metropolis/fr.html">Galerie Metropolis <sup>FR</sup></a></li>
<li><a href="exposants/galerie-perrotin/fr.html">Galerie Perrotin <sup>FR</sup></a></li>
<li><a href="exposants/galerie-des-multiples/fr.html">Galerie des Multiples <sup>FR</sup></a></li>
<li><a href="exposants/gb-agency/fr.html">Gb agency <sup>FR</sup></a></li>
<li><a href="exposants/grey-area/fr.html">Grey Area <sup>FR</sup></a></li>
<li><a href="exposants/hand-art-publisher/fr.html">Hand Art Publisher <sup>FR</sup></a></li>
<li><a href="exposants/iconomoteur/fr.html">Iconomoteur <sup>FR</sup></a></li>
<li><a href="exposants/lendroit-editions/fr.html">Lendroit éditions <sup>FR</sup></a></li>
<li><a href="exposants/les-editions-les-livres-sont-muets/fr.html">Les éditions les livres sont muets <sup>FR</sup></a></li>
<li><a href="exposants/librairie-didier-lecointre-dominique-drouet/fr.html">Librairie Didier Lecointre - Dominique Drouet <sup>FR</sup></a></li>
<li><a href="exposants/ln-editions/fr.html">LN Editions <sup>FR</sup></a></li>
<li><a href="exposants/macumba-night-club-editions/fr.html">Macumba night club editions <sup>FR</sup></a></li>
<li><a href="exposants/may/fr.html">May <sup>FR</sup></a></li>
<li><a href="exposants/mfc-michele-didier/fr.html">MFC-Michèle Didier <sup>FR</sup></a></li>
<li><a href="exposants/michael-woolworth-publications/fr.html">Michael Woolworth Publications <sup>FR</sup></a></li>
<li><a href="exposants/m-u-r-r-amp-gol-records/fr.html">m.u.r.r &amp; GOL records <sup>FR</sup></a></li>
<li><a href="exposants/onestar-press/fr.html">Onestar Press <sup>FR</sup></a></li>
<li><a href="exposants/optical-sound/fr.html">Optical Sound <sup>FR</sup></a></li>
<li><a href="exposants/prints-things-and-books-by-artists/fr.html">Prints, things and books by artists <sup>FR</sup></a></li>
<li><a href="exposants/royal-book-lodge/fr.html">Royal Book Lodge <sup>FR</sup></a></li>
<li><a href="exposants/rvb-books/fr.html">RVB Books <sup>FR</sup></a></li>
<li><a href="exposants/le-salon-esal/fr.html">Le Salon - ESAL <sup>FR</sup></a></li>
<li><a href="exposants/three-star-books/fr.html">Three Star Books <sup>FR</sup></a></li>
<li><a href="exposants/toluca-editions/fr.html">Toluca Editions <sup>FR</sup></a></li>
<li><a href="exposants/urdla/fr.html">URDLA <sup>FR</sup></a></li>
<li><a href="exposants/ville-ouverte-les-douches-la-galerie/fr.html">Ville ouverte / Les Douches la Galerie <sup>FR</sup></a></li>
<li><a href="exposants/we-do-not-work-alone/fr.html">WE DO NOT WORK ALONE <sup>FR</sup></a></li>
<li><a href="exposants/what-you-see-is-what-you-hear/fr.html">What you see is what you hear <sup>FR</sup></a></li>
<li><a href="exposants/wink/fr.html">Wink <sup>FR</sup></a></li>
<li><a href="exposants/art-amp-fiction-editions-d-apos-artistes/fr.html">art&amp;fiction, éditions d&apos;artistes <sup>CH</sup></a></li>
<li><a href="exposants/bartleby-co/fr.html">Bartleby &amp; Co. <sup>BE</sup></a></li>
<li><a href="exposants/benveniste-contemporary/fr.html">Benveniste Contemporary <sup>ES</sup></a></li>
<li><a href="exposants/bernhard-cella/fr.html">Bernhard Cella <sup>AT</sup></a></li>
<li><a href="exposants/book-works/fr.html">Book Works <sup>UK</sup></a></li>
<li><a href="exposants/david-krut-projects/fr.html">David Krut Projects <sup>ZA/US</sup></a></li>
<li><a href="exposants/dirk-k-bakker-boeken/fr.html">Dirk K. Bakker Boeken <sup>NL</sup></a></li>
<li><a href="exposants/gagarin/fr.html">GAGARIN <sup>BE</sup></a></li>
<li><a href="exposants/galerie-jordan-seydoux-drawings-prints/fr.html">Galerie Jordan/Seydoux — Drawings &amp; Prints <sup>DE</sup></a></li>
<li><a href="exposants/harpune-verlag/fr.html">Harpune Verlag <sup>AT</sup></a></li>
<li><a href="exposants/jap-jeunesse-arts-plastiques/fr.html">JAP/ Jeunesse &amp; Arts plastiques <sup>BE</sup></a></li>
<li><a href="exposants/jordan-seydoux-drawings-prints/fr.html">Jordan/Seydoux — Drawings &amp; Prints <sup>DE</sup></a></li>
<li><a href="exposants/julian-page/fr.html">Julian Page <sup>UK</sup></a></li>
<li><a href="exposants/keymouse/fr.html">Keymouse <sup>BE</sup></a></li>
<li><a href="exposants/morepublishers/fr.html">MOREpublishers <sup>BE</sup></a></li>
<li><a href="exposants/motto/fr.html">Motto <sup>DE</sup></a></li>
<li><a href="exposants/the-multiple-store/fr.html">The Multiple Store <sup>UK</sup></a></li>
<li><a href="exposants/niels-borch-jensen-gallery-editions/fr.html">Niels Borch Jensen Gallery &amp; Editions <sup>DE/DK</sup></a></li>
<li><a href="exposants/oei-editor/fr.html">OEI editör <sup>SE</sup></a></li>
<li><a href="exposants/pork-salad-press/fr.html">Pork Salad Press <sup>DK</sup></a></li>
<li><a href="exposants/sims-reed-gallery/fr.html">Sims Reed Gallery <sup>UK</sup></a></li>
<li><a href="exposants/spector-books/fr.html">Spector Books <sup>DE</sup></a></li>
</ul>

                    </div>

                    <div id="infos-visiteur" class="infos-visiteurs">
                        <h4>Infos visiteurs</h4>

<h5>Horaires</h5>

<p>Ouvert le vendredi 22 mai et le samedi 23 mai du 12h à 19h, le dimanche 24 mai du 12h
au 18h</p>

<h5>Tarifs</h5>

<p>Plein tarif : 5€ </br>
Gratuité : Moins de 18 ans, étudiants, membres d'associations de collectionneurs et amis
des musées</p>

<h5>Adresse</h5>

<p>La maison rouge
10 Boulevard de la Bastille
75012 Paris</p>

<p>Téléphone : <a href="tel:(0)140010881">(0) 1 40 01 08 81</a></p>

<h5>Accès</h5>

<p>Métro : Quai de la Rapée (ligne 5) ou Bastille (Lignes 1, 5, 8)
RER : Gare de Lyon (A, D)</p>

<p>Accessible aux personnes handicapées</p>

                        <br />
                        <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=2.3592281341552734%2C48.84304247480693%2C2.375664710998535%2C48.85135953006185&amp;layer=mapnik&amp;marker=48.84720117510769%2C2.3674464225769043" style="border: 1px solid black"></iframe><br/><small><a href="http://www.openstreetmap.org/?mlat=48.8472&amp;mlon=2.3674#map=16/48.8472/2.3674">View Larger Map</a></small>
                    </div>

                    <div id="evenements" class="evenements">
                        <h4>Événement</h4>

<p>A l'occasion de MAD#1, le programme MAD IN présente 3 jours de rencontres, performances, tables rondes, concerts, signatures et débats qui auront lieu à l'auditorium de la maison rouge ainsi qu'au sein du salon.</p>

<p>MAD #1 présente également 3 stands curatoriaux: Mathieu Mercier rassemble sur un « stand du multiple équitable » des éditions autoproduites par différents artistes; Pierre Ponant &amp; Christophe Jacquet invitent 10 artistes et graphistes à présenter leurs productions graphiques ; et Jean-Max Colard &amp; Antoine Dufeu exposent une sélection de livres sur “La littérature d’exposition”</p>

                    </div>

                    <div id="partenaires" class="partenaires">
                        <h4>Partenaires</h4>

<p>MAD #1 est organisé en partenariat avec le CNEAI = Centre National Édition Art Image et
la maison rouge / Fondation Antoine de Galbert et avec le soutien de Smurfit Kappa ainsi
que le Conseil Régional d’Île-de-France</p>

<p><img src="assets/logos/logos_bande.png" alt="tout les partenaires" /></p>

<h5>CNEAI = centre national edition art image</h5>

<p>www.cneai.com</p>

<p>Ile des impressionnistes,</p>

<p>2 rue du bac</p>

<p>78400 Chatou</p>

<p>+33 (0)1 39 52 45 35</p>

<p>cneai@cneai.com</p>

<p>Centre national d’art contemporain dédié à l’œuvre média, le Cneai – Centre national édition art image - développe depuis 1997 un modèle de programmation collaborative : des groupes de recherches génèrent des programmes éditoriaux (catalogue de 600 multiples et 150 publications), d’expositions et d’actions, de recherche (laboratoires et séminaires) et de médiation. Les artistes et contributeurs sont invités sur la résidence « Maison flottante » créée par les frères Bouroullec en 2007. La collection FMRA, ouverte au public, rassemble 12000 livres et éphéméras d’artistes. Le Cneai mixe les champs artistiques qui dessinent les frontières de l’expérience visuelle : performances sonores, chorégraphiques, graphiques, littéraires et scientifiques.</p>

<h5>La Maison Rouge - Fondation Antoine de Galbert</h5>

<p>www.maisonrouge.org</p>

<p>10 boulevard de la bastille</p>

<p>75012 Paris</p>

<p>+33 (0)1 40 01 08 81</p>

<p>info@lamaisonrouge.org</p>

<p>La maison rouge, fondation privée reconnue d’utilité publique, a ouvert ses portes en juin 2004 à Paris. Créée par Antoine de Galbert, collectionneur et amateur d’art, elle accueille, au rythme de trois par an, des expositions temporaires d’art contemporain confiées souvent à des commissaires indépendants. La fondation veut au long des expériences de l’art qu’elle propose, privilégier la multiplicité des démarches, des pratiques et des approches. En choisissant le terme 'maison', Antoine de Galbert a voulu associer l’idée de l’univers domestique et privé à celle d’un lieu ouvert au public consacré à l’art contemporain. La maison rouge se veut un complément aux lieux d’expositions existants: à la fois particulier et inédit.</p>

<h5>Smurfit Kappa</h5>

<p>www.smurfitkappa.com &amp; www.openthefuture.fr</p>

<p>Leader mondial de l’emballage à base de papier, nous employons environ 42 000
personnes à travers 32 pays et avons réalisé un chiffre d’affaires de 8,1 milliards d’euros
en 2014. Nous sommes un fabriquant intégré d’emballages, nos usines de fabrication
d’emballages se procurant la majeure partie de leurs besoins en matières premières à
partir de nos propres papèteries.</p>

                    </div>

                    <div id="credits" class="credits">
                        <h4>Crédits</h4>

<h5>Direction curatoriale</h5>

<p>Sylvie&nbsp;Boulanger, directrice du <a href="http://www.cneai.com">CNEAI</a> et
Michael&nbsp;Woolworth, directeur de <a href="http://www.michealwoolworth.com">l’Atelier Woolworth</a></p>

<h5>Coordination</h5>

<p>Barbara Quintin</p>

<h5>Mobilier</h5>

<p>Stéphane Magnin</p>

<h5>Graphisme</h5>

<p><a href="http://osp.kitchen">OSP</a></p>

<h5>Contact presse</h5>

<p><a href="http://www.claudinecolin.com">Claudine&nbsp;Colin communication</a>
<a href="&#x6d;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#x3a;&#112;&#101;&#110;&#101;&#108;&#111;&#112;&#101;&#64;&#x63;&#x6c;&#x61;&#x75;&#x64;&#x69;&#x6e;&#x65;&#99;&#111;&#108;&#105;&#110;&#46;&#99;om">Pénélope&nbsp;Ponchelet</a>
et
<a href="m&#97;&#105;&#108;&#116;&#111;&#58;&#109;&#97;&#114;&#105;&#x6e;&#x65;&#x40;&#x63;&#x6c;&#x61;&#x75;&#x64;&#x69;n&#101;&#99;&#111;&#108;&#105;&#110;&#46;&#99;&#111;&#109;">Marine&nbsp;le&nbsp;Bris</a></p>

<p>Pour toutes questions, contactez Barbara&nbsp;Quintin<br />
<a href="&#109;&#x61;&#105;&#x6c;&#116;&#x6f;&#58;&#x63;o&#110;&#x74;&#97;&#x63;&#116;&#x40;&#109;&#x75;&#108;&#116;&#x69;&#112;&#x6c;&#101;&#x61;&#114;&#x74;&#100;&#x61;y&#115;&#x2e;&#99;&#x6f;&#109;">contact@multipleartdays.com</a>–<a href="tel:(0)758356696">(0)7 58 35 66 96</a></p>

                    </div>
                </div>
            </div>
            <div class="container secondary_content" id="">
                <div class="content_wrapper">
                    <div id="partenaires" class="partenaires">
                        <h4>Partenaires</h4>

<p>MAD #1 est organisé en partenariat avec le CNEAI = Centre National Édition Art Image et
la maison rouge / Fondation Antoine de Galbert et avec le soutien de Smurfit Kappa ainsi
que le Conseil Régional d’Île-de-France</p>

<p><img src="assets/logos/logos_bande.png" alt="tout les partenaires" /></p>

<h5>CNEAI = centre national edition art image</h5>

<p>www.cneai.com</p>

<p>Ile des impressionnistes,</p>

<p>2 rue du bac</p>

<p>78400 Chatou</p>

<p>+33 (0)1 39 52 45 35</p>

<p>cneai@cneai.com</p>

<p>Centre national d’art contemporain dédié à l’œuvre média, le Cneai – Centre national édition art image - développe depuis 1997 un modèle de programmation collaborative : des groupes de recherches génèrent des programmes éditoriaux (catalogue de 600 multiples et 150 publications), d’expositions et d’actions, de recherche (laboratoires et séminaires) et de médiation. Les artistes et contributeurs sont invités sur la résidence « Maison flottante » créée par les frères Bouroullec en 2007. La collection FMRA, ouverte au public, rassemble 12000 livres et éphéméras d’artistes. Le Cneai mixe les champs artistiques qui dessinent les frontières de l’expérience visuelle : performances sonores, chorégraphiques, graphiques, littéraires et scientifiques.</p>

<h5>La Maison Rouge - Fondation Antoine de Galbert</h5>

<p>www.maisonrouge.org</p>

<p>10 boulevard de la bastille</p>

<p>75012 Paris</p>

<p>+33 (0)1 40 01 08 81</p>

<p>info@lamaisonrouge.org</p>

<p>La maison rouge, fondation privée reconnue d’utilité publique, a ouvert ses portes en juin 2004 à Paris. Créée par Antoine de Galbert, collectionneur et amateur d’art, elle accueille, au rythme de trois par an, des expositions temporaires d’art contemporain confiées souvent à des commissaires indépendants. La fondation veut au long des expériences de l’art qu’elle propose, privilégier la multiplicité des démarches, des pratiques et des approches. En choisissant le terme 'maison', Antoine de Galbert a voulu associer l’idée de l’univers domestique et privé à celle d’un lieu ouvert au public consacré à l’art contemporain. La maison rouge se veut un complément aux lieux d’expositions existants: à la fois particulier et inédit.</p>

<h5>Smurfit Kappa</h5>

<p>www.smurfitkappa.com &amp; www.openthefuture.fr</p>

<p>Leader mondial de l’emballage à base de papier, nous employons environ 42 000
personnes à travers 32 pays et avons réalisé un chiffre d’affaires de 8,1 milliards d’euros
en 2014. Nous sommes un fabriquant intégré d’emballages, nos usines de fabrication
d’emballages se procurant la majeure partie de leurs besoins en matières premières à
partir de nos propres papèteries.</p>

                    </div>
                </div>
            </div>
        </div>
        <a name="english" />
        <div id="english" class="language_container">
            <a href="#francais" id="toFrench" class="languageSwitch">Fran&ccedil;ais</a>
            <div class="container main_content">
                <div class="content_wrapper">
                    <div id="practical">
                        <div class="logo">
                            <img src="assets/logos/mad.png">
                        </div>
                        <h2>Multiple Art Days</h2>
                        <div class="infos">
                            <h4>22, 23, 24 May 2015</h4>

<h5>12h00 to 19h00</h5>

<h4>La Maison Rouge</h4>

<h5>10 Boulevard de la Bastille, 75012&nbsp;Paris</h5>

                        </div>
                    </div>
                    <div class="menu">
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#about">About</a></h4>
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#exhibitors">Exhibitors</a></h4>
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#visitor-info">Visitor info</a></h4>
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#events">Events</a></h4>
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#partners">Partners</a></h4>
                        <h4><a data-scroll data-options='{ "easing": "easeOutQuad" }' href="#credits">Credits</a></h4>
                    </div>
                    <div class="partners">
                        <div class="partners-logos">
                            <div id="cneai">
                                <a href="http://www.cneai.com">
                                    <img src="assets/logos/cneai.png"/>
                                    Centre&nbsp;National<br />Edition&nbsp;Art&nbsp;Image
                                </a>
                            </div>
                            <div id="maisonrouge">
                                <a href="http://www.lamaisonrouge.org/">
                                    <img src="assets/logos/maisonrouge.png"/>
                                    La&nbsp;Maison&nbsp;Rouge
                                    Fondation&nbsp;Antoine&nbsp;de&nbsp;Galbert
                                </a>
                            </div>
                        </div>
                    </div>
                    <div id="about" class="introduction">
                        <h4>The new fair for limited art editions</h4>

<p>A new, annual fair revolving around publishing, MAD will present, for 3 days, a wide spectrum of contemporary publishing practices, from zines to rare objects: prints, multiples, artists’ books, videos, audio CDs, vinyls...</p>

<p>Held at the Maison Rouge / Foundation Antoine de Galbert on May 22, 23, and 24, 2015, MAD is a new fair for anyone who wants to collect contemporary art editions in their many different forms.</p>

<p>Taking over the entire space of the Maison Rouge, a Parisian institution dedicated to contemporary creation, MAD will bring together some 70 international publishers, whose common goal is quality of their offerings.</p>

<p>Much more than a fair, MAD revolves around the figure of the publisher, the most independent and versatile actor in today's art world.</p>

<p>There will also be 3 days of performances, concerts, signatures and discussions on editorial trends in contemporary art. 3 days with artists, writers, researchers, art and book dealers, publishers, collectors from around the world.</p>

<p>We look forward to welcoming you!!</p>

                    </div>

                    <div id="exhibitors" class="exposants">
                        <h4>Exhibitors</h4>

<ul>
<li><a href="exposants/ah-ah-ah-editions/en.html">AH AH AH éditions <sup>FR</sup></a></li>
<li><a href="exposants/atelier-boba/en.html">Atelier Boba <sup>FR</sup></a></li>
<li><a href="exposants/bernard-chauveau-editeur/en.html">Bernard Chauveau éditeur <sup>FR</sup></a></li>
<li><a href="exposants/cneai/en.html">Cneai = <sup>FR</sup></a></li>
<li><a href="exposants/cent-pages/en.html">Cent pages <sup>FR</sup></a></li>
<li><a href="exposants/the-drawer/en.html">The Drawer <sup>FR</sup></a></li>
<li><a href="exposants/editions-dilecta/en.html">Editions Dilecta <sup>FR</sup></a></li>
<li><a href="exposants/editions-du-detail/en.html">Editions du détail <sup>FR</sup></a></li>
<li><a href="exposants/editions-incertain-sens/en.html">Editions Incertain Sens <sup>FR</sup></a></li>
<li><a href="exposants/florence-loewy/en.html">Florence Loewy <sup>FR</sup></a></li>
<li><a href="exposants/friville-editions/en.html">Friville éditions <sup>FR</sup></a></li>
<li><a href="exposants/galerie-alain-gutharc/en.html">Galerie Alain Gutharc <sup>FR</sup></a></li>
<li><a href="exposants/galerie-allen/en.html">Galerie Allen <sup>FR</sup></a></li>
<li><a href="exposants/galerie-catherine-putman/en.html">Galerie Catherine Putman <sup>FR</sup></a></li>
<li><a href="exposants/galerie-gabrielle-maubrie/en.html">Galerie Gabrielle Maubrie <sup>FR</sup></a></li>
<li><a href="exposants/galerie-jocelyn-wolff/en.html">Galerie Jocelyn Wolff <sup>FR</sup></a></li>
<li><a href="exposants/galerie-loevenbruck/en.html">Galerie Loevenbruck <sup>FR</sup></a></li>
<li><a href="exposants/galerie-metropolis/en.html">Galerie Metropolis <sup>FR</sup></a></li>
<li><a href="exposants/galerie-perrotin/en.html">Galerie Perrotin <sup>FR</sup></a></li>
<li><a href="exposants/galerie-des-multiples/en.html">Galerie des Multiples <sup>FR</sup></a></li>
<li><a href="exposants/gb-agency/en.html">Gb agency <sup>FR</sup></a></li>
<li><a href="exposants/grey-area/en.html">Grey Area <sup>FR</sup></a></li>
<li><a href="exposants/hand-art-publisher/en.html">Hand Art Publisher <sup>FR</sup></a></li>
<li><a href="exposants/iconomoteur/en.html">Iconomoteur <sup>FR</sup></a></li>
<li><a href="exposants/lendroit-editions/en.html">Lendroit éditions <sup>FR</sup></a></li>
<li><a href="exposants/les-editions-les-livres-sont-muets/en.html">Les éditions les livres sont muets <sup>FR</sup></a></li>
<li><a href="exposants/librairie-didier-lecointre-dominique-drouet/en.html">Librairie Didier Lecointre - Dominique Drouet <sup>FR</sup></a></li>
<li><a href="exposants/ln-editions/en.html">LN Editions <sup>FR</sup></a></li>
<li><a href="exposants/macumba-night-club-editions/en.html">Macumba night club editions <sup>FR</sup></a></li>
<li><a href="exposants/may/en.html">May <sup>FR</sup></a></li>
<li><a href="exposants/mfc-michele-didier/en.html">MFC-Michèle Didier <sup>FR</sup></a></li>
<li><a href="exposants/michael-woolworth-publications/en.html">Michael Woolworth Publications <sup>FR</sup></a></li>
<li><a href="exposants/m-u-r-r-amp-gol-records/en.html">m.u.r.r &amp; GOL records <sup>FR</sup></a></li>
<li><a href="exposants/onestar-press/en.html">Onestar Press <sup>FR</sup></a></li>
<li><a href="exposants/optical-sound/en.html">Optical Sound <sup>FR</sup></a></li>
<li><a href="exposants/prints-things-and-books-by-artists/en.html">Prints, things and books by artists <sup>FR</sup></a></li>
<li><a href="exposants/royal-book-lodge/en.html">Royal Book Lodge <sup>FR</sup></a></li>
<li><a href="exposants/rvb-books/en.html">RVB Books <sup>FR</sup></a></li>
<li><a href="exposants/le-salon-esal/en.html">Le Salon - ESAL <sup>FR</sup></a></li>
<li><a href="exposants/three-star-books/en.html">Three Star Books <sup>FR</sup></a></li>
<li><a href="exposants/toluca-editions/en.html">Toluca Editions <sup>FR</sup></a></li>
<li><a href="exposants/urdla/en.html">URDLA <sup>FR</sup></a></li>
<li><a href="exposants/ville-ouverte-les-douches-la-galerie/en.html">Ville ouverte / Les Douches la Galerie <sup>FR</sup></a></li>
<li><a href="exposants/we-do-not-work-alone/en.html">WE DO NOT WORK ALONE <sup>FR</sup></a></li>
<li><a href="exposants/what-you-see-is-what-you-hear/en.html">What you see is what you hear <sup>FR</sup></a></li>
<li><a href="exposants/wink/en.html">Wink <sup>FR</sup></a></li>
<li><a href="exposants/art-amp-fiction-editions-d-apos-artistes/en.html">art&amp;fiction, éditions d&apos;artistes <sup>CH</sup></a></li>
<li><a href="exposants/bartleby-co/en.html">Bartleby &amp; Co. <sup>BE</sup></a></li>
<li><a href="exposants/benveniste-contemporary/en.html">Benveniste Contemporary <sup>ES</sup></a></li>
<li><a href="exposants/bernhard-cella/en.html">Bernhard Cella <sup>AT</sup></a></li>
<li><a href="exposants/book-works/en.html">Book Works <sup>UK</sup></a></li>
<li><a href="exposants/david-krut-projects/en.html">David Krut Projects <sup>ZA/US</sup></a></li>
<li><a href="exposants/dirk-k-bakker-boeken/en.html">Dirk K. Bakker Boeken <sup>NL</sup></a></li>
<li><a href="exposants/gagarin/en.html">GAGARIN <sup>BE</sup></a></li>
<li><a href="exposants/galerie-jordan-seydoux-drawings-prints/en.html">Galerie Jordan/Seydoux — Drawings &amp; Prints <sup>DE</sup></a></li>
<li><a href="exposants/harpune-verlag/en.html">Harpune Verlag <sup>AT</sup></a></li>
<li><a href="exposants/jap-jeunesse-arts-plastiques/en.html">JAP/ Jeunesse &amp; Arts plastiques <sup>BE</sup></a></li>
<li><a href="exposants/jordan-seydoux-drawings-prints/en.html">Jordan/Seydoux — Drawings &amp; Prints <sup>DE</sup></a></li>
<li><a href="exposants/julian-page/en.html">Julian Page <sup>UK</sup></a></li>
<li><a href="exposants/keymouse/en.html">Keymouse <sup>BE</sup></a></li>
<li><a href="exposants/morepublishers/en.html">MOREpublishers <sup>BE</sup></a></li>
<li><a href="exposants/motto/en.html">Motto <sup>DE</sup></a></li>
<li><a href="exposants/the-multiple-store/en.html">The Multiple Store <sup>UK</sup></a></li>
<li><a href="exposants/niels-borch-jensen-gallery-editions/en.html">Niels Borch Jensen Gallery &amp; Editions <sup>DE/DK</sup></a></li>
<li><a href="exposants/oei-editor/en.html">OEI editör <sup>SE</sup></a></li>
<li><a href="exposants/pork-salad-press/en.html">Pork Salad Press <sup>DK</sup></a></li>
<li><a href="exposants/sims-reed-gallery/en.html">Sims Reed Gallery <sup>UK</sup></a></li>
<li><a href="exposants/spector-books/en.html">Spector Books <sup>DE</sup></a></li>
</ul>

                    </div>

                    <div id="visitor-info" class="infos-visiteurs">
                        <h4>Visitor info</h4>

<h5>Opening hours</h5>

<p>Open to the public Friday, May 22 and Saturday, May 23 from 12 pm to 7 pm, and Sunday, May 24 from 12 pm to 6 pm</p>

<h5>Admission fees</h5>

<p>Full price: 5€</p>

<p>Free admission: Visitors 18 and under, students, members of collectors’ associations and museum friends</p>

<h5>Address</h5>

<p>La maison rouge</p>

<p>10 Boulevard de la Bastille</p>

<p>75012 paris</p>

<p>Telephone: +33(0) 1 40 01 08 81</p>

<p>Fax: +33(0) 1 40 01 08 83</p>

<h5>Access</h5>

<p>Subway: Quai de la Rapée (ligne 5) ou Bastille (Lines 1, 5, 8)</p>

<p>RER train: Gare de Lyon (A, D)</p>

<p>Accessible to individuals with disabilities</p>

                        <br />
                        <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=2.3592281341552734%2C48.84304247480693%2C2.375664710998535%2C48.85135953006185&amp;layer=mapnik&amp;marker=48.84720117510769%2C2.3674464225769043" style="border: 1px solid black"></iframe><br/><small><a href="http://www.openstreetmap.org/?mlat=48.8472&amp;mlon=2.3674#map=16/48.8472/2.3674">View Larger Map</a></small>
                    </div>

                    <div id="events" class="evenements">
                        <h4>Events</h4>

<p>Accompanying the 3 MAD days, MAD IN presents 3 days of conversations, performances, dialogues, concerts and signatures, taking place both in the auditorium of the maison rouge and scattered throughout the fair.</p>

<p>Three special curated booths will also be on display: Mathieu Mercier brings together self-published, “equitable” multiples by selected artists; Pierre Ponant &amp; Christophe Jacquet invite 10 artists and designers to show graphic works; Jean-Max Colard &amp; Antoine Dufeu present a selection of books on literature and the art of exhibitions.</p>

                    </div>

                    <div id="partners" class="partenaires">
                        <h4>Partners</h4>

<p>MAD #1 is organized in partnership with the CNEAI = (Centre National Édition Art Image) and la maison rouge / Fondation Antoine de Galbert, and benefits from the suppport of Smurfit Kappa and the Conseil Régional d’Île-de-France</p>

<p><img src="assets/logos/logos_bande.png" alt="all partners" /></p>

<h5>CNEAI = centre national édition art image</h5>

<p>www.cneai.com</p>

<p>Ile des impressionnistes,</p>

<p>2 rue du bac</p>

<p>78400 Chatou</p>

<p>+33 (0)1 39 52 45 35</p>

<p>cneai@cneai.com</p>

<p>A national center for contemporary art dedicated to published works , the Cneai – Centre national édition art image – has, since 1997, developed a model for collaborative programming: organizing research groups and editorial programs (a catalogue of 600 multiples and 150 publications), exhibitions and events, including research (laboratories and seminars) and mediation. The artists and contributors are offered residencies at the “Maison flottante,” conceived by the Bouroullec brothers in 2007. The FMRA collection, which is open to the public, brings together 12,000 books and artistic ephemera. The Cneai dynamically combines the artistic fields that define the various frontiers of visual experience, merging sound art, performance, choreography, graphic design, and literature and scientific research.</p>

<h5>La Maison Rouge - Fondation Antoine de Gabert</h5>

<p>www.maisonrouge.org</p>

<p>10 boulevard de la bastille - 75012 Paris</p>

<p>+33 (0)1 40 01 08 81</p>

<p>info@lamaisonrouge.org</p>

<p>Founded by Antoine de Galbert, a private art collector and prominent figure on the French contemporary art scene, the maison rouge was inaugurated in Paris in June 2004. Its goal is to promote various facets of contemporary creation through a program of temporary exhibitions. More than 1,300 square meters of exhibition space are given over to independent curators, invited by the maison rouge to explore the diverse range of contemporary artistic experimentation, often by way of important private collections from around the world. By inciting and initiating various artistic experiences, the foundation aims to encourage the multiplicity of practices and approaches to contemporary creation.</p>

<h5>Smurfit Kappa</h5>

<p>www.smurfitkappa.com &amp; www.openthefuture.fr</p>

<p>One of the leading manufacturers of paperboard and paper-based packaging solutions in France and throughout Europe, Smurfit Kappa creates solutions adapted to its clients’ everyday needs and helps them promote their products. For many years, Smurfit Kappa has been developing a business strategy called “Open the future,” which emphasizes the group’s goal to increase its customers’ and partners’ growth through an innovative, forward-thinking approach.</p>

                    </div>

                    <div id="credits" class="credits">
                        <h4>Credits</h4>

<h5>Curators</h5>

<p>Sylvie&nbsp;Boulanger, director of the <a href="http://www.cneai.com">CNEAI</a> et
Michael&nbsp;Woolworth, director of <a href="http://www.michealwoolworth.com">Atelier Woolworth</a></p>

<h5>Coordination</h5>

<p>Barbara Quintin</p>

<h5>Furniture design</h5>

<p>Stéphane Magnin</p>

<h5>Graphic design</h5>

<p><a href="http://osp.kitchen">OSP</a></p>

<h5>Press contact</h5>

<p><a href="http://www.claudinecolin.com">Claudine&nbsp;Colin communication</a> – 28 rue de Sévigné – 75004 Paris,
<a href="&#x6d;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#x3a;&#112;&#101;&#110;&#101;&#108;&#111;&#112;&#101;&#64;&#x63;&#x6c;&#x61;&#x75;&#x64;&#x69;&#x6e;&#x65;&#99;&#111;&#108;&#105;&#110;&#46;&#99;om">Pénélope&nbsp;Ponchelet</a></a>
et
<a href="m&#97;&#105;&#108;&#116;&#111;&#58;&#109;&#97;&#114;&#105;&#x6e;&#x65;&#x40;&#x63;&#x6c;&#x61;&#x75;&#x64;&#x69;n&#101;&#99;&#111;&#108;&#105;&#110;&#46;&#99;&#111;&#109;">Marine&nbsp;le&nbsp;Bris</a></p>

<p>For any questions, please contact Barbara&nbsp;Quintin<br />
<a href="&#109;&#x61;&#105;&#x6c;&#116;&#x6f;&#58;&#x63;o&#110;&#x74;&#97;&#x63;&#116;&#x40;&#109;&#x75;&#108;&#116;&#x69;&#112;&#x6c;&#101;&#x61;&#114;&#x74;&#100;&#x61;y&#115;&#x2e;&#99;&#x6f;&#109;">contact@multipleartdays.com</a>–<a href="tel:(0)758356696">(0)7 58 35 66 96</a></p>

                    </div>
                </div>
            </div>
            <div class="container secondary_content">
                <div class="content_wrapper">
                    <div id="exhibitors" class="exposants">
                        Could not find ../texts/en/exhibitors.md
                    </div>
                </div>
            </div>
        </div>
        <div id="entry">
            <div class="entry-container">
                <div class="logo-entry">
                    <img src="assets/logos/mad.png">
                </div>
            </div>
            <div class="left">
                <a id="selectFrench" class="left" href="#francais">entrez</a>
            </div>
            <div class="right">
                <a id="selectEnglish" class="right" href="#english">enter</a>
            </div>
        </div>
    <script src='assets/js/smoothscroll.js'></script>
    <script>
        smoothScroll.init({
            speed: 1000,
            easing: 'easeInOutCubic',
            offset: 0,
            updateURL: true,
            callbackBefore: function ( toggle, anchor ) {},
            callbackAfter: function ( toggle, anchor ) {}
        });
    </script>
    </body>
</html>